path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
docs/api/zh/lights/DirectionalLight.html
hsimpson/three.js
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="utf-8" /> <base href="../../../" /> <script src="list.js"></script> <script src="page.js"></script> <link type="text/css" rel="stylesheet" href="page.css" /> </head> <body> [page:Object3D] &rarr; [page:Light] &rarr; <h1>平行光([name])</h1> <p class="desc"> 平行光是沿着特定方向发射的光。这种光的表现像是无限远,从它发出的光线都是平行的。常常用平行光来模拟太阳光 的效果; 太阳足够远,因此我们可以认为太阳的位置是无限远,所以我们认为从太阳发出的光线也都是平行的。<br /><br /> 平行光可以投射阴影 - 跳转至 [page:DirectionalLightShadow] 查看更多细节。 </p> <h2>关于位置、目标和旋转说明</h2> <p> Three.js 的平行光常见的困惑是设置旋转没有效果。这是因为 three.js 的平行光类似与其他引擎的"目标平行光"。 <br /><br /> 这意味着它的方向是从一个平行光的位置 [page:Object3D.position position] 到 [page:.target target]的位置。 (而不是一个只有旋转分量的'自由平行光')。<br /><br /> 这样做的原因是为了让光线投射阴影。 - the [page:.shadow shadow] 摄像机需要一个位置来计算阴影。<br /><br /> 有关更新目标的详细信息,请参阅 [page:.target target] 下面的目标属性。 </p> <h2>示例</h2> <p> [example:canvas_morphtargets_horse morphtargets / horse ]<br /> [example:misc_controls_fly controls / fly ]<br /> [example:webvr_cubes cubes ]<br /> [example:webgl_effects_parallaxbarrier effects / parallaxbarrier ]<br /> [example:webgl_effects_stereo effects / stereo ]<br /> [example:webgl_geometry_extrude_splines geometry / extrude / splines ]<br /> [example:webgl_materials_bumpmap materials / bumpmap ]<br /> [example:webgl_materials_cubemap_balls_reflection materials / cubemap / balls / reflection ] </p> <code> // White directional light at half intensity shining from the top. var directionalLight = new THREE.DirectionalLight( 0xffffff, 0.5 ); scene.add( directionalLight ); </code> <h2>构造器</h2> <h3>[name]( [param:Integer color], [param:Float intensity] )</h3> <p> [page:Integer color] - (可选参数) 16进制表示光的颜色。 缺省值为 0xffffff (白色)。<br /> [page:Float intensity] - (可选参数) 光照的强度。缺省值为1。<br /><br /> 创建一个新的 [name]。 </p> <h2>属性</h2> 公共属性请查看基类 [page:Light Light]。 <h3>[property:Boolean castShadow]</h3> <p> 如果设置为 *true* 该平行光会产生动态阴影。 警告: 这样做的代价比较高而且需要一直调整到阴影看起来正确. 查看 [page:DirectionalLightShadow] 了解详细信息。该属性默认为 *false*。 </p> <h3>[property:Boolean isDirectionalLight]</h3> <p> 用来校验这个类或者派生类是不是平行光.默认是 *true*。<br /><br /> 不应该去改变这个变量,因为内部使用这个变量做了些优化的工作。 </p> <h3>[property:Vector3 position]</h3> <p> 假如这个值设置等于 [page:Object3D.DefaultUp] (0, 1, 0),那么光线将会从上往下照射。 </p> <h3>[property:DirectionalLightShadow shadow]</h3> <p> 这个 [page:DirectionalLightShadow] 对象用来计算该平行光产生的阴影。 </p> <h3>[property:Object3D target]</h3> <p> 平行光的方向是从它的位置到目标位置。默认的目标位置为原点 *(0,0,0)*。<br /> 注意: 对于目标的位置,要将其更改为除缺省值之外的任何位置,它必须被添加到 [page:Scene scene] 场景中去。 </p> <code> scene.add( light.target ); </code> <p> 这使得属性target中的 [page:Object3D.matrixWorld matrixWorld] 会每帧自动更新。 <br /><br /> 它也可以设置target为场景中的其他对象(任意拥有 [page:Object3D.position position] 属性的对象), 示例如下: </p> <code> var targetObject = new THREE.Object3D(); scene.add(targetObject); light.target = targetObject; </code> <p> 完成上述操作后,平行光现在就可以追踪到目标对像了。 </p> <h2>方法</h2> 公共方法请查看基类 [page:Light Light]。 <h3>[method:DirectionalLight copy]( [param:DirectionalLight source] )</h3> <p> 复制 source 的值到这个平行光源对象。 </p> <h2>源码</h2> [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] </body> </html>
web/bundles/sunraangular/js/angular/angular-1.3.16/docs/partials/misc/contribute.html
viral810/ngSimpleCMS
<a href='https://github.com/angular/angular.js/edit/v1.3.x/docs/content/misc/contribute.ngdoc?message=docs(misc%2FDevelop)%3A%20describe%20your%20change...' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this Doc</a> <h1 id="building-and-testing-angularjs">Building and Testing AngularJS</h1> <p>This document describes how to set up your development environment to build and test AngularJS, and explains the basic mechanics of using <code>git</code>, <code>node</code>, <code>npm</code>, <code>grunt</code>, and <code>bower</code>.</p> <p>See the <a href="https://github.com/angular/angular.js/blob/master/CONTRIBUTING.md">contributing guidelines</a> for how to contribute your own code to AngularJS.</p> <ol> <li><a href="misc/contribute#installing-dependencies">Installing Dependencies</a></li> <li><a href="misc/contribute#forking-angular-on-github">Forking Angular on Github</a></li> <li><a href="misc/contribute#building-angularjs">Building AngularJS</a></li> <li><a href="misc/contribute#running-a-local-development-web-server">Running a Local Development Web Server</a></li> <li><a href="misc/contribute#running-the-unit-test-suite">Running the Unit Test Suite</a></li> <li><a href="misc/contribute#running-the-end-to-end-test-suite">Running the End-to-end Test Suite</a></li> </ol> <h2 id="installing-dependencies">Installing Dependencies</h2> <p>Before you can build AngularJS, you must install and configure the following dependencies on your machine:</p> <ul> <li><p><a href="http://git-scm.com/">Git</a>: The <a href="https://help.github.com/articles/set-up-git">Github Guide to Installing Git</a> is a good source of information.</p> </li> <li><p><a href="http://nodejs.org">Node.js</a>: We use Node to generate the documentation, run a development web server, run tests, and generate distributable files. Depending on your system, you can install Node either from source or as a pre-packaged bundle.</p> </li> <li><p><a href="http://www.java.com">Java</a>: We minify JavaScript using our <a href="https://developers.google.com/closure/">Closure Tools</a> jar. Make sure you have Java (version 7 or higher) installed and included in your <a href="http://docs.oracle.com/javase/tutorial/essential/environment/paths.html">PATH</a> variable.</p> </li> <li><p><a href="http://gruntjs.com">Grunt</a>: We use Grunt as our build system. Install the grunt command-line tool globally with:</p> <pre><code class="lang-shell">npm install -g grunt-cli </code></pre> </li> <li><p><a href="http://bower.io/">Bower</a>: We use Bower to manage client-side packages for the docs. Install the <code>bower</code> command-line tool globally with:</p> <pre><code class="lang-shell">npm install -g bower </code></pre> </li> </ul> <p><strong>Note:</strong> You may need to use sudo (for OSX, *nix, BSD etc) or run your command shell as Administrator (for Windows) to install Grunt &amp; Bower globally.</p> <h2 id="forking-angular-on-github">Forking Angular on Github</h2> <p>To create a Github account, follow the instructions <a href="https://github.com/signup/free">here</a>. Afterwards, go ahead and <a href="http://help.github.com/forking">fork</a> the <a href="https://github.com/angular/angular.js">main AngularJS repository</a>.</p> <h2 id="building-angularjs">Building AngularJS</h2> <p>To build AngularJS, you clone the source code repository and use Grunt to generate the non-minified and minified AngularJS files:</p> <pre><code class="lang-shell"># Clone your Github repository: git clone &quot;git@github.com:&lt;github username&gt;/angular.js.git&quot; # Go to the AngularJS directory: cd angular.js # Add the main AngularJS repository as an upstream remote to your repository: git remote add upstream &quot;https://github.com/angular/angular.js.git&quot; # Install node.js dependencies: npm install # Install bower components: bower install # Build AngularJS: grunt package </code></pre> <div class="alert alert-warning"> <strong>Note:</strong> If you&#39;re using Windows, you must use an elevated command prompt (right click, run as Administrator). This is because <code>grunt package</code> creates some symbolic links. </div> <div class="alert alert-warning"> <strong>Note:</strong> If you&#39;re using Linux, and npm install fails with the message &#39;Please try running this command again as root/Administrator.&#39;, you may need to globally install grunt and bower: <ul> <li>sudo npm install -g grunt-cli</li> <li>sudo npm install -g bower</li> </ul> </div> <p>The build output can be located under the <code>build</code> directory. It consists of the following files and directories:</p> <ul> <li><p><code>angular-&lt;version&gt;.zip</code> — The complete zip file, containing all of the release build artifacts.</p> </li> <li><p><code>angular.js</code> — The non-minified <code>angular</code> script.</p> </li> <li><p><code>angular.min.js</code> — The minified <code>angular</code> script.</p> </li> <li><p><code>angular-scenario.js</code> — The <code>angular</code> End2End test runner.</p> </li> <li><p><code>docs/</code> — A directory that contains all of the files needed to run <code>docs.angularjs.org</code>.</p> </li> <li><p><code>docs/index.html</code> — The main page for the documentation.</p> </li> <li><p><code>docs/docs-scenario.html</code> — The End2End test runner for the documentation application.</p> </li> </ul> <h2 id="running-a-local-development-web-server">Running a Local Development Web Server</h2> <p>To debug code and run end-to-end tests, it is often useful to have a local HTTP server. For this purpose, we have made available a local web server based on Node.js.</p> <ol> <li><p>To start the web server, run:</p> <pre><code class="lang-shell">grunt webserver </code></pre> </li> <li><p>To access the local server, enter the following URL into your web browser:</p> <pre><code class="lang-text">http://localhost:8000/ </code></pre> <p>By default, it serves the contents of the AngularJS project directory.</p> </li> <li><p>To access the locally served docs, visit this URL:</p> <pre><code class="lang-text">http://localhost:8000/build/docs/ </code></pre> </li> </ol> <h2 id="running-the-unit-test-suite">Running the Unit Test Suite</h2> <p>We write unit and integration tests with Jasmine and execute them with Karma. To run all of the tests once on Chrome run:</p> <pre><code class="lang-shell">grunt test:unit </code></pre> <p>To run the tests on other browsers (Chrome, ChromeCanary, Firefox, Opera and Safari are pre-configured) use:</p> <pre><code class="lang-shell">grunt test:unit --browsers Opera,Firefox </code></pre> <p>Note there should be <em>no spaces between browsers</em>. <code>Opera, Firefox</code> is INVALID.</p> <p>During development, however, it&#39;s more productive to continuously run unit tests every time the source or test files change. To execute tests in this mode run:</p> <ol> <li><p>To start the Karma server, capture Chrome browser and run unit tests, run:</p> <pre><code class="lang-shell">grunt autotest </code></pre> </li> <li><p>To capture more browsers, open this URL in the desired browser (URL might be different if you have multiple instance of Karma running, read Karma&#39;s console output for the correct URL):</p> <pre><code class="lang-text">http://localhost:9876/ </code></pre> </li> <li><p>To re-run tests just change any source or test file.</p> </li> </ol> <p>To learn more about all of the preconfigured Grunt tasks run:</p> <pre><code class="lang-shell">grunt --help </code></pre> <h2 id="running-the-end-to-end-test-suite">Running the End-to-end Test Suite</h2> <p>Angular&#39;s end to end tests are run with Protractor. Simply run:</p> <pre><code class="lang-shell">grunt test:e2e </code></pre> <p>This will start the webserver and run the tests on Chrome.</p>
frontend/static/bower_components/app-layout/app-drawer/app-drawer.html
usc-isi-i2/mydig-webservice
<!-- @license Copyright (c) 2015 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --> <link rel="import" href="../../polymer/polymer.html"> <link rel="import" href="../../iron-flex-layout/iron-flex-layout.html"> <!-- app-drawer is a navigation drawer that can slide in from the left or right. Example: Align the drawer at the start, which is left in LTR layouts (default): ```html <app-drawer opened></app-drawer> ``` Align the drawer at the end: ```html <app-drawer align="end" opened></app-drawer> ``` To make the contents of the drawer scrollable, create a wrapper for the scroll content, and apply height and overflow styles to it. ```html <app-drawer> <div style="height: 100%; overflow: auto;"></div> </app-drawer> ``` ### Styling Custom property | Description | Default ---------------------------------|----------------------------------------|-------------------- `--app-drawer-width` | Width of the drawer | 256px `--app-drawer-content-container` | Mixin for the drawer content container | {} `--app-drawer-scrim-background` | Background for the scrim | rgba(0, 0, 0, 0.5) **NOTE:** If you use <app-drawer> with <app-drawer-layout> and specify a value for `--app-drawer-width`, that value must be accessible by both elements. This can be done by defining the value on the `:host` that contains <app-drawer-layout> (or `html` if outside a shadow root): ```css :host { --app-drawer-width: 300px; } ``` @group App Elements @element app-drawer @demo app-drawer/demo/left-drawer.html Simple Left Drawer @demo app-drawer/demo/right-drawer.html Right Drawer with Icons --> <dom-module id="app-drawer"> <template> <style> :host { position: fixed; top: -120px; right: 0; bottom: -120px; left: 0; visibility: hidden; transition-property: visibility; } :host([opened]) { visibility: visible; } :host([persistent]) { width: var(--app-drawer-width, 256px); } :host([persistent][position=left]) { right: auto; } :host([persistent][position=right]) { left: auto; } #contentContainer { position: absolute; top: 0; bottom: 0; left: 0; width: var(--app-drawer-width, 256px); padding: 120px 0; transition-property: -webkit-transform; transition-property: transform; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); background-color: #FFF; @apply --app-drawer-content-container; } #contentContainer[persistent] { width: 100%; } #contentContainer[position=right] { right: 0; left: auto; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } #contentContainer[swipe-open]::after { position: fixed; top: 0; bottom: 0; left: 100%; visibility: visible; width: 20px; content: ''; } #contentContainer[swipe-open][position=right]::after { right: 100%; left: auto; } #contentContainer[opened] { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } #scrim { position: absolute; top: 0; right: 0; bottom: 0; left: 0; transition-property: opacity; -webkit-transform: translateZ(0); transform: translateZ(0); opacity: 0; background: var(--app-drawer-scrim-background, rgba(0, 0, 0, 0.5)); } #scrim.visible { opacity: 1; } :host([no-transition]) #contentContainer { transition-property: none; } </style> <div id="scrim" on-click="close"></div> <!-- HACK(keanulee): Bind attributes here (in addition to :host) for styling to workaround Safari bug. https://bugs.webkit.org/show_bug.cgi?id=170762 --> <div id="contentContainer" opened$="[[opened]]" persistent$="[[persistent]]" position$="[[position]]" swipe-open$="[[swipeOpen]]"> <slot></slot> </div> </template> <script> Polymer({ is: 'app-drawer', properties: { /** * The opened state of the drawer. */ opened: { type: Boolean, value: false, notify: true, reflectToAttribute: true }, /** * The drawer does not have a scrim and cannot be swiped close. */ persistent: { type: Boolean, value: false, reflectToAttribute: true }, /** * The transition duration of the drawer in milliseconds. */ transitionDuration: { type: Number, value: 200 }, /** * The alignment of the drawer on the screen ('left', 'right', 'start' or 'end'). * 'start' computes to left and 'end' to right in LTR layout and vice versa in RTL * layout. */ align: { type: String, value: 'left' }, /** * The computed, read-only position of the drawer on the screen ('left' or 'right'). */ position: { type: String, readOnly: true, reflectToAttribute: true }, /** * Create an area at the edge of the screen to swipe open the drawer. */ swipeOpen: { type: Boolean, value: false, reflectToAttribute: true }, /** * Trap keyboard focus when the drawer is opened and not persistent. */ noFocusTrap: { type: Boolean, value: false }, /** * Disables swiping on the drawer. */ disableSwipe: { type: Boolean, value: false } }, observers: [ 'resetLayout(position, isAttached)', '_resetPosition(align, isAttached)', '_styleTransitionDuration(transitionDuration)', '_openedPersistentChanged(opened, persistent)' ], _translateOffset: 0, _trackDetails: null, _drawerState: 0, _boundEscKeydownHandler: null, _firstTabStop: null, _lastTabStop: null, attached: function() { Polymer.RenderStatus.afterNextRender(this, function() { this._boundEscKeydownHandler = this._escKeydownHandler.bind(this); this.addEventListener('keydown', this._tabKeydownHandler.bind(this)) // Only listen for horizontal track so you can vertically scroll inside the drawer. this.listen(this, 'track', '_track'); this.setScrollDirection('y'); }); this.fire('app-reset-layout'); }, detached: function() { document.removeEventListener('keydown', this._boundEscKeydownHandler); }, /** * Opens the drawer. */ open: function() { this.opened = true; }, /** * Closes the drawer. */ close: function() { this.opened = false; }, /** * Toggles the drawer open and close. */ toggle: function() { this.opened = !this.opened; }, /** * Gets the width of the drawer. * * @return {number} The width of the drawer in pixels. */ getWidth: function() { return this._savedWidth || this.$.contentContainer.offsetWidth; }, _isRTL: function() { return window.getComputedStyle(this).direction === 'rtl'; }, _resetPosition: function() { switch (this.align) { case 'start': this._setPosition(this._isRTL() ? 'right' : 'left'); return; case 'end': this._setPosition(this._isRTL() ? 'left' : 'right'); return; } this._setPosition(this.align); }, _escKeydownHandler: function(event) { var ESC_KEYCODE = 27; if (event.keyCode === ESC_KEYCODE) { // Prevent any side effects if app-drawer closes. event.preventDefault(); this.close(); } }, _track: function(event) { if (this.persistent || this.disableSwipe) { return; } // Disable user selection on desktop. event.preventDefault(); switch (event.detail.state) { case 'start': this._trackStart(event); break; case 'track': this._trackMove(event); break; case 'end': this._trackEnd(event); break; } }, _trackStart: function(event) { this._drawerState = this._DRAWER_STATE.TRACKING; var rect = this.$.contentContainer.getBoundingClientRect(); this._savedWidth = rect.width; if (this.position === 'left') { this._translateOffset = rect.left; } else { this._translateOffset = rect.right - window.innerWidth; } this._trackDetails = []; // Disable transitions since style attributes will reflect user track events. this._styleTransitionDuration(0); this.style.visibility = 'visible'; }, _trackMove: function(event) { this._translateDrawer(event.detail.dx + this._translateOffset); // Use Date.now() since event.timeStamp is inconsistent across browsers (e.g. most // browsers use milliseconds but FF 44 uses microseconds). this._trackDetails.push({ dx: event.detail.dx, timeStamp: Date.now() }); }, _trackEnd: function(event) { var x = event.detail.dx + this._translateOffset; var drawerWidth = this.getWidth(); var isPositionLeft = this.position === 'left'; var isInEndState = isPositionLeft ? (x >= 0 || x <= -drawerWidth) : (x <= 0 || x >= drawerWidth); if (!isInEndState) { // No longer need the track events after this method returns - allow them to be GC'd. var trackDetails = this._trackDetails; this._trackDetails = null; this._flingDrawer(event, trackDetails); if (this._drawerState === this._DRAWER_STATE.FLINGING) { return; } } // If the drawer is not flinging, toggle the opened state based on the position of // the drawer. var halfWidth = drawerWidth / 2; if (event.detail.dx < -halfWidth) { this.opened = this.position === 'right'; } else if (event.detail.dx > halfWidth) { this.opened = this.position === 'left'; } if (isInEndState) { this.debounce('_resetDrawerState', this._resetDrawerState); } else { this.debounce('_resetDrawerState', this._resetDrawerState, this.transitionDuration); } this._styleTransitionDuration(this.transitionDuration); this._resetDrawerTranslate(); this.style.visibility = ''; }, _calculateVelocity: function(event, trackDetails) { // Find the oldest track event that is within 100ms using binary search. var now = Date.now(); var timeLowerBound = now - 100; var trackDetail; var min = 0; var max = trackDetails.length - 1; while (min <= max) { // Floor of average of min and max. var mid = (min + max) >> 1; var d = trackDetails[mid]; if (d.timeStamp >= timeLowerBound) { trackDetail = d; max = mid - 1; } else { min = mid + 1; } } if (trackDetail) { var dx = event.detail.dx - trackDetail.dx; var dt = (now - trackDetail.timeStamp) || 1; return dx / dt; } return 0; }, _flingDrawer: function(event, trackDetails) { var velocity = this._calculateVelocity(event, trackDetails); // Do not fling if velocity is not above a threshold. if (Math.abs(velocity) < this._MIN_FLING_THRESHOLD) { return; } this._drawerState = this._DRAWER_STATE.FLINGING; var x = event.detail.dx + this._translateOffset; var drawerWidth = this.getWidth(); var isPositionLeft = this.position === 'left'; var isVelocityPositive = velocity > 0; var isClosingLeft = !isVelocityPositive && isPositionLeft; var isClosingRight = isVelocityPositive && !isPositionLeft; var dx; if (isClosingLeft) { dx = -(x + drawerWidth); } else if (isClosingRight) { dx = (drawerWidth - x); } else { dx = -x; } // Enforce a minimum transition velocity to make the drawer feel snappy. if (isVelocityPositive) { velocity = Math.max(velocity, this._MIN_TRANSITION_VELOCITY); this.opened = this.position === 'left'; } else { velocity = Math.min(velocity, -this._MIN_TRANSITION_VELOCITY); this.opened = this.position === 'right'; } // Calculate the amount of time needed to finish the transition based on the // initial slope of the timing function. var t = this._FLING_INITIAL_SLOPE * dx / velocity this._styleTransitionDuration(t); this._styleTransitionTimingFunction(this._FLING_TIMING_FUNCTION); this._resetDrawerTranslate(); this.debounce('_resetDrawerState', this._resetDrawerState, t); }, _styleTransitionDuration: function(duration) { this.style.transitionDuration = duration + 'ms'; this.$.contentContainer.style.transitionDuration = duration + 'ms'; this.$.scrim.style.transitionDuration = duration + 'ms'; }, _styleTransitionTimingFunction: function(timingFunction) { this.$.contentContainer.style.transitionTimingFunction = timingFunction; this.$.scrim.style.transitionTimingFunction = timingFunction; }, _translateDrawer: function(x) { var drawerWidth = this.getWidth(); if (this.position === 'left') { x = Math.max(-drawerWidth, Math.min(x, 0)); this.$.scrim.style.opacity = 1 + x / drawerWidth; } else { x = Math.max(0, Math.min(x, drawerWidth)); this.$.scrim.style.opacity = 1 - x / drawerWidth; } this.translate3d(x + 'px', '0', '0', this.$.contentContainer); }, _resetDrawerTranslate: function() { this.$.scrim.style.opacity = ''; this.transform('', this.$.contentContainer); }, _resetDrawerState: function() { var oldState = this._drawerState; // If the drawer was flinging, we need to reset the style attributes. if (oldState === this._DRAWER_STATE.FLINGING) { this._styleTransitionDuration(this.transitionDuration); this._styleTransitionTimingFunction(''); this.style.visibility = ''; } this._savedWidth = null; if (this.opened) { this._drawerState = this.persistent ? this._DRAWER_STATE.OPENED_PERSISTENT : this._DRAWER_STATE.OPENED; } else { this._drawerState = this._DRAWER_STATE.CLOSED; } if (oldState !== this._drawerState) { if (this._drawerState === this._DRAWER_STATE.OPENED) { this._setKeyboardFocusTrap(); document.addEventListener('keydown', this._boundEscKeydownHandler); document.body.style.overflow = 'hidden'; } else { document.removeEventListener('keydown', this._boundEscKeydownHandler); document.body.style.overflow = ''; } // Don't fire the event on initial load. if (oldState !== this._DRAWER_STATE.INIT) { this.fire('app-drawer-transitioned'); } } }, /** * Resets the layout. * * @method resetLayout */ resetLayout: function() { this.fire('app-reset-layout'); }, _setKeyboardFocusTrap: function() { if (this.noFocusTrap) { return; } // NOTE: Unless we use /deep/ (which we shouldn't since it's deprecated), this will // not select focusable elements inside shadow roots. var focusableElementsSelector = [ 'a[href]:not([tabindex="-1"])', 'area[href]:not([tabindex="-1"])', 'input:not([disabled]):not([tabindex="-1"])', 'select:not([disabled]):not([tabindex="-1"])', 'textarea:not([disabled]):not([tabindex="-1"])', 'button:not([disabled]):not([tabindex="-1"])', 'iframe:not([tabindex="-1"])', '[tabindex]:not([tabindex="-1"])', '[contentEditable=true]:not([tabindex="-1"])' ].join(','); var focusableElements = Polymer.dom(this).querySelectorAll(focusableElementsSelector); if (focusableElements.length > 0) { this._firstTabStop = focusableElements[0]; this._lastTabStop = focusableElements[focusableElements.length - 1]; } else { // Reset saved tab stops when there are no focusable elements in the drawer. this._firstTabStop = null; this._lastTabStop = null; } // Focus on app-drawer if it has non-zero tabindex. Otherwise, focus the first focusable // element in the drawer, if it exists. Use the tabindex attribute since the this.tabIndex // property in IE/Edge returns 0 (instead of -1) when the attribute is not set. var tabindex = this.getAttribute('tabindex'); if (tabindex && parseInt(tabindex, 10) > -1) { this.focus(); } else if (this._firstTabStop) { this._firstTabStop.focus(); } }, _tabKeydownHandler: function(event) { if (this.noFocusTrap) { return; } var TAB_KEYCODE = 9; if (this._drawerState === this._DRAWER_STATE.OPENED && event.keyCode === TAB_KEYCODE) { if (event.shiftKey) { if (this._firstTabStop && Polymer.dom(event).localTarget === this._firstTabStop) { event.preventDefault(); this._lastTabStop.focus(); } } else { if (this._lastTabStop && Polymer.dom(event).localTarget === this._lastTabStop) { event.preventDefault(); this._firstTabStop.focus(); } } } }, _openedPersistentChanged: function(opened, persistent) { this.toggleClass('visible', opened && !persistent, this.$.scrim); // Use a debounce timer instead of transitionend since transitionend won't fire when // app-drawer is display: none. this.debounce('_resetDrawerState', this._resetDrawerState, this.transitionDuration); }, _MIN_FLING_THRESHOLD: 0.2, _MIN_TRANSITION_VELOCITY: 1.2, _FLING_TIMING_FUNCTION: 'cubic-bezier(0.667, 1, 0.667, 1)', _FLING_INITIAL_SLOPE: 1.5, _DRAWER_STATE: { INIT: 0, OPENED: 1, OPENED_PERSISTENT: 2, CLOSED: 3, TRACKING: 4, FLINGING: 5 } /** * Fired when the layout of app-drawer has changed. * * @event app-reset-layout */ /** * Fired when app-drawer has finished transitioning. * * @event app-drawer-transitioned */ }); </script> </dom-module>
src/commons-math3-3.6.1/docs/apidocs/org/apache/commons/math3/geometry/partitioning/Transform.html
asampley/FactorioRatioAssistant
<!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>Transform (Apache Commons Math 3.6.1 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="Transform (Apache Commons Math 3.6.1 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 class="navBarCell1Rev">Class</li> <li><a href="class-use/Transform.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 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><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/SubHyperplane.SplitSubHyperplane.html" title="class in org.apache.commons.math3.geometry.partitioning"><span class="strong">Prev Class</span></a></li> <li>Next Class</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/math3/geometry/partitioning/Transform.html" target="_top">Frames</a></li> <li><a href="Transform.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>Constr&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>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.apache.commons.math3.geometry.partitioning</div> <h2 title="Interface Transform" class="title">Interface Transform&lt;S extends <a href="../../../../../../org/apache/commons/math3/geometry/Space.html" title="interface in org.apache.commons.math3.geometry">Space</a>,T extends <a href="../../../../../../org/apache/commons/math3/geometry/Space.html" title="interface in org.apache.commons.math3.geometry">Space</a>&gt;</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl><dt><span class="strong">Type Parameters:</span></dt><dd><code>S</code> - Type of the embedding space.</dd><dd><code>T</code> - Type of the embedded sub-space.</dd></dl> <hr> <br> <pre>public interface <span class="strong">Transform&lt;S extends <a href="../../../../../../org/apache/commons/math3/geometry/Space.html" title="interface in org.apache.commons.math3.geometry">Space</a>,T extends <a href="../../../../../../org/apache/commons/math3/geometry/Space.html" title="interface in org.apache.commons.math3.geometry">Space</a>&gt;</span></pre> <div class="block">This interface represents an inversible affine transform in a space. <p>Inversible affine transform include for example scalings, translations, rotations.</p> <p>Transforms are dimension-specific. The consistency rules between the three <code>apply</code> methods are the following ones for a transformed defined for dimension D:</p> <ul> <li> the transform can be applied to a point in the D-dimension space using its <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html#apply(org.apache.commons.math3.geometry.Point)"><code>apply(Point)</code></a> method </li> <li> the transform can be applied to a (D-1)-dimension hyperplane in the D-dimension space using its <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html#apply(org.apache.commons.math3.geometry.partitioning.Hyperplane)"><code>apply(Hyperplane)</code></a> method </li> <li> the transform can be applied to a (D-2)-dimension sub-hyperplane in a (D-1)-dimension hyperplane using its <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html#apply(org.apache.commons.math3.geometry.partitioning.SubHyperplane,%20org.apache.commons.math3.geometry.partitioning.Hyperplane,%20org.apache.commons.math3.geometry.partitioning.Hyperplane)"><code>apply(SubHyperplane, Hyperplane, Hyperplane)</code></a> method </li> </ul></div> <dl><dt><span class="strong">Since:</span></dt> <dd>3.0</dd></dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== 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/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html#apply(org.apache.commons.math3.geometry.partitioning.Hyperplane)">apply</a></strong>(<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;hyperplane)</code> <div class="block">Transform an hyperplane of a space.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/commons/math3/geometry/Point.html" title="interface in org.apache.commons.math3.geometry">Point</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html#apply(org.apache.commons.math3.geometry.Point)">apply</a></strong>(<a href="../../../../../../org/apache/commons/math3/geometry/Point.html" title="interface in org.apache.commons.math3.geometry">Point</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;point)</code> <div class="block">Transform a point of a space.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/SubHyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">SubHyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">T</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html#apply(org.apache.commons.math3.geometry.partitioning.SubHyperplane,%20org.apache.commons.math3.geometry.partitioning.Hyperplane,%20org.apache.commons.math3.geometry.partitioning.Hyperplane)">apply</a></strong>(<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/SubHyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">SubHyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">T</a>&gt;&nbsp;sub, <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;original, <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;transformed)</code> <div class="block">Transform a sub-hyperplane embedded in an hyperplane.</div> </td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="apply(org.apache.commons.math3.geometry.Point)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>apply</h4> <pre><a href="../../../../../../org/apache/commons/math3/geometry/Point.html" title="interface in org.apache.commons.math3.geometry">Point</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;apply(<a href="../../../../../../org/apache/commons/math3/geometry/Point.html" title="interface in org.apache.commons.math3.geometry">Point</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;point)</pre> <div class="block">Transform a point of a space.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>point</code> - point to transform</dd> <dt><span class="strong">Returns:</span></dt><dd>a new object representing the transformed point</dd></dl> </li> </ul> <a name="apply(org.apache.commons.math3.geometry.partitioning.Hyperplane)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>apply</h4> <pre><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;apply(<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;hyperplane)</pre> <div class="block">Transform an hyperplane of a space.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>hyperplane</code> - hyperplane to transform</dd> <dt><span class="strong">Returns:</span></dt><dd>a new object representing the transformed hyperplane</dd></dl> </li> </ul> <a name="apply(org.apache.commons.math3.geometry.partitioning.SubHyperplane, org.apache.commons.math3.geometry.partitioning.Hyperplane, org.apache.commons.math3.geometry.partitioning.Hyperplane)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>apply</h4> <pre><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/SubHyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">SubHyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">T</a>&gt;&nbsp;apply(<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/SubHyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">SubHyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">T</a>&gt;&nbsp;sub, <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;original, <a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Hyperplane.html" title="interface in org.apache.commons.math3.geometry.partitioning">Hyperplane</a>&lt;<a href="../../../../../../org/apache/commons/math3/geometry/partitioning/Transform.html" title="type parameter in Transform">S</a>&gt;&nbsp;transformed)</pre> <div class="block">Transform a sub-hyperplane embedded in an hyperplane.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>sub</code> - sub-hyperplane to transform</dd><dd><code>original</code> - hyperplane in which the sub-hyperplane is defined (this is the original hyperplane, the transform has <em>not</em> been applied to it)</dd><dd><code>transformed</code> - hyperplane in which the sub-hyperplane is defined (this is the transformed hyperplane, the transform <em>has</em> been applied to it)</dd> <dt><span class="strong">Returns:</span></dt><dd>a new object representing the transformed sub-hyperplane</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/Transform.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 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><a href="../../../../../../org/apache/commons/math3/geometry/partitioning/SubHyperplane.SplitSubHyperplane.html" title="class in org.apache.commons.math3.geometry.partitioning"><span class="strong">Prev Class</span></a></li> <li>Next Class</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/math3/geometry/partitioning/Transform.html" target="_top">Frames</a></li> <li><a href="Transform.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>Constr&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>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 ======= --> <p class="legalCopy"><small>Copyright &#169; 2003&#x2013;2016 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> </body> </html>
_app/css/modules/accessibility.css
ABA-Center-for-Human-Rights/aba-icc
.hide-until-focused { position: fixed !important; _position: absolute !important; clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ clip: rect(1px, 1px, 1px, 1px); } .hide-until-focused:focus { clip: auto; }
doc/html/qextensionmanager.html
liuyanghejerry/qtextended
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Qt 4.4: QExtensionManager Class Reference</title> <link href="classic.css" rel="stylesheet" type="text/css" /> </head> <body> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td align="left" valign="top" width="32"><a href="http://www.trolltech.com/products/qt"><img src="images/qt-logo.png" align="left" border="0" /></a></td> <td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="namespaces.html"><font color="#004faf">All&nbsp;Namespaces</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="mainclasses.html"><font color="#004faf">Main&nbsp;Classes</font></a>&nbsp;&middot; <a href="groups.html"><font color="#004faf">Grouped&nbsp;Classes</font></a>&nbsp;&middot; <a href="modules.html"><font color="#004faf">Modules</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">Functions</font></a></td> <td align="right" valign="top" width="230"></td></tr></table><h1 class="title">QExtensionManager Class Reference<br /><span class="small-subtitle">[<a href="qtdesigner.html">QtDesigner</a> module]</span> </h1> <p>The QExtensionManager class provides extension management facilities for Qt Designer. <a href="#details">More...</a></p> <pre> #include &lt;QExtensionManager&gt;</pre><p>Inherits <a href="qobject.html">QObject</a> and <a href="qabstractextensionmanager.html">QAbstractExtensionManager</a>.</p> <ul> <li><a href="qextensionmanager-members.html">List of all members, including inherited members</a></li> </ul> <a name="public-functions"></a> <h3>Public Functions</h3> <ul> <li><div class="fn"/><b><a href="qextensionmanager.html#QExtensionManager">QExtensionManager</a></b> ( QObject * <i>parent</i> = 0 )</li> <li><div class="fn"/><b><a href="qextensionmanager.html#dtor.QExtensionManager">~QExtensionManager</a></b> ()</li> <li><div class="fn"/>virtual QObject * <b><a href="qextensionmanager.html#extension">extension</a></b> ( QObject * <i>object</i>, const QString &amp; <i>iid</i> ) const</li> <li><div class="fn"/>virtual void <b><a href="qextensionmanager.html#registerExtensions">registerExtensions</a></b> ( QAbstractExtensionFactory * <i>factory</i>, const QString &amp; <i>iid</i> = QString() )</li> <li><div class="fn"/>virtual void <b><a href="qextensionmanager.html#unregisterExtensions">unregisterExtensions</a></b> ( QAbstractExtensionFactory * <i>factory</i>, const QString &amp; <i>iid</i> = QString() )</li> </ul> <ul> <li><div class="fn"/>29 public functions inherited from <a href="qobject.html#public-functions">QObject</a></li> <li><div class="fn"/>3 public functions inherited from <a href="qabstractextensionmanager.html#public-functions">QAbstractExtensionManager</a></li> </ul> <a name="related-non-members"></a> <h3>Related Non-Members</h3> <ul> <li><div class="fn"/>T <b><a href="qextensionmanager.html#qt_extension">qt_extension</a></b> ( QAbstractExtensionManager * <i>manager</i>, QObject * <i>object</i> )</li> </ul> <a name="macros"></a> <h3>Macros</h3> <ul> <li><div class="fn"/><b><a href="qextensionmanager.html#Q_DECLARE_EXTENSION_INTERFACE">Q_DECLARE_EXTENSION_INTERFACE</a></b> ( <i>ExtensionName</i>, <i>Identifier</i> )</li> </ul> <h3>Additional Inherited Members</h3> <ul> <li><div class="fn"/>1 property inherited from <a href="qobject.html#properties">QObject</a></li> <li><div class="fn"/>1 public slot inherited from <a href="qobject.html#public-slots">QObject</a></li> <li><div class="fn"/>1 signal inherited from <a href="qobject.html#signals">QObject</a></li> <li><div class="fn"/>5 static public members inherited from <a href="qobject.html#static-public-members">QObject</a></li> <li><div class="fn"/>7 protected functions inherited from <a href="qobject.html#protected-functions">QObject</a></li> </ul> <a name="details"></a> <hr /> <h2>Detailed Description</h2> <p>The QExtensionManager class provides extension management facilities for Qt Designer.</p> <p>In <i>Qt Designer</i> the extensions are not created until they are required. For that reason, when implementing an extension, you must also create a <a href="qextensionfactory.html">QExtensionFactory</a>, i.e a class that is able to make an instance of your extension, and register it using <i>Qt Designer</i>'s extension manager.</p> <p>The registration of an extension factory is typically made in the <a href="qdesignercustomwidgetinterface.html#initialize">QDesignerCustomWidgetInterface::initialize</a>() function:</p> <pre> void MyPlugin::initialize(QDesignerFormEditorInterface *formEditor) { if (initialized) return; QExtensionManager *manager = formEditor-&gt;extensionManager(); Q_ASSERT(manager != 0); manager-&gt;registerExtensions(new MyExtensionFactory(manager), Q_TYPEID(QDesignerTaskMenuExtension)); initialized = true; }</pre> <p>The QExtensionManager is not intended to be instantiated directly. You can retrieve an interface to <i>Qt Designer</i>'s extension manager using the <a href="qdesignerformeditorinterface.html#extensionManager">QDesignerFormEditorInterface::extensionManager</a>() function. A pointer to <i>Qt Designer</i>'s current <a href="qdesignerformeditorinterface.html">QDesignerFormEditorInterface</a> object (<tt>formEditor</tt> in the example above) is provided by the <a href="qdesignercustomwidgetinterface.html#initialize">QDesignerCustomWidgetInterface::initialize</a>() function's parameter. When implementing a custom widget plugin, you must subclass the <a href="qdesignercustomwidgetinterface.html">QDesignerCustomWidgetInterface</a> to expose your plugin to <i>Qt Designer</i>.</p> <p>Then, when an extension is required, <i>Qt Designer</i>'s extension manager will run through all its registered factories calling <a href="qextensionfactory.html#createExtension">QExtensionFactory::createExtension</a>() for each until the first one that is able to create the requested extension for the selected object, is found. This factory will then make an instance of the extension.</p> <p>There are four available types of extensions in <i>Qt Designer</i>: <a href="qdesignercontainerextension.html">QDesignerContainerExtension</a> , <a href="qdesignermembersheetextension.html">QDesignerMemberSheetExtension</a>, <a href="qdesignerpropertysheetextension.html">QDesignerPropertySheetExtension</a> and <a href="qdesignertaskmenuextension.html">QDesignerTaskMenuExtension</a>. <i>Qt Designer</i>'s behavior is the same whether the requested extension is associated with a container, a member sheet, a property sheet or a task menu.</p> <p>For a complete example using the QExtensionManager class, see the <a href="designer-taskmenuextension.html">Task Menu Extension example</a>. The example shows how to create a custom widget plugin for Qt Designer, and how to to use the <a href="qdesignertaskmenuextension.html">QDesignerTaskMenuExtension</a> class to add custom items to <i>Qt Designer</i>'s task menu.</p> <p>See also <a href="qextensionfactory.html">QExtensionFactory</a> and <a href="qabstractextensionmanager.html">QAbstractExtensionManager</a>.</p> <hr /> <h2>Member Function Documentation</h2> <h3 class="fn"><a name="QExtensionManager"></a>QExtensionManager::QExtensionManager ( <a href="qobject.html">QObject</a> * <i>parent</i> = 0 )</h3> <p>Constructs an extension manager with the given <i>parent</i>.</p> <h3 class="fn"><a name="dtor.QExtensionManager"></a>QExtensionManager::~QExtensionManager ()</h3> <p>Destroys the extension manager</p> <h3 class="fn"><a name="extension"></a><a href="qobject.html">QObject</a> * QExtensionManager::extension ( <a href="qobject.html">QObject</a> * <i>object</i>, const <a href="qstring.html">QString</a> &amp; <i>iid</i> ) const&nbsp;&nbsp;<tt> [virtual]</tt></h3> <p>Returns the extension specified by <i>iid</i>, for the given <i>object</i>.</p> <p>Reimplemented from <a href="qabstractextensionmanager.html#extension">QAbstractExtensionManager</a>.</p> <h3 class="fn"><a name="registerExtensions"></a>void QExtensionManager::registerExtensions ( <a href="qabstractextensionfactory.html">QAbstractExtensionFactory</a> * <i>factory</i>, const <a href="qstring.html">QString</a> &amp; <i>iid</i> = QString() )&nbsp;&nbsp;<tt> [virtual]</tt></h3> <p>Register the extension specified by the given <i>factory</i> and extension identifier <i>iid</i>.</p> <p>Reimplemented from <a href="qabstractextensionmanager.html#registerExtensions">QAbstractExtensionManager</a>.</p> <h3 class="fn"><a name="unregisterExtensions"></a>void QExtensionManager::unregisterExtensions ( <a href="qabstractextensionfactory.html">QAbstractExtensionFactory</a> * <i>factory</i>, const <a href="qstring.html">QString</a> &amp; <i>iid</i> = QString() )&nbsp;&nbsp;<tt> [virtual]</tt></h3> <p>Unregister the extension specified by the given <i>factory</i> and extension identifier <i>iid</i>.</p> <p>Reimplemented from <a href="qabstractextensionmanager.html#unregisterExtensions">QAbstractExtensionManager</a>.</p> <hr /> <h2>Related Non-Members</h2> <h3 class="fn"><a name="qt_extension"></a>T qt_extension ( <a href="qabstractextensionmanager.html">QAbstractExtensionManager</a> * <i>manager</i>, <a href="qobject.html">QObject</a> * <i>object</i> )</h3> <p>Returns the extension of the given <i>object</i> cast to type T if the object is of type T (or of a subclass); otherwise returns 0. The extension is retrieved using the given extension <i>manager</i>.</p> <pre> QDesignerPropertySheetExtension *propertySheet; QExtensionManager manager = formEditor-&gt;extensionManager(); propertySheet = qt_extension&lt;QDesignerPropertySheetExtension*&gt;(manager, widget); if(propertySheet) {...}</pre> <p>When implementing a custom widget plugin, a pointer to <i>Qt Designer</i>'s current <a href="qdesignerformeditorinterface.html">QDesignerFormEditorInterface</a> object (<tt>formEditor</tt>) is provided by the <a href="qdesignercustomwidgetinterface.html#initialize">QDesignerCustomWidgetInterface::initialize</a>() function's parameter.</p> <p>If the widget in the example above doesn't have a defined <a href="qdesignerpropertysheetextension.html">QDesignerPropertySheetExtension</a>, <tt>propertySheet</tt> will be a null pointer.</p> <hr /> <h2>Macro Documentation</h2> <h3 class="fn"><a name="Q_DECLARE_EXTENSION_INTERFACE"></a>Q_DECLARE_EXTENSION_INTERFACE ( <i>ExtensionName</i>, <i>Identifier</i> )</h3> <p>Associates the given <i>Identifier</i> (a string literal) to the extension class called <i>ExtensionName</i>. The <i>Identifier</i> must be unique. For example:</p> <pre> Q_DECLARE_EXTENSION_INTERFACE(MyExtension, &quot;com.mycompany.myproduct.myextension&quot;)</pre> <p>Using the company and product names is a good way to ensure uniqueness of the identifier.</p> <p>When implementing a custom extension class, you must use Q_DECLARE_EXTENSION_INTERFACE() to enable usage of the <a href="qextensionmanager.html#qt_extension">qt_extension</a>() function. The macro is normally located right after the class definition for <i>ExtensionName</i>, in the associated header file.</p> <p>See also <a href="qtplugin.html#Q_DECLARE_INTERFACE">Q_DECLARE_INTERFACE</a>().</p> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td width="30%" align="left">Copyright &copy; 2008 Nokia</td> <td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td> <td width="30%" align="right"><div align="right">Qt 4.4.3</div></td> </tr></table></div></address></body> </html>
doc/html/qmallocpool.html
liuyanghejerry/qtextended
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>QMallocPool Class Reference</title> <link href="classic.css" rel="stylesheet" type="text/css" /> </head> <body> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td align="left" valign="top" width="32"><img src="images/qtlogo.png" align="left" border="0" /></td> <td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="namespaces.html"><font color="#004faf">All&nbsp;Namespaces</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="groups.html"><font color="#004faf">Grouped Classes</font></a>&nbsp;&middot; <a href="modules-index.html"><font color="#004faf">Modules</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">Functions</font></a></td> <td align="right" valign="center"><img src="images/codeless.png" border="0" alt="codeless banner"></td></tr></table><h1 class="title">QMallocPool Class Reference<br /><span class="small-subtitle">[<a href="qtbasemodule.html">QtBaseModule</a>]</span> </h1> <p>The QMallocPool class allows management of allocations within a designated memory region. <a href="#details">More...</a></p> <pre> #include &lt;QMallocPool&gt;</pre><ul> <li><a href="qmallocpool-members.html">List of all members, including inherited members</a></li> </ul> <a name="public-types"></a> <h3>Public Types</h3> <ul> <li><div class="fn"/>class <b><a href="qmallocpool-memorystats.html">MemoryStats</a></b></li> <li><div class="fn"/>enum <b><a href="qmallocpool.html#PoolType-enum">PoolType</a></b> { Owned, NewShared, Shared }</li> </ul> <a name="public-functions"></a> <h3>Public Functions</h3> <ul> <li><div class="fn"/><b><a href="qmallocpool.html#QMallocPool">QMallocPool</a></b> ()</li> <li><div class="fn"/><b><a href="qmallocpool.html#QMallocPool-2">QMallocPool</a></b> ( void * <i>poolBase</i>, unsigned int <i>poolLength</i>, PoolType <i>type</i> = Owned, const QString &amp; <i>name</i> = QString() )</li> <li><div class="fn"/><b><a href="qmallocpool.html#dtor.QMallocPool">~QMallocPool</a></b> ()</li> <li><div class="fn"/>void * <b><a href="qmallocpool.html#calloc">calloc</a></b> ( size_t <i>nmemb</i>, size_t <i>size</i> )</li> <li><div class="fn"/>void <b><a href="qmallocpool.html#dumpStats">dumpStats</a></b> () const</li> <li><div class="fn"/>void <b><a href="qmallocpool.html#free">free</a></b> ( void * <i>ptr</i> )</li> <li><div class="fn"/>bool <b><a href="qmallocpool.html#isValid">isValid</a></b> () const</li> <li><div class="fn"/>void * <b><a href="qmallocpool.html#malloc">malloc</a></b> ( size_t <i>size</i> )</li> <li><div class="fn"/>MemoryStats <b><a href="qmallocpool.html#memoryStatistics">memoryStatistics</a></b> () const</li> <li><div class="fn"/>void * <b><a href="qmallocpool.html#realloc">realloc</a></b> ( void * <i>ptr</i>, size_t <i>size</i> )</li> <li><div class="fn"/>size_t <b><a href="qmallocpool.html#size_of">size_of</a></b> ( void * <i>mem</i> )</li> </ul> <a name="details"></a> <hr /> <h2>Detailed Description</h2> <p>The QMallocPool class allows management of allocations within a designated memory region.</p> <p>QMallocPool provides heap management capabilities into a fixed region of memory. Primarily this is useful for managing allocations in a shared memory region, but could be used in other scenarios.</p> <p>The QMallocPool class provides equivalents for most standard memory management functions, such as <tt>malloc</tt>, <tt>calloc</tt>, <tt>realloc</tt> and <tt>free</tt>. However, unlike these standard functions which acquire their memory from the system kernel, QMallocPool operators on a region of memory provided to it during construction.</p> <p>QMallocPool is based on dlmalloc, a public domain malloc implementation written by Doug Lea. dlmalloc is used as the default allocator in many projects, including several versions of Linux libc.</p> <p>QMallocPool is not thread safe.</p> <hr /> <h2>Member Type Documentation</h2> <h3 class="fn"><a name="PoolType-enum"></a>enum QMallocPool::PoolType</h3> <p>Controls the type of pool to be created. In order to manage memory, a small amount of book keeping information is maintained. While this information is not required for reading from the managed pool, it is required for allocations. The PoolType controls where this bookkeeping data is stored.</p> <p><table border="1" cellpadding="2" cellspacing="1" width="100%"> <tr><th width="25%">Constant</th><th width="15%">Value</th><th width="60%">Description</th></tr> <tr><td valign="top"><tt>QMallocPool::Owned</tt></td><td align="center" valign="top"><tt>0</tt></td><td valign="top">The bookkeeping data is maintained in the <a href="qmallocpool.html">QMallocPool</a> instance. Allocation to the pool is only possible via this instance.</td></tr> <tr><td valign="top"><tt>QMallocPool::NewShared</tt></td><td align="center" valign="top"><tt>1</tt></td><td valign="top">The bookkeeping data is maintained in the managed region itself. This allows multiple <a href="qmallocpool.html">QMallocPool</a> instances, possibly in separate processes, to allocate from the pool.</td></tr> </table></p> <p>The NewShared PoolType also initializes this bookkeeping data to its default state. Thus, while the bookkeeping data is shared, only one of the sharing instances should use a NewShared type. All other instances should use the Shared pool type.</p> <p>The malloc pool bookkeeping data contains absolute pointers. As such, if multiple processes intend to allocate into the malloc pool, is is essential that they map the memory region to the same virtual address location.</p> <p><table border="1" cellpadding="2" cellspacing="1" width="100%"> <tr><th width="25%">Constant</th><th width="15%">Value</th><th width="60%">Description</th></tr> <tr><td valign="top"><tt>QMallocPool::Shared</tt></td><td align="center" valign="top"><tt>2</tt></td><td valign="top">The bookkeeping data is stored in the managed region, and has previously been initialized by another <a href="qmallocpool.html">QMallocPool</a> instance constructed using the NewShared pool type.</td></tr> </table></p> <p>The malloc pool bookkeeping data contains absolute pointers. As such, if multiple processes intend to allocate into the malloc pool, is is essential that they map the memory region to the same virtual address location.</p> <hr /> <h2>Member Function Documentation</h2> <h3 class="fn"><a name="QMallocPool"></a>QMallocPool::QMallocPool ()</h3> <p>Creates an invalid <a href="qmallocpool.html">QMallocPool</a>.</p> <h3 class="fn"><a name="QMallocPool-2"></a>QMallocPool::QMallocPool ( void * <i>poolBase</i>, unsigned int <i>poolLength</i>, <a href="qmallocpool.html#PoolType-enum">PoolType</a> <i>type</i> = Owned, const <a href="qstring.html">QString</a> &amp; <i>name</i> = QString() )</h3> <p>Creates a <a href="qmallocpool.html">QMallocPool</a> on the memory region <i>poolBase</i> of length <i>poolLength</i>. The pool will be constructed with the passed <i>type</i> and <i>name</i>. The <i>name</i> is used for diagnostics purposes only.</p> <h3 class="fn"><a name="dtor.QMallocPool"></a>QMallocPool::~QMallocPool ()</h3> <p>Destroys the malloc pool.</p> <h3 class="fn"><a name="calloc"></a>void * QMallocPool::calloc ( size_t <i>nmemb</i>, size_t <i>size</i> )</h3> <p>Allocates memory for an array of <i>nmemb</i> elements of <i>size</i> each and returns a pointer to the allocated memory. The memory is set to zero. Returns 0 if the memory could not be allocated.</p> <h3 class="fn"><a name="dumpStats"></a>void QMallocPool::dumpStats () const</h3> <p>Outputs statistical information regarding the state of the malloc pool using <a href="qtopiadesktop/qlog-h.html#qLog">qLog</a>().</p> <h3 class="fn"><a name="free"></a>void QMallocPool::free ( void * <i>ptr</i> )</h3> <p>Frees the memory space pointed to by <i>ptr</i>, which must have been returned by a previous call to <a href="qmallocpool.html#malloc">malloc</a>(), <a href="qmallocpool.html#calloc">calloc</a>() or <a href="qmallocpool.html#realloc">realloc</a>(). Otherwise, or if <tt>free(ptr)</tt> has already been called before, undefined behaviour occurs. If <i>ptr</i> is 0, no operation is performed.</p> <h3 class="fn"><a name="isValid"></a>bool QMallocPool::isValid () const</h3> <p>Returns true if this is a valid malloc pool. Invalid malloc pools cannot be allocated from.</p> <h3 class="fn"><a name="malloc"></a>void * QMallocPool::malloc ( size_t <i>size</i> )</h3> <p>Allocates <i>size</i> bytes and returns a pointer to the allocated memory. The memory is not cleared. Returns 0 if the memory could not be allocated.</p> <h3 class="fn"><a name="memoryStatistics"></a><a href="qmallocpool-memorystats.html">MemoryStats</a> QMallocPool::memoryStatistics () const</h3> <p>Returns a <a href="qmallocpool-memorystats.html">MemoryStats</a> structure containing information about the memory use of this pool.</p> <h3 class="fn"><a name="realloc"></a>void * QMallocPool::realloc ( void * <i>ptr</i>, size_t <i>size</i> )</h3> <p>Changes the size of the memory block pointed to by <i>ptr</i> to <i>size</i> bytes. The contents will be unchanged to the minimum of the old and new sizes; newly allocated memory will be uninitialized. If <i>ptr</i> is 0, the call is equivalent to malloc(size); if size is equal to zero, the call is equivalent to free(ptr). Unless ptr is 0, it must have been returned by an earlier call to <a href="qmallocpool.html#malloc">malloc</a>(), <a href="qmallocpool.html#calloc">calloc</a>() or realloc(). If the area pointed to was moved, a free(ptr) is done.</p> <h3 class="fn"><a name="size_of"></a>size_t QMallocPool::size_of ( void * <i>mem</i> )</h3> <p>Returns the allocated size of <i>mem</i>, assuming <i>mem</i> was previously returned by <a href="qmallocpool.html#malloc">malloc</a>(), <a href="qmallocpool.html#calloc">calloc</a>() or <a href="qmallocpool.html#realloc">realloc</a>().</p> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td align="left">Copyright &copy; 2009 Trolltech</td> <td align="center"><a href="trademarks.html">Trademarks</a></td> <td align="right"><div align="right">Qt Extended 4.4.3</div></td> </tr></table></div></address></body> </html>
third_party/lcm/lcm-java/jchart2d-code/src/info/monitorenter/gui/chart/controls/errorbarwizard/package.html
cheshirekow/codebase
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <!-- File : $Source: /cvsroot/jchart2d/jchart2d/src/info/monitorenter/gui/chart/controls/errorbarwizard/package.html,v $ Date : $Date: 2010/06/01 21:34:28 $ Version: $Revision: 1.2 $ This library is part of jchart2d - the Open Source real time charting library. Copyright (c) 2007 - 2010 Achim Westermann This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --> </head> <body bgcolor="white"> GUI of the error bar wizard of jchart2d.<p> This package contains the error bar wizard of jjchart2d. <p> Don't look here for reusable classes or advice how to use jchart2d. This UI accesses the error bar API in package info.monitorenter.gui.chart.errorbars. <p> <!-- Put @see and @since tags down here. --> @version $Revision: 1.2 $ @since 2.1.0 </body> </html>
web/resources/scripts/ext/docs/source/JsonWriter.html
sguazt/dcsj-sharegrid-portal
<html> <head> <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> </head> <body onload="prettyPrint();"> <pre class="prettyprint lang-js"><div id="cls-Ext.data.JsonWriter"></div>/** * @class Ext.data.JsonWriter * @extends Ext.data.DataWriter * DataWriter extension for writing an array or single {@link Ext.data.Record} object(s) in preparation for executing a remote CRUD action. */ Ext.data.JsonWriter = function(config) { Ext.data.JsonWriter.superclass.constructor.call(this, config); // careful to respect "returnJson", renamed to "encode" // TODO: remove after v3 final release if (this.returnJson != undefined) { this.encode = this.returnJson; } } Ext.extend(Ext.data.JsonWriter, Ext.data.DataWriter, { <div id="cfg-Ext.data.JsonWriter-returnJson"></div>/** * @cfg {Boolean} returnJson <b>Deprecated. Use {@link Ext.data.JsonWriter#encode} instead. */ returnJson : undefined, <div id="cfg-Ext.data.JsonWriter-encode"></div>/** * @cfg {Boolean} encode <tt>true</tt> to {@link Ext.util.JSON#encode encode} the * {@link Ext.data.DataWriter#toHash hashed data}. Defaults to <tt>true</tt>. When using * {@link Ext.data.DirectProxy}, set this to <tt>false</tt> since Ext.Direct.JsonProvider will perform * its own json-encoding. In addition, if you're using {@link Ext.data.HttpProxy}, setting to <tt>false</tt> * will cause HttpProxy to transmit data using the <b>jsonData</b> configuration-params of {@link Ext.Ajax#request} * instead of <b>params</b>. When using a {@link Ext.data.Store#restful} Store, some serverside frameworks are * tuned to expect data through the jsonData mechanism. In those cases, one will want to set <b>encode: <tt>false</tt></b> */ encode : true, <div id="method-Ext.data.JsonWriter-render"></div>/** * Final action of a write event. Apply the written data-object to params. * @param {String} action [Ext.data.Api.actions.create|read|update|destroy] * @param {Record[]} rs * @param {Object} http params * @param {Object} data object populated according to DataReader meta-data "root" and "idProperty" */ render : function(action, rs, params, data) { Ext.apply(params, data); if (this.encode === true) { // <-- @deprecated returnJson if (Ext.isArray(rs) && data[this.meta.idProperty]) { params[this.meta.idProperty] = Ext.encode(params[this.meta.idProperty]); } params[this.meta.root] = Ext.encode(params[this.meta.root]); } }, <div id="method-Ext.data.JsonWriter-createRecord"></div>/** * createRecord * @protected * @param {Ext.data.Record} rec */ createRecord : function(rec) { var data = this.toHash(rec); delete data[this.meta.idProperty]; return data; }, <div id="method-Ext.data.JsonWriter-updateRecord"></div>/** * updateRecord * @protected * @param {Ext.data.Record} rec */ updateRecord : function(rec) { return this.toHash(rec); }, <div id="method-Ext.data.JsonWriter-destroyRecord"></div>/** * destroyRecord * @protected * @param {Ext.data.Record} rec */ destroyRecord : function(rec) { return rec.id; } });</pre> </body> </html>
layout/reftests/columns/column-balancing-overflow-004.ref.html
tmhorne/celtx
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> <title>Balancing Overflow</title> <style type="text/css"> .colset { display: table; border-collapse: separate; border-spacing: 2px; width: 204px; } p { background: orange; display: table-cell; height: 17px} </style> <div class="colset"> <p></p> <p></p> <p></p> </div>
tests/wpt/web-platform-tests/css/css-text-decor/text-underline-offset-valid.html
paulrouget/servo
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Text Decoration Test: parsing text-underline-offset with valid values</title> <link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#underline-offset"> <meta name="assert" content="text-underline-offset supports the following values: auto | from-font| <length>"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/parsing-testcommon.js"></script> </head> <body> <script> test_valid_value("text-underline-offset", "auto"); test_valid_value("text-underline-offset", "from-font"); test_valid_value("text-underline-offset", "-10px"); test_valid_value("text-underline-offset", "2001em"); test_valid_value("text-underline-offset", "-49em"); test_valid_value("text-underline-offset", "53px"); test_valid_value("text-underline-offset", "calc(40em - 10px)"); test_valid_value("text-underline-offset", "calc(-13em + 50px)"); </script> </body> </html>
tests/wpt/web-platform-tests/referrer-policy/gen/top.meta/unset/iframe-tag/cross-https.keep-origin.http.html
saneyuki/servo
<!DOCTYPE html> <!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using common/security-features/tools/template/test.release.html.template. --> <html> <head> <title>Referrer-Policy: Referrer Policy is not explicitly defined</title> <meta charset='utf-8'> <meta name="description" content="Check that referrer URL follows no-referrer-when-downgrade policy when no explicit Referrer Policy is set."> <link rel="author" title="Kristijan Burnik" href="burnik@chromium.org"> <link rel="help" href="https://w3c.github.io/webappsec-referrer-policy/#referrer-policies"> <meta name="assert" content="Referrer Policy: Expects stripped-referrer for iframe-tag to cross-https origin and keep-origin redirection from http context."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/common/security-features/resources/common.sub.js"></script> <script src="/referrer-policy/generic/test-case.sub.js"></script> </head> <body> <script> TestCase( { "expectation": "stripped-referrer", "origin": "cross-https", "redirection": "keep-origin", "source_context_list": [], "source_scheme": "http", "subresource": "iframe-tag", "subresource_policy_deliveries": [] }, document.querySelector("meta[name=assert]").content, new SanityChecker() ).start(); </script> <div id="log"></div> </body> </html>
WYnews/WYnews/Tools/HTML/style.css
WYMYD/WYNews
<style> @charset "utf-8"; /* 防止用户自定义背景颜色对网页的影响,添加让用户可以自定义字体 */ html { color: #444333; background: #fbfbfb; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-rendering: optimizelegibility; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; } /* 内外边距通常让各个浏览器样式的表现位置不同 */ html,body, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { margin: 0; padding: 0; } a{ color:#90826B; } /* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } /* HTML5 媒体文件跟 img 保持一致 */ audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; } /* 要注意表单元素并不继承父级 font 的问题 */ body, button, input, select, textarea { /* font:500 0.875em/1.8 "Helvetica Neue", Ubuntu, "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;*/ } /* 去除 IE6 input/button 多余的空白 */ button, input { *width: auto; *overflow: visible; /* 让 input 和 button 一样高 */ line-height:22px; } /* 去掉各Table cell 的边距并让其边重合 */ table { border-collapse: collapse; border-spacing: 0; } /* IE bug fixed: th 不继承 text-align*/ th { text-align: inherit; } /* 去除默认边框 */ fieldset, img { border: 0; } /* 块/段落引用 */ blockquote { font-family:Optima, Georgia, STSong, serif; margin: 1em 0; color:#999; padding: 0.6em 0em; border-left:4px solid #90826B; padding:0 0 0 10px; } .recommend{ font-family:Optima, Georgia, STSong, serif; margin: 1em 0; color:#90826B; } blockquote blockquote { padding: 0 0 0 1em; margin-left: 2em; } blockquote p { margin-bottom: 0; color:#90826B; } blockquote span{ font-size:28px; } /* Firefox 以外,元素没有下划线,需添加 */ acronym, abbr { border-bottom: 1px dotted; font-variant: normal; } /* 添加鼠标问号,进一步确保应用的语义是正确的(要知道,交互他们也有洁癖,如果你不去掉,那得多花点口舌) */ abbr { cursor: help; } /* 一致的 del 样式 */ del { text-decoration: line-through; } address, caption, cite, code, dfn, em, th, var { font-style: normal; font-weight: 400; } /* 去掉列表前的标识, li 会继承,大部分网站通常用列表来很多内容,所以应该当去 */ ul, ol { list-style: none; } /* 对齐是排版最重要的因素, 别让什么都居中 */ caption, th { text-align: left; } q:before, q:after { content: ''; } /* 统一上标和下标 */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: text-top\9; } sup { top: -0.5em; } sub { bottom: -0.25em; } /* 让链接在 hover 状态下显示下划线 */ a:hover { text-decoration: underline; } /* 默认不显示下划线,保持页面简洁 */ ins, a { text-decoration: none; } /* 专名号:虽然 u 已经重回 html5 Draft,但在所有浏览器中都是可以使用的, * 要做到更好,向后兼容的话,添加 class="typo-u" 来显示专名号 * 关于 <u> 标签:http://www.whatwg.org/specs/web-apps/current-work/multipage/text-level-semantics.html#the-u-element * 被放弃的是 4,之前一直搞错 http://www.w3.org/TR/html401/appendix/changes.html#idx-deprecated * 一篇关于 <u> 标签的很好文章:http://html5doctor.com/u-element/ */ u, .typo-u { text-decoration: underline; } /* 标记,类似于手写的荧光笔的作用 */ mark { background: #fffdd1; } /* 代码片断 */ pre, code { font-family: "Courier New", Courier, monospace; white-space: pre-wrap; word-wrap: break-word; } pre { border:1px solid #ddd; padding: 1em 1.5em; } /* 一致化 horizonal rule */ hr{ border:none; border-bottom:1px solid #cfcfcf; margin-bottom:10px; *color:pink;*filter:chroma(color=pink); height:10px; *margin:-7px 0 2px; } /* 底部印刷体、版本等标记 */ small, .typo-small, /* 图片说明 */ figcaption { font-size: 0.9em; color: #888; } /* 可拖动文件添加拖动手势 */ [draggable] { cursor: move; } .clearfix:before, .clearfix:after { content: ""; display: table; } .clearfix:after { clear: both } .clearfix { zoom: 1 } /* 强制文本换行 */ .textwrap, .textwrap td, .textwrap th{ word-wrap:break-word; word-break:break-all; } .textwrap-table{ table-layout:fixed; } /* 提供 serif 版本的字体设置 */ .serif{font-family:Palatino, Optima, STSong, Georgia, serif;} /* 保证块/段落之间的空白隔行 */ .typo p, .typo pre, .typo ul, .typo ol, .typo dl, .typo form, .typo hr, .typo table, .typo-p, .typo-pre, .typo-ul, .typo-ol, .typo-dl, .typo-form, .typo-hr, .typo-table { margin: 0 0 5px 0; font-size: %dpx; line-height: 28px; -webkit-text-size-adjust:%point; word-break: break-all; } h1, h2, h3, h4, h5, h6{ font-weight: bold; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; color:#333; } /* 标题应该更贴紧内容,并与其他块区分,margin 值要相应做优化 */ .typo h1, .typo h2, .typo h3, .typo h4, .typo h5, .typo h6, .typo-h1, .typo-h2, .typo-h3, .typo-h4, .typo-h5, .typo-h6 { margin-bottom: 0.4em; line-height: 1.5; } .typo h1, .typo-h1 { font-size: %dpx; -webkit-text-size-adjust:%point; line-height: 30px; } .typo h2, .typo-h2 { font-size: 1.6em; } .typo span img { width: 27px; height: 27px; background: #fff; padding:0 0 6px 0; vertical-align: middle; } .typo h3, .typo-h3 { font-size: 1.4em; } .typo h4, .typo-h4 { font-size: 1.2em; } .typo h5, .typo h6, .typo-h5, .typo-h6 { font-size: 1em; } /* 在文章中,应该还原 ul 和 ol 的样式 */ .typo ul, .typo-ul { margin-left: 1.3em; list-style: disc; } .typo ol, .typo-ol { list-style: decimal; margin-left: 1.9em; } .typo li ul, .typo li ol, .typo-ul ul, .typo-ul ol, .typo-ol ul, .typo-ol ol { margin-top: 0; margin-bottom: 0; margin-left: 2em; } .typo li ul, .typo-ul ul, .typo-ol ul { list-style: circle; } /* 同 ul/ol,在文章中应用 table 基本格式 */ .typo table th, .typo table td, .typo-table th, .typo-table td .typo table caption{ border: 1px solid #ddd; padding: 0.5em 1em; color:#666; } .typo table th, .typo-table th { background: #fbfbfb; } .typo table thead th, .typo-table thead th { background: #f1f1f1; } .typo table caption { border-bottom:none; } /* 去除 webkit 中 input 和 textarea 的默认样式 */ .typo-input, .typo-textarea{ -webkit-appearance:none; border-radius:0; } /* 高亮选中 */ ::-moz-selection { background:#08c; color:#fff; } ::selection { background:#08c; color:#fff; } /* TODO: 供着重号使用 */ .typo-em, .typo em, legend, caption {font-weight: 700;} body{ padding: 30px 15px; } .container img { width: 100%; padding-top: 2%; height: auto; } .container h1, h2, h3, h4, h5, h6{ font-weight: bold; } .container .author{ color:rgba(165,165,165,1); } .container .author span{ text-align: left; color:rgba(165,165,165,1); font-size:13px; } .container .date_time { font-size: 12px; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; } .container .typo p{ font-size: 2em; line-height: 1.8em; margin-top: 0px; margin-bottom: 20px; text-align: justify; text-indent:2em; } .container pre{ word-wrap:break-word; overflow:hidden; text-align: justify; word-break:normal; text-justify: inter-ideograph; } .typo p{ word-wrap:break-word; overflow:hidden; text-align: justify; word-break:normal; text-justify: inter-ideograph; } .blue{ color: #17c; } a.liangpin{ display:inline-block; background:#8DC84B; color:#ffffff; padding:0 12px; border-radius:18px; text-align:center; line-height:30px; margin-bottom:5px; } a.liangpin:hover{ text-decoration:none; background:#80BA3F; } *{ /*-webkit-user-select: none;*/ } html.dark{ background: #333333; color: #a1a0a0; } .dark h1{ color:#ddd; } .dark .container .author span{ color:#979797; } .dark blockquote p{ color:#90826B; } .dark p{ background: #333; border: #666; color: #979797; } .dark pre{ background:#333; border:1px solid #666; word-wrap:break-word; overflow:hidden; text-align: justify; word-break:normal; text-justify: inter-ideograph;® } html{overfow-y:hidden;} </style>
dashboard/src/main/resources/webapp/wizards/add-application/wizard-step-2.html
MicheleGuerriero/SeaCloudsPlatform
<!-- ~ Copyright 2014 SeaClouds ~ Contact: SeaClouds ~ ~ 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. --> <!-- Single button --> <span><h2> <small>Please define the topology of <strong>{{applicationWizardData.name}}</strong></small> </h2></span> <topology-editor bind="applicationWizardData.topology"></topology-editor>
source/api/apidocs-4.6/domain_admin/deleteNetworkACLList.html
pdion891/cloudstack-www
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../includes/main.css" type="text/css"> <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"> <title>Apache CloudStack | The Power Behind Your Cloud</title> </head> <body> <div id="insidetopbg"> <div id="inside_wrapper"> <div class="uppermenu_panel"> <div class="uppermenu_box"></div> </div> <div id="main_master"> <div id="inside_header"> <div class="header_top"> <a class="cloud_logo" href="http://cloudstack.org"></a> <div class="mainemenu_panel"></div> </div> </div> <div id="main_content"> <div class="inside_apileftpanel"> <div class="inside_contentpanel" style="width:930px;"> <div class="api_titlebox"> <div class="api_titlebox_left"> <span> Apache CloudStack v4.6.0 Domain Admin API Reference </span> <p></p> <h1>deleteNetworkACLList</h1> <p>Deletes a network ACL</p> </div> <div class="api_titlebox_right"> <a class="api_backbutton" href="../TOC_Domain_Admin.html"></a> </div> </div> <div class="api_tablepanel"> <h2>Request parameters</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td> </tr> <tr> <td style="width:200px;"><strong>id</strong></td><td style="width:500px;"><strong>the ID of the network ACL</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> </table> </div> <div class="api_tablepanel"> <h2>Response Tags</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td> </tr> <tr> <td style="width:200px;"><strong>displaytext</strong></td><td style="width:500px;">any text associated with the success or failure</td> </tr> <tr> <td style="width:200px;"><strong>success</strong></td><td style="width:500px;">true if operation is executed successfully</td> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> <div id="footer_mainmaster"> <p>Copyright &copy; 2015 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a> <br> Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p> </div> </div> </div> </div> </body> </html>
docs/_includes/ad.html
BoLaMN/actionhero
<section id="ad" class="thin-content-section text-center"> <div class="ad-section"> <div class="container"> <!-- <p class="tiny-ad-font">Please help support actionhero</p> --> <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?zoneid=1673&serve=C6AILKT&placement=actionherojscom" id="_carbonads_js"></script> </div> </div> </section>
source/api/apidocs-4.6/domain_admin/deleteTemplate.html
terbolous/cloudstack-www
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../includes/main.css" type="text/css"> <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"> <title>Apache CloudStack | The Power Behind Your Cloud</title> </head> <body> <div id="insidetopbg"> <div id="inside_wrapper"> <div class="uppermenu_panel"> <div class="uppermenu_box"></div> </div> <div id="main_master"> <div id="inside_header"> <div class="header_top"> <a class="cloud_logo" href="http://cloudstack.org"></a> <div class="mainemenu_panel"></div> </div> </div> <div id="main_content"> <div class="inside_apileftpanel"> <div class="inside_contentpanel" style="width:930px;"> <div class="api_titlebox"> <div class="api_titlebox_left"> <span> Apache CloudStack v4.6.0 Domain Admin API Reference </span> <p></p> <h1>deleteTemplate</h1> <p>Deletes a template from the system. All virtual machines using the deleted template will not be affected.</p> </div> <div class="api_titlebox_right"> <a class="api_backbutton" href="../TOC_Domain_Admin.html"></a> </div> </div> <div class="api_tablepanel"> <h2>Request parameters</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td> </tr> <tr> <td style="width:200px;"><strong>id</strong></td><td style="width:500px;"><strong>the ID of the template</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> <tr> <td style="width:200px;"><i>zoneid</i></td><td style="width:500px;"><i>the ID of zone of the template</i></td><td style="width:180px;"><i>false</i></td> </tr> </table> </div> <div class="api_tablepanel"> <h2>Response Tags</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td> </tr> <tr> <td style="width:200px;"><strong>displaytext</strong></td><td style="width:500px;">any text associated with the success or failure</td> </tr> <tr> <td style="width:200px;"><strong>success</strong></td><td style="width:500px;">true if operation is executed successfully</td> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> <div id="footer_mainmaster"> <p>Copyright &copy; 2015 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a> <br> Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p> </div> </div> </div> </div> </body> </html>
core/standards/wf1/interactive/form-owner-031.html
frivoal/presto-testo
<!DOCTYPE html> <title>form Overriding form-association on element</title> <p>Type "foobar" in the text input below. Press "Enter". You should be presented a web page saying "You typed: [foobar]".</p> <form id="f1" action="../res/fail.php"> <p><input id="i1" type="text" form="f2" name="test"/></p> </form> <form id="f2" action="../res/return_single_post.php" method="post"> </form>
content/test/data/android/auto_downloads_permissions.html
nwjs/chromium.src
<html> This page triggers two file downloads. <script> var count = 0; function triggerDownload() { var a = document.createElement('a'); a.download = "test-image" + count + ".png"; count++; a.href = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAABC0lEQVQYlTXPPUsCYQDA8b/e04tdQR5ZBpE3NAR6S0SDVDZKDQ2BY9TUy1foE0TQ1Edo6hOEkyUG0QuBRtQgl0hnenVdnZD5eLbU7xv8Avy5X16KhrQBg47EtpziXO6qBhAEeNEm0qr7VdBcLxt2mlnNbhVu0NMAgdj1wvjOoX2xdSt0L7MGgx2GGid8yLrJvJMUkbKfOF8N68bUIqcz2wQR7GUcYvJIr1dFQijvkh89xGV6BPPMwvMF/nQXJMgWiM+KLPX2tc0HNa/HUxDv2owpx7xV+023Hiwpdt7yhmcjj9/NdrIhn8LrPVmotctWVd01Nt27wH9T3YhHU5O+sT/6SuVZKa4cNGoAv/ZMas7pC/KaAAAAAElFTkSuQmCC"; a.click(); } triggerDownload(); triggerDownload(); </script> </html>
content/test/data/accessibility/html/area-with-aria-owns.html
scheib/chromium
<!-- An area must have an image maprent. It cannot own or be owned. --> <!DOCTYPE html> <html> <body> <img id="img" src="pipe.jpg" width="145" height="126" alt="pipe" usemap="#pipe"> <map name="pipe"> <area aria-owns="img" shape="rect" coords="0,0,145,50" alt="pipe1" href="fake.htm"> <area id="area2" shape="rect" coords="0,50,145,100" alt="pipe1" href="fake.htm"> </map> <p aria-owns="area2">Paragraph</p> </body> </html>
frappe/public/css/mobile.css
reachalpineswift/frappe-bench
html { min-height: 100%; } body { height: 100%; /* The html and body elements cannot have any padding or margin. */ margin: 0px; padding: 0px !important; } html, body { overflow-x: hidden; /* Prevent scroll on narrow devices */ } .offcanvas-main-section-overlay { display: none; cursor: pointer; opacity: 0.5; } .sidebar-padding { padding: 12px 14px; } .offcanvas .sidebar .sidebar-menu > li > a, .offcanvas .sidebar .dropdown-menu > li > a { padding: 12px 14px; display: block; whitespace: nowrap; transition: 0.2s; text-decoration: none !important; } .offcanvas .sidebar .dropdown-menu { padding: 0px; font-size: inherit; } .offcanvas .sidebar .dropdown-menu > li > a { padding-left: 28px; } .offcanvas .sidebar .divider { height: 1px; overflow: hidden; background-color: #ebeff2; width: 100%; margin: 0px; } .offcanvas .sidebar .badge { right: 15px !important; top: 11px !important; } .offcanvas .sidebar .sidebar-menu > li > a:hover, .offcanvas .sidebar .dropdown-menu > li > a:hover, .offcanvas .sidebar .sidebar-menu > li > a:focus, .offcanvas .sidebar .dropdown-menu > li > a:focus, .offcanvas .sidebar .sidebar-menu > li > a:active, .offcanvas .sidebar .dropdown-menu > li > a:active { background-color: #f0f4f7; } @media (max-width: 991px) { input[type='checkbox'] { -webkit-appearance: none; width: 12px; height: 12px; background: white; border-radius: 6px; border: 1px solid #d1d8dd; display: inline-block; } input[type='checkbox']:checked { background: #3b99fc; border-color: #3b99fc; } input.list-select-all { margin-top: 0px; } .input-area input[type='checkbox'] { margin-top: 2px; margin-left: -23px; } .intro-area, .footnote-area { padding: 15px; } .grid-row-open { top: 0; } .layout-main { position: relative; } body[data-route^="Form"] .page-title h1 { margin-top: 14px; } body[data-route^="Form"] .page-title .indicator { display: block; margin-top: -9px; margin-bottom: 3px; } body[data-route^="Form"] .page-actions { padding-top: 10px !important; padding-bottom: 0px !important; padding-left: 0px !important; } body[data-route^="Form"] .page-head .sub-heading { display: block; position: absolute; bottom: -30px; right: 5px; min-width: 200px; } .control-label, .grid-heading-row .grid-static-col { font-weight: 200; } .toggle-navbar-new-comments { padding: 8px 0px !important; } .navbar > .container > .navbar-header { float: left; width: 80%; } .navbar > .container > .navbar-right { float: right; } .module-item { padding: 7px 0px !important; } .module-item h4 { font-weight: 200; } #navbar-breadcrumbs { margin: 0px; display: inline-block; } #navbar-breadcrumbs > li, #navbar-breadcrumbs > li > a { display: inline-block; vertical-align: middle; } #navbar-breadcrumbs > li > a:before { content: "\f104"; margin-right: 10px; color: #6c7680; } #navbar-breadcrumbs li:not(:nth-last-child(-n+1)) { display: none; } .navbar-nav { margin: 0px; } .offcanvas { transition: 0.25s; } .offcanvas-main-section-overlay { bottom: 0; position: fixed; } .offcanvas-container, .offcanvas, .offcanvas-main-section { position: absolute; left: 0; right: 0; top: 0; bottom: 0; } .offcanvas.active-left, .offcanvas.active-right { position: fixed; } .offcanvas.active-left .offcanvas-main-section-overlay, .offcanvas.active-right .offcanvas-main-section-overlay { z-index: 1031; display: block; bottom: 0; } .offcanvas.active-left { -webkit-transform: translate3d(75%, 0, 0); transform: translate3d(75%, 0, 0); } .offcanvas.active-right { -webkit-transform: translate3d(-75%, 0, 0); transform: translate3d(-75%, 0, 0); } .offcanvas .sidebar { position: fixed; top: 0; bottom: 0; width: 75%; /* 9 columns */ overflow-x: hidden; overflow-y: auto; font-size: 12px; } .offcanvas .sidebar-right { left: 100%; border-left: 1px solid #d1d8dd; } .offcanvas .sidebar-left { right: 100%; border-right: 1px solid #d1d8dd; } .offcanvas .sidebar-menu { margin-bottom: 0; } .sidebar .form-group { margin-bottom: 0px; } #sidebar-search { height: 27px; } .sidebar .navbar-search-icon { float: right; color: #6c7680; font-size: inherit; position: relative; right: 7px; top: -20px; height: 0; } .sidebar form { padding: 7px; } .sidebar .main-menu { position: absolute; left: 0; right: 0; top: 0; bottom: 41px; overflow-y: auto; } .sidebar .user-menu { padding: 9px 14px; background-color: #f5f7fa; position: absolute; left: 0; bottom: 0; right: 0; } .sidebar .user-menu, .sidebar .user-menu .octicon { color: #6c7680; } .sidebar .user-menu img { margin-top: -1px; } body[data-route^="Module"] .navbar-center { display: block !important; position: absolute; top: 10px; left: 25%; right: 25%; text-align: center; } body.no-breadcrumbs .navbar .navbar-home { display: inline-block !important; padding-left: 0px; margin-left: 0px; padding-top: 6px; } body.no-breadcrumbs .navbar .navbar-home:before { font-family: FontAwesome; font-weight: normal; font-style: normal; text-decoration: inherit; -webkit-font-smoothing: antialiased; *margin-right: .3em; display: inline-block; speak: none; font-size: 24px; transition: 0.2s; position: relative; top: 3px; content: "\f104"; margin-right: 10px; color: #6c7680; } body.no-breadcrumbs .navbar .navbar-home:hover:before, body.no-breadcrumbs .navbar .navbar-home:focus:before, body.no-breadcrumbs .navbar .navbar-home:active:before { color: #36414c !important; } body[data-route=""] .navbar .navbar-home, body[data-route="desktop"] .navbar .navbar-home { display: none !important; } .linked-with-dialog { width: 100% !important; } body, .btn, .indicator { font-weight: 200; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .like-disabled-input, .bold, .strong, strong, b { font-weight: 400; } } @media (max-width: 767px) { .modal .modal-dialog { margin: 0px; padding: 0px; width: 100%; height: 100%; position: fixed; top: 0px; bottom: 0px; left: 0px; right: 0px; overflow-y: auto; background-color: #fff; } .modal .modal-content { border-radius: 0px; border: none; box-shadow: none; height: 100%; } .modal .modal-body .form-layout { margin: -15px; } .modal .file-upload .input-upload { width: 100%; text-align: center; } .modal .file-upload .input-upload .btn-browse { width: 100%; } .modal .file-upload .web-link-wrapper { display: block; width: 100% !important; text-align: center; } .modal .file-upload .web-link-wrapper .file-upload-or { display: block; margin: 15px 24px; } .modal .file-upload .web-link-wrapper .input-link { width: 100% !important; } .layout-main-section-wrapper { padding: 0px; } .layout-main-section { border-left-color: transparent !important; border-right-color: transparent !important; } .timeline { border-left: none !important; border-right: none !important; } .timeline .timeline-head { padding: 7px 15px; } .timeline .timeline-item { padding: 15px; border-bottom: 1px dashed #d1d8dd; } .timeline .timeline-item:last-child { border-bottom: none; } .list-row { padding: 13px 15px !important; } .doclist-row { position: relative; padding-right: 10px; } .doclist-row .list-row-id { left: 18px; text-align: left; margin-top: 3px; } .doclist-row.has-checkbox .list-row-id { left: 40px; } .doclist-row .list-row-indicator { position: absolute; right: 0px; top: -20px; } .doclist-row .list-row-modified { margin-right: -10px; } .doclist-row .list-row-left { z-index: 1; } .doclist-row .list-row-right { float: right; } .doclist-row .list-row-right .list-row-indicator { top: 4px; } .doclist-row .list-row-right .list-row-indicator .indicator::before, .doclist-row .list-row-right .list-row-indicator .indicator::after { height: 12px; width: 12px; border-radius: 12px; } .doclist-row .list-row-right.no-right-column { position: absolute; top: 0; right: 10px; left: -10px; width: 100%; } body[data-route^="messages"] .navbar-center { display: block !important; position: absolute; top: 10px; left: 25%; right: 25%; text-align: center; } #page-messages .layout-side-section { position: relative; left: 0px; border-right: 1px solid #d1d8dd; padding-left: 0px; float: left; width: 76px; } #page-messages .layout-main-section-wrapper { position: absolute; left: 75px; right: 0px; border-left: 1px solid #d1d8dd; float: left; } #page-messages .module-sidebar-item { margin: 0px; } #page-messages .module-sidebar-item .messages-sidebar-link { padding: 15px; } #page-messages .timeline-head { padding: 15px 15px 7px; } #page-messages .list-row { padding: 7px 0px; } #page-messages .message-row-right { margin-top: 10px; text-align: left; } #page-setup-wizard .form-section:first-child .form-column:first-child .frappe-control:first-child { border-top: 1px solid #d1d8dd; } #page-setup-wizard .form-section:last-child .form-column:last-child .frappe-control:last-child { border-bottom: 1px solid #d1d8dd; } #page-setup-wizard .setup-wizard-slide .form { border: none; } body[data-route^="Form"] .page-title .indicator { margin-top: 1px; } }
templates/variant_details.html
Withington/phenopolis
{% if consequence == 'missense_variant' %} ({{ annotation.HGVS }})<br/> &nbsp; &nbsp; &nbsp; Polyphen: {% set polyphen = annotation.PolyPhen.split('(')[0] %} {% set pp_label = "bg-success" if polyphen == 'benign' else ("bg-warning" if polyphen == 'possibly_damaging' else "bg-danger") %} {% set sift = annotation.SIFT.split('(')[0] %} {% set sift_label = "bg-success" if sift == 'tolerated' else "bg-danger" %} <span class={{ pp_label }}>{{ polyphen }}</span>; SIFT: <span class={{ sift_label }}>{{ sift }}</span> {% elif annotation.LoF != '' %} ({{ annotation.HGVS }})<br/> &nbsp; &nbsp; &nbsp; LoF: {% if annotation.LoF == 'HC' %} <span class="bg-success">High-confidence</span> {% else %} <span class="bg-danger" data-tooltip="Filtered by LOFTEE (see FAQ)">Low-confidence ({{ annotation.LoF_filter }})</span> {% endif %} {% if annotation.LoF_flags != '' %} <br/>&nbsp; &nbsp; &nbsp; Flag: <span class="bg-warning" data-tooltip="Flagged by LOFTEE (see FAQ)">{{ annotation.LoF_flags }}</span> {% endif %} {% endif %}
ajax/libs/oojs-ui/0.26.1/oojs-ui-wikimediaui-icons-moderation.rtl.css
sashberd/cdnjs
/*! * OOUI v0.26.1 * https://www.mediawiki.org/wiki/OOUI * * Copyright 2011–2018 OOUI Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * * Date: 2018-03-23T23:42:37Z */ /** * WikimediaUI Base v0.10.0 * Wikimedia Foundation user interface base variables */ .oo-ui-icon-bookmarkOutline { background-image: url('themes/wikimediaui/images/icons/bookmarkOutline.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/bookmarkOutline.svg'); } .oo-ui-image-invert.oo-ui-icon-bookmarkOutline { background-image: url('themes/wikimediaui/images/icons/bookmarkOutline-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/bookmarkOutline-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-bookmarkOutline { background-image: url('themes/wikimediaui/images/icons/bookmarkOutline-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/bookmarkOutline-progressive.svg'); } .oo-ui-icon-bookmark { background-image: url('themes/wikimediaui/images/icons/bookmark.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/bookmark.svg'); } .oo-ui-image-invert.oo-ui-icon-bookmark { background-image: url('themes/wikimediaui/images/icons/bookmark-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/bookmark-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-bookmark { background-image: url('themes/wikimediaui/images/icons/bookmark-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/bookmark-progressive.svg'); } .oo-ui-icon-block { background-image: url('themes/wikimediaui/images/icons/block.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/block.svg'); } .oo-ui-image-destructive.oo-ui-icon-block { background-image: url('themes/wikimediaui/images/icons/block-destructive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/block-destructive.svg'); } .oo-ui-image-invert.oo-ui-icon-block { background-image: url('themes/wikimediaui/images/icons/block-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/block-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-block { background-image: url('themes/wikimediaui/images/icons/block-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/block-progressive.svg'); } .oo-ui-icon-unBlock { background-image: url('themes/wikimediaui/images/icons/unBlock.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unBlock.svg'); } .oo-ui-image-invert.oo-ui-icon-unBlock { background-image: url('themes/wikimediaui/images/icons/unBlock-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unBlock-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-unBlock { background-image: url('themes/wikimediaui/images/icons/unBlock-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unBlock-progressive.svg'); } .oo-ui-icon-clip { background-image: url('themes/wikimediaui/images/icons/bookmarkOutline.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/bookmarkOutline.svg'); } .oo-ui-image-invert.oo-ui-icon-clip { background-image: url('themes/wikimediaui/images/icons/bookmarkOutline-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/bookmarkOutline-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-clip { background-image: url('themes/wikimediaui/images/icons/bookmarkOutline-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/bookmarkOutline-progressive.svg'); } .oo-ui-icon-unClip { background-image: url('themes/wikimediaui/images/icons/bookmark.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/bookmark.svg'); } .oo-ui-image-invert.oo-ui-icon-unClip { background-image: url('themes/wikimediaui/images/icons/bookmark-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/bookmark-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-unClip { background-image: url('themes/wikimediaui/images/icons/bookmark-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/bookmark-progressive.svg'); } .oo-ui-icon-flag { background-image: url('themes/wikimediaui/images/icons/flag-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/flag-rtl.svg'); } .oo-ui-image-invert.oo-ui-icon-flag { background-image: url('themes/wikimediaui/images/icons/flag-rtl-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/flag-rtl-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-flag { background-image: url('themes/wikimediaui/images/icons/flag-rtl-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/flag-rtl-progressive.svg'); } .oo-ui-icon-unFlag { background-image: url('themes/wikimediaui/images/icons/unFlag-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unFlag-rtl.svg'); } .oo-ui-image-invert.oo-ui-icon-unFlag { background-image: url('themes/wikimediaui/images/icons/unFlag-rtl-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unFlag-rtl-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-unFlag { background-image: url('themes/wikimediaui/images/icons/unFlag-rtl-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unFlag-rtl-progressive.svg'); } .oo-ui-icon-lock { background-image: url('themes/wikimediaui/images/icons/lock.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/lock.svg'); } .oo-ui-image-destructive.oo-ui-icon-lock { background-image: url('themes/wikimediaui/images/icons/lock-destructive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/lock-destructive.svg'); } .oo-ui-image-invert.oo-ui-icon-lock { background-image: url('themes/wikimediaui/images/icons/lock-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/lock-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-lock { background-image: url('themes/wikimediaui/images/icons/lock-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/lock-progressive.svg'); } .oo-ui-icon-unLock { background-image: url('themes/wikimediaui/images/icons/unLock.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unLock.svg'); } .oo-ui-image-destructive.oo-ui-icon-unLock { background-image: url('themes/wikimediaui/images/icons/unLock-destructive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unLock-destructive.svg'); } .oo-ui-image-invert.oo-ui-icon-unLock { background-image: url('themes/wikimediaui/images/icons/unLock-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unLock-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-unLock { background-image: url('themes/wikimediaui/images/icons/unLock-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unLock-progressive.svg'); } .oo-ui-icon-star { background-image: url('themes/wikimediaui/images/icons/star.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/star.svg'); } .oo-ui-image-invert.oo-ui-icon-star { background-image: url('themes/wikimediaui/images/icons/star-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/star-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-star { background-image: url('themes/wikimediaui/images/icons/star-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/star-progressive.svg'); } .oo-ui-icon-halfStar { background-image: url('themes/wikimediaui/images/icons/halfStar-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/halfStar-rtl.svg'); } .oo-ui-image-invert.oo-ui-icon-halfStar { background-image: url('themes/wikimediaui/images/icons/halfStar-rtl-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/halfStar-rtl-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-halfStar { background-image: url('themes/wikimediaui/images/icons/halfStar-rtl-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/halfStar-rtl-progressive.svg'); } .oo-ui-icon-unStar { background-image: url('themes/wikimediaui/images/icons/unStar.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unStar.svg'); } .oo-ui-image-invert.oo-ui-icon-unStar { background-image: url('themes/wikimediaui/images/icons/unStar-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unStar-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-unStar { background-image: url('themes/wikimediaui/images/icons/unStar-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unStar-progressive.svg'); } .oo-ui-icon-trash { background-image: url('themes/wikimediaui/images/icons/trash.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/trash.svg'); } .oo-ui-image-destructive.oo-ui-icon-trash { background-image: url('themes/wikimediaui/images/icons/trash-destructive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/trash-destructive.svg'); } .oo-ui-image-invert.oo-ui-icon-trash { background-image: url('themes/wikimediaui/images/icons/trash-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/trash-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-trash { background-image: url('themes/wikimediaui/images/icons/trash-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/trash-progressive.svg'); } .oo-ui-icon-unTrash { background-image: url('themes/wikimediaui/images/icons/unTrash.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unTrash.svg'); } .oo-ui-image-invert.oo-ui-icon-unTrash { background-image: url('themes/wikimediaui/images/icons/unTrash-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unTrash-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-unTrash { background-image: url('themes/wikimediaui/images/icons/unTrash-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/unTrash-progressive.svg'); } .oo-ui-icon-pushPin { background-image: url('themes/wikimediaui/images/icons/pushPin.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/pushPin.svg'); } .oo-ui-image-invert.oo-ui-icon-pushPin { background-image: url('themes/wikimediaui/images/icons/pushPin-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/pushPin-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-pushPin { background-image: url('themes/wikimediaui/images/icons/pushPin-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/pushPin-progressive.svg'); } .oo-ui-icon-ongoingConversation { background-image: url('themes/wikimediaui/images/icons/ongoingConversation-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/ongoingConversation-rtl.svg'); } .oo-ui-image-invert.oo-ui-icon-ongoingConversation { background-image: url('themes/wikimediaui/images/icons/ongoingConversation-rtl-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/ongoingConversation-rtl-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-ongoingConversation { background-image: url('themes/wikimediaui/images/icons/ongoingConversation-rtl-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/ongoingConversation-rtl-progressive.svg'); }
api_docs/DynaML/v1.5/dynaml-core/io/github/mandar2812/dynaml/models/statespace/LeafParameter$.html
transcendent-ai-labs/transcendent-ai-labs.github.io
<!DOCTYPE html > <html> <head> <title>LeafParameter - io.github.mandar2812.dynaml.models.statespace.LeafParameter</title> <meta name="description" content="LeafParameter - io.github.mandar2812.dynaml.models.statespace.LeafParameter" /> <meta name="keywords" content="LeafParameter io.github.mandar2812.dynaml.models.statespace.LeafParameter" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <link href="../../../../../../lib/template.css" media="screen" type="text/css" rel="stylesheet" /> <link href="../../../../../../lib/diagrams.css" media="screen" type="text/css" rel="stylesheet" id="diagrams-css" /> <script type="text/javascript" src="../../../../../../lib/jquery.js" id="jquery-js"></script> <script type="text/javascript" src="../../../../../../lib/jquery-ui.js"></script> <script type="text/javascript" src="../../../../../../lib/template.js"></script> <script type="text/javascript" src="../../../../../../lib/tools.tooltip.js"></script> <script type="text/javascript"> if(top === self) { var url = '../../../../../../index.html'; var hash = 'io.github.mandar2812.dynaml.models.statespace.LeafParameter$'; var anchor = window.location.hash; var anchor_opt = ''; if (anchor.length >= 1) anchor_opt = '@' + anchor.substring(1); window.location.href = url + '#' + hash + anchor_opt; } </script> </head> <body class="value"> <div id="definition"> <a href="LeafParameter.html" title="See companion class"><img alt="Object/Class" src="../../../../../../lib/object_to_class_big.png" /></a> <p id="owner"><a href="../../../../../package.html" class="extype" name="io">io</a>.<a href="../../../../package.html" class="extype" name="io.github">github</a>.<a href="../../../package.html" class="extype" name="io.github.mandar2812">mandar2812</a>.<a href="../../package.html" class="extype" name="io.github.mandar2812.dynaml">dynaml</a>.<a href="../package.html" class="extype" name="io.github.mandar2812.dynaml.models">models</a>.<a href="package.html" class="extype" name="io.github.mandar2812.dynaml.models.statespace">statespace</a></p> <h1><a href="LeafParameter.html" title="See companion class">LeafParameter</a></h1><h3><span class="morelinks"><div> Related Docs: <a href="LeafParameter.html" title="See companion class">class LeafParameter</a> | <a href="package.html" class="extype" name="io.github.mandar2812.dynaml.models.statespace">package statespace</a> </div></span></h3><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> </div> <h4 id="signature" class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">object</span> </span> <span class="symbol"> <span class="name">LeafParameter</span><span class="result"> extends <span class="extype" name="scala.Serializable">Serializable</span></span> </span> </h4> <div id="comment" class="fullcommenttop"><div class="toggleContainer block"> <span class="toggle">Linear Supertypes</span> <div class="superTypes hiddenContent"><span class="extype" name="scala.Serializable">Serializable</span>, <span class="extype" name="java.io.Serializable">Serializable</span>, <span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div> </div></div> <div id="mbrsel"> <div id="textfilter"><span class="pre"></span><span class="input"><input id="mbrsel-input" type="text" accesskey="/" /></span><span class="post"></span></div> <div id="order"> <span class="filtertype">Ordering</span> <ol> <li class="alpha in"><span>Alphabetic</span></li> <li class="inherit out"><span>By Inheritance</span></li> </ol> </div> <div id="ancestors"> <span class="filtertype">Inherited<br /> </span> <ol id="linearization"> <li class="in" name="io.github.mandar2812.dynaml.models.statespace.LeafParameter"><span>LeafParameter</span></li><li class="in" name="scala.Serializable"><span>Serializable</span></li><li class="in" name="java.io.Serializable"><span>Serializable</span></li><li class="in" name="scala.AnyRef"><span>AnyRef</span></li><li class="in" name="scala.Any"><span>Any</span></li> </ol> </div><div id="ancestors"> <span class="filtertype"></span> <ol> <li class="hideall out"><span>Hide All</span></li> <li class="showall in"><span>Show All</span></li> </ol> </div> <div id="visbl"> <span class="filtertype">Visibility</span> <ol><li class="public in"><span>Public</span></li><li class="all out"><span>All</span></li></ol> </div> </div> <div id="template"> <div id="allMembers"> <div id="values" class="values members"> <h3>Value Members</h3> <ol><li name="scala.AnyRef#!=" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="!=(x$1:Any):Boolean"></a> <a id="!=(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $bang$eq" class="name">!=</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@!=(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef###" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="##():Int"></a> <a id="##():Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $hash$hash" class="name">##</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@##():Int" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#==" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="==(x$1:Any):Boolean"></a> <a id="==(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $eq$eq" class="name">==</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@==(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="io.github.mandar2812.dynaml.models.statespace.LeafParameter#apply" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="apply():io.github.mandar2812.dynaml.models.statespace.LeafParameter"></a> <a id="apply():LeafParameter"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">apply</span><span class="params">()</span><span class="result">: <a href="LeafParameter.html" class="extype" name="io.github.mandar2812.dynaml.models.statespace.LeafParameter">LeafParameter</a></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@apply():io.github.mandar2812.dynaml.models.statespace.LeafParameter" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> </li><li name="scala.Any#asInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="asInstanceOf[T0]:T0"></a> <a id="asInstanceOf[T0]:T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">asInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Any.asInstanceOf.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@asInstanceOf[T0]:T0" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#clone" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="clone():Object"></a> <a id="clone():AnyRef"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">clone</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.AnyRef">AnyRef</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@clone():Object" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.CloneNotSupportedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#eq" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="eq(x$1:AnyRef):Boolean"></a> <a id="eq(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">eq</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@eq(x$1:AnyRef):Boolean" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#equals" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="equals(x$1:Any):Boolean"></a> <a id="equals(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">equals</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@equals(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#finalize" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="finalize():Unit"></a> <a id="finalize():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">finalize</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@finalize():Unit" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="symbol">classOf[java.lang.Throwable]</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#getClass" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="getClass():Class[_]"></a> <a id="getClass():Class[_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">getClass</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.Class">Class</span>[_]</span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@getClass():Class[_]" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#hashCode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="hashCode():Int"></a> <a id="hashCode():Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">hashCode</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@hashCode():Int" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.Any#isInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isInstanceOf[T0]:Boolean"></a> <a id="isInstanceOf[T0]:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@isInstanceOf[T0]:Boolean" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#ne" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ne(x$1:AnyRef):Boolean"></a> <a id="ne(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">ne</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@ne(x$1:AnyRef):Boolean" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notify" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notify():Unit"></a> <a id="notify():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notify</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@notify():Unit" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notifyAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notifyAll():Unit"></a> <a id="notifyAll():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notifyAll</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@notifyAll():Unit" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@synchronized[T0](x$1:=&gt;T0):T0" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#toString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toString():String"></a> <a id="toString():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">toString</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@toString():String" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait():Unit"></a> <a id="wait():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@wait():Unit" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long,x$2:Int):Unit"></a> <a id="wait(Long,Int):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>, <span name="arg1">arg1: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@wait(x$1:Long,x$2:Int):Unit" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long):Unit"></a> <a id="wait(Long):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../../index.html#io.github.mandar2812.dynaml.models.statespace.LeafParameter$@wait(x$1:Long):Unit" title="Permalink" target="_top"> <img src="../../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li></ol> </div> </div> <div id="inheritedMembers"> <div class="parent" name="scala.Serializable"> <h3>Inherited from <span class="extype" name="scala.Serializable">Serializable</span></h3> </div><div class="parent" name="java.io.Serializable"> <h3>Inherited from <span class="extype" name="java.io.Serializable">Serializable</span></h3> </div><div class="parent" name="scala.AnyRef"> <h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3> </div><div class="parent" name="scala.Any"> <h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3> </div> </div> <div id="groupedMembers"> <div class="group" name="Ungrouped"> <h3>Ungrouped</h3> </div> </div> </div> <div id="tooltip"></div> <div id="footer"> </div> </body> </html>
views/_map.html
madhurauti/Map-Polygon
{{try:}}{{=H2(title)}}{{except:}}{{pass}} <div id='rheader'> {{try:}} {{=XML(rheader)}} </div> <div id='component'> {{except:}} </div> <div> {{pass}} <div class='form-container'> {{try:}}{{=form}}{{except:}}{{pass}} </div> <div><br /></div> <div id='map'> {{try:}}{{=map}}{{except:}}{{pass}} </div> </div>
sites/all/libraries/fontawesome/src/3.2.1/icon/google-plus-sign/index.html
manojbisht891/travel
<!DOCTYPE html> <!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]--> <!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]--> <!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--> <html lang="en" xmlns="http://www.w3.org/1999/html"> <!--<![endif]--> <head> <!-- Basic Page Needs ================================================== --> <meta charset="utf-8" /> <title>icon-google-plus-sign: Font Awesome Icons</title> <meta name="description" content="Font Awesome, the iconic font designed for Bootstrap"> <meta name="author" content="Dave Gandy"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--<meta name="viewport" content="initial-scale=1; maximum-scale=1">--> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!-- CSS ================================================== --> <link rel="stylesheet" href="../../assets/css/site.css"> <link rel="stylesheet" href="../../assets/css/pygments.css"> <link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome.css"> <!--[if IE 7]> <link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome-ie7.css"> <![endif]--> <!-- Le fav and touch icons --> <link rel="shortcut icon" href="../../assets/ico/favicon.ico"> <script type="text/javascript" src="//use.typekit.net/wnc7ioh.js"></script> <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-30136587-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body data-spy="scroll" data-target=".navbar"> <div class="wrapper"> <!-- necessary for sticky footer. wrap all content except footer --> <div class="navbar navbar-inverse navbar-static-top hidden-print"> <div class="navbar-inner"> <div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <a class="brand" href="../../"><i class="icon-flag"></i> Font Awesome</a> <div class="nav-collapse collapse"> <ul class="nav"> <li class="hidden-tablet "><a href="../../">Home</a></li> <li><a href="../../get-started/">Get Started</a></li> <li class="dropdown-split-left"><a href="../../icons/">Icons</a></li> <li class="dropdown dropdown-split-right hidden-phone"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="icon-caret-down"></i> </a> <ul class="dropdown-menu pull-right"> <li><a href="../../icons/"><i class="icon-flag icon-fixed-width"></i>&nbsp; Icons</a></li> <li class="divider"></li> <li><a href="../../icons/#new"><i class="icon-shield icon-fixed-width"></i>&nbsp; New Icons in 3.2.1</a></li> <li><a href="../../icons/#web-application"><i class="icon-camera-retro icon-fixed-width"></i>&nbsp; Web Application Icons</a></li> <li><a href="../../icons/#currency"><i class="icon-won icon-fixed-width"></i>&nbsp; Currency Icons</a></li> <li><a href="../../icons/#text-editor"><i class="icon-file-text-alt icon-fixed-width"></i>&nbsp; Text Editor Icons</a></li> <li><a href="../../icons/#directional"><i class="icon-hand-right icon-fixed-width"></i>&nbsp; Directional Icons</a></li> <li><a href="../../icons/#video-player"><i class="icon-play-sign icon-fixed-width"></i>&nbsp; Video Player Icons</a></li> <li><a href="../../icons/#brand"><i class="icon-github icon-fixed-width"></i>&nbsp; Brand Icons</a></li> <li><a href="../../icons/#medical"><i class="icon-medkit icon-fixed-width"></i>&nbsp; Medical Icons</a></li> </ul> </li> <li class="dropdown-split-left"><a href="../../examples/">Examples</a></li> <li class="dropdown dropdown-split-right hidden-phone"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="icon-caret-down"></i> </a> <ul class="dropdown-menu pull-right"> <li><a href="../../examples/">Examples</a></li> <li class="divider"></li> <li><a href="../../examples/#new-styles">New Styles</a></li> <li><a href="../../examples/#inline-icons">Inline Icons</a></li> <li><a href="../../examples/#larger-icons">Larger Icons</a></li> <li><a href="../../examples/#bordered-pulled">Bordered & Pulled</a></li> <li><a href="../../examples/#buttons">Buttons</a></li> <li><a href="../../examples/#button-groups">Button Groups</a></li> <li><a href="../../examples/#button-dropdowns">Button Dropdowns</a></li> <li><a href="../../examples/#bulleted-lists">Bulleted Lists</a></li> <li><a href="../../examples/#navigation">Navigation</a></li> <li><a href="../../examples/#form-inputs">Form Inputs</a></li> <li><a href="../../examples/#animated-spinner">Animated Spinner</a></li> <li><a href="../../examples/#rotated-flipped">Rotated &amp; Flipped</a></li> <li><a href="../../examples/#stacked">Stacked</a></li> <li><a href="../../examples/#custom">Custom CSS</a></li> </ul> </li> <li><a href="../../whats-new/"> <span class="hidden-tablet">What's </span>New</a> </li> <li><a href="../../community/">Community</a></li> <li><a href="../../license/">License</a></li> </ul> <ul class="nav pull-right"> <li><a href="http://blog.fontawesome.io">Blog</a></li> </ul> </div> </div> </div> </div> <div class="jumbotron jumbotron-icon"> <div class="container"> <div class="info-icons"> <i class="icon-google-plus-sign icon-6"></i>&nbsp;&nbsp; <span class="hidden-phone"> <i class="icon-google-plus-sign icon-5"></i>&nbsp;&nbsp; <span class="hidden-tablet"><i class="icon-google-plus-sign icon-4"></i>&nbsp;&nbsp;</span> <i class="icon-google-plus-sign icon-3"></i>&nbsp;&nbsp; <i class="icon-google-plus-sign icon-2"></i>&nbsp; </span> <i class="icon-google-plus-sign icon-1"></i> </div> <h1 class="info-class"> icon-google-plus-sign <small> <i class="icon-google-plus-sign"></i> &middot; Unicode: <span class="upper">f0d4</span> &middot; Created: v2.0 &middot; Categories: Brand Icons </small> </h1> </div> </div> <div class="container"> <section> <div class="row-fluid"> <div class="span9"> <p>After you get <a href="../../integration/">up and running</a>, you can place Font Awesome icons just about anywhere with the <code>&lt;i&gt;</code> tag:</p> <div class="well well-transparent"> <div style="font-size: 24px; line-height: 1.5em;"> <i class="icon-google-plus-sign"></i> icon-google-plus-sign </div> </div> <div class="highlight"><pre><code class="html"><span class="nt">&lt;i</span> <span class="na">class=</span><span class="s">&quot;icon-google-plus-sign&quot;</span><span class="nt">&gt;&lt;/i&gt;</span> icon-google-plus-sign </code></pre></div> <br> <div class="lead"><i class="icon-info-sign"></i> Looking for more? Check out the <a href="../../examples/">examples</a>.</div> </div> <div class="span3"> <div class="info-ad"><div id="carbonads-container"><div class="carbonad"><div id="azcarbon"></div><script type="text/javascript">var z = document.createElement("script"); z.type = "text/javascript"; z.async = true; z.src = "http://engine.carbonads.com/z/32291/azcarbon_2_1_0_VERT"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script></div></div> </div> </div> </div> </section> </div> <div class="push"><!-- necessary for sticky footer --></div> </div> <footer class="footer hidden-print"> <div class="container text-center"> <div> <i class="icon-flag"></i> Font Awesome 3.2.1 <span class="hidden-phone">&middot;</span><br class="visible-phone"> Created and Maintained by <a href="http://twitter.com/davegandy">Dave Gandy</a> </div> <div> Font Awesome licensed under <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a> <span class="hidden-phone">&middot;</span><br class="visible-phone"> Code licensed under <a href="http://opensource.org/licenses/mit-license.html">MIT License</a> <span class="hidden-phone hidden-tablet">&middot;</span><br class="visible-phone visible-tablet"> Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a> </div> <div> Thanks to <a href="http://maxcdn.com"><i class="icon-maxcdn"></i> MaxCDN</a> for providing the excellent <a href="http://www.bootstrapcdn.com/#tab_fontawesome">BootstrapCDN for Font Awesome</a> </div> <div class="project"> <a href="https://github.com/FortAwesome/Font-Awesome">GitHub Project</a> &middot; <a href="https://github.com/FortAwesome/Font-Awesome/issues">Issues</a> </div> </div> </footer> <script src="http://platform.twitter.com/widgets.js"></script> <script src="../../assets/js/jquery-1.7.1.min.js"></script> <script src="../../assets/js/ZeroClipboard-1.1.7.min.js"></script> <script src="../../assets/js/bootstrap-2.3.1.min.js"></script> <script src="../../assets/js/site.js"></script> </body> </html>
sites/all/libraries/fontawesome/src/3.2.1/icon/envelope-alt/index.html
ehazell/AWBA
<!DOCTYPE html> <!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]--> <!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]--> <!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--> <html lang="en" xmlns="http://www.w3.org/1999/html"> <!--<![endif]--> <head> <!-- Basic Page Needs ================================================== --> <meta charset="utf-8" /> <title>icon-envelope-alt: Font Awesome Icons</title> <meta name="description" content="Font Awesome, the iconic font designed for Bootstrap"> <meta name="author" content="Dave Gandy"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--<meta name="viewport" content="initial-scale=1; maximum-scale=1">--> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!-- CSS ================================================== --> <link rel="stylesheet" href="../../assets/css/site.css"> <link rel="stylesheet" href="../../assets/css/pygments.css"> <link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome.css"> <!--[if IE 7]> <link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome-ie7.css"> <![endif]--> <!-- Le fav and touch icons --> <link rel="shortcut icon" href="../../assets/ico/favicon.ico"> <script type="text/javascript" src="//use.typekit.net/wnc7ioh.js"></script> <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-30136587-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body data-spy="scroll" data-target=".navbar"> <div class="wrapper"> <!-- necessary for sticky footer. wrap all content except footer --> <div class="navbar navbar-inverse navbar-static-top hidden-print"> <div class="navbar-inner"> <div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <a class="brand" href="../../"><i class="icon-flag"></i> Font Awesome</a> <div class="nav-collapse collapse"> <ul class="nav"> <li class="hidden-tablet "><a href="../../">Home</a></li> <li><a href="../../get-started/">Get Started</a></li> <li class="dropdown-split-left"><a href="../../icons/">Icons</a></li> <li class="dropdown dropdown-split-right hidden-phone"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="icon-caret-down"></i> </a> <ul class="dropdown-menu pull-right"> <li><a href="../../icons/"><i class="icon-flag icon-fixed-width"></i>&nbsp; Icons</a></li> <li class="divider"></li> <li><a href="../../icons/#new"><i class="icon-shield icon-fixed-width"></i>&nbsp; New Icons in 3.2.1</a></li> <li><a href="../../icons/#web-application"><i class="icon-camera-retro icon-fixed-width"></i>&nbsp; Web Application Icons</a></li> <li><a href="../../icons/#currency"><i class="icon-won icon-fixed-width"></i>&nbsp; Currency Icons</a></li> <li><a href="../../icons/#text-editor"><i class="icon-file-text-alt icon-fixed-width"></i>&nbsp; Text Editor Icons</a></li> <li><a href="../../icons/#directional"><i class="icon-hand-right icon-fixed-width"></i>&nbsp; Directional Icons</a></li> <li><a href="../../icons/#video-player"><i class="icon-play-sign icon-fixed-width"></i>&nbsp; Video Player Icons</a></li> <li><a href="../../icons/#brand"><i class="icon-github icon-fixed-width"></i>&nbsp; Brand Icons</a></li> <li><a href="../../icons/#medical"><i class="icon-medkit icon-fixed-width"></i>&nbsp; Medical Icons</a></li> </ul> </li> <li class="dropdown-split-left"><a href="../../examples/">Examples</a></li> <li class="dropdown dropdown-split-right hidden-phone"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="icon-caret-down"></i> </a> <ul class="dropdown-menu pull-right"> <li><a href="../../examples/">Examples</a></li> <li class="divider"></li> <li><a href="../../examples/#new-styles">New Styles</a></li> <li><a href="../../examples/#inline-icons">Inline Icons</a></li> <li><a href="../../examples/#larger-icons">Larger Icons</a></li> <li><a href="../../examples/#bordered-pulled">Bordered & Pulled</a></li> <li><a href="../../examples/#buttons">Buttons</a></li> <li><a href="../../examples/#button-groups">Button Groups</a></li> <li><a href="../../examples/#button-dropdowns">Button Dropdowns</a></li> <li><a href="../../examples/#bulleted-lists">Bulleted Lists</a></li> <li><a href="../../examples/#navigation">Navigation</a></li> <li><a href="../../examples/#form-inputs">Form Inputs</a></li> <li><a href="../../examples/#animated-spinner">Animated Spinner</a></li> <li><a href="../../examples/#rotated-flipped">Rotated &amp; Flipped</a></li> <li><a href="../../examples/#stacked">Stacked</a></li> <li><a href="../../examples/#custom">Custom CSS</a></li> </ul> </li> <li><a href="../../whats-new/"> <span class="hidden-tablet">What's </span>New</a> </li> <li><a href="../../community/">Community</a></li> <li><a href="../../license/">License</a></li> </ul> <ul class="nav pull-right"> <li><a href="http://blog.fontawesome.io">Blog</a></li> </ul> </div> </div> </div> </div> <div class="jumbotron jumbotron-icon"> <div class="container"> <div class="info-icons"> <i class="icon-envelope-alt icon-6"></i>&nbsp;&nbsp; <span class="hidden-phone"> <i class="icon-envelope-alt icon-5"></i>&nbsp;&nbsp; <span class="hidden-tablet"><i class="icon-envelope-alt icon-4"></i>&nbsp;&nbsp;</span> <i class="icon-envelope-alt icon-3"></i>&nbsp;&nbsp; <i class="icon-envelope-alt icon-2"></i>&nbsp; </span> <i class="icon-envelope-alt icon-1"></i> </div> <h1 class="info-class"> icon-envelope-alt <small> <i class="icon-envelope-alt"></i> &middot; Unicode: <span class="upper">f003</span> &middot; Created: v1.0 &middot; Categories: Web Application Icons </small> </h1> </div> </div> <div class="container"> <section> <div class="row-fluid"> <div class="span9"> <p>After you get <a href="../../integration/">up and running</a>, you can place Font Awesome icons just about anywhere with the <code>&lt;i&gt;</code> tag:</p> <div class="well well-transparent"> <div style="font-size: 24px; line-height: 1.5em;"> <i class="icon-envelope-alt"></i> icon-envelope-alt </div> </div> <div class="highlight"><pre><code class="html"><span class="nt">&lt;i</span> <span class="na">class=</span><span class="s">&quot;icon-envelope-alt&quot;</span><span class="nt">&gt;&lt;/i&gt;</span> icon-envelope-alt </code></pre></div> <br> <div class="lead"><i class="icon-info-sign"></i> Looking for more? Check out the <a href="../../examples/">examples</a>.</div> </div> <div class="span3"> <div class="info-ad"><div id="carbonads-container"><div class="carbonad"><div id="azcarbon"></div><script type="text/javascript">var z = document.createElement("script"); z.type = "text/javascript"; z.async = true; z.src = "http://engine.carbonads.com/z/32291/azcarbon_2_1_0_VERT"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script></div></div> </div> </div> </div> </section> </div> <div class="push"><!-- necessary for sticky footer --></div> </div> <footer class="footer hidden-print"> <div class="container text-center"> <div> <i class="icon-flag"></i> Font Awesome 3.2.1 <span class="hidden-phone">&middot;</span><br class="visible-phone"> Created and Maintained by <a href="http://twitter.com/davegandy">Dave Gandy</a> </div> <div> Font Awesome licensed under <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a> <span class="hidden-phone">&middot;</span><br class="visible-phone"> Code licensed under <a href="http://opensource.org/licenses/mit-license.html">MIT License</a> <span class="hidden-phone hidden-tablet">&middot;</span><br class="visible-phone visible-tablet"> Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a> </div> <div> Thanks to <a href="http://maxcdn.com"><i class="icon-maxcdn"></i> MaxCDN</a> for providing the excellent <a href="http://www.bootstrapcdn.com/#tab_fontawesome">BootstrapCDN for Font Awesome</a> </div> <div class="project"> <a href="https://github.com/FortAwesome/Font-Awesome">GitHub Project</a> &middot; <a href="https://github.com/FortAwesome/Font-Awesome/issues">Issues</a> </div> </div> </footer> <script src="http://platform.twitter.com/widgets.js"></script> <script src="../../assets/js/jquery-1.7.1.min.js"></script> <script src="../../assets/js/ZeroClipboard-1.1.7.min.js"></script> <script src="../../assets/js/bootstrap-2.3.1.min.js"></script> <script src="../../assets/js/site.js"></script> </body> </html>
public_html/vendors/fatfree/lib/api/classDB_1_1SQL-members.html
ruslan2k/database-editor
<!-- HTML header for doxygen 1.8.5--> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.7"/> <title>Fat-Free Framework: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="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">Fat-Free Framework &#160;<span id="projectnumber">3.3.0</span> &#160;<span class="menu"><a href="index.html">Overview</a> <a href="annotated.html">Class List</a> <a href="hierarchy.html">Hierarchy</a></span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.7 --> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><b>DB</b></li><li class="navelem"><a class="el" href="classDB_1_1SQL.html">SQL</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">DB\SQL Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classDB_1_1SQL.html">DB\SQL</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classDB_1_1SQL.html#a9d54d723c3b9218b6068ef131b2def07">$dbname</a></td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classDB_1_1SQL.html#a8a4a0eb6935bb0202f4acab135e214ed">$dsn</a></td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classDB_1_1SQL.html#a19ed348edd0549a3f24bd462097f9e52">$engine</a></td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classDB_1_1SQL.html#a95c93a06344cfdabd83824e38a527954">$log</a></td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classDB_1_1SQL.html#a3deede01233c40789f837bca11dbd856">$rows</a></td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classDB_1_1SQL.html#a9f1c991be6d0c09a2c58e6564cc657a2">$trans</a></td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classDB_1_1SQL.html#a28eb5b9fdad772d69977b7251896fb9e">$uuid</a></td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classDB_1_1SQL.html#a03e2d154e8308f8407f81ac04fa77261">__construct</a>($dsn, $user=NULL, $pw=NULL, array $options=NULL)</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classDB_1_1SQL.html#a5f5ced00dfa005770876582222b4008b">begin</a>()</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classDB_1_1SQL.html#a1c741bcdd850522bebe83ae9f3a89f8c">commit</a>()</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classDB_1_1SQL.html#a2da7fa08b61795e9dfad255b6204c7f8">count</a>()</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classDB_1_1SQL.html#a8a074032e56e1443e46b6f9470d58271">driver</a>()</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classDB_1_1SQL.html#aae9de7373718da0c28c9c70de287bbd5">exec</a>($cmds, $args=NULL, $ttl=0, $log=TRUE)</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classDB_1_1SQL.html#a5bdb97cf5d6ac52c99d9ffe8a6f9e190">log</a>()</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classDB_1_1SQL.html#a98fea91c80657442689dd19dc8050dec">name</a>()</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classDB_1_1SQL.html#aa4e387f439b8ce06a48ae57cdbb5af95">quote</a>($val, $type=\PDO::PARAM_STR)</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classDB_1_1SQL.html#ab23e1524e183a0d21f5e9a4c02dde037">quotekey</a>($key)</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classDB_1_1SQL.html#a44c5c212a997fa1c51cd10bdf0981bfe">rollback</a>()</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classDB_1_1SQL.html#aceda87f3c9133d0ee03505f606422af4">schema</a>($table, $fields=NULL, $ttl=0)</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classDB_1_1SQL.html#a1cdbdcd5996d5b34e83ec1554ac2ded2">type</a>($val)</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classDB_1_1SQL.html#a3d41d6d72944573251f74b086b6173bc">uuid</a>()</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classDB_1_1SQL.html#ac7f7ef1e3c360dee9d17dd3dea1eb127">value</a>($type, $val)</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classDB_1_1SQL.html#a24b57a9967b47680e854dc2ea328ad1f">version</a>()</td><td class="entry"><a class="el" href="classDB_1_1SQL.html">DB\SQL</a></td><td class="entry"></td></tr> </table></div><!-- contents -->
src/main/resources/hyperic-sigar-1.6.4/docs/javadoc/serialized-form.html
szabowexler/balancers
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_20) on Wed Apr 28 17:00:07 PDT 2010 --> <TITLE> Serialized Form (Sigar API) </TITLE> <META NAME="date" CONTENT="2010-04-28"> <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="Serialized Form (Sigar API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="index.html?serialized-form.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="serialized-form.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H1> Serialized Form</H1> </CENTER> <HR SIZE="4" NOSHADE> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="center"><FONT SIZE="+2"> <B>Package</B> <B>org.hyperic.sigar</B></FONT></TH> </TR> </TABLE> <P> <A NAME="org.hyperic.sigar.Cpu"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/Cpu.html" title="class in org.hyperic.sigar">org.hyperic.sigar.Cpu</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>8076L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> user</H3> <PRE> long <B>user</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> sys</H3> <PRE> long <B>sys</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> nice</H3> <PRE> long <B>nice</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> idle</H3> <PRE> long <B>idle</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> wait</H3> <PRE> long <B>wait</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> irq</H3> <PRE> long <B>irq</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> softIrq</H3> <PRE> long <B>softIrq</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> stolen</H3> <PRE> long <B>stolen</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> total</H3> <PRE> long <B>total</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.CpuInfo"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/CpuInfo.html" title="class in org.hyperic.sigar">org.hyperic.sigar.CpuInfo</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>9710L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> vendor</H3> <PRE> java.lang.String <B>vendor</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> model</H3> <PRE> java.lang.String <B>model</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> mhz</H3> <PRE> int <B>mhz</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> cacheSize</H3> <PRE> long <B>cacheSize</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> totalCores</H3> <PRE> int <B>totalCores</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> totalSockets</H3> <PRE> int <B>totalSockets</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> coresPerSocket</H3> <PRE> int <B>coresPerSocket</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.CpuPerc"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/CpuPerc.html" title="class in org.hyperic.sigar">org.hyperic.sigar.CpuPerc</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>1393671L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> user</H3> <PRE> double <B>user</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> sys</H3> <PRE> double <B>sys</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> nice</H3> <PRE> double <B>nice</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> idle</H3> <PRE> double <B>idle</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> wait</H3> <PRE> double <B>wait</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> irq</H3> <PRE> double <B>irq</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> softIrq</H3> <PRE> double <B>softIrq</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> stolen</H3> <PRE> double <B>stolen</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> combined</H3> <PRE> double <B>combined</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.CurrentProcessSummary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/CurrentProcessSummary.html" title="class in org.hyperic.sigar">org.hyperic.sigar.CurrentProcessSummary</A> extends <A HREF="org/hyperic/sigar/ProcStat.html" title="class in org.hyperic.sigar">ProcStat</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="org.hyperic.sigar.DirStat"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/DirStat.html" title="class in org.hyperic.sigar">org.hyperic.sigar.DirStat</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>9250L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> total</H3> <PRE> long <B>total</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> files</H3> <PRE> long <B>files</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> subdirs</H3> <PRE> long <B>subdirs</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> symlinks</H3> <PRE> long <B>symlinks</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> chrdevs</H3> <PRE> long <B>chrdevs</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> blkdevs</H3> <PRE> long <B>blkdevs</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> sockets</H3> <PRE> long <B>sockets</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> diskUsage</H3> <PRE> long <B>diskUsage</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.DirUsage"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/DirUsage.html" title="class in org.hyperic.sigar">org.hyperic.sigar.DirUsage</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>9250L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> total</H3> <PRE> long <B>total</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> files</H3> <PRE> long <B>files</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> subdirs</H3> <PRE> long <B>subdirs</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> symlinks</H3> <PRE> long <B>symlinks</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> chrdevs</H3> <PRE> long <B>chrdevs</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> blkdevs</H3> <PRE> long <B>blkdevs</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> sockets</H3> <PRE> long <B>sockets</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> diskUsage</H3> <PRE> long <B>diskUsage</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.DiskUsage"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/DiskUsage.html" title="class in org.hyperic.sigar">org.hyperic.sigar.DiskUsage</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>8090L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> reads</H3> <PRE> long <B>reads</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> writes</H3> <PRE> long <B>writes</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> readBytes</H3> <PRE> long <B>readBytes</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> writeBytes</H3> <PRE> long <B>writeBytes</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> queue</H3> <PRE> double <B>queue</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> serviceTime</H3> <PRE> double <B>serviceTime</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.FileAttrs"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/FileAttrs.html" title="class in org.hyperic.sigar">org.hyperic.sigar.FileAttrs</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>10323L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> permissions</H3> <PRE> long <B>permissions</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> type</H3> <PRE> int <B>type</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> uid</H3> <PRE> long <B>uid</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> gid</H3> <PRE> long <B>gid</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> inode</H3> <PRE> long <B>inode</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> device</H3> <PRE> long <B>device</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> nlink</H3> <PRE> long <B>nlink</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> size</H3> <PRE> long <B>size</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> atime</H3> <PRE> long <B>atime</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> ctime</H3> <PRE> long <B>ctime</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> mtime</H3> <PRE> long <B>mtime</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.FileInfo"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/FileInfo.html" title="class in org.hyperic.sigar">org.hyperic.sigar.FileInfo</A> extends <A HREF="org/hyperic/sigar/FileAttrs.html" title="class in org.hyperic.sigar">FileAttrs</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>607239L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> name</H3> <PRE> java.lang.String <B>name</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> dirStatEnabled</H3> <PRE> boolean <B>dirStatEnabled</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> stat</H3> <PRE> <A HREF="org/hyperic/sigar/DirStat.html" title="class in org.hyperic.sigar">DirStat</A> <B>stat</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> lstat</H3> <PRE> boolean <B>lstat</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> oldInfo</H3> <PRE> <A HREF="org/hyperic/sigar/FileInfo.html" title="class in org.hyperic.sigar">FileInfo</A> <B>oldInfo</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.FileSystem"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/FileSystem.html" title="class in org.hyperic.sigar">org.hyperic.sigar.FileSystem</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>9641L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> dirName</H3> <PRE> java.lang.String <B>dirName</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> devName</H3> <PRE> java.lang.String <B>devName</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> typeName</H3> <PRE> java.lang.String <B>typeName</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> sysTypeName</H3> <PRE> java.lang.String <B>sysTypeName</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> options</H3> <PRE> java.lang.String <B>options</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> type</H3> <PRE> int <B>type</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> flags</H3> <PRE> long <B>flags</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.FileSystemMap"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/FileSystemMap.html" title="class in org.hyperic.sigar">org.hyperic.sigar.FileSystemMap</A> extends java.util.HashMap implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="org.hyperic.sigar.FileSystemUsage"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/FileSystemUsage.html" title="class in org.hyperic.sigar">org.hyperic.sigar.FileSystemUsage</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>18905L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> total</H3> <PRE> long <B>total</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> free</H3> <PRE> long <B>free</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> used</H3> <PRE> long <B>used</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> avail</H3> <PRE> long <B>avail</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> files</H3> <PRE> long <B>files</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> freeFiles</H3> <PRE> long <B>freeFiles</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> diskReads</H3> <PRE> long <B>diskReads</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> diskWrites</H3> <PRE> long <B>diskWrites</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> diskReadBytes</H3> <PRE> long <B>diskReadBytes</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> diskWriteBytes</H3> <PRE> long <B>diskWriteBytes</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> diskQueue</H3> <PRE> double <B>diskQueue</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> diskServiceTime</H3> <PRE> double <B>diskServiceTime</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> usePercent</H3> <PRE> double <B>usePercent</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.Mem"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/Mem.html" title="class in org.hyperic.sigar">org.hyperic.sigar.Mem</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>10181L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> total</H3> <PRE> long <B>total</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> ram</H3> <PRE> long <B>ram</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> used</H3> <PRE> long <B>used</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> free</H3> <PRE> long <B>free</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> actualUsed</H3> <PRE> long <B>actualUsed</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> actualFree</H3> <PRE> long <B>actualFree</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> usedPercent</H3> <PRE> double <B>usedPercent</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> freePercent</H3> <PRE> double <B>freePercent</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.MultiProcCpu"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/MultiProcCpu.html" title="class in org.hyperic.sigar">org.hyperic.sigar.MultiProcCpu</A> extends <A HREF="org/hyperic/sigar/ProcCpu.html" title="class in org.hyperic.sigar">ProcCpu</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> pid</H3> <PRE> long <B>pid</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> nproc</H3> <PRE> int <B>nproc</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.MultiProcMem"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/MultiProcMem.html" title="class in org.hyperic.sigar">org.hyperic.sigar.MultiProcMem</A> extends <A HREF="org/hyperic/sigar/ProcMem.html" title="class in org.hyperic.sigar">ProcMem</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="org.hyperic.sigar.NetConnection"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/NetConnection.html" title="class in org.hyperic.sigar">org.hyperic.sigar.NetConnection</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>12776L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> localPort</H3> <PRE> long <B>localPort</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> localAddress</H3> <PRE> java.lang.String <B>localAddress</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> remotePort</H3> <PRE> long <B>remotePort</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> remoteAddress</H3> <PRE> java.lang.String <B>remoteAddress</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> type</H3> <PRE> int <B>type</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> state</H3> <PRE> int <B>state</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> sendQueue</H3> <PRE> long <B>sendQueue</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> receiveQueue</H3> <PRE> long <B>receiveQueue</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.NetInfo"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/NetInfo.html" title="class in org.hyperic.sigar">org.hyperic.sigar.NetInfo</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>9427L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> defaultGateway</H3> <PRE> java.lang.String <B>defaultGateway</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> hostName</H3> <PRE> java.lang.String <B>hostName</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> domainName</H3> <PRE> java.lang.String <B>domainName</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> primaryDns</H3> <PRE> java.lang.String <B>primaryDns</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> secondaryDns</H3> <PRE> java.lang.String <B>secondaryDns</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.NetInterfaceConfig"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/NetInterfaceConfig.html" title="class in org.hyperic.sigar">org.hyperic.sigar.NetInterfaceConfig</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>15948L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> name</H3> <PRE> java.lang.String <B>name</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> hwaddr</H3> <PRE> java.lang.String <B>hwaddr</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> type</H3> <PRE> java.lang.String <B>type</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> description</H3> <PRE> java.lang.String <B>description</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> address</H3> <PRE> java.lang.String <B>address</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> destination</H3> <PRE> java.lang.String <B>destination</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> broadcast</H3> <PRE> java.lang.String <B>broadcast</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> netmask</H3> <PRE> java.lang.String <B>netmask</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> flags</H3> <PRE> long <B>flags</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> mtu</H3> <PRE> long <B>mtu</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> metric</H3> <PRE> long <B>metric</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.NetInterfaceStat"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/NetInterfaceStat.html" title="class in org.hyperic.sigar">org.hyperic.sigar.NetInterfaceStat</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>20008L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> rxBytes</H3> <PRE> long <B>rxBytes</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> rxPackets</H3> <PRE> long <B>rxPackets</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> rxErrors</H3> <PRE> long <B>rxErrors</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> rxDropped</H3> <PRE> long <B>rxDropped</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> rxOverruns</H3> <PRE> long <B>rxOverruns</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> rxFrame</H3> <PRE> long <B>rxFrame</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> txBytes</H3> <PRE> long <B>txBytes</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> txPackets</H3> <PRE> long <B>txPackets</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> txErrors</H3> <PRE> long <B>txErrors</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> txDropped</H3> <PRE> long <B>txDropped</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> txOverruns</H3> <PRE> long <B>txOverruns</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> txCollisions</H3> <PRE> long <B>txCollisions</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> txCarrier</H3> <PRE> long <B>txCarrier</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> speed</H3> <PRE> long <B>speed</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.NetRoute"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/NetRoute.html" title="class in org.hyperic.sigar">org.hyperic.sigar.NetRoute</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>13039L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> destination</H3> <PRE> java.lang.String <B>destination</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> gateway</H3> <PRE> java.lang.String <B>gateway</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> flags</H3> <PRE> long <B>flags</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> refcnt</H3> <PRE> long <B>refcnt</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> use</H3> <PRE> long <B>use</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> metric</H3> <PRE> long <B>metric</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> mask</H3> <PRE> java.lang.String <B>mask</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> mtu</H3> <PRE> long <B>mtu</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> window</H3> <PRE> long <B>window</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> irtt</H3> <PRE> long <B>irtt</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> ifname</H3> <PRE> java.lang.String <B>ifname</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.NetStat"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/NetStat.html" title="class in org.hyperic.sigar">org.hyperic.sigar.NetStat</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>1070087L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> tcpStates</H3> <PRE> int[] <B>tcpStates</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> tcpInboundTotal</H3> <PRE> int <B>tcpInboundTotal</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> tcpOutboundTotal</H3> <PRE> int <B>tcpOutboundTotal</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> allInboundTotal</H3> <PRE> int <B>allInboundTotal</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> allOutboundTotal</H3> <PRE> int <B>allOutboundTotal</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.NfsClientV2"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/NfsClientV2.html" title="class in org.hyperic.sigar">org.hyperic.sigar.NfsClientV2</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>18751L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> _null</H3> <PRE> long <B>_null</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> getattr</H3> <PRE> long <B>getattr</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> setattr</H3> <PRE> long <B>setattr</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> root</H3> <PRE> long <B>root</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> lookup</H3> <PRE> long <B>lookup</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> readlink</H3> <PRE> long <B>readlink</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> read</H3> <PRE> long <B>read</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> writecache</H3> <PRE> long <B>writecache</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> write</H3> <PRE> long <B>write</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> create</H3> <PRE> long <B>create</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> remove</H3> <PRE> long <B>remove</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> rename</H3> <PRE> long <B>rename</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> link</H3> <PRE> long <B>link</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> symlink</H3> <PRE> long <B>symlink</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> mkdir</H3> <PRE> long <B>mkdir</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> rmdir</H3> <PRE> long <B>rmdir</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> readdir</H3> <PRE> long <B>readdir</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> fsstat</H3> <PRE> long <B>fsstat</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.NfsClientV3"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/NfsClientV3.html" title="class in org.hyperic.sigar">org.hyperic.sigar.NfsClientV3</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>23335L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> _null</H3> <PRE> long <B>_null</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> getattr</H3> <PRE> long <B>getattr</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> setattr</H3> <PRE> long <B>setattr</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> lookup</H3> <PRE> long <B>lookup</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> access</H3> <PRE> long <B>access</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> readlink</H3> <PRE> long <B>readlink</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> read</H3> <PRE> long <B>read</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> write</H3> <PRE> long <B>write</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> create</H3> <PRE> long <B>create</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> mkdir</H3> <PRE> long <B>mkdir</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> symlink</H3> <PRE> long <B>symlink</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> mknod</H3> <PRE> long <B>mknod</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> remove</H3> <PRE> long <B>remove</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> rmdir</H3> <PRE> long <B>rmdir</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> rename</H3> <PRE> long <B>rename</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> link</H3> <PRE> long <B>link</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> readdir</H3> <PRE> long <B>readdir</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> readdirplus</H3> <PRE> long <B>readdirplus</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> fsstat</H3> <PRE> long <B>fsstat</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> fsinfo</H3> <PRE> long <B>fsinfo</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> pathconf</H3> <PRE> long <B>pathconf</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> commit</H3> <PRE> long <B>commit</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.NfsFileSystem"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/NfsFileSystem.html" title="class in org.hyperic.sigar">org.hyperic.sigar.NfsFileSystem</A> extends <A HREF="org/hyperic/sigar/FileSystem.html" title="class in org.hyperic.sigar">FileSystem</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>607239L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> hostname</H3> <PRE> java.lang.String <B>hostname</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.NfsServerV2"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/NfsServerV2.html" title="class in org.hyperic.sigar">org.hyperic.sigar.NfsServerV2</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>18751L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> _null</H3> <PRE> long <B>_null</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> getattr</H3> <PRE> long <B>getattr</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> setattr</H3> <PRE> long <B>setattr</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> root</H3> <PRE> long <B>root</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> lookup</H3> <PRE> long <B>lookup</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> readlink</H3> <PRE> long <B>readlink</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> read</H3> <PRE> long <B>read</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> writecache</H3> <PRE> long <B>writecache</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> write</H3> <PRE> long <B>write</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> create</H3> <PRE> long <B>create</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> remove</H3> <PRE> long <B>remove</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> rename</H3> <PRE> long <B>rename</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> link</H3> <PRE> long <B>link</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> symlink</H3> <PRE> long <B>symlink</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> mkdir</H3> <PRE> long <B>mkdir</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> rmdir</H3> <PRE> long <B>rmdir</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> readdir</H3> <PRE> long <B>readdir</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> fsstat</H3> <PRE> long <B>fsstat</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.NfsServerV3"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/NfsServerV3.html" title="class in org.hyperic.sigar">org.hyperic.sigar.NfsServerV3</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>23335L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> _null</H3> <PRE> long <B>_null</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> getattr</H3> <PRE> long <B>getattr</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> setattr</H3> <PRE> long <B>setattr</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> lookup</H3> <PRE> long <B>lookup</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> access</H3> <PRE> long <B>access</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> readlink</H3> <PRE> long <B>readlink</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> read</H3> <PRE> long <B>read</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> write</H3> <PRE> long <B>write</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> create</H3> <PRE> long <B>create</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> mkdir</H3> <PRE> long <B>mkdir</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> symlink</H3> <PRE> long <B>symlink</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> mknod</H3> <PRE> long <B>mknod</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> remove</H3> <PRE> long <B>remove</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> rmdir</H3> <PRE> long <B>rmdir</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> rename</H3> <PRE> long <B>rename</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> link</H3> <PRE> long <B>link</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> readdir</H3> <PRE> long <B>readdir</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> readdirplus</H3> <PRE> long <B>readdirplus</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> fsstat</H3> <PRE> long <B>fsstat</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> fsinfo</H3> <PRE> long <B>fsinfo</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> pathconf</H3> <PRE> long <B>pathconf</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> commit</H3> <PRE> long <B>commit</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.NfsUnreachableException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/NfsUnreachableException.html" title="class in org.hyperic.sigar">org.hyperic.sigar.NfsUnreachableException</A> extends <A HREF="org/hyperic/sigar/SigarException.html" title="class in org.hyperic.sigar">SigarException</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="org.hyperic.sigar.OperatingSystem"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/OperatingSystem.html" title="class in org.hyperic.sigar">org.hyperic.sigar.OperatingSystem</A> extends <A HREF="org/hyperic/sigar/SysInfo.html" title="class in org.hyperic.sigar">SysInfo</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> dataModel</H3> <PRE> java.lang.String <B>dataModel</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> cpuEndian</H3> <PRE> java.lang.String <B>cpuEndian</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.ProcCpu"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/ProcCpu.html" title="class in org.hyperic.sigar">org.hyperic.sigar.ProcCpu</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>6748L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> percent</H3> <PRE> double <B>percent</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> lastTime</H3> <PRE> long <B>lastTime</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> startTime</H3> <PRE> long <B>startTime</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> user</H3> <PRE> long <B>user</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> sys</H3> <PRE> long <B>sys</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> total</H3> <PRE> long <B>total</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.ProcCred"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/ProcCred.html" title="class in org.hyperic.sigar">org.hyperic.sigar.ProcCred</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>3062L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> uid</H3> <PRE> long <B>uid</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> gid</H3> <PRE> long <B>gid</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> euid</H3> <PRE> long <B>euid</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> egid</H3> <PRE> long <B>egid</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.ProcCredName"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/ProcCredName.html" title="class in org.hyperic.sigar">org.hyperic.sigar.ProcCredName</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>2266L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> user</H3> <PRE> java.lang.String <B>user</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> group</H3> <PRE> java.lang.String <B>group</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.ProcExe"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/ProcExe.html" title="class in org.hyperic.sigar">org.hyperic.sigar.ProcExe</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>1997L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> name</H3> <PRE> java.lang.String <B>name</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> cwd</H3> <PRE> java.lang.String <B>cwd</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.ProcFd"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/ProcFd.html" title="class in org.hyperic.sigar">org.hyperic.sigar.ProcFd</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>948L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> total</H3> <PRE> long <B>total</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.ProcMem"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/ProcMem.html" title="class in org.hyperic.sigar">org.hyperic.sigar.ProcMem</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>7985L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> size</H3> <PRE> long <B>size</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> resident</H3> <PRE> long <B>resident</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> share</H3> <PRE> long <B>share</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> minorFaults</H3> <PRE> long <B>minorFaults</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> majorFaults</H3> <PRE> long <B>majorFaults</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> pageFaults</H3> <PRE> long <B>pageFaults</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.ProcStat"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/ProcStat.html" title="class in org.hyperic.sigar">org.hyperic.sigar.ProcStat</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>7546L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> total</H3> <PRE> long <B>total</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> idle</H3> <PRE> long <B>idle</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> running</H3> <PRE> long <B>running</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> sleeping</H3> <PRE> long <B>sleeping</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> stopped</H3> <PRE> long <B>stopped</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> zombie</H3> <PRE> long <B>zombie</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> threads</H3> <PRE> long <B>threads</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.ProcState"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/ProcState.html" title="class in org.hyperic.sigar">org.hyperic.sigar.ProcState</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>7805L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> state</H3> <PRE> char <B>state</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> name</H3> <PRE> java.lang.String <B>name</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> ppid</H3> <PRE> long <B>ppid</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> tty</H3> <PRE> int <B>tty</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> nice</H3> <PRE> int <B>nice</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> priority</H3> <PRE> int <B>priority</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> threads</H3> <PRE> long <B>threads</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> processor</H3> <PRE> int <B>processor</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.ProcTime"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/ProcTime.html" title="class in org.hyperic.sigar">org.hyperic.sigar.ProcTime</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>4030L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> startTime</H3> <PRE> long <B>startTime</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> user</H3> <PRE> long <B>user</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> sys</H3> <PRE> long <B>sys</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> total</H3> <PRE> long <B>total</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.ResourceLimit"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/ResourceLimit.html" title="class in org.hyperic.sigar">org.hyperic.sigar.ResourceLimit</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>32184L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> cpuCur</H3> <PRE> long <B>cpuCur</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> cpuMax</H3> <PRE> long <B>cpuMax</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> fileSizeCur</H3> <PRE> long <B>fileSizeCur</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> fileSizeMax</H3> <PRE> long <B>fileSizeMax</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> pipeSizeMax</H3> <PRE> long <B>pipeSizeMax</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> pipeSizeCur</H3> <PRE> long <B>pipeSizeCur</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> dataCur</H3> <PRE> long <B>dataCur</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> dataMax</H3> <PRE> long <B>dataMax</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> stackCur</H3> <PRE> long <B>stackCur</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> stackMax</H3> <PRE> long <B>stackMax</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> coreCur</H3> <PRE> long <B>coreCur</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> coreMax</H3> <PRE> long <B>coreMax</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> memoryCur</H3> <PRE> long <B>memoryCur</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> memoryMax</H3> <PRE> long <B>memoryMax</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> processesCur</H3> <PRE> long <B>processesCur</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> processesMax</H3> <PRE> long <B>processesMax</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> openFilesCur</H3> <PRE> long <B>openFilesCur</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> openFilesMax</H3> <PRE> long <B>openFilesMax</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> virtualMemoryCur</H3> <PRE> long <B>virtualMemoryCur</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> virtualMemoryMax</H3> <PRE> long <B>virtualMemoryMax</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.SigarException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/SigarException.html" title="class in org.hyperic.sigar">org.hyperic.sigar.SigarException</A> extends java.lang.Exception implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> message</H3> <PRE> java.lang.String <B>message</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.SigarFileNotFoundException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/SigarFileNotFoundException.html" title="class in org.hyperic.sigar">org.hyperic.sigar.SigarFileNotFoundException</A> extends <A HREF="org/hyperic/sigar/SigarException.html" title="class in org.hyperic.sigar">SigarException</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="org.hyperic.sigar.SigarNotImplementedException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/SigarNotImplementedException.html" title="class in org.hyperic.sigar">org.hyperic.sigar.SigarNotImplementedException</A> extends <A HREF="org/hyperic/sigar/SigarException.html" title="class in org.hyperic.sigar">SigarException</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="org.hyperic.sigar.SigarPermissionDeniedException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/SigarPermissionDeniedException.html" title="class in org.hyperic.sigar">org.hyperic.sigar.SigarPermissionDeniedException</A> extends <A HREF="org/hyperic/sigar/SigarException.html" title="class in org.hyperic.sigar">SigarException</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="org.hyperic.sigar.Swap"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/Swap.html" title="class in org.hyperic.sigar">org.hyperic.sigar.Swap</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>4974L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> total</H3> <PRE> long <B>total</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> used</H3> <PRE> long <B>used</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> free</H3> <PRE> long <B>free</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> pageIn</H3> <PRE> long <B>pageIn</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> pageOut</H3> <PRE> long <B>pageOut</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.SysInfo"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/SysInfo.html" title="class in org.hyperic.sigar">org.hyperic.sigar.SysInfo</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>16002L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> name</H3> <PRE> java.lang.String <B>name</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> version</H3> <PRE> java.lang.String <B>version</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> arch</H3> <PRE> java.lang.String <B>arch</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> machine</H3> <PRE> java.lang.String <B>machine</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> description</H3> <PRE> java.lang.String <B>description</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> patchLevel</H3> <PRE> java.lang.String <B>patchLevel</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> vendor</H3> <PRE> java.lang.String <B>vendor</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> vendorVersion</H3> <PRE> java.lang.String <B>vendorVersion</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> vendorName</H3> <PRE> java.lang.String <B>vendorName</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> vendorCodeName</H3> <PRE> java.lang.String <B>vendorCodeName</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.Tcp"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/Tcp.html" title="class in org.hyperic.sigar">org.hyperic.sigar.Tcp</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>14992L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> activeOpens</H3> <PRE> long <B>activeOpens</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> passiveOpens</H3> <PRE> long <B>passiveOpens</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> attemptFails</H3> <PRE> long <B>attemptFails</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> estabResets</H3> <PRE> long <B>estabResets</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> currEstab</H3> <PRE> long <B>currEstab</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> inSegs</H3> <PRE> long <B>inSegs</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> outSegs</H3> <PRE> long <B>outSegs</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> retransSegs</H3> <PRE> long <B>retransSegs</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> inErrs</H3> <PRE> long <B>inErrs</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> outRsts</H3> <PRE> long <B>outRsts</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.ThreadCpu"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/ThreadCpu.html" title="class in org.hyperic.sigar">org.hyperic.sigar.ThreadCpu</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>2546L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> user</H3> <PRE> long <B>user</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> sys</H3> <PRE> long <B>sys</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> total</H3> <PRE> long <B>total</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.Uptime"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/Uptime.html" title="class in org.hyperic.sigar">org.hyperic.sigar.Uptime</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>1263L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> uptime</H3> <PRE> double <B>uptime</B></PRE> <DL> <DL> </DL> </DL> <P> <A NAME="org.hyperic.sigar.Who"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/Who.html" title="class in org.hyperic.sigar">org.hyperic.sigar.Who</A> extends java.lang.Object implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <B>serialVersionUID:&nbsp;</B>4241L <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> user</H3> <PRE> java.lang.String <B>user</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> device</H3> <PRE> java.lang.String <B>device</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> host</H3> <PRE> java.lang.String <B>host</B></PRE> <DL> <DL> </DL> </DL> <HR> <H3> time</H3> <PRE> long <B>time</B></PRE> <DL> <DL> </DL> </DL> <HR SIZE="4" NOSHADE> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="center"><FONT SIZE="+2"> <B>Package</B> <B>org.hyperic.sigar.ptql</B></FONT></TH> </TR> </TABLE> <P> <A NAME="org.hyperic.sigar.ptql.MalformedQueryException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/ptql/MalformedQueryException.html" title="class in org.hyperic.sigar.ptql">org.hyperic.sigar.ptql.MalformedQueryException</A> extends <A HREF="org/hyperic/sigar/SigarException.html" title="class in org.hyperic.sigar">SigarException</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="org.hyperic.sigar.ptql.QueryLoadException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/ptql/QueryLoadException.html" title="class in org.hyperic.sigar.ptql">org.hyperic.sigar.ptql.QueryLoadException</A> extends java.lang.RuntimeException implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <HR SIZE="4" NOSHADE> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="center"><FONT SIZE="+2"> <B>Package</B> <B>org.hyperic.sigar.shell</B></FONT></TH> </TR> </TABLE> <P> <A NAME="org.hyperic.sigar.shell.NormalQuitCommandException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/shell/NormalQuitCommandException.html" title="class in org.hyperic.sigar.shell">org.hyperic.sigar.shell.NormalQuitCommandException</A> extends java.lang.RuntimeException implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="org.hyperic.sigar.shell.ShellCommandExecException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/shell/ShellCommandExecException.html" title="class in org.hyperic.sigar.shell">org.hyperic.sigar.shell.ShellCommandExecException</A> extends java.lang.Exception implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="org.hyperic.sigar.shell.ShellCommandInitException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/shell/ShellCommandInitException.html" title="class in org.hyperic.sigar.shell">org.hyperic.sigar.shell.ShellCommandInitException</A> extends java.lang.Exception implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <P> <A NAME="org.hyperic.sigar.shell.ShellCommandUsageException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/shell/ShellCommandUsageException.html" title="class in org.hyperic.sigar.shell">org.hyperic.sigar.shell.ShellCommandUsageException</A> extends java.lang.Exception implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <HR SIZE="4" NOSHADE> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="center"><FONT SIZE="+2"> <B>Package</B> <B>org.hyperic.sigar.vmware</B></FONT></TH> </TR> </TABLE> <P> <A NAME="org.hyperic.sigar.vmware.VMwareException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/vmware/VMwareException.html" title="class in org.hyperic.sigar.vmware">org.hyperic.sigar.vmware.VMwareException</A> extends <A HREF="org/hyperic/sigar/SigarException.html" title="class in org.hyperic.sigar">SigarException</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <HR SIZE="4" NOSHADE> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="center"><FONT SIZE="+2"> <B>Package</B> <B>org.hyperic.sigar.win32</B></FONT></TH> </TR> </TABLE> <P> <A NAME="org.hyperic.sigar.win32.Win32Exception"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class <A HREF="org/hyperic/sigar/win32/Win32Exception.html" title="class in org.hyperic.sigar.win32">org.hyperic.sigar.win32.Win32Exception</A> extends <A HREF="org/hyperic/sigar/SigarException.html" title="class in org.hyperic.sigar">SigarException</A> implements Serializable</B></FONT></TH> </TR> </TABLE> <P> <A NAME="serializedForm"><!-- --></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>Serialized Fields</B></FONT></TH> </TR> </TABLE> <H3> errorCode</H3> <PRE> int <B>errorCode</B></PRE> <DL> <DL> </DL> </DL> <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="index.html?serialized-form.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="serialized-form.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright ? 2004-2009 <a target="_top" href="http://www.hyperic.com/">Hyperic</a>. All Rights Reserved. </BODY> </HTML>
target/classes/org/olat/test/guidemo/_content/guidemo_flexi_form_customlayout.html
RLDevOps/Demo
$r.render("sourceview") <!-- ======================================================== --> <!-- = Java Sourcecode to HTML automatically converted code = --> <!-- = Java2Html Converter 5.0 [2006-02-26] by Markus Gebhard markus@jave.de = --> <!-- = Further information: http://www.java2html.de = --> <div align="left" class="java"> <table border="0" cellpadding="3" cellspacing="0" bgcolor="#ffffff"> <tr> <!-- start source code --> <td nowrap="nowrap" valign="top" align="left"> <code> <font color="#ffffff">&nbsp;&nbsp;</font><font color="#7f0055"><b>public&nbsp;</b></font><font color="#000000">GuiDemoFlexiFormCustomlayout</font><font color="#000000">(</font><font color="#000000">UserRequest&nbsp;ureq,&nbsp;WindowControl&nbsp;wControl,&nbsp;GuiDemoFlexiFormPersonData&nbsp;data</font><font color="#000000">)&nbsp;{</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;this&nbsp;whole&nbsp;class&nbsp;is&nbsp;copy-pasted&nbsp;from&nbsp;the&nbsp;GuiDemoFlexiForm.java</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;but&nbsp;the&nbsp;super&nbsp;constructor&nbsp;is&nbsp;called&nbsp;with&nbsp;a&nbsp;velocity&nbsp;page&nbsp;which&nbsp;serves&nbsp;then</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;as&nbsp;layouting&nbsp;velocity&nbsp;page.</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;inside&nbsp;this&nbsp;page&nbsp;one&nbsp;can&nbsp;render&nbsp;all&nbsp;the&nbsp;form&nbsp;elements&nbsp;with&nbsp;the&nbsp;wellknown</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;$r.render(&#34;compName&#34;)&nbsp;paradigma.&nbsp;But&nbsp;with&nbsp;the&nbsp;form&nbsp;comes&nbsp;some&nbsp;naming&nbsp;convention</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;to&nbsp;render&nbsp;the&nbsp;label,&nbsp;error,&nbsp;example&nbsp;of&nbsp;a&nbsp;form&nbsp;element.</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;read&nbsp;the&nbsp;instructions&nbsp;in&nbsp;the&nbsp;customformlayout&nbsp;velocity&nbsp;page.</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>super</b></font><font color="#000000">(</font><font color="#000000">ureq,&nbsp;wControl,&nbsp;</font><font color="#2a00ff">&#34;customformlayout&#34;</font><font color="#000000">)</font><font color="#000000">;</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;first&nbsp;you&nbsp;may&nbsp;preprocess&nbsp;data&nbsp;to&nbsp;fit&nbsp;into&nbsp;the&nbsp;form&nbsp;items</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;if&nbsp;all&nbsp;preprocessing&nbsp;is&nbsp;done,&nbsp;create&nbsp;the&nbsp;form&nbsp;items</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;example&nbsp;for&nbsp;simple&nbsp;preprocessing&nbsp;-&nbsp;check&nbsp;for&nbsp;NULL</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>if</b></font><font color="#000000">(</font><font color="#000000">data&nbsp;!=&nbsp;</font><font color="#7f0055"><b>null</b></font><font color="#000000">){</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">personData&nbsp;=&nbsp;data;</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">}</font><font color="#7f0055"><b>else</b></font><font color="#000000">{</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">personData&nbsp;=&nbsp;</font><font color="#7f0055"><b>new&nbsp;</b></font><font color="#000000">GuiDemoFlexiFormPersonData</font><font color="#000000">()</font><font color="#000000">;</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">}</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;calls&nbsp;our&nbsp;initForm(formlayout,listener,ureq)&nbsp;with&nbsp;default&nbsp;values.</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">initForm</font><font color="#000000">(</font><font color="#000000">ureq</font><font color="#000000">)</font><font color="#000000">;</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;after&nbsp;initialisation&nbsp;you&nbsp;may&nbsp;need&nbsp;to&nbsp;do&nbsp;some&nbsp;stuff</font><br /> <font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;but&nbsp;typically&nbsp;initForm(..)&nbsp;is&nbsp;the&nbsp;last&nbsp;call&nbsp;in&nbsp;the&nbsp;constructor.</font><br /> <font color="#ffffff">&nbsp;&nbsp;</font><font color="#000000">}</font></code> </td> <!-- end source code --> </tr> </table> </div> <!-- = END of automatically generated HTML code = --> <!-- ======================================================== -->
modules/angular2_material/src/components/button/button.html
mwringe/angular
<style>@import "angular2_material/src/components/button/button.css";</style> <span class="md-button-wrapper"><ng-content></ng-content></span>
src/node_modules/npm/html/doc/cli/npm.html
vpistis/openshift-etherpad-lite
<!doctype html> <html> <title>npm</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/cli/npm.html"> <script async=true src="../../static/toc.js"></script> <body> <div id="wrapper"> <h1><a href="../cli/npm.html">npm</a></h1> <p>javascript package manager</p> <h2 id="synopsis">SYNOPSIS</h2> <pre><code>npm &lt;command&gt; [args] </code></pre><h2 id="version">VERSION</h2> <p>2.7.6</p> <h2 id="description">DESCRIPTION</h2> <p>npm is the package manager for the Node JavaScript platform. It puts modules in place so that node can find them, and manages dependency conflicts intelligently.</p> <p>It is extremely configurable to support a wide variety of use cases. Most commonly, it is used to publish, discover, install, and develop node programs.</p> <p>Run <code>npm help</code> to get a list of available commands.</p> <h2 id="introduction">INTRODUCTION</h2> <p>You probably got npm because you want to install stuff.</p> <p>Use <code>npm install blerg</code> to install the latest version of &quot;blerg&quot;. Check out <code><a href="../cli/npm-install.html"><a href="../cli/npm-install.html">npm-install(1)</a></a></code> for more info. It can do a lot of stuff.</p> <p>Use the <code>npm search</code> command to show everything that&#39;s available. Use <code>npm ls</code> to show everything you&#39;ve installed.</p> <h2 id="dependencies">DEPENDENCIES</h2> <p>If a package references to another package with a git URL, npm depends on a preinstalled git.</p> <p>If one of the packages npm tries to install is a native node module and requires compiling of C++ Code, npm will use <a href="https://github.com/TooTallNate/node-gyp">node-gyp</a> for that task. For a Unix system, <a href="https://github.com/TooTallNate/node-gyp">node-gyp</a> needs Python, make and a buildchain like GCC. On Windows, Python and Microsoft Visual Studio C++ is needed. Python 3 is not supported by <a href="https://github.com/TooTallNate/node-gyp">node-gyp</a>. For more information visit <a href="https://github.com/TooTallNate/node-gyp">the node-gyp repository</a> and the <a href="https://github.com/TooTallNate/node-gyp/wiki">node-gyp Wiki</a>.</p> <h2 id="directories">DIRECTORIES</h2> <p>See <code><a href="../files/npm-folders.html"><a href="../files/npm-folders.html">npm-folders(5)</a></a></code> to learn about where npm puts stuff.</p> <p>In particular, npm has two modes of operation:</p> <ul> <li>global mode:<br>npm installs packages into the install prefix at <code>prefix/lib/node_modules</code> and bins are installed in <code>prefix/bin</code>.</li> <li>local mode:<br>npm installs packages into the current project directory, which defaults to the current working directory. Packages are installed to <code>./node_modules</code>, and bins are installed to <code>./node_modules/.bin</code>.</li> </ul> <p>Local mode is the default. Use <code>--global</code> or <code>-g</code> on any command to operate in global mode instead.</p> <h2 id="developer-usage">DEVELOPER USAGE</h2> <p>If you&#39;re using npm to develop and publish your code, check out the following help topics:</p> <ul> <li>json: Make a package.json file. See <code><a href="../files/package.json.html"><a href="../files/package.json.html">package.json(5)</a></a></code>.</li> <li>link: For linking your current working code into Node&#39;s path, so that you don&#39;t have to reinstall every time you make a change. Use <code>npm link</code> to do this.</li> <li>install: It&#39;s a good idea to install things if you don&#39;t need the symbolic link. Especially, installing other peoples code from the registry is done via <code>npm install</code></li> <li>adduser: Create an account or log in. Credentials are stored in the user config file.</li> <li>publish: Use the <code>npm publish</code> command to upload your code to the registry.</li> </ul> <h2 id="configuration">CONFIGURATION</h2> <p>npm is extremely configurable. It reads its configuration options from 5 places.</p> <ul> <li>Command line switches:<br>Set a config with <code>--key val</code>. All keys take a value, even if they are booleans (the config parser doesn&#39;t know what the options are at the time of parsing.) If no value is provided, then the option is set to boolean <code>true</code>.</li> <li>Environment Variables:<br>Set any config by prefixing the name in an environment variable with <code>npm_config_</code>. For example, <code>export npm_config_key=val</code>.</li> <li>User Configs:<br>The file at $HOME/.npmrc is an ini-formatted list of configs. If present, it is parsed. If the <code>userconfig</code> option is set in the cli or env, then that will be used instead.</li> <li>Global Configs:<br>The file found at ../etc/npmrc (from the node executable, by default this resolves to /usr/local/etc/npmrc) will be parsed if it is found. If the <code>globalconfig</code> option is set in the cli, env, or user config, then that file is parsed instead.</li> <li>Defaults:<br>npm&#39;s default configuration options are defined in lib/utils/config-defs.js. These must not be changed.</li> </ul> <p>See <code><a href="../misc/npm-config.html"><a href="../misc/npm-config.html">npm-config(7)</a></a></code> for much much more information.</p> <h2 id="contributions">CONTRIBUTIONS</h2> <p>Patches welcome!</p> <ul> <li>code: Read through <code><a href="../misc/npm-coding-style.html"><a href="../misc/npm-coding-style.html">npm-coding-style(7)</a></a></code> if you plan to submit code. You don&#39;t have to agree with it, but you do have to follow it.</li> <li>docs: If you find an error in the documentation, edit the appropriate markdown file in the &quot;doc&quot; folder. (Don&#39;t worry about generating the man page.)</li> </ul> <p>Contributors are listed in npm&#39;s <code>package.json</code> file. You can view them easily by doing <code>npm view npm contributors</code>.</p> <p>If you would like to contribute, but don&#39;t know what to work on, check the issues list or ask on the mailing list.</p> <ul> <li><a href="http://github.com/npm/npm/issues">http://github.com/npm/npm/issues</a></li> <li><a href="&#109;&#97;&#x69;&#x6c;&#116;&#111;&#x3a;&#110;&#x70;&#109;&#x2d;&#64;&#x67;&#x6f;&#111;&#103;&#108;&#101;&#x67;&#114;&#x6f;&#117;&#112;&#x73;&#46;&#x63;&#111;&#x6d;">&#110;&#x70;&#109;&#x2d;&#64;&#x67;&#x6f;&#111;&#103;&#108;&#101;&#x67;&#114;&#x6f;&#117;&#112;&#x73;&#46;&#x63;&#111;&#x6d;</a></li> </ul> <h2 id="bugs">BUGS</h2> <p>When you find issues, please report them:</p> <ul> <li>web: <a href="http://github.com/npm/npm/issues">http://github.com/npm/npm/issues</a></li> <li>email: <a href="&#109;&#97;&#105;&#108;&#x74;&#x6f;&#58;&#x6e;&#112;&#x6d;&#x2d;&#64;&#103;&#x6f;&#x6f;&#x67;&#108;&#x65;&#x67;&#114;&#111;&#117;&#x70;&#115;&#x2e;&#99;&#x6f;&#109;">&#x6e;&#112;&#x6d;&#x2d;&#64;&#103;&#x6f;&#x6f;&#x67;&#108;&#x65;&#x67;&#114;&#111;&#117;&#x70;&#115;&#x2e;&#99;&#x6f;&#109;</a></li> </ul> <p>Be sure to include <em>all</em> of the output from the npm command that didn&#39;t work as expected. The <code>npm-debug.log</code> file is also helpful to provide.</p> <p>You can also look for isaacs in #node.js on irc://irc.freenode.net. He will no doubt tell you to put the output in a gist or email.</p> <h2 id="author">AUTHOR</h2> <p><a href="http://blog.izs.me/">Isaac Z. Schlueter</a> :: <a href="https://github.com/isaacs/">isaacs</a> :: <a href="http://twitter.com/izs">@izs</a> :: <a href="&#109;&#x61;&#105;&#108;&#116;&#x6f;&#58;&#x69;&#64;&#x69;&#122;&#115;&#x2e;&#109;&#x65;">&#x69;&#64;&#x69;&#122;&#115;&#x2e;&#109;&#x65;</a></p> <h2 id="see-also">SEE ALSO</h2> <ul> <li><a href="../cli/npm-help.html"><a href="../cli/npm-help.html">npm-help(1)</a></a></li> <li><a href="../misc/npm-faq.html"><a href="../misc/npm-faq.html">npm-faq(7)</a></a></li> <li><a href="../../doc/README.html"><a href="../../doc/README.html">README</a></a></li> <li><a href="../files/package.json.html"><a href="../files/package.json.html">package.json(5)</a></a></li> <li><a href="../cli/npm-install.html"><a href="../cli/npm-install.html">npm-install(1)</a></a></li> <li><a href="../cli/npm-config.html"><a href="../cli/npm-config.html">npm-config(1)</a></a></li> <li><a href="../misc/npm-config.html"><a href="../misc/npm-config.html">npm-config(7)</a></a></li> <li><a href="../files/npmrc.html"><a href="../files/npmrc.html">npmrc(5)</a></a></li> <li><a href="../misc/npm-index.html"><a href="../misc/npm-index.html">npm-index(7)</a></a></li> <li><a href="../api/npm.html"><a href="../api/npm.html">npm(3)</a></a></li> </ul> </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 &mdash; npm@2.7.6</p>
libs/boost/libs/preprocessor/doc/headers/facilities/identity.html
flingone/frameworks_base_cmds_remoted
<html> <head> <title>facilities/identity.hpp</title> <link rel="stylesheet" type="text/css" href="../../styles.css"> </head> <body> <div style="margin-left: 0px;"> The <b>facilities/identity.hpp</b> header defines a utility macro to use with <b>BOOST_PP_IF</b> and <b>BOOST_PP_IIF</b>. </div> <h4>Usage</h4> <div class="code"> #include <b>&lt;boost/preprocessor/facilities/identity.hpp&gt;</b> </div> <h4>Contents</h4> <ul> <li><a href="../../ref/identity.html">BOOST_PP_IDENTITY</a></li> </ul> <hr size="1"> <div style="margin-left: 0px;"> <i>© Copyright <a href="http://www.housemarque.com" target="_top">Housemarque Oy</a> 2002</i> </br><i>© Copyright Paul Mensonides 2002</i> </div> <div style="margin-left: 0px;"> <p><small>Distributed under the Boost Software License, Version 1.0. (See accompanying file <a href="../../../../../LICENSE_1_0.txt">LICENSE_1_0.txt</a> or copy at <a href= "http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p> </div> </body> </html>
src/server/WebRoot/apps/Youtube/lib/onyx/api/build/api.css
pierotofy/glassomium
/* ../source/foss/syntaxhighlighter_3.0.83_fork/sh-min.css */ /* styles/shCoreEclipse.css */ /** * SyntaxHighlighter * http://alexgorbatchev.com/SyntaxHighlighter * * SyntaxHighlighter is donationware. If you are using it, please donate. * http://alexgorbatchev.com/SyntaxHighlighter/donate.html * * @version * 3.0.83 (July 02 2010) * * @copyright * Copyright (C) 2004-2010 Alex Gorbatchev. * * @license * Dual licensed under the MIT and GPL licenses. */ .syntaxhighlighter a, .syntaxhighlighter div, .syntaxhighlighter code, .syntaxhighlighter table, .syntaxhighlighter table td, .syntaxhighlighter table tr, .syntaxhighlighter table tbody, .syntaxhighlighter table thead, .syntaxhighlighter table caption, .syntaxhighlighter textarea { -moz-border-radius: 0 0 0 0 !important; -webkit-border-radius: 0 0 0 0 !important; background: none !important; border: 0 !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0 !important; outline: 0 !important; overflow: visible !important; padding: 0 !important; position: static !important; right: auto !important; text-align: left !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; font-weight: normal !important; font-style: normal !important; font-size: 1em !important; min-height: inherit !important; min-height: auto !important; } .syntaxhighlighter { width: 100% !important; margin: 1em 0 1em 0 !important; position: relative !important; overflow: auto !important; font-size: 1em !important; } .syntaxhighlighter.source { overflow: hidden !important; } .syntaxhighlighter .bold { font-weight: bold !important; } .syntaxhighlighter .italic { font-style: italic !important; } .syntaxhighlighter .line { white-space: pre !important; } .syntaxhighlighter table { width: 100% !important; } .syntaxhighlighter table caption { text-align: left !important; padding: .5em 0 0.5em 1em !important; } .syntaxhighlighter table td.code { width: 100% !important; } .syntaxhighlighter table td.code .container { position: relative !important; } .syntaxhighlighter table td.code .container textarea { box-sizing: border-box !important; position: absolute !important; left: 0 !important; top: 0 !important; width: 100% !important; height: 100% !important; border: none !important; background: white !important; padding-left: 1em !important; overflow: hidden !important; white-space: pre !important; } .syntaxhighlighter table td.gutter .line { text-align: right !important; padding: 0 0.5em 0 1em !important; } .syntaxhighlighter table td.code .line { padding: 0 1em !important; } .syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line { padding-left: 0em !important; } .syntaxhighlighter.show { display: block !important; } .syntaxhighlighter.collapsed table { display: none !important; } .syntaxhighlighter.collapsed .toolbar { padding: 0.1em 0.8em 0em 0.8em !important; font-size: 1em !important; position: static !important; width: auto !important; height: auto !important; } .syntaxhighlighter.collapsed .toolbar span { display: inline !important; margin-right: 1em !important; } .syntaxhighlighter.collapsed .toolbar span a { padding: 0 !important; display: none !important; } .syntaxhighlighter.collapsed .toolbar span a.expandSource { display: inline !important; } .syntaxhighlighter .toolbar { position: absolute !important; right: 1px !important; top: 1px !important; width: 11px !important; height: 11px !important; font-size: 10px !important; z-index: 10 !important; } .syntaxhighlighter .toolbar span.title { display: inline !important; } .syntaxhighlighter .toolbar a { display: block !important; text-align: center !important; text-decoration: none !important; padding-top: 1px !important; } .syntaxhighlighter .toolbar a.expandSource { display: none !important; } .syntaxhighlighter.ie { font-size: .9em !important; padding: 1px 0 1px 0 !important; } .syntaxhighlighter.ie .toolbar { line-height: 8px !important; } .syntaxhighlighter.ie .toolbar a { padding-top: 0px !important; } .syntaxhighlighter.printing .line.alt1 .content, .syntaxhighlighter.printing .line.alt2 .content, .syntaxhighlighter.printing .line.highlighted .number, .syntaxhighlighter.printing .line.highlighted.alt1 .content, .syntaxhighlighter.printing .line.highlighted.alt2 .content { background: none !important; } .syntaxhighlighter.printing .line .number { color: #bbbbbb !important; } .syntaxhighlighter.printing .line .content { color: black !important; } .syntaxhighlighter.printing .toolbar { display: none !important; } .syntaxhighlighter.printing a { text-decoration: none !important; } .syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a { color: black !important; } .syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a { color: #008200 !important; } .syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a { color: blue !important; } .syntaxhighlighter.printing .keyword { color: #006699 !important; font-weight: bold !important; } .syntaxhighlighter.printing .preprocessor { color: gray !important; } .syntaxhighlighter.printing .variable { color: #aa7700 !important; } .syntaxhighlighter.printing .value { color: #009900 !important; } .syntaxhighlighter.printing .functions { color: #ff1493 !important; } .syntaxhighlighter.printing .constants { color: #0066cc !important; } .syntaxhighlighter.printing .script { font-weight: bold !important; } .syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a { color: gray !important; } .syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a { color: #ff1493 !important; } .syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a { color: red !important; } .syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a { color: black !important; } .syntaxhighlighter { background-color: white !important; } .syntaxhighlighter .line.alt1 { background-color: white !important; } .syntaxhighlighter .line.alt2 { background-color: white !important; } .syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 { background-color: #c3defe !important; } .syntaxhighlighter .line.highlighted.number { color: white !important; } .syntaxhighlighter table caption { color: black !important; } .syntaxhighlighter .gutter { color: #787878 !important; } .syntaxhighlighter .gutter .line { border-right: 3px solid #d4d0c8 !important; } .syntaxhighlighter .gutter .line.highlighted { background-color: #d4d0c8 !important; color: white !important; } .syntaxhighlighter.printing .line .content { border: none !important; } .syntaxhighlighter.collapsed { overflow: visible !important; } .syntaxhighlighter.collapsed .toolbar { color: #3f5fbf !important; background: white !important; border: 1px solid #d4d0c8 !important; } .syntaxhighlighter.collapsed .toolbar a { color: #3f5fbf !important; } .syntaxhighlighter.collapsed .toolbar a:hover { color: #aa7700 !important; } .syntaxhighlighter .toolbar { color: #a0a0a0 !important; background: #d4d0c8 !important; border: none !important; } .syntaxhighlighter .toolbar a { color: #a0a0a0 !important; } .syntaxhighlighter .toolbar a:hover { color: red !important; } .syntaxhighlighter .plain, .syntaxhighlighter .plain a { color: black !important; } .syntaxhighlighter .comments, .syntaxhighlighter .comments a { color: #3f5fbf !important; } .syntaxhighlighter .string, .syntaxhighlighter .string a { color: #2a00ff !important; } .syntaxhighlighter .keyword { color: #7f0055 !important; } .syntaxhighlighter .preprocessor { color: #646464 !important; } .syntaxhighlighter .variable { color: #aa7700 !important; } .syntaxhighlighter .value { color: #009900 !important; } .syntaxhighlighter .functions { color: #ff1493 !important; } .syntaxhighlighter .constants { color: #0066cc !important; } .syntaxhighlighter .script { font-weight: bold !important; color: #7f0055 !important; background-color: none !important; } .syntaxhighlighter .color1, .syntaxhighlighter .color1 a { color: gray !important; } .syntaxhighlighter .color2, .syntaxhighlighter .color2 a { color: #ff1493 !important; } .syntaxhighlighter .color3, .syntaxhighlighter .color3 a { color: red !important; } .syntaxhighlighter .keyword { font-weight: bold !important; } .syntaxhighlighter .xml .keyword { color: #3f7f7f !important; font-weight: normal !important; } .syntaxhighlighter .xml .color1, .syntaxhighlighter .xml .color1 a { color: #7f007f !important; } .syntaxhighlighter .xml .string { font-style: italic !important; color: #2a00ff !important; } /* patch.css */ .syntaxhighlighter { overflow: visible !important; } /* ../source/css/tab.css */ .tabbar { background-color: #333; white-space: nowrap; position: relative; z-index: 2; } .tabbar img { display: none; } .tabbar .active img { display: inline-block; } .tab.focus, .theme-fu .tab:focus { outline: none; } .tab { cursor: pointer; display: inline-block; white-space: nowrap; color: #454545; background: #A5A6A7 url(../images/tab-gradient.png) left top repeat-x; line-height: 38px; padding: 0 12px 0 10px; margin: 0; border: 3px solid #727373; } .tab.active, .active-tab-bg { background: #0A8CAA url(../images/tab-active-gradient.png) left top repeat-x; } .tab.active { border: 3px solid #0B5A74; color: #D8F5FF; } /* ../source/css/app.css */ body { font-family: Arial, Verdana, Helvetica, sans-serif; font-size: 12px; line-height: 1.5; background-color: #D7D7D7; } #app { background-color: #C6C8CB; } #app a { color: #124252 !important; text-decoration: none; padding-bottom: 1px; border-bottom: 2px dotted #ccc; } #app_header { cursor: pointer; line-height: 50px; height: 50px; background: #0B0C0D url(../images/enyo-logo.png) 5px center no-repeat; } #app_body { top: 50px; } #app_leftPanel { width: 270px; } #app_docPanel { left: 270px; background-color: #F8F8F8; } #app_indexTabs { height: 44px; } #app_indexTabPanels { top: 44px; border-right: 1px dotted gray; } #app_indexBody { color: #124252; padding: 8px 8px 0 8px; white-space: nowrap; } #app_searchBar { background-color: #E7E7E7; height: 40px; padding: 2px; } #app_searchScroller { top: 44px; } #app_searchBody { padding: 8px; white-space: nowrap; } #app_docPanel_tabs { height: 44px; } #app_docPanel_body { min-width: 500px; padding: 16px; } .tab-icon { display: inline-block; height: 14px; width: 14px; margin-right: 6px; vertical-align: middle; } .api-tab-icon { background: url(../images/icons.png) -14px -98px no-repeat; } .modules-tab-icon { background: url(../images/icons.png) -14px -28px no-repeat; } .index-tab-icon { background: url(../images/icons.png) -14px -56px no-repeat; } .close-tab-img { margin: 0; padding: 4px 4px 5px 8px; vertical-align: middle; } /* .close-tab-icon { width: 0; margin: 0; } .active .close-tab-icon { width: 14px; margin: 0 0 0 6px; background: url(../images/icons.png) -14px -112px no-repeat; } */ /* ../source/css/format.css */ .name { color: #00A400; font-size: 24px; vertical-align: middle; line-height: 36px; } .protected { display: inline-block; height: 16px; width: 16px; vertical-align: middle; background: url(../images/protected-8.png) center no-repeat; } .path { font-style: italic; } .index-divider { border-bottom: 1px dotted #C2C4C6; line-height: normal; margin: 6px 0 2px 0; } .index-item { margin-left: 16px; } .small-type { display: inline-block; box-sizing: border-box; height: 14px; width: 14px; color: transparent; margin: 0 5px 0 0; vertical-align: middle; background: url(../images/icons.png) 0px -14px no-repeat; } .small-kind-type { background: url(../images/icons.png) 0px 0px no-repeat; } .small-module-type { background: url(../images/icons.png) 0px -28px no-repeat; } .small-function-type { background: url(../images/icons.png) 0px -42px no-repeat; } .small-method-type { background: url(../images/icons.png) 0px -56px no-repeat; } .small-property-type { background: url(../images/icons.png) 0px -70px no-repeat; } .small-package-type { background: url(../images/icons.png) 0px -84px no-repeat; } .type { display:inline-block; box-sizing: border-box; height: 24px; width: 24px; color:transparent; margin: 0 8px 0 0; vertical-align: middle; background: url(../images/icons-24.png) 0px -24px no-repeat; } .object-type { } .kind-type { background: url(../images/icons-24.png) 0px 0px no-repeat; } .module-type { background: url(../images/icons-24.png) 0px -48px no-repeat; } .function-type { background: url(../images/icons-24.png) 0px -72px no-repeat; } .method-type { background: url(../images/icons-24.png) 0px -96px no-repeat; } .property-type { background: url(../images/icons-24.png) 0px -120px no-repeat; } .package-type { background: url(../images/icons-24.png) 0px -144px no-repeat; }
third_party/blink/web_tests/fast/dom/shadow/selections-in-shadow.html
scheib/chromium
<!DOCTYPE html> <html> <head> <script src="../../../resources/js-test.js"></script> <script src="../resources/event-sender-util.js"></script> <script src="../resources/shadow-test-driver.js"></script> </head> <body> <div id="container"></div> <pre id="console"></div> <script> function createShadowDOM(shadowRoot, name) { var hostInShadowRoot = document.createElement('span'); var nestedShadowRoot = hostInShadowRoot.attachShadow({mode: 'open'}); var spanInShadow = createSpanWithText('SPAN IN NESTED IN SHADOW ' + name); nestedShadowRoot.appendChild(spanInShadow); var span1 = createSpanWithText('SPAN 1 IN' + name); var span2 = createSpanWithText('SPAN 2 IN' + name); var span3 = createSpanWithText('SPAN 3 IN' + name); shadowRoot.appendChild(span1); shadowRoot.appendChild(hostInShadowRoot); shadowRoot.appendChild(span2); shadowRoot.appendChild(document.createElement('shadow')); shadowRoot.appendChild(span3); return new Array(spanInShadow, span1, span2, span3); } var spanInContainer1 = createSpanWithText('CONTAINER1'); var spanInContainer2 = createSpanWithText('CONTAINER2'); var host = document.createElement('div'); var spanInHost = createSpanWithText('IN HOST'); host.appendChild(spanInHost); var olderShadowRoot = host.attachShadow({mode: 'open'}); var spans1 = createShadowDOM(olderShadowRoot, 'OLDER'); var container = document.getElementById('container'); container.appendChild(spanInContainer1); container.appendChild(host); container.appendChild(spanInContainer2); var allSpans = new Array(spanInContainer1, spanInContainer2, spanInHost); allSpans = allSpans.concat(spans1); // Do Layout container.offsetLeft; // Selects all combinations of spans. for (var i = 0; i < allSpans.length; ++i) { for (var j = 0; j < allSpans.length; ++j) { mouseMoveToElem(allSpans[i]); eventSender.mouseDown(); mouseMoveToElem(allSpans[j]); eventSender.mouseUp(); // Checks havings the same selection. debug(allSpans[i].textContent + ' --> ' + allSpans[j].textContent); shouldBe("internals.treeScopeRootNode(window.getSelection().anchorNode)", "internals.treeScopeRootNode(window.getSelection().focusNode)"); // clear seleciton. window.getSelection().removeAllRanges(); } } // Do double click for all spans. for (var i = 0; i < allSpans.length; ++i) { mouseMoveToElem(allSpans[i]); eventSender.mouseDown(); eventSender.mouseUp(); eventSender.mouseDown(); eventSender.mouseUp(); // Checks havings the same selection. debug(allSpans[i].textContent + ": double click"); shouldBe("internals.treeScopeRootNode(window.getSelection().anchorNode)", "internals.treeScopeRootNode(window.getSelection().focusNode)"); window.getSelection().removeAllRanges(); } // Removes while (container.firstChild) container.removeChild(container.firstChild); var successfullyParsed = true; </script> </body> </html>
LayoutTests/ietestcenter/Javascript/15.2.3.12-3-6.html
modulexcite/blink
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <html> <head> <script src="../../resources/js-test.js"></script> </head> <body> <p id="description"></p> <div id="console"></div> <script src="resources/ie-test-pre.js"></script> <script src="TestCases/15.2.3.12-3-6.js"></script> <script src="resources/ie-test-post.js"></script> </body> </html>
baker/src/main/assets/abaker_usage/css/read.css
drking0211/Whoswho-android
body { background-image: url('../img/abaker-ui-read-hand.png'); background-repeat: no-repeat; background-size: cover; background-position:center center; } .overlay { }
third_party/blink/web_tests/fast/css/counters/content-021.html
chromium/chromium
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html> <head> <title>WebKit's adaptation of http://test.csswg.org/suites/css2.1/20110111/html4/content-021.htm</title> <link rel="originalAuthor" title="Microsoft" href="http://www.microsoft.com/"> <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content"> <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content"> <meta name="flags" content=""> <meta name="assert" content="The 'content' property properly handles counter autonesting when anonymous renderers intervene between the element and its :before descendant."> <style type="text/css"> #testView div:before { content: counters(test, "."); counter-reset: test; } #div1 { border: 2px solid black; } </style> <script src="../../../resources/js-test.js"></script> <script type="text/javascript"> if (window.testRunner) testRunner.dumpAsText(); function run() { if (!window.testRunner) return; shouldBe("internals.counterValue(document.getElementById('div1'))", "'0'"); shouldBe("internals.counterValue(document.getElementById('div2'))", "'0.0'"); debug(''); debug('TEST COMPLETE'); // Eliminate confusing messages (counter values won't be dumped by dumpAsText). var viewElement = document.getElementById("testView"); viewElement.parentNode.removeChild(viewElement); } </script> </head> <body onload="run();"> <p>This is the WebKit version of <a href="http://test.csswg.org/suites/css2.1/20110111/html4/content-021.htm">CSS Test: Content using a 'counters()' function with a string value</a>.</p> <div id="testView"> <p>Test passes if there are the numbers "0" and "0.0" in the box below.</p> <div id="div1"> <div id="div2"></div> </div> </div> <div id="console"></div> </body> </html>
third_party/blink/web_tests/fast/multicol/balance-repeating-table-headers.html
scheib/chromium
<!DOCTYPE html> <p>There should be a yellow/hotpink square 2x2 chessboard below.</p> <div style="columns:3; column-gap:0; width:60px; line-height:20px; orphans:1; widows:1;"> <div style="overflow: hidden;"> <div style="background:yellow;"><br></div> <table cellspacing="0" cellpadding="0" style="width:40px;"> <!-- The thead should be repeated at the top of each column that the table breaks into. --> <thead style="break-inside:avoid;"> <tr> <td style="background:hotpink;"><br></td> </tr> </thead> <tbody> <tr> <td><br></td> </tr> <tr> <td><br></td> </tr> <tr> <td><br></td> </tr> <tr> <td style="background:yellow;"><br></td> </tr> <tr> <td><br></td> </tr> <tr> <td><br></td> </tr> <tr> <td><br></td> </tr> </tbody> </table> <br> <br> <br> </div> </div>
chromium/chrome/test/data/favicon/page_with_manifest.html
ric2b/Vivaldi-browser
<html> <head> <link rel="manifest" href="manifest.json"/> </head> </html>
src/main/java/se/citerus/dddsample/interfaces/booking/facade/internal/package.html
samuelJost/ddd_example
<html> <body> <p> Internal parts of the remote facade API. </p> </body> </html>
readthedocs/templates/search/elastic_search.html
sid-kap/readthedocs.org
{% extends "projects/base_project.html" %} {% load core_tags i18n highlight %} {% block title %}{% blocktrans with query=query|default:"" %}Search: {{ query }} {% endblocktrans %}{% endblock %} {% block extra_links %} {{ super }} <style> .navigable > ul > li { border-bottom: 0; } </style> {% endblock %} {% block content %} <div class="navigable"> <ul> <li class="{% if type == 'project' %}active{% endif %}"><a href="?{% url_replace request 'type' 'project' %}">Projects</a></li> <li class="{% if type == 'file' %}active{% endif %}"><a href="?{% url_replace request 'type' 'file' %}">Files</a></li> <hr> {% if type == 'project' %} {% if facets.language %} <h5> Language </h5> {% for name, count in facets.language.items %} <li class="{% if language == name %}active{% endif %}"> {% if language == name %} <a href="?{% url_replace request 'language' '' %}">{{ name }} {% else %} <a href="?{% url_replace request 'language' name %}">{{ name }} {% endif %} ({{ count }}) </a> </li> {% endfor %} {% endif %} {% endif %} {% if type == 'file' %} {% if facets.project %} <h5> Projects </h5> {% for name, count in facets.project.items %} <li class="{% if project == name %}active{% endif %}"> {% if project == name %} <a href="?{% url_replace request 'project' '' %}">{{ name }} {% else %} <a href="?{% url_replace request 'project' name %}">{{ name }} {% endif %} ({{ count }}) </a> </li> {% endfor %} {% endif %} {% if facets.version %} <h5>Version</h5> {% for name, count in facets.version.items %} <li class="{% if version == name %}active{% endif %}"> {% if version == name %} <a href="?{% url_replace request 'version' '' %}">{{ name }} {% else %} <a href="?{% url_replace request 'version' name %}">{{ name }} {% endif %} ({{ count }}) </a> </li> {% endfor %} {% endif %} {% if facets.taxonomy %} <h5>Taxonomy</h5> {% for name, count in facets.taxonomy.items %} <li class="{% if taxonomy == name %}active{% endif %}"> {% if taxonomy == name %} <a href="?{% url_replace request 'taxonomy' '' %}">{{ name }} {% else %} <a href="?{% url_replace request 'taxonomy' name %}">{{ name }} {% endif %} ({{ count }}) </a> </li> {% endfor %} {% endif %} {% endif %} <div class="search-sponsored"> Search is sponsored by <a href="https://www.elastic.co/">Elastic</a>, and hosted at <a href="http://found.no/">Found</a>. </div> </ul> <div> <h2>Search</h2> <!-- BEGIN search form --> <div class="wide-search-bar"> <div class="wide-search-bar-wrapper clearfix"> <form action="." method="GET"> <div class="text-input-wrapper"> <input type="text" name="q" value="{{ query|default_if_none:"" }}" id="id_elastic_project_search"> {% if type %} <input type="hidden" name="type" value="{{ type }}"> {% endif %} {% if project %} <input type="hidden" name="project" value="{{ project }}"> {% endif %} {% if taxonomy %} <input type="hidden" name="taxonomy" value="{{ taxonomy }}"> {% endif %} {% if version %} <input type="hidden" name="version" value="{{ version }}"> {% endif %} {% if language %} <input type="hidden" name="language" value="{{ language }}"> {% endif %} </div> <div class="submit-input-wrapper"> {% comment %}Translators: This is about starting a search{% endcomment %} <input type="submit" value="{% trans "Go crazy." %}"> </div> </form> </div> </div> <!-- END search form --> {% if query %} <!-- BEGIN search results --> <div class="module"> <div class="module-wrapper"> <div class="module-header"> <h3>{% blocktrans with query=query|default:"" %}Results for {{ query }}{% endblocktrans %}</h3> </div> <div class="module-list"> <div class="module-list-wrapper"> <ul> {% for result in results.hits.hits %} <li class="module-item"> <p class="module-item-title"> {% if result.fields.name %} {# Project #} <a href="{{ result.fields.url }}">{{ result.fields.name }}</a> {% for fragment in result.highlight.description|slice:":3" %} <p> ...{{ fragment|safe }}... </p> <br> {% endfor %} {# End Project #} {% elif result.fields.path %} {# File #} <a href="{% doc_url result.fields.project|get_project result.fields.version result.fields.path %}?highlight={{ query }}">{{ result.fields.project }} - {{ result.fields.title|safe }}</a> {% for fragment in result.highlight.content|slice:":3" %} <p> ...{{ fragment|safe }}... </p> {% endfor %} {# End File #} {% endif %} </p> </li> {% empty %} <li class="module-item"><span class="quiet">{% trans "No results found. Bummer." %}</span></li> {% endfor %} </ul> </div> </div> </div> </div> <!-- END search results --> {% if page.has_previous or page.has_next %} <!-- BEGIN search pagination --> <div class="pagination"> {% if page.has_previous %} <a href="?q={{ query }}&amp;page={{ page.previous_page_number }}">&laquo; {% trans "Previous" %}</a> {% else %} <span class="disabled">&laquo; {% trans "Previous" %}</span> {% endif %} {% if page.has_next %} <a class="next" href="?q={{ query }}&amp;page={{ page.next_page_number }}">{% trans "Next" %} &raquo;</a> {% else %} <span class="next disabled">{% trans "Next" %} &raquo;</span> {% endif %} </div> <!-- END search pagination --> {% endif %} {% else %} {# Show some example queries to run, maybe query syntax, something else? #} {% endif %} </div> </div> {% endblock %}
ajax/libs/oojs-ui/0.24.4/oojs-ui-apex-icons-interactions.rtl.css
holtkamp/cdnjs
/*! * OOjs UI v0.24.4 * https://www.mediawiki.org/wiki/OOjs_UI * * Copyright 2011–2018 OOjs UI Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * * Date: 2018-01-02T19:09:04Z */ .oo-ui-icon-add { background-image: url('themes/apex/images/icons/add.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/add.svg'); } .oo-ui-icon-advanced { background-image: url('themes/apex/images/icons/advanced.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/advanced.svg'); } .oo-ui-icon-browser { background-image: url('themes/apex/images/icons/browser-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/browser-rtl.svg'); } .oo-ui-icon-cancel { background-image: url('themes/apex/images/icons/cancel.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/cancel.svg'); } .oo-ui-icon-check { background-image: url('themes/apex/images/icons/check.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/check.svg'); } .oo-ui-icon-clear { background-image: url('themes/apex/images/icons/clear.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/clear.svg'); } .oo-ui-icon-clock { background-image: url('themes/apex/images/icons/clock.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/clock.svg'); } .oo-ui-icon-close { background-image: url('themes/apex/images/icons/close.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/close.svg'); } .oo-ui-icon-ellipsis { background-image: url('themes/apex/images/icons/ellipsis.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/ellipsis.svg'); } .oo-ui-icon-feedback { background-image: url('themes/apex/images/icons/feedback-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/feedback-rtl.svg'); } .oo-ui-icon-funnel { background-image: url('themes/apex/images/icons/funnel-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/funnel-rtl.svg'); } .oo-ui-icon-heart { background-image: url('themes/apex/images/icons/heart.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/heart.svg'); } .oo-ui-icon-help { background-image: url('themes/apex/images/icons/help-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/help-rtl.svg'); } /* @noflip */ .oo-ui-icon-help:lang(he) { background-image: url('themes/apex/images/icons/help-ltr.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/help-ltr.svg'); } /* @noflip */ .oo-ui-icon-help:lang(yi) { background-image: url('themes/apex/images/icons/help-ltr.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/help-ltr.svg'); } .oo-ui-icon-key { background-image: url('themes/apex/images/icons/key-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/key-rtl.svg'); } .oo-ui-icon-keyboard { background-image: url('themes/apex/images/icons/keyboard-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/keyboard-rtl.svg'); } .oo-ui-icon-lightbulb { background-image: url('themes/apex/images/icons/lightbulb.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/lightbulb.svg'); } .oo-ui-icon-logOut { background-image: url('themes/apex/images/icons/logOut-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/logOut-rtl.svg'); } .oo-ui-icon-newWindow { background-image: url('themes/apex/images/icons/newWindow-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/newWindow-rtl.svg'); } .oo-ui-icon-printer { background-image: url('themes/apex/images/icons/printer-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/printer-rtl.svg'); } .oo-ui-icon-reload { background-image: url('themes/apex/images/icons/reload-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/reload-rtl.svg'); } .oo-ui-icon-search { background-image: url('themes/apex/images/icons/search-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/search-rtl.svg'); } .oo-ui-icon-settings { background-image: url('themes/apex/images/icons/settings.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/settings.svg'); } .oo-ui-icon-subtract { background-image: url('themes/apex/images/icons/subtract.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/subtract.svg'); } .oo-ui-icon-watchlist { background-image: url('themes/apex/images/icons/watchlist-rtl.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/watchlist-rtl.svg'); }
lib/boost/doc/html/boost_asio/reference/socket_acceptor_service/native_non_blocking.html
Bloodyaugust/sugarlabcppboilerplate
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>socket_acceptor_service::native_non_blocking</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="../socket_acceptor_service.html" title="socket_acceptor_service"> <link rel="prev" href="native_handle_type.html" title="socket_acceptor_service::native_handle_type"> <link rel="next" href="native_non_blocking/overload1.html" title="socket_acceptor_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="../socket_acceptor_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.socket_acceptor_service.native_non_blocking"></a><a class="link" href="native_non_blocking.html" title="socket_acceptor_service::native_non_blocking">socket_acceptor_service::native_non_blocking</a> </h4></div></div></div> <p> <a class="indexterm" name="idp163143040"></a> Gets the non-blocking mode of the native acceptor implementation. </p> <pre class="programlisting"><span class="keyword">bool</span> <a class="link" href="native_non_blocking/overload1.html" title="socket_acceptor_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="socket_acceptor_service::native_non_blocking (1 of 2 overloads)">more...</a></em></span> </pre> <p> Sets the non-blocking mode of the native acceptor 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="socket_acceptor_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="socket_acceptor_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-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="native_handle_type.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../socket_acceptor_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>
EclipseProjects/ARBaseLib/doc/serialized-form.html
lazyjarvis/artoolkit5
<!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 Mon May 11 20:30:53 NZST 2015 --> <title>Serialized Form</title> <meta name="date" content="2015-05-11"> <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="Serialized Form"; } } 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><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>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="index.html?serialized-form.html" target="_top">Frames</a></li> <li><a href="serialized-form.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="Serialized Form" class="title">Serialized Form</h1> </div> <div class="serializedFormContainer"> <ul class="blockList"> <li class="blockList"> <h2 title="Package">Package&nbsp;org.artoolkit.ar.base.assets</h2> <ul class="blockList"> <li class="blockList"><a name="org.artoolkit.ar.base.assets.AssetFileTransferException"> <!-- --> </a> <h3>Class <a href="org/artoolkit/ar/base/assets/AssetFileTransferException.html" title="class in org.artoolkit.ar.base.assets">org.artoolkit.ar.base.assets.AssetFileTransferException</a> extends java.lang.Exception implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>1L</dd> </dl> </li> <li class="blockList"><a name="org.artoolkit.ar.base.assets.HashComputationException"> <!-- --> </a> <h3>Class <a href="org/artoolkit/ar/base/assets/HashComputationException.html" title="class in org.artoolkit.ar.base.assets">org.artoolkit.ar.base.assets.HashComputationException</a> extends java.lang.Exception implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>1L</dd> </dl> </li> </ul> </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><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>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="index.html?serialized-form.html" target="_top">Frames</a></li> <li><a href="serialized-form.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
tests/wpt/web-platform-tests/webauthn/createcredential-badargs-authnrselection.https.html
saneyuki/servo
<!DOCTYPE html> <meta charset="utf-8"> <title>WebAuthn navigator.credentials.create() authenticator selection Tests</title> <meta name="timeout" content="long"> <link rel="author" title="Adam Powers" href="mailto:adam@fidoalliance.org"> <link rel="help" href="https://w3c.github.io/webauthn/#iface-credential"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src=helpers.js></script> <body></body> <script> standardSetup(function() { "use strict"; var defaultAuthnrSel = { authenticatorAttachment: "cross-platform", requireResidentKey: false, userVerification: "preferred" }; // attachment var authnrSelAttachPlatform = cloneObject(defaultAuthnrSel); authnrSelAttachPlatform.authenticatorAttachment = "platform"; var authnrSelBadAttachEmptyStr = cloneObject(defaultAuthnrSel); authnrSelBadAttachEmptyStr.authenticatorAttachment = ""; var authnrSelBadAttachEmptyObj = cloneObject(defaultAuthnrSel); authnrSelBadAttachEmptyObj.authenticatorAttachment = {}; var authnrSelBadAttachNull = cloneObject(defaultAuthnrSel); authnrSelBadAttachNull.authenticatorAttachment = null; // resident key var authnrSelRkTrue = cloneObject(defaultAuthnrSel); authnrSelRkTrue.requireResidentKey = true; var authnrSelRkBadString = cloneObject(defaultAuthnrSel); authnrSelRkBadString.requireResidentKey = "foo"; // user verification var authnrSelUvRequired = cloneObject(defaultAuthnrSel); authnrSelUvRequired.userVerification = "required"; var authnrSelBadUvEmptyStr = cloneObject(defaultAuthnrSel); authnrSelBadUvEmptyStr.userVerification = ""; var authnrSelBadUvEmptyObj = cloneObject(defaultAuthnrSel); authnrSelBadUvEmptyObj.userVerification = {}; var authnrSelBadUvStr = cloneObject(defaultAuthnrSel); authnrSelBadUvStr.userVerification = "requiredshirtshoestshirt"; var authnrSelBadUvNull = cloneObject(defaultAuthnrSel); authnrSelBadUvNull.userVerification = null; // authenticatorSelection bad values new CreateCredentialsTest("options.publicKey.authenticatorSelection", []).runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection is empty array", new TypeError()); new CreateCredentialsTest("options.publicKey.authenticatorSelection", null).runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection is null", new TypeError()); new CreateCredentialsTest("options.publicKey.authenticatorSelection", "").runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection is empty string", new TypeError()); new CreateCredentialsTest("options.publicKey.authenticatorSelection", "none").runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection is string", new TypeError()); // authenticatorSelection bad attachment values new CreateCredentialsTest("options.publicKey.authenticatorSelection", authnrSelBadAttachEmptyStr).runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection attachment is empty string", new TypeError()); new CreateCredentialsTest("options.publicKey.authenticatorSelection", authnrSelBadAttachEmptyObj).runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection attachment is empty object", new TypeError()); new CreateCredentialsTest("options.publicKey.authenticatorSelection", authnrSelBadAttachNull).runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection attachment is null", new TypeError()); // XXX: assumes authnr is behaving like most U2F authnrs; really depends on the authnr or mock configuration new CreateCredentialsTest("options.publicKey.authenticatorSelection", authnrSelAttachPlatform).runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection attachment platform", "NotAllowedError"); // authenticatorSelection bad requireResidentKey values // XXX: assumes authnr is behaving like most U2F authnrs; really depends on the authnr or mock configuration new CreateCredentialsTest("options.publicKey.authenticatorSelection", authnrSelRkTrue).runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection residentKey true", "NotAllowedError"); new CreateCredentialsTest("options.publicKey.authenticatorSelection", authnrSelRkBadString).runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection residentKey is string", new TypeError()); // TODO: not sure if rk is "boolean" or "truthy"; add test cases if it should only accept boolean values // authenticatorSelection bad userVerification values new CreateCredentialsTest("options.publicKey.authenticatorSelection", authnrSelBadUvEmptyStr).runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection userVerification empty string", new TypeError()); new CreateCredentialsTest("options.publicKey.authenticatorSelection", authnrSelBadUvEmptyObj).runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection userVerification empty object", new TypeError()); new CreateCredentialsTest("options.publicKey.authenticatorSelection", authnrSelBadUvStr).runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection userVerification bad value", new TypeError()); new CreateCredentialsTest("options.publicKey.authenticatorSelection", authnrSelBadUvNull).runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection userVerification null", new TypeError()); // XXX: assumes this is a mock authenticator the properly reports that it is not doing userVerfication new CreateCredentialsTest("options.publicKey.authenticatorSelection", authnrSelUvRequired).runTest("Bad AuthenticatorSelectionCriteria: authenticatorSelection userVerification required", "NotAllowedError"); }); /* JSHINT */ /* globals standardSetup, CreateCredentialsTest, cloneObject */ </script>
public/400.html
mwangiann/RapidFTR
<!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>The page you were looking for doesn't exist (404)</title> <style type="text/css"> body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; } div.dialog { width: 25em; padding: 0 4em; margin: 4em auto 0 auto; border: 1px solid #ccc; border-right-color: #999; border-bottom-color: #999; } h1 { font-size: 100%; color: #f00; line-height: 1.5em; } </style> </head> <body> <div class="dialog"> <h1>Bad Request</h1> <p>The request to this resource was malformed.</p> </div> </body> </html>
lms/templates/navigation.html
nagyistoce/edx-platform
## mako <%namespace name='static' file='static_content.html'/> <%namespace file='main.html' import="login_query, stanford_theme_enabled"/> <%! from django.core.urlresolvers import reverse from django.utils.translation import ugettext as _ from microsite_configuration import microsite from microsite_configuration.templatetags.microsite import platform_name from ccx.overrides import get_current_ccx # App that handles subdomain specific branding import branding # app that handles site status messages from status.status import get_site_status_msg %> ## Provide a hook for themes to inject branding on top. <%block name="navigation_top" /> <%block> <% try: course_id = course.id.to_deprecated_string() except: # can't figure out a better way to get at a possibly-defined course var course_id = None site_status_msg = get_site_status_msg(course_id) %> % if site_status_msg: <div class="site-status"> <div class="inner-wrapper"> <span class="white-error-icon"></span> <p>${site_status_msg}</p> </div> </div> % endif </%block> <header id="global-navigation" class="global ${"slim" if course else ""}" > <nav class="nav-wrapper" aria-label="${_('Global')}"> <h1 class="logo"> <a href="${marketing_link('ROOT')}"> <%block name="navigation_logo"> <img src="${static.url(branding.get_logo_url())}" alt="${platform_name()}"/> </%block> </a> </h1> % if course: <h2 class="course-header"><span class="provider">${course.display_org_with_default | h}:</span> ${course.display_number_with_default | h} <% display_name = course.display_name_with_default if settings.FEATURES.get('CUSTOM_COURSES_EDX', False): ccx = get_current_ccx(course.id) if ccx: display_name = ccx.display_name %> ${display_name}</h2> % endif % if user.is_authenticated(): <ol class="left nav-global authenticated"> <%block name="navigation_global_links_authenticated"> % if settings.FEATURES.get('COURSES_ARE_BROWSABLE'): <li class="nav-global-01"> <a href="${marketing_link('COURSES')}">${_('Find Courses')}</a> </li> % endif %if settings.FEATURES.get('ENABLE_SYSADMIN_DASHBOARD','') and user.is_staff: <li> ## Translators: This is short for "System administration". <a href="${reverse('sysadmin')}">${_("Sysadmin")}</a> </li> %endif </%block> </ol> <ol class="user"> <li class="primary"> <a href="${reverse('dashboard')}" class="user-link"> <span class="sr">${_("Dashboard for:")}</span> <div> ${user.username} </div> </a> </li> <li class="primary"> <a href="#" class="dropdown" aria-haspopup="true" aria-expanded="false"><span class="sr">${_("More options dropdown")}</span><i class="fa fa-sort-desc" aria-hidden="true"></i></a> <ul class="dropdown-menu" aria-label="More Options" role="menu"> <%block name="navigation_dropdown_menu_links" > <li><a href="${reverse('dashboard')}">${_("Dashboard")}</a></li> <li><a href="${reverse('learner_profile', kwargs={'username': user.username})}">${_("Profile")}</a></li> <li><a href="${reverse('account_settings')}">${_("Account")}</a></li> </%block> <li><a href="${reverse('logout')}" role="menuitem">${_("Sign Out")}</a></li> </ul> </li> </ol> % if should_display_shopping_cart_func(): # see shoppingcart.context_processor.user_has_cart_context_processor <ol class="user"> <li class="primary"> <a class="shopping-cart" href="${reverse('shoppingcart.views.show_cart')}"> <i class="icon fa fa-shopping-cart"></i> ${_("Shopping Cart")} </a> </li> </ol> % endif % else: <ol class="left nav-global"> <%block name="navigation_global_links"> % if microsite.get_value('ENABLE_MKTG_SITE', settings.FEATURES.get('ENABLE_MKTG_SITE', False)): <li class="nav-global-01"> <a href="${marketing_link('HOW_IT_WORKS')}">${_("How it Works")}</a> </li> % if settings.FEATURES.get('COURSES_ARE_BROWSABLE'): <li class="nav-global-02"> <a href="${marketing_link('COURSES')}">${_("Courses")}</a> </li> % endif <li class="nav-global-03"> <a href="${marketing_link('SCHOOLS')}">${_("Schools")}</a> </li> % endif </%block> % if not settings.FEATURES['DISABLE_LOGIN_BUTTON']: % if settings.FEATURES.get('ENABLE_COURSE_DISCOVERY'): <li class="nav-global-05"> <a class="cta cta-discovery" href="/courses">${_("Find Courses")}</a> </li> %endif % if course and settings.FEATURES.get('RESTRICT_ENROLL_BY_REG_METHOD') and course.enrollment_domain: <li class="nav-global-04"> <a class="cta cta-register" href="${reverse('course-specific-register', args=[course.id.to_deprecated_string()])}">${_("Register")}</a> </li> % else: <li class="nav-global-04"> <a class="cta cta-register" href="/register${login_query()}">${_("Register")}</a> </li> % endif % endif </ol> <ol class="right nav-courseware"> <li class="nav-courseware-01"> % if not settings.FEATURES['DISABLE_LOGIN_BUTTON']: % if course and settings.FEATURES.get('RESTRICT_ENROLL_BY_REG_METHOD') and course.enrollment_domain: <a class="cta cta-login" href="${reverse('course-specific-login', args=[course.id.to_deprecated_string()])}${login_query()}">${_("Sign in")}</a> % else: <a class="cta cta-login" href="/login${login_query()}">${_("Sign in")}</a> % endif % endif </li> </ol> % endif </nav> </header> % if course: <!--[if lte IE 9]> <div class="ie-banner" aria-hidden="true">${_('<strong>Warning:</strong> Your browser is not fully supported. We strongly recommend using {chrome_link} or {ff_link}.').format(chrome_link='<a href="https://www.google.com/chrome" target="_blank">Chrome</a>', ff_link='<a href="http://www.mozilla.org/firefox" target="_blank">Firefox</a>')}</div> <![endif]--> % endif <%include file="help_modal.html"/>
src/aria/widgets/calendar/CalendarStyle.tpl.css
mlaval/ariatemplates
/* * Copyright 2012 Amadeus s.a.s. * 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. */ {CSSTemplate { $classpath : "aria.widgets.calendar.CalendarStyle", $extends : "aria.widgets.WidgetStyle", $hasScript: true }} {var skinnableClassName="Calendar"/} {var weekEndDefault = { backgroundColor : "#F2ECDE", borderColor : "#F2ECDE", color : "black" }/} {var todayDefault = { borderColor : "black", backgroundColor : "transparent", color : "black" }/} {var selectedDateDefault = { backgroundColor : "#FFCC66", borderColor : "black", color : "black" }/} {var focusedDateDefault = { borderStyle : "dotted", borderColor : "black" }/} {var selectedFromDateDefault = { backgroundColor : "#FFCC66", borderColor : "#FFCC66", color : "black", fontWeight : "bold" }/} {var selectedToDateDefault = { backgroundColor : "#FFCC66", borderColor : "#FFCC66", color : "black", fontWeight : "bold" }/} {var selectedFromToDateDefault = { backgroundColor : "#FFEE88", borderColor : "#FFEE88", color : "black" }/} {var selectedSameFromToDateDefault = { backgroundColor : "#FFCC66", borderColor : "#FFCC66", color : "black", fontWeight : "bold" }/} {macro writeSkinClass(info)} /* Calendar classes. Should only be used in the calendar templates. */ {var skinClassName=info.skinClassName/} {var prefix="x"+skinnableClassName+"_"+skinClassName/} {var skinClass=info.skinClass/} .${prefix}_general { {if skinClass.generalBackgroundColor} background-color:${skinClass.generalBackgroundColor}; {/if} } .${prefix}_label { font-weight:bold; margin: 2px; } .${prefix}_general a:hover { text-decoration: underline; } table.${prefix}_month { font-size:${skinClass.fontSize}px; text-align: center; border: 0px none; border-collapse:separate; border-spacing:0; {if skinClass.fontFamily} font-family:${skinClass.fontFamily}; {/if} {if skinClass.fontVariant} font-variant:${skinClass.fontVariant}; {/if} } .${prefix}_monthTitle { width: 100%; border-color:${skinClass.monthTitleBorderColor}; border-style:solid; border-width:1px 0; color:${skinClass.monthTitleColor}; font-weight:bold; background-color:${skinClass.monthTitleBackgroundColor}; padding-top:${skinClass.monthTitlePaddingTop}; padding-bottom:${skinClass.monthTitlePaddingBottom}; {if skinClass.monthTitleFontSize} font-size:${skinClass.monthTitleFontSize}px; {/if} } .${prefix}_day { border-width: 1px; width: 13px; padding:${skinClass.dayPadding}; {call dateStyle(skinClass, "day", "day", getDayDefault(skinClass))/} } .${prefix}_weekEnd { {call dateStyle(skinClass, "weekEnd", "weekEnd")/} } .${prefix}_selectable { cursor: pointer; } .${prefix}_unselectable { {call dateStyle(skinClass, "unselectableDate", "unselectable", getUnselectableDefault(skinClass))/} } .${prefix}_today { {call dateStyle(skinClass, "today", "today")/} } .${prefix}_weekNumber { background-color:${skinClass.weekNumberBackgroundColor}; border:1px solid ${skinClass.weekNumberBorderColor}; font-weight:bold; width: 13px; } .${prefix}_weekDaysLabel { background-color:${skinClass.weekDaysLabelBackgroundColor}; border:1px solid ${skinClass.weekDaysLabelBorderColor}; font-weight:${skinClass.weekDaysLabelFontWeight}; color:${skinClass.weekDaysLabelColor}; width: 13px; padding:${skinClass.weekDaysLabelPadding}; } // The following rules include ${prefix}_day and ${prefix}_selectable // to increase their priority .${prefix}_day.${prefix}_selectable.${prefix}_selected { {call dateStyle(skinClass, "selectedDate", "selected")/} } .${prefix}_day.${prefix}_selectable.${prefix}_selected_from_to { {call dateStyle(skinClass, "selectedFromToDate")/} } .${prefix}_day.${prefix}_selectable.${prefix}_selected_from { {call dateStyle(skinClass, "selectedFromDate")/} } .${prefix}_day.${prefix}_selectable.${prefix}_selected_to { {call dateStyle(skinClass, "selectedToDate")/} } .${prefix}_day.${prefix}_selectable.${prefix}_selected_same_from_to { {call dateStyle(skinClass, "selectedSameFromToDate")/} } .${prefix}_day.${prefix}_selectable.${prefix}_focused { {call dateStyle(skinClass, "focusedDate")/} } .${prefix}_day.${prefix}_selectable.${prefix}_mouseOver { {call dateStyle(skinClass, "mouseOverDate", "mouseOver", getMouseOverDefault(skinClass))/} } {/macro} {macro dateStyle(skinClass, propertyName, oldPrefix, defaultValues)} {var obj = getStyleFor(skinClass, propertyName, oldPrefix, defaultValues) /} {if obj} {if isSet(obj.backgroundColor)} background-color: ${obj.backgroundColor}; {/if} {if isSet(obj.borderStyle)} border-style: ${obj.borderStyle}; {/if} {if isSet(obj.borderColor)} border-color: ${obj.borderColor}; {/if} {if isSet(obj.color)} color: ${obj.color}; {/if} {if isSet(obj.fontWeight)} font-weight: ${obj.fontWeight}; {/if} {if isSet(obj.fontStyle)} font-style: ${obj.fontStyle}; {/if} {/if} {/macro} {/CSSTemplate}
source/api/apidocs-4.0.0/root_admin/deletePod.html
resmo/cloudstack-www
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../includes/main.css" type="text/css"> <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"> <title>Apache CloudStack | The Power Behind Your Cloud</title> </head> <body> <div id="insidetopbg"> <div id="inside_wrapper"> <div class="uppermenu_panel"> <div class="uppermenu_box"></div> </div> <div id="main_master"> <div id="inside_header"> <div class="header_top"> <a class="cloud_logo" href="http://cloudstack.org"></a> <div class="mainemenu_panel"></div> </div> </div> <div id="main_content"> <div class="inside_apileftpanel"> <div class="inside_contentpanel" style="width:930px;"> <div class="api_titlebox"> <div class="api_titlebox_left"> <span> Apache CloudStack 4.0.0-incubating Root Admin API Reference </span> <p></p> <h1>deletePod</h1> <p>Deletes a Pod.</p> </div> <div class="api_titlebox_right"> <a class="api_backbutton" href="../TOC_Root_Admin.html"></a> </div> </div> <div class="api_tablepanel"> <h2>Request parameters</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td> </tr> <tr> <td style="width:200px;"><strong>id</strong></td><td style="width:500px;"><strong>the ID of the Pod</strong></td><td style="width:180px;"><strong>true</strong></td> </tr> </table> </div> <div class="api_tablepanel"> <h2>Response Tags</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td> </tr> <tr> <td style="width:200px;"><strong>displaytext</strong></td><td style="width:500px;">any text associated with the success or failure</td> </tr> <tr> <td style="width:200px;"><strong>success</strong></td><td style="width:500px;">true if operation is executed successfully</td> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> <div id="footer_mainmaster"> <p>Copyright &copy; 2012 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a> <br> Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p> </div> </div> </div> </div> </body> </html>
source/api/apidocs-4.4/domain_admin/listEgressFirewallRules.html
resmo/cloudstack-www
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../includes/main.css" type="text/css"> <link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"> <title>Apache CloudStack | The Power Behind Your Cloud</title> </head> <body> <div id="insidetopbg"> <div id="inside_wrapper"> <div class="uppermenu_panel"> <div class="uppermenu_box"></div> </div> <div id="main_master"> <div id="inside_header"> <div class="header_top"> <a class="cloud_logo" href="http://cloudstack.org"></a> <div class="mainemenu_panel"></div> </div> </div> <div id="main_content"> <div class="inside_apileftpanel"> <div class="inside_contentpanel" style="width:930px;"> <div class="api_titlebox"> <div class="api_titlebox_left"> <span> Apache CloudStack v4.4.1 Domain Admin API Reference </span> <p></p> <h1>listEgressFirewallRules</h1> <p>Lists all egress firewall rules for network id.</p> </div> <div class="api_titlebox_right"> <a class="api_backbutton" href="../TOC_Domain_Admin.html"></a> </div> </div> <div class="api_tablepanel"> <h2>Request parameters</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td> </tr> <tr> <td style="width:200px;"><i>account</i></td><td style="width:500px;"><i>list resources by account. Must be used with the domainId parameter.</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>domainid</i></td><td style="width:500px;"><i>list only resources belonging to the domain specified</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>fordisplay</i></td><td style="width:500px;"><i>list resources by display flag; only ROOT admin is eligible to pass this parameter</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>id</i></td><td style="width:500px;"><i>Lists rule with the specified ID.</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>id</i></td><td style="width:500px;"><i>Lists rule with the specified ID.</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>ipaddressid</i></td><td style="width:500px;"><i>the id of IP address of the firwall services</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>isrecursive</i></td><td style="width:500px;"><i>defaults to false, but if true, lists all resources from the parent specified by the domainId till leaves.</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>keyword</i></td><td style="width:500px;"><i>List by keyword</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>listall</i></td><td style="width:500px;"><i>If set to false, list only resources belonging to the command's caller; if set to true - list resources that the caller is authorized to see. Default value is false</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>networkid</i></td><td style="width:500px;"><i>the id network network for the egress firwall services</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>networkid</i></td><td style="width:500px;"><i>list firewall rules for ceratin network</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>page</i></td><td style="width:500px;"><i></i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>pagesize</i></td><td style="width:500px;"><i></i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>projectid</i></td><td style="width:500px;"><i>list objects by project</i></td><td style="width:180px;"><i>false</i></td> </tr> <tr> <td style="width:200px;"><i>tags</i></td><td style="width:500px;"><i>List resources by tags (key/value pairs)</i></td><td style="width:180px;"><i>false</i></td> </tr> </table> </div> <div class="api_tablepanel"> <h2>Response Tags</h2> <table class="apitable"> <tr class="hed"> <td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td> </tr> <tr> <td style="width:200px;"><strong>id</strong></td><td style="width:500px;">the ID of the firewall rule</td> </tr> <tr> <td style="width:200px;"><strong>cidrlist</strong></td><td style="width:500px;">the cidr list to forward traffic from</td> </tr> <tr> <td style="width:200px;"><strong>endport</strong></td><td style="width:500px;">the ending port of firewall rule's port range</td> </tr> <tr> <td style="width:200px;"><strong>fordisplay</strong></td><td style="width:500px;">is rule for display to the regular user</td> </tr> <tr> <td style="width:200px;"><strong>icmpcode</strong></td><td style="width:500px;">error code for this icmp message</td> </tr> <tr> <td style="width:200px;"><strong>icmptype</strong></td><td style="width:500px;">type of the icmp message being sent</td> </tr> <tr> <td style="width:200px;"><strong>ipaddress</strong></td><td style="width:500px;">the public ip address for the firewall rule</td> </tr> <tr> <td style="width:200px;"><strong>ipaddressid</strong></td><td style="width:500px;">the public ip address id for the firewall rule</td> </tr> <tr> <td style="width:200px;"><strong>networkid</strong></td><td style="width:500px;">the network id of the firewall rule</td> </tr> <tr> <td style="width:200px;"><strong>protocol</strong></td><td style="width:500px;">the protocol of the firewall rule</td> </tr> <tr> <td style="width:200px;"><strong>startport</strong></td><td style="width:500px;">the starting port of firewall rule's port range</td> </tr> <tr> <td style="width:200px;"><strong>state</strong></td><td style="width:500px;">the state of the rule</td> </tr> <tr> <td style="width:200px;"><strong>tags(*)</strong></td><td style="width:500px;">the list of resource tags associated with the rule</td> <tr> <td style="width:180px; padding-left:25px;"><strong>account</strong></td><td style="width:500px;">the account associated with the tag</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>customer</strong></td><td style="width:500px;">customer associated with the tag</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>domain</strong></td><td style="width:500px;">the domain associated with the tag</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>domainid</strong></td><td style="width:500px;">the ID of the domain associated with the tag</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>key</strong></td><td style="width:500px;">tag key name</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>project</strong></td><td style="width:500px;">the project name where tag belongs to</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>projectid</strong></td><td style="width:500px;">the project id the tag belongs to</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>resourceid</strong></td><td style="width:500px;">id of the resource</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>resourcetype</strong></td><td style="width:500px;">resource type</td> </tr> <tr> <td style="width:180px; padding-left:25px;"><strong>value</strong></td><td style="width:500px;">tag value</td> </tr> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> <div id="footer_mainmaster"> <p>Copyright &copy; 2014 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a> <br> Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p> </div> </div> </div> </div> </body> </html>
test-resources/org/apache/batik/css/dom/bug9740-1.css
Squeegee/batik
rect.redBackground { fill: red;}
chromium/chrome/browser/resources/ntp4/guest_tab.html
ric2b/Vivaldi-browser
<!doctype html> <html dir="$i18n{textdirection}" lang="$i18n{language}"> <head> <meta charset="utf-8"> <title>$i18n{title}</title> <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> <link rel="stylesheet" href="incognito_and_guest_tab.css"> </head> <body> <div class="content"> <h1>$i18n{guestTabHeading}</h1> <p>$i18n{guestTabDescription}</p> <a class="learn-more-button" href="$i18n{learnMoreLink}">$i18n{learnMore}</a> </div> </body> </html>
documentation/_rule_violation_cancel_packet_8cs.html
HeavenIsLost/tibiaapi
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>TibiaAPI: E:/dev/misc/ta/tibiaapi/Packets/Incoming/RuleViolationCancelPacket.cs File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"> <link href="doxygen.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.5.9 --> <script type="text/javascript"> <!-- function changeDisplayState (e){ var num=this.id.replace(/[^[0-9]/g,''); var button=this.firstChild; var sectionDiv=document.getElementById('dynsection'+num); if (sectionDiv.style.display=='none'||sectionDiv.style.display==''){ sectionDiv.style.display='block'; button.src='open.gif'; }else{ sectionDiv.style.display='none'; button.src='closed.gif'; } } function initDynSections(){ var divs=document.getElementsByTagName('div'); var sectionCounter=1; for(var i=0;i<divs.length-1;i++){ if(divs[i].className=='dynheader'&&divs[i+1].className=='dynsection'){ var header=divs[i]; var section=divs[i+1]; var button=header.firstChild; if (button!='IMG'){ divs[i].insertBefore(document.createTextNode(' '),divs[i].firstChild); button=document.createElement('img'); divs[i].insertBefore(button,divs[i].firstChild); } header.style.cursor='pointer'; header.onclick=changeDisplayState; header.id='dynheader'+sectionCounter; button.src='closed.gif'; section.id='dynsection'+sectionCounter; section.style.display='none'; section.style.marginLeft='14px'; sectionCounter++; } } } window.onload = initDynSections; --> </script> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="namespaces.html"><span>Packages</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="files.html"><span>File&nbsp;List</span></a></li> <li><a href="globals.html"><span>File&nbsp;Members</span></a></li> </ul> </div> </div> <div class="contents"> <h1>E:/dev/misc/ta/tibiaapi/Packets/Incoming/RuleViolationCancelPacket.cs File Reference</h1><table border="0" cellpadding="0" cellspacing="0"> <tr><td></td></tr> <tr><td colspan="2"><br><h2>Classes</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_tibia_1_1_packets_1_1_incoming_1_1_rule_violation_cancel_packet.html">Tibia.Packets.Incoming.RuleViolationCancelPacket</a></td></tr> <tr><td colspan="2"><br><h2>Packages</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">package &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_tibia_1_1_packets_1_1_incoming.html">Tibia.Packets.Incoming</a></td></tr> <tr><td colspan="2"><br><h2>Variables</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">using&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="_rule_violation_cancel_packet_8cs.html#81a223a02c34d82b47199f08308847f2">System</a></td></tr> </table> <hr><h2>Variable Documentation</h2> <a class="anchor" name="81a223a02c34d82b47199f08308847f2"></a><!-- doxytag: member="RuleViolationCancelPacket.cs::System" ref="81a223a02c34d82b47199f08308847f2" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">using <a class="el" href="_timer_8cs.html#81a223a02c34d82b47199f08308847f2">System</a> </td> </tr> </table> </div> <div class="memdoc"> <p> </div> </div><p> </div> <hr size="1"><address style="text-align: right;"><small>Generated on Tue Jul 7 18:50:08 2009 for TibiaAPI by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.9 </small></address> </body> </html>
web/js/dojo/dgrid/test/dijit_layout_programmatic.html
algogr/Site
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Test Programmatic Dijit Layout</title> <meta name="viewport" content="width=570"> <style> @import "../../dijit/themes/claro/document.css"; @import "../../dijit/themes/claro/claro.css"; @import "../css/skins/claro.css"; html, body { padding: 0; margin: 0; width: 100%; height: 100%; } #bc { height: 100%; } .bcLeft { width: 300px; } .dijitDialog { width: 500px; } </style> <script src="../../dojo/dojo.js" data-dojo-config="async: true"></script> <script> // callbacks for button clicks function showProgContentDialog(){ dlgProgContent.show(); //dlgProgContent.content.startup(); //this is a workaround } require(["dgrid/OnDemandGrid", "dgrid/Selection", "dgrid/extensions/DijitRegistry", "dijit/Dialog", "dojo/_base/lang", "dojo/_base/declare", "dijit/layout/BorderContainer", "dijit/layout/TabContainer", "dijit/Toolbar", "dijit/form/Button", "dgrid/test/data/base", "dojo/domReady!" ], function(Grid, Selection, DijitRegistry, Dialog, lang, declare, BC, TC, Toolbar, Button, testStore){ var gridCols = window.gridCols = { col1: "Column 1", col2: {name: "Column 2", sortable: false}, col3: "Column 3", col4: "Column 4" }, CustomGrid = declare([Grid, Selection, DijitRegistry]), gridLeft = new CustomGrid({ id: "gridLeft", className: "bcLeft", store: testStore, columns: lang.clone(gridCols), selectionMode: "single", region: "left", splitter: true }), gridTab1 = new CustomGrid({ id: "gridTab1", store: testStore, columns: lang.clone(gridCols), selectionMode: "single", title: "Tab 1" }), gridTab2 = new CustomGrid({ id: "gridTab2", store: testStore, columns: lang.clone(gridCols), selectionMode: "single", title: "Tab 2" }); var bc = new BC({ design: "headline" }, "bc"); // Toolbar var tb = new Toolbar({ id: "tbTop", region: "top" }); tb.addChild(new Button ({ id: "btnDialog", label: "Programmatic dialog w/ dgrid", onClick: showProgContentDialog })); // TabContainer var tc = new TC({ id: "tab", "class": "bcCenter", region: "center" }); tc.addChild(gridTab1); tc.addChild(gridTab2); bc.addChild(tb); bc.addChild(gridLeft); bc.addChild(tc); bc.startup(); // test setting a dgrid as content of a dialog programmatically window.dlgProgContent = new Dialog({ content: new CustomGrid({ id: "gridDlgProgContent", store: testStore, columns: lang.clone(gridCols), selectionMode: "single" }) }); }); </script> </head> <body class="claro"> <div id="bc"></div> </body> </html>
third-party/zeromq-4.0.5/doc/zmq_msg_init_size.html
PaulosV/ntopng
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" /> <meta name="generator" content="AsciiDoc 8.6.6" /> <title>zmq_msg_init_size(3)</title> <style type="text/css"> /* Shared CSS for AsciiDoc xhtml11 and html5 backends */ /* Default font. */ body { font-family: Georgia,serif; } /* Title font. */ h1, h2, h3, h4, h5, h6, div.title, caption.title, thead, p.table.header, #toctitle, #author, #revnumber, #revdate, #revremark, #footer { font-family: Arial,Helvetica,sans-serif; } body { margin: 1em 5% 1em 5%; } a { color: blue; text-decoration: underline; } a:visited { color: fuchsia; } em { font-style: italic; color: navy; } strong { font-weight: bold; color: #083194; } h1, h2, h3, h4, h5, h6 { color: #527bbd; margin-top: 1.2em; margin-bottom: 0.5em; line-height: 1.3; } h1, h2, h3 { border-bottom: 2px solid silver; } h2 { padding-top: 0.5em; } h3 { float: left; } h3 + * { clear: left; } h5 { font-size: 1.0em; } div.sectionbody { margin-left: 0; } hr { border: 1px solid silver; } p { margin-top: 0.5em; margin-bottom: 0.5em; } ul, ol, li > p { margin-top: 0; } ul > li { color: #aaa; } ul > li > * { color: black; } pre { padding: 0; margin: 0; } #author { color: #527bbd; font-weight: bold; font-size: 1.1em; } #email { } #revnumber, #revdate, #revremark { } #footer { font-size: small; border-top: 2px solid silver; padding-top: 0.5em; margin-top: 4.0em; } #footer-text { float: left; padding-bottom: 0.5em; } #footer-badges { float: right; padding-bottom: 0.5em; } #preamble { margin-top: 1.5em; margin-bottom: 1.5em; } div.imageblock, div.exampleblock, div.verseblock, div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock, div.admonitionblock { margin-top: 1.0em; margin-bottom: 1.5em; } div.admonitionblock { margin-top: 2.0em; margin-bottom: 2.0em; margin-right: 10%; color: #606060; } div.content { /* Block element content. */ padding: 0; } /* Block element titles. */ div.title, caption.title { color: #527bbd; font-weight: bold; text-align: left; margin-top: 1.0em; margin-bottom: 0.5em; } div.title + * { margin-top: 0; } td div.title:first-child { margin-top: 0.0em; } div.content div.title:first-child { margin-top: 0.0em; } div.content + div.title { margin-top: 0.0em; } div.sidebarblock > div.content { background: #ffffee; border: 1px solid #dddddd; border-left: 4px solid #f0f0f0; padding: 0.5em; } div.listingblock > div.content { border: 1px solid #dddddd; border-left: 5px solid #f0f0f0; background: #f8f8f8; padding: 0.5em; } div.quoteblock, div.verseblock { padding-left: 1.0em; margin-left: 1.0em; margin-right: 10%; border-left: 5px solid #f0f0f0; color: #888; } div.quoteblock > div.attribution { padding-top: 0.5em; text-align: right; } div.verseblock > pre.content { font-family: inherit; font-size: inherit; } div.verseblock > div.attribution { padding-top: 0.75em; text-align: left; } /* DEPRECATED: Pre version 8.2.7 verse style literal block. */ div.verseblock + div.attribution { text-align: left; } div.admonitionblock .icon { vertical-align: top; font-size: 1.1em; font-weight: bold; text-decoration: underline; color: #527bbd; padding-right: 0.5em; } div.admonitionblock td.content { padding-left: 0.5em; border-left: 3px solid #dddddd; } div.exampleblock > div.content { border-left: 3px solid #dddddd; padding-left: 0.5em; } div.imageblock div.content { padding-left: 0; } span.image img { border-style: none; } a.image:visited { color: white; } dl { margin-top: 0.8em; margin-bottom: 0.8em; } dt { margin-top: 0.5em; margin-bottom: 0; font-style: normal; color: navy; } dd > *:first-child { margin-top: 0.1em; } ul, ol { list-style-position: outside; } ol.arabic { list-style-type: decimal; } ol.loweralpha { list-style-type: lower-alpha; } ol.upperalpha { list-style-type: upper-alpha; } ol.lowerroman { list-style-type: lower-roman; } ol.upperroman { list-style-type: upper-roman; } div.compact ul, div.compact ol, div.compact p, div.compact p, div.compact div, div.compact div { margin-top: 0.1em; margin-bottom: 0.1em; } tfoot { font-weight: bold; } td > div.verse { white-space: pre; } div.hdlist { margin-top: 0.8em; margin-bottom: 0.8em; } div.hdlist tr { padding-bottom: 15px; } dt.hdlist1.strong, td.hdlist1.strong { font-weight: bold; } td.hdlist1 { vertical-align: top; font-style: normal; padding-right: 0.8em; color: navy; } td.hdlist2 { vertical-align: top; } div.hdlist.compact tr { margin: 0; padding-bottom: 0; } .comment { background: yellow; } .footnote, .footnoteref { font-size: 0.8em; } span.footnote, span.footnoteref { vertical-align: super; } #footnotes { margin: 20px 0 20px 0; padding: 7px 0 0 0; } #footnotes div.footnote { margin: 0 0 5px 0; } #footnotes hr { border: none; border-top: 1px solid silver; height: 1px; text-align: left; margin-left: 0; width: 20%; min-width: 100px; } div.colist td { padding-right: 0.5em; padding-bottom: 0.3em; vertical-align: top; } div.colist td img { margin-top: 0.3em; } @media print { #footer-badges { display: none; } } #toc { margin-bottom: 2.5em; } #toctitle { color: #527bbd; font-size: 1.1em; font-weight: bold; margin-top: 1.0em; margin-bottom: 0.1em; } div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 { margin-top: 0; margin-bottom: 0; } div.toclevel2 { margin-left: 2em; font-size: 0.9em; } div.toclevel3 { margin-left: 4em; font-size: 0.9em; } div.toclevel4 { margin-left: 6em; font-size: 0.9em; } span.aqua { color: aqua; } span.black { color: black; } span.blue { color: blue; } span.fuchsia { color: fuchsia; } span.gray { color: gray; } span.green { color: green; } span.lime { color: lime; } span.maroon { color: maroon; } span.navy { color: navy; } span.olive { color: olive; } span.purple { color: purple; } span.red { color: red; } span.silver { color: silver; } span.teal { color: teal; } span.white { color: white; } span.yellow { color: yellow; } span.aqua-background { background: aqua; } span.black-background { background: black; } span.blue-background { background: blue; } span.fuchsia-background { background: fuchsia; } span.gray-background { background: gray; } span.green-background { background: green; } span.lime-background { background: lime; } span.maroon-background { background: maroon; } span.navy-background { background: navy; } span.olive-background { background: olive; } span.purple-background { background: purple; } span.red-background { background: red; } span.silver-background { background: silver; } span.teal-background { background: teal; } span.white-background { background: white; } span.yellow-background { background: yellow; } span.big { font-size: 2em; } span.small { font-size: 0.6em; } span.underline { text-decoration: underline; } span.overline { text-decoration: overline; } span.line-through { text-decoration: line-through; } /* * xhtml11 specific * * */ tt { font-family: monospace; font-size: inherit; color: navy; } div.tableblock { margin-top: 1.0em; margin-bottom: 1.5em; } div.tableblock > table { border: 3px solid #527bbd; } thead, p.table.header { font-weight: bold; color: #527bbd; } p.table { margin-top: 0; } /* Because the table frame attribute is overriden by CSS in most browsers. */ div.tableblock > table[frame="void"] { border-style: none; } div.tableblock > table[frame="hsides"] { border-left-style: none; border-right-style: none; } div.tableblock > table[frame="vsides"] { border-top-style: none; border-bottom-style: none; } /* * html5 specific * * */ .monospaced { font-family: monospace; font-size: inherit; color: navy; } table.tableblock { margin-top: 1.0em; margin-bottom: 1.5em; } thead, p.tableblock.header { font-weight: bold; color: #527bbd; } p.tableblock { margin-top: 0; } table.tableblock { border-width: 3px; border-spacing: 0px; border-style: solid; border-color: #527bbd; border-collapse: collapse; } th.tableblock, td.tableblock { border-width: 1px; padding: 4px; border-style: solid; border-color: #527bbd; } table.tableblock.frame-topbot { border-left-style: hidden; border-right-style: hidden; } table.tableblock.frame-sides { border-top-style: hidden; border-bottom-style: hidden; } table.tableblock.frame-none { border-style: hidden; } th.tableblock.halign-left, td.tableblock.halign-left { text-align: left; } th.tableblock.halign-center, td.tableblock.halign-center { text-align: center; } th.tableblock.halign-right, td.tableblock.halign-right { text-align: right; } th.tableblock.valign-top, td.tableblock.valign-top { vertical-align: top; } th.tableblock.valign-middle, td.tableblock.valign-middle { vertical-align: middle; } th.tableblock.valign-bottom, td.tableblock.valign-bottom { vertical-align: bottom; } /* * manpage specific * * */ body.manpage h1 { padding-top: 0.5em; padding-bottom: 0.5em; border-top: 2px solid silver; border-bottom: 2px solid silver; } body.manpage h2 { border-style: none; } body.manpage div.sectionbody { margin-left: 3em; } @media print { body.manpage div#toc { display: none; } } </style> <script type="text/javascript"> /*<![CDATA[*/ var asciidoc = { // Namespace. ///////////////////////////////////////////////////////////////////// // Table Of Contents generator ///////////////////////////////////////////////////////////////////// /* Author: Mihai Bazon, September 2002 * http://students.infoiasi.ro/~mishoo * * Table Of Content generator * Version: 0.4 * * Feel free to use this script under the terms of the GNU General Public * License, as long as you do not remove or alter this notice. */ /* modified by Troy D. Hanson, September 2006. License: GPL */ /* modified by Stuart Rackham, 2006, 2009. License: GPL */ // toclevels = 1..4. toc: function (toclevels) { function getText(el) { var text = ""; for (var i = el.firstChild; i != null; i = i.nextSibling) { if (i.nodeType == 3 /* Node.TEXT_NODE */) // IE doesn't speak constants. text += i.data; else if (i.firstChild != null) text += getText(i); } return text; } function TocEntry(el, text, toclevel) { this.element = el; this.text = text; this.toclevel = toclevel; } function tocEntries(el, toclevels) { var result = new Array; var re = new RegExp('[hH]([2-'+(toclevels+1)+'])'); // Function that scans the DOM tree for header elements (the DOM2 // nodeIterator API would be a better technique but not supported by all // browsers). var iterate = function (el) { for (var i = el.firstChild; i != null; i = i.nextSibling) { if (i.nodeType == 1 /* Node.ELEMENT_NODE */) { var mo = re.exec(i.tagName); if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") { result[result.length] = new TocEntry(i, getText(i), mo[1]-1); } iterate(i); } } } iterate(el); return result; } var toc = document.getElementById("toc"); if (!toc) { return; } // Delete existing TOC entries in case we're reloading the TOC. var tocEntriesToRemove = []; var i; for (i = 0; i < toc.childNodes.length; i++) { var entry = toc.childNodes[i]; if (entry.nodeName == 'div' && entry.getAttribute("class") && entry.getAttribute("class").match(/^toclevel/)) tocEntriesToRemove.push(entry); } for (i = 0; i < tocEntriesToRemove.length; i++) { toc.removeChild(tocEntriesToRemove[i]); } // Rebuild TOC entries. var entries = tocEntries(document.getElementById("content"), toclevels); for (var i = 0; i < entries.length; ++i) { var entry = entries[i]; if (entry.element.id == "") entry.element.id = "_toc_" + i; var a = document.createElement("a"); a.href = "#" + entry.element.id; a.appendChild(document.createTextNode(entry.text)); var div = document.createElement("div"); div.appendChild(a); div.className = "toclevel" + entry.toclevel; toc.appendChild(div); } if (entries.length == 0) toc.parentNode.removeChild(toc); }, ///////////////////////////////////////////////////////////////////// // Footnotes generator ///////////////////////////////////////////////////////////////////// /* Based on footnote generation code from: * http://www.brandspankingnew.net/archive/2005/07/format_footnote.html */ footnotes: function () { // Delete existing footnote entries in case we're reloading the footnodes. var i; var noteholder = document.getElementById("footnotes"); if (!noteholder) { return; } var entriesToRemove = []; for (i = 0; i < noteholder.childNodes.length; i++) { var entry = noteholder.childNodes[i]; if (entry.nodeName == 'div' && entry.getAttribute("class") == "footnote") entriesToRemove.push(entry); } for (i = 0; i < entriesToRemove.length; i++) { noteholder.removeChild(entriesToRemove[i]); } // Rebuild footnote entries. var cont = document.getElementById("content"); var spans = cont.getElementsByTagName("span"); var refs = {}; var n = 0; for (i=0; i<spans.length; i++) { if (spans[i].className == "footnote") { n++; var note = spans[i].getAttribute("data-note"); if (!note) { // Use [\s\S] in place of . so multi-line matches work. // Because JavaScript has no s (dotall) regex flag. note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1]; spans[i].innerHTML = "[<a id='_footnoteref_" + n + "' href='#_footnote_" + n + "' title='View footnote' class='footnote'>" + n + "</a>]"; spans[i].setAttribute("data-note", note); } noteholder.innerHTML += "<div class='footnote' id='_footnote_" + n + "'>" + "<a href='#_footnoteref_" + n + "' title='Return to text'>" + n + "</a>. " + note + "</div>"; var id =spans[i].getAttribute("id"); if (id != null) refs["#"+id] = n; } } if (n == 0) noteholder.parentNode.removeChild(noteholder); else { // Process footnoterefs. for (i=0; i<spans.length; i++) { if (spans[i].className == "footnoteref") { var href = spans[i].getElementsByTagName("a")[0].getAttribute("href"); href = href.match(/#.*/)[0]; // Because IE return full URL. n = refs[href]; spans[i].innerHTML = "[<a href='#_footnote_" + n + "' title='View footnote' class='footnote'>" + n + "</a>]"; } } } }, install: function(toclevels) { var timerId; function reinstall() { asciidoc.footnotes(); if (toclevels) { asciidoc.toc(toclevels); } } function reinstallAndRemoveTimer() { clearInterval(timerId); reinstall(); } timerId = setInterval(reinstall, 500); if (document.addEventListener) document.addEventListener("DOMContentLoaded", reinstallAndRemoveTimer, false); else window.onload = reinstallAndRemoveTimer; } } asciidoc.install(); /*]]>*/ </script> </head> <body class="manpage"> <div id="header"> <h1> zmq_msg_init_size(3) Manual Page </h1> <h2>NAME</h2> <div class="sectionbody"> <p>zmq_msg_init_size - initialise 0MQ message of a specified size </p> </div> </div> <div id="content"> <div class="sect1"> <h2 id="_synopsis">SYNOPSIS</h2> <div class="sectionbody"> <div class="paragraph"><p><strong>int zmq_msg_init_size (zmq_msg_t <em>*msg</em>, size_t <em>size</em>);</strong></p></div> </div> </div> <div class="sect1"> <h2 id="_description">DESCRIPTION</h2> <div class="sectionbody"> <div class="paragraph"><p>The <em>zmq_msg_init_size()</em> function shall allocate any resources required to store a message <em>size</em> bytes long and initialise the message object referenced by <em>msg</em> to represent the newly allocated message.</p></div> <div class="paragraph"><p>The implementation shall choose whether to store message content on the stack (small messages) or on the heap (large messages). For performance reasons <em>zmq_msg_init_size()</em> shall not clear the message data.</p></div> <div class="admonitionblock"> <table><tr> <td class="icon"> <div class="title">Caution</div> </td> <td class="content">Never access <em>zmq_msg_t</em> members directly, instead always use the <em>zmq_msg</em> family of functions.</td> </tr></table> </div> <div class="admonitionblock"> <table><tr> <td class="icon"> <div class="title">Caution</div> </td> <td class="content">The functions <em>zmq_msg_init()</em>, <em>zmq_msg_init_data()</em> and <em>zmq_msg_init_size()</em> are mutually exclusive. Never initialize the same <em>zmq_msg_t</em> twice.</td> </tr></table> </div> </div> </div> <div class="sect1"> <h2 id="_return_value">RETURN VALUE</h2> <div class="sectionbody"> <div class="paragraph"><p>The <em>zmq_msg_init_size()</em> function shall return zero if successful. Otherwise it shall return <tt>-1</tt> and set <em>errno</em> to one of the values defined below.</p></div> </div> </div> <div class="sect1"> <h2 id="_errors">ERRORS</h2> <div class="sectionbody"> <div class="dlist"><dl> <dt class="hdlist1"> <strong>ENOMEM</strong> </dt> <dd> <p> Insufficient storage space is available. </p> </dd> </dl></div> </div> </div> <div class="sect1"> <h2 id="_see_also">SEE ALSO</h2> <div class="sectionbody"> <div class="paragraph"><p><a href="zmq_msg_init_data.html">zmq_msg_init_data(3)</a> <a href="zmq_msg_init.html">zmq_msg_init(3)</a> <a href="zmq_msg_close.html">zmq_msg_close(3)</a> <a href="zmq_msg_data.html">zmq_msg_data(3)</a> <a href="zmq_msg_size.html">zmq_msg_size(3)</a> <a href="zmq.html">zmq(7)</a></p></div> </div> </div> <div class="sect1"> <h2 id="_authors">AUTHORS</h2> <div class="sectionbody"> <div class="paragraph"><p>This page was written by the ØMQ community. To make a change please read the ØMQ Contribution Policy at <a href="http://www.zeromq.org/docs:contributing">http://www.zeromq.org/docs:contributing</a>.</p></div> </div> </div> </div> <div id="footnotes"><hr /></div> <div id="footer"> <div id="footer-text"> ØMQ 4.0.4<br /> Last updated 2013-11-13 18:57:50 CET </div> </div> </body> </html>
src/Boleto.Net/BoletoImpressao/BoletoNet.css
correamarques/boletonet
body { color: #000000; background-color: #ffffff; margin-top: 0; margin-right: 0; } * { margin: 0px; padding: 0px; } table { border: 0; border-collapse: collapse; padding: 0; } img { border: 0; } .cp { font: bold 10px arial; color: black; } .ti { font: 9px arial, helvetica, sans-serif; } .ld { font: bold 15px arial; color: #000000; } .ct { font: 9px "arial narrow"; color: #000033; } .cn { font: 9px arial; color: black; } .bc { font: bold 22px arial; color: #000000; } .cut { width: 665px; height: 1px; border-top: dashed 1px #000; } .Ac { text-align: center; } .Ar { text-align: right; } .Al { text-align: left; } .At { vertical-align: top; } .Ab { vertical-align: bottom; } .ct td, .cp td { padding-left: 6px; border-left: solid 1px #000; } .cpN { font: bold 10px arial; color: black; } .ctN { font: 9px "arial narrow"; color: #000033; } .pL0 { padding-left: 0px; } .pL6 { padding-left: 6px; } .pL10 { padding-left: 10px; } .imgLogo { width: 150px; } .imgLogo img { width: 150px; height: 40px; } .barra { width: 3px; height: 22px; vertical-align: bottom; } .barra img { width: 2px; height: 22px; } .rBb td { border-bottom: solid 1px #000; } .BB { border-bottom: solid 1px #000; } .BL { border-left: solid 1px #000; } .BR { border-right: solid 1px #000; } .BT1 { border-top: dashed 1px #000; } .BT2 { border-top: solid 2px #000; } .h1 { height: 1px; } .h13 { height: 13px; } .h12 { height: 12px; } .h13 td { vertical-align: top; } .h12 td { vertical-align: top; } .w6 { width: 6px; } .w7 { width: 7px; } .w34 { width: 34px; } .w45 { width: 45px; } .w53 { width: 53px; } .w62 { width: 62px; } .w65 { width: 65px; } .w72 { width: 72px; } .w83 { width: 83px; } .w88 { width: 88px; } .w104 { width: 104px; } .w105 { width: 105px; } .w106 { width: 106px; } .w113 { width: 113px; } .w112 { width: 112px; } .w123 { width: 123px; } .w126 { width: 126px; } .w128 { width: 128px; } .w132 { width: 132px; } .w134 { width: 134px; } .w150 { width: 150px; } .w163 { width: 163px; } .w164 { width: 164px; } .w180 { width: 180px; } .w182 { width: 182px; } .w186 { width: 186px; } .w192 { width: 192px; } .w250 { width: 250px; } .w298 { width: 298px; } .w409 { width: 409px; } .w472 { width: 472px; } .w478 { width: 478px; } .w500 { width: 500px; } .w544 { width: 544px; } .w564 { width: 564px; } .w659 { width: 659px; } .w666 { width: 666px; } .w667 { width: 667px; } .BHead td { border-bottom: solid 2px #000; } .EcdBar { height: 50px; vertical-align: bottom; } .rc6 td { vertical-align: top; border-bottom: solid 1px #000; border-left: solid 1px #000; } .rc6 div { padding-left: 6px; } .rc6 .t { font: 9px "arial narrow"; color: #000033; height: 13px; } .rc6 .c { font: bold 10px arial; color: black; height: 12px; } .mt23 { margin-top: 23px; } .pb4 { padding-bottom: 14px; } .ebc { width: 4px; height: 440px; border-right: dotted 1px #000000; margin-right: 4px; }
venv/bin/libs/range/doc/html/range/reference/adaptors/reference/transformed.html
NixaSoftware/CVis
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>transformed</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../../index.html" title="Chapter&#160;1.&#160;Range 2.0"> <link rel="up" href="../reference.html" title="Reference"> <link rel="prev" href="tokenized.html" title="tokenized"> <link rel="next" href="uniqued.html" title="uniqued"> </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="tokenized.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="uniqued.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section range_reference_adaptors_reference_transformed"> <div class="titlepage"><div><div><h5 class="title"> <a name="range.reference.adaptors.reference.transformed"></a><a class="link" href="transformed.html" title="transformed">transformed</a> </h5></div></div></div> <div class="toc"><dl><dt><span class="section"><a href="transformed.html#range.reference.adaptors.reference.transformed.transformed_example">transformed example</a></span></dt></dl></div> <div class="informaltable"><table class="table"> <colgroup> <col> <col> </colgroup> <thead><tr> <th> <p> Syntax </p> </th> <th> <p> Code </p> </th> </tr></thead> <tbody> <tr> <td> <p> Pipe </p> </td> <td> <p> <code class="computeroutput"><span class="identifier">rng</span> <span class="special">|</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">adaptors</span><span class="special">::</span><span class="identifier">transformed</span><span class="special">(</span><span class="identifier">fun</span><span class="special">)</span></code> </p> </td> </tr> <tr> <td> <p> Function </p> </td> <td> <p> <code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">adaptors</span><span class="special">::</span><span class="identifier">transform</span><span class="special">(</span><span class="identifier">rng</span><span class="special">,</span> <span class="identifier">fun</span><span class="special">)</span></code> </p> </td> </tr> </tbody> </table></div> <div class="itemizedlist"><ul class="itemizedlist" type="disc"> <li class="listitem"> <span class="bold"><strong>Precondition:</strong></span> The <code class="computeroutput"><span class="identifier">value_type</span></code> of the range is convertible to the argument type of <code class="computeroutput"><span class="identifier">fun</span></code>. </li> <li class="listitem"> <span class="bold"><strong>Postcondition:</strong></span> For all elements <code class="computeroutput"><span class="identifier">x</span></code> in the returned range, <code class="computeroutput"><span class="identifier">x</span></code> is the result of <code class="computeroutput"><span class="identifier">fun</span><span class="special">(</span><span class="identifier">y</span><span class="special">)</span></code> where <code class="computeroutput"><span class="identifier">y</span></code> is the corresponding element in the original range. </li> <li class="listitem"> <span class="bold"><strong>Throws:</strong></span> Whatever the copy-constructor of <code class="computeroutput"><span class="identifier">fun</span></code> might throw. </li> <li class="listitem"> <span class="bold"><strong>Range Category:</strong></span> <a class="link" href="../../../concepts/single_pass_range.html" title="Single Pass Range">Single Pass Range</a> </li> <li class="listitem"> <span class="bold"><strong>Range Return Type:</strong></span> <code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">transformed_range</span><span class="special">&lt;</span><span class="identifier">typeof</span><span class="special">(</span><span class="identifier">rng</span><span class="special">)&gt;</span></code> </li> <li class="listitem"> <span class="bold"><strong>Returned Range Category:</strong></span> The range category of <code class="computeroutput"><span class="identifier">rng</span></code>. </li> </ul></div> <div class="section range_reference_adaptors_reference_transformed_transformed_example"> <div class="titlepage"><div><div><h6 class="title"> <a name="range.reference.adaptors.reference.transformed.transformed_example"></a><a class="link" href="transformed.html#range.reference.adaptors.reference.transformed.transformed_example" title="transformed example">transformed example</a> </h6></div></div></div> <p> </p> <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">range</span><span class="special">/</span><span class="identifier">adaptor</span><span class="special">/</span><span class="identifier">transformed</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">range</span><span class="special">/</span><span class="identifier">algorithm</span><span class="special">/</span><span class="identifier">copy</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">assign</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">iterator</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">iostream</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">vector</span><span class="special">&gt;</span> <span class="keyword">struct</span> <span class="identifier">double_int</span> <span class="special">{</span> <span class="keyword">typedef</span> <span class="keyword">int</span> <span class="identifier">result_type</span><span class="special">;</span> <span class="keyword">int</span> <span class="keyword">operator</span><span class="special">()(</span><span class="keyword">int</span> <span class="identifier">x</span><span class="special">)</span> <span class="keyword">const</span> <span class="special">{</span> <span class="keyword">return</span> <span class="identifier">x</span> <span class="special">*</span> <span class="number">2</span><span class="special">;</span> <span class="special">}</span> <span class="special">};</span> <span class="keyword">int</span> <span class="identifier">main</span><span class="special">(</span><span class="keyword">int</span> <span class="identifier">argc</span><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">char</span><span class="special">*</span> <span class="identifier">argv</span><span class="special">[])</span> <span class="special">{</span> <span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">adaptors</span><span class="special">;</span> <span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">assign</span><span class="special">;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special">&lt;</span><span class="keyword">int</span><span class="special">&gt;</span> <span class="identifier">input</span><span class="special">;</span> <span class="identifier">input</span> <span class="special">+=</span> <span class="number">1</span><span class="special">,</span><span class="number">2</span><span class="special">,</span><span class="number">3</span><span class="special">,</span><span class="number">4</span><span class="special">,</span><span class="number">5</span><span class="special">,</span><span class="number">6</span><span class="special">,</span><span class="number">7</span><span class="special">,</span><span class="number">8</span><span class="special">,</span><span class="number">9</span><span class="special">,</span><span class="number">10</span><span class="special">;</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">copy</span><span class="special">(</span> <span class="identifier">input</span> <span class="special">|</span> <span class="identifier">transformed</span><span class="special">(</span><span class="identifier">double_int</span><span class="special">()),</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">ostream_iterator</span><span class="special">&lt;</span><span class="keyword">int</span><span class="special">&gt;(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span><span class="special">,</span> <span class="string">","</span><span class="special">));</span> <span class="keyword">return</span> <span class="number">0</span><span class="special">;</span> <span class="special">}</span> </pre> <p> </p> </div> <p> This would produce the output: </p> <pre class="programlisting"><span class="number">2</span><span class="special">,</span><span class="number">4</span><span class="special">,</span><span class="number">6</span><span class="special">,</span><span class="number">8</span><span class="special">,</span><span class="number">10</span><span class="special">,</span><span class="number">12</span><span class="special">,</span><span class="number">14</span><span class="special">,</span><span class="number">16</span><span class="special">,</span><span class="number">18</span><span class="special">,</span><span class="number">20</span><span class="special">,</span> </pre> <p> </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-2010 Thorsten Ottosen, Neil Groves<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="tokenized.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="uniqued.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
test/unit/custom-style-async-import.html
mgiuffrida/polymer
<style is="custom-style"> :root { --cs-blue: { border : 8px solid blue; }; } </style> <dom-module id="x-client"> <template> <style> :host { display: inline-block; border : 4px solid red; @apply (--cs-blue); } </style> x-client </template> <script> Polymer({ is: 'x-client' }); </script> </dom-module>
themes/offline-theme-slide-indicator.css
marcomatteocci/offline
/* line 3, ../sass/_offline-theme-base-indicator.sass */ .offline-ui, .offline-ui *, .offline-ui:before, .offline-ui:after, .offline-ui *:before, .offline-ui *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } /* line 6, ../sass/_offline-theme-base-indicator.sass */ .offline-ui { display: none; position: fixed; background: white; z-index: 2000; display: inline-block; } /* line 13, ../sass/_offline-theme-base-indicator.sass */ .offline-ui .offline-ui-retry { display: none; } /* line 16, ../sass/_offline-theme-base-indicator.sass */ .offline-ui.offline-ui-up { display: block; } /* line 19, ../sass/_offline-theme-base-indicator.sass */ .offline-ui.offline-ui-down { display: block; } /* line 11, ../sass/offline-theme-slide-indicator.sass */ .offline-ui { -webkit-border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; -ms-border-radius: 4px 4px 0 0; -o-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0; font-family: "Helvetica Neue", sans-serif; padding: 1em; max-width: 100%; bottom: 0; left: 1em; } /* line 19, ../sass/offline-theme-slide-indicator.sass */ .offline-ui.offline-ui-up { background: #d6e9c6; color: #468847; } /* line 23, ../sass/offline-theme-slide-indicator.sass */ .offline-ui.offline-ui-down { background: #ec8787; color: #551313; }
static-files/vendor/highcharts.css
sadbox/sadbox.org
/** * @license Highcharts * * (c) 2009-2016 Torstein Honsi * * License: www.highcharts.com/license */ .highcharts-container { position: relative; overflow: hidden; width: 100%; height: 100%; text-align: left; line-height: normal; z-index: 0; /* #1072 */ -webkit-tap-highlight-color: rgba(0, 0, 0, 0); font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif; font-size: 12px; user-select: none; } .highcharts-root { display: block; } .highcharts-root text { stroke-width: 0; } .highcharts-strong { font-weight: bold; } .highcharts-emphasized { font-style: italic; } .highcharts-anchor { cursor: pointer; } .highcharts-background { fill: #ffffff; } .highcharts-plot-border, .highcharts-plot-background { fill: none; } .highcharts-label-box { fill: none; } .highcharts-button-box { fill: inherit; } .highcharts-tracker-line { stroke-linejoin: round; stroke: rgba(192, 192, 192, 0.0001); stroke-width: 22; fill: none; } .highcharts-tracker-area { fill: rgba(192, 192, 192, 0.0001); stroke-width: 0; } /* Titles */ .highcharts-title { fill: #333333; font-size: 1.5em; } .highcharts-subtitle { fill: #666666; } /* Axes */ .highcharts-axis-line { fill: none; stroke: #ccd6eb; } .highcharts-yaxis .highcharts-axis-line { stroke-width: 0; } .highcharts-axis-title { fill: #666666; } .highcharts-axis-labels { fill: #666666; cursor: default; font-size: 0.9em; } .highcharts-grid-line { fill: none; stroke: #e6e6e6; } .highcharts-xaxis-grid .highcharts-grid-line { stroke-width: 0px; } .highcharts-tick { stroke: #ccd6eb; } .highcharts-yaxis .highcharts-tick { stroke-width: 0; } .highcharts-minor-grid-line { stroke: #f2f2f2; } .highcharts-crosshair-thin { stroke-width: 1px; stroke: #cccccc; } .highcharts-crosshair-category { stroke: #ccd6eb; stroke-opacity: 0.25; } /* Credits */ .highcharts-credits { cursor: pointer; fill: #999999; font-size: 0.7em; transition: fill 250ms, font-size 250ms; } .highcharts-credits:hover { fill: black; font-size: 1em; } /* Tooltip */ .highcharts-tooltip { cursor: default; pointer-events: none; white-space: nowrap; transition: stroke 150ms; } .highcharts-tooltip text { fill: #333333; } .highcharts-tooltip .highcharts-header { font-size: 0.85em; } .highcharts-tooltip-box { stroke-width: 1px; fill: #f7f7f7; fill-opacity: 0.85; } .highcharts-tooltip-box .highcharts-label-box { fill: #f7f7f7; fill-opacity: 0.85; } div.highcharts-tooltip { filter: none; } .highcharts-selection-marker { fill: #335cad; fill-opacity: 0.25; } .highcharts-graph { fill: none; stroke-width: 2px; stroke-linecap: round; stroke-linejoin: round; } .highcharts-empty-series { stroke-width: 1px; fill: none; stroke: #cccccc; } .highcharts-state-hover .highcharts-graph { stroke-width: 3; } .highcharts-point-inactive { opacity: 0.2; transition: opacity 50ms; /* quick in */ } .highcharts-series-inactive { opacity: 0.2; transition: opacity 50ms; /* quick in */ } .highcharts-state-hover path { transition: stroke-width 50ms; /* quick in */ } .highcharts-state-normal path { transition: stroke-width 250ms; /* slow out */ } /* Legend hover affects points and series */ g.highcharts-series, .highcharts-point, .highcharts-markers, .highcharts-data-labels { transition: opacity 250ms; } .highcharts-legend-series-active g.highcharts-series:not(.highcharts-series-hover), .highcharts-legend-point-active .highcharts-point:not(.highcharts-point-hover), .highcharts-legend-series-active .highcharts-markers:not(.highcharts-series-hover), .highcharts-legend-series-active .highcharts-data-labels:not(.highcharts-series-hover) { opacity: 0.2; } /* Series options */ /* Default colors */ .highcharts-color-0 { fill: #7cb5ec; stroke: #7cb5ec; } .highcharts-color-1 { fill: #434348; stroke: #434348; } .highcharts-color-2 { fill: #90ed7d; stroke: #90ed7d; } .highcharts-color-3 { fill: #f7a35c; stroke: #f7a35c; } .highcharts-color-4 { fill: #8085e9; stroke: #8085e9; } .highcharts-color-5 { fill: #f15c80; stroke: #f15c80; } .highcharts-color-6 { fill: #e4d354; stroke: #e4d354; } .highcharts-color-7 { fill: #2b908f; stroke: #2b908f; } .highcharts-color-8 { fill: #f45b5b; stroke: #f45b5b; } .highcharts-color-9 { fill: #91e8e1; stroke: #91e8e1; } .highcharts-area { fill-opacity: 0.75; stroke-width: 0; } .highcharts-markers { stroke-width: 1px; stroke: #ffffff; } .highcharts-a11y-markers-hidden .highcharts-point:not(.highcharts-point-hover):not(.highcharts-a11y-marker-visible), .highcharts-a11y-marker-hidden { opacity: 0; } .highcharts-point { stroke-width: 1px; } .highcharts-dense-data .highcharts-point { stroke-width: 0; } .highcharts-data-label { font-size: 0.9em; font-weight: bold; } .highcharts-data-label-box { fill: none; stroke-width: 0; } .highcharts-data-label text, text.highcharts-data-label { fill: #333333; } .highcharts-data-label-connector { fill: none; } .highcharts-data-label-hidden { pointer-events: none; } .highcharts-halo { fill-opacity: 0.25; stroke-width: 0; } .highcharts-series:not(.highcharts-pie-series) .highcharts-point-select, .highcharts-markers .highcharts-point-select { fill: #cccccc; stroke: #000000; } .highcharts-column-series rect.highcharts-point { stroke: #ffffff; } .highcharts-column-series .highcharts-point { transition: fill-opacity 250ms; } .highcharts-column-series .highcharts-point-hover { fill-opacity: 0.75; transition: fill-opacity 50ms; } .highcharts-pie-series .highcharts-point { stroke-linejoin: round; stroke: #ffffff; } .highcharts-pie-series .highcharts-point-hover { fill-opacity: 0.75; transition: fill-opacity 50ms; } .highcharts-funnel-series .highcharts-point { stroke-linejoin: round; stroke: #ffffff; } .highcharts-funnel-series .highcharts-point-hover { fill-opacity: 0.75; transition: fill-opacity 50ms; } .highcharts-funnel-series .highcharts-point-select { fill: inherit; stroke: inherit; } .highcharts-pyramid-series .highcharts-point { stroke-linejoin: round; stroke: #ffffff; } .highcharts-pyramid-series .highcharts-point-hover { fill-opacity: 0.75; transition: fill-opacity 50ms; } .highcharts-pyramid-series .highcharts-point-select { fill: inherit; stroke: inherit; } .highcharts-solidgauge-series .highcharts-point { stroke-width: 0; } .highcharts-treemap-series .highcharts-point { stroke-width: 1px; stroke: #e6e6e6; transition: stroke 250ms, fill 250ms, fill-opacity 250ms; } .highcharts-treemap-series .highcharts-point-hover { stroke: #999999; transition: stroke 25ms, fill 25ms, fill-opacity 25ms; } .highcharts-treemap-series .highcharts-above-level { display: none; } .highcharts-treemap-series .highcharts-internal-node { fill: none; } .highcharts-treemap-series .highcharts-internal-node-interactive { fill-opacity: 0.15; cursor: pointer; } .highcharts-treemap-series .highcharts-internal-node-interactive:hover { fill-opacity: 0.75; } .highcharts-vector-series .highcharts-point { fill: none; stroke-width: 2px; } .highcharts-windbarb-series .highcharts-point { fill: none; stroke-width: 2px; } .highcharts-lollipop-stem { stroke: #000000; } .highcharts-focus-border { fill: none; stroke-width: 2px; } .highcharts-legend-item-hidden .highcharts-focus-border { fill: none !important; } /* Legend */ .highcharts-legend-box { fill: none; stroke-width: 0; } .highcharts-legend-item > text { fill: #333333; font-weight: bold; font-size: 1em; cursor: pointer; stroke-width: 0; } .highcharts-legend-item:hover text { fill: #000000; } .highcharts-legend-item-hidden * { fill: #cccccc !important; stroke: #cccccc !important; transition: fill 250ms; } .highcharts-legend-nav-active { fill: #003399; cursor: pointer; } .highcharts-legend-nav-inactive { fill: #cccccc; } circle.highcharts-legend-nav-active, circle.highcharts-legend-nav-inactive { /* tracker */ fill: rgba(192, 192, 192, 0.0001); } .highcharts-legend-title-box { fill: none; stroke-width: 0; } /* Bubble legend */ .highcharts-bubble-legend-symbol { stroke-width: 2; fill-opacity: 0.5; } .highcharts-bubble-legend-connectors { stroke-width: 1; } .highcharts-bubble-legend-labels { fill: #333333; } /* Loading */ .highcharts-loading { position: absolute; background-color: #ffffff; opacity: 0.5; text-align: center; z-index: 10; transition: opacity 250ms; } .highcharts-loading-hidden { height: 0 !important; opacity: 0; overflow: hidden; transition: opacity 250ms, height 250ms step-end; } .highcharts-loading-inner { font-weight: bold; position: relative; top: 45%; } /* Plot bands and polar pane backgrounds */ .highcharts-plot-band, .highcharts-pane { fill: #000000; fill-opacity: 0.05; } .highcharts-plot-line { fill: none; stroke: #999999; stroke-width: 1px; } /* Highcharts More and modules */ .highcharts-boxplot-box { fill: #ffffff; } .highcharts-boxplot-median { stroke-width: 2px; } .highcharts-bubble-series .highcharts-point { fill-opacity: 0.5; } .highcharts-errorbar-series .highcharts-point { stroke: #000000; } .highcharts-gauge-series .highcharts-data-label-box { stroke: #cccccc; stroke-width: 1px; } .highcharts-gauge-series .highcharts-dial { fill: #000000; stroke-width: 0; } .highcharts-polygon-series .highcharts-graph { fill: inherit; stroke-width: 0; } .highcharts-waterfall-series .highcharts-graph { stroke: #333333; stroke-dasharray: 1, 3; } .highcharts-sankey-series .highcharts-point { stroke-width: 0; } .highcharts-sankey-series .highcharts-link { transition: fill 250ms, fill-opacity 250ms; fill-opacity: 0.5; } .highcharts-sankey-series .highcharts-point-hover.highcharts-link { transition: fill 50ms, fill-opacity 50ms; fill-opacity: 1; } .highcharts-venn-series .highcharts-point { fill-opacity: 0.75; stroke: #cccccc; transition: stroke 250ms, fill-opacity 250ms; } .highcharts-venn-series .highcharts-point-hover { fill-opacity: 1; stroke: #cccccc; } /* Highstock */ .highcharts-navigator-mask-outside { fill-opacity: 0; } .highcharts-navigator-mask-inside { fill: #6685c2; /* navigator.maskFill option */ fill-opacity: 0.25; cursor: ew-resize; } .highcharts-navigator-outline { stroke: #cccccc; fill: none; } .highcharts-navigator-handle { stroke: #cccccc; fill: #f2f2f2; cursor: ew-resize; } .highcharts-navigator-series { fill: #335cad; stroke: #335cad; } .highcharts-navigator-series .highcharts-graph { stroke-width: 1px; } .highcharts-navigator-series .highcharts-area { fill-opacity: 0.05; } .highcharts-navigator-xaxis .highcharts-axis-line { stroke-width: 0; } .highcharts-navigator-xaxis .highcharts-grid-line { stroke-width: 1px; stroke: #e6e6e6; } .highcharts-navigator-xaxis.highcharts-axis-labels { fill: #999999; } .highcharts-navigator-yaxis .highcharts-grid-line { stroke-width: 0; } .highcharts-scrollbar-thumb { fill: #cccccc; stroke: #cccccc; stroke-width: 1px; } .highcharts-scrollbar-button { fill: #e6e6e6; stroke: #cccccc; stroke-width: 1px; } .highcharts-scrollbar-arrow { fill: #666666; } .highcharts-scrollbar-rifles { stroke: #666666; stroke-width: 1px; } .highcharts-scrollbar-track { fill: #f2f2f2; stroke: #f2f2f2; stroke-width: 1px; } .highcharts-button { fill: #f7f7f7; stroke: #cccccc; cursor: default; stroke-width: 1px; transition: fill 250ms; } .highcharts-button text { fill: #333333; } .highcharts-button-hover { transition: fill 0ms; fill: #e6e6e6; stroke: #cccccc; } .highcharts-button-hover text { fill: #333333; } .highcharts-button-pressed { font-weight: bold; fill: #e6ebf5; stroke: #cccccc; } .highcharts-button-pressed text { fill: #333333; font-weight: bold; } .highcharts-button-disabled text { fill: #333333; } .highcharts-range-selector-buttons .highcharts-button { stroke-width: 0px; } .highcharts-range-label rect { fill: none; } .highcharts-range-label text { fill: #666666; } .highcharts-range-input rect { fill: none; } .highcharts-range-input text { fill: #333333; } .highcharts-range-input { stroke-width: 1px; stroke: #cccccc; } input.highcharts-range-selector { position: absolute; border: 0; width: 1px; /* Chrome needs a pixel to see it */ height: 1px; padding: 0; text-align: center; left: -9em; /* #4798 */ } .highcharts-crosshair-label text { fill: #ffffff; font-size: 1.1em; } .highcharts-crosshair-label .highcharts-label-box { fill: inherit; } .highcharts-candlestick-series .highcharts-point { stroke: #000000; stroke-width: 1px; } .highcharts-candlestick-series .highcharts-point-up { fill: #ffffff; } .highcharts-ohlc-series .highcharts-point-hover { stroke-width: 3px; } .highcharts-flags-series .highcharts-point .highcharts-label-box { stroke: #999999; fill: #ffffff; transition: fill 250ms; } .highcharts-flags-series .highcharts-point-hover .highcharts-label-box { stroke: #000000; fill: #ccd6eb; } .highcharts-flags-series .highcharts-point text { fill: #000000; font-size: 0.9em; font-weight: bold; } /* Highmaps */ .highcharts-map-series .highcharts-point { transition: fill 500ms, fill-opacity 500ms, stroke-width 250ms; stroke: #cccccc; } .highcharts-map-series .highcharts-point-hover { transition: fill 0ms, fill-opacity 0ms; fill-opacity: 0.5; stroke-width: 2px; } .highcharts-mapline-series .highcharts-point { fill: none; } .highcharts-heatmap-series .highcharts-point { stroke-width: 0; } .highcharts-map-navigation { font-size: 1.3em; font-weight: bold; text-align: center; } .highcharts-coloraxis { stroke-width: 0; } .highcharts-coloraxis-marker { fill: #999999; } .highcharts-null-point { fill: #f7f7f7; } /* 3d charts */ .highcharts-3d-frame { fill: transparent; } /* Exporting module */ .highcharts-contextbutton { fill: #ffffff; /* needed to capture hover */ stroke: none; stroke-linecap: round; } .highcharts-contextbutton:hover { fill: #e6e6e6; stroke: #e6e6e6; } .highcharts-button-symbol { stroke: #666666; stroke-width: 3px; } .highcharts-menu { border: 1px solid #999999; background: #ffffff; padding: 5px 0; box-shadow: 3px 3px 10px #888; } .highcharts-menu-item { padding: 0.5em 1em; background: none; color: #333333; cursor: pointer; transition: background 250ms, color 250ms; } .highcharts-menu-item:hover { background: #335cad; color: #ffffff; } /* Drilldown module */ .highcharts-drilldown-point { cursor: pointer; } .highcharts-drilldown-data-label text, text.highcharts-drilldown-data-label, .highcharts-drilldown-axis-label { cursor: pointer; fill: #003399; font-weight: bold; text-decoration: underline; } /* No-data module */ .highcharts-no-data text { font-weight: bold; font-size: 12px; fill: #666666; } /* Drag-panes module */ .highcharts-axis-resizer { cursor: ns-resize; stroke: black; stroke-width: 2px; } /* Bullet type series */ .highcharts-bullet-target { stroke-width: 0; } /* Lineargauge type series */ .highcharts-lineargauge-target { stroke-width: 1px; stroke: #333333; } .highcharts-lineargauge-target-line { stroke-width: 1px; stroke: #333333; } /* Annotations module */ .highcharts-annotation-label-box { stroke-width: 1px; stroke: #000000; fill: #000000; fill-opacity: 0.75; } .highcharts-annotation-label text { fill: #e6e6e6; } /* Gantt */ .highcharts-treegrid-node-collapsed, .highcharts-treegrid-node-expanded { cursor: pointer; } .highcharts-point-connecting-path { fill: none; } .highcharts-grid-axis .highcharts-tick { stroke-width: 1px; } .highcharts-grid-axis .highcharts-axis-line { stroke-width: 1px; }
webroot/dashboard/plugins/dropzone/min/basic.min.css
orbiten-pradeep/chesmile
.dropzone,.dropzone *{box-sizing:border-box}.dropzone{position:relative}.dropzone .dz-preview{position:relative;display:inline-block;width:120px;margin:0.5em}.dropzone .dz-preview .dz-progress{display:block;height:15px;border:1px solid #aaa}.dropzone .dz-preview .dz-progress .dz-upload{display:block;height:100%;width:0;background:green}.dropzone .dz-preview .dz-error-message{color:red;display:none}.dropzone .dz-preview.dz-error .dz-error-message,.dropzone .dz-preview.dz-error .dz-error-mark{display:block}.dropzone .dz-preview.dz-success .dz-success-mark{display:block}.dropzone .dz-preview .dz-error-mark,.dropzone .dz-preview .dz-success-mark{position:absolute;display:none;left:30px;top:30px;width:54px;height:58px;left:50%;margin-left:-27px}
ajax/libs/jQuery.mmenu/4.2.5/css/extensions/jquery.mmenu.widescreen.css
yogeshsaroya/new-cdnjs
version https://git-lfs.github.com/spec/v1 oid sha256:f76b011563a9a22d619f4f15941ec2fe2a79d6ae5e37ecac9e0a45accc021a3e size 929
toolchain/share/doc/gcc-linaro-arm-linux-gnueabihf/html/gfortran/GMTIME.html
vic3t3chn0/Samsung_Wave_Kernel_SD_NAND
<html lang="en"> <head> <title>GMTIME - The GNU Fortran Compiler</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="The GNU Fortran Compiler"> <meta name="generator" content="makeinfo 4.13"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Intrinsic-Procedures.html#Intrinsic-Procedures" title="Intrinsic Procedures"> <link rel="prev" href="GETUID.html#GETUID" title="GETUID"> <link rel="next" href="HOSTNM.html#HOSTNM" title="HOSTNM"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with the Invariant Sections being ``Funding Free Software'', the Front-Cover Texts being (a) (see below), and with the Back-Cover Texts being (b) (see below). A copy of the license is included in the section entitled ``GNU Free Documentation License''. (a) The FSF's Front-Cover Text is: A GNU Manual (b) The FSF's Back-Cover Text is: You have freedom to copy and modify this GNU Manual, like GNU software. Copies published by the Free Software Foundation raise funds for GNU development.--> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> </head> <body> <div class="node"> <a name="GMTIME"></a> <p> Next:&nbsp;<a rel="next" accesskey="n" href="HOSTNM.html#HOSTNM">HOSTNM</a>, Previous:&nbsp;<a rel="previous" accesskey="p" href="GETUID.html#GETUID">GETUID</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Intrinsic-Procedures.html#Intrinsic-Procedures">Intrinsic Procedures</a> <hr> </div> <h3 class="section">8.107 <code>GMTIME</code> &mdash; Convert time to GMT info</h3> <p><a name="index-GMTIME-689"></a><a name="index-time_002c-conversion-to-GMT-info-690"></a> <dl> <dt><em>Description</em>:<dd>Given a system time value <var>TIME</var> (as provided by the <code>TIME8</code> intrinsic), fills <var>VALUES</var> with values extracted from it appropriate to the UTC time zone (Universal Coordinated Time, also known in some countries as GMT, Greenwich Mean Time), using <code>gmtime(3)</code>. <br><dt><em>Standard</em>:<dd>GNU extension <br><dt><em>Class</em>:<dd>Subroutine <br><dt><em>Syntax</em>:<dd><code>CALL GMTIME(TIME, VALUES)</code> <br><dt><em>Arguments</em>:<dd> <p><table summary=""><tr align="left"><td valign="top" width="15%"><var>TIME</var> </td><td valign="top" width="70%">An <code>INTEGER</code> scalar expression corresponding to a system time, with <code>INTENT(IN)</code>. <br></td></tr><tr align="left"><td valign="top" width="15%"><var>VALUES</var> </td><td valign="top" width="70%">A default <code>INTEGER</code> array with 9 elements, with <code>INTENT(OUT)</code>. <br></td></tr></table> <br><dt><em>Return value</em>:<dd>The elements of <var>VALUES</var> are assigned as follows: <ol type=1 start=1> <li>Seconds after the minute, range 0&ndash;59 or 0&ndash;61 to allow for leap seconds <li>Minutes after the hour, range 0&ndash;59 <li>Hours past midnight, range 0&ndash;23 <li>Day of month, range 0&ndash;31 <li>Number of months since January, range 0&ndash;12 <li>Years since 1900 <li>Number of days since Sunday, range 0&ndash;6 <li>Days since January 1 <li>Daylight savings indicator: positive if daylight savings is in effect, zero if not, and negative if the information is not available. </ol> <br><dt><em>See also</em>:<dd><a href="CTIME.html#CTIME">CTIME</a>, <a href="LTIME.html#LTIME">LTIME</a>, <a href="TIME.html#TIME">TIME</a>, <a href="TIME8.html#TIME8">TIME8</a> </dl> </body></html>
web/resources/css/cssLayout.css
LawyerOffice/LawyerOfficeApp
#top { position: relative; background-color: #036fab; color: white; padding: 5px; margin: 0px 0px 10px 0px; } #bottom { position: relative; background-color: #c2dfef; padding: 5px; margin: 10px 0px 0px 0px; } #left { float: left; background-color: #ece3a5; padding: 5px; width: 150px; } #right { float: right; background-color: #ece3a5; padding: 5px; width: 150px; } .center_content { position: relative; background-color: #dddddd; padding: 5px; } .left_content { background-color: #dddddd; padding: 5px; margin-left: 170px; } .right_content { background-color: #dddddd; padding: 5px; margin: 0px 170px 0px 170px; } #top a:link, #top a:visited { color: white; font-weight : bold; text-decoration: none; } #top a:link:hover, #top a:visited:hover { color: black; font-weight : bold; text-decoration : underline; }
examples/helloworldsplash/public/Hello2.html
pombredanne/pyjs
<html> <!-- auto-generated html - You should consider editing and adapting this to suit your requirements. No doctype used here to force quirks mode; see wiki for details: http://pyjs.org/wiki/csshellandhowtodealwithit/ --> <head> <link rel="stylesheet" href="Hello.css"> <title>Hello (Pyjamas Auto-Generated HTML file)</title> </head> <body style="background-color:white"> <pre> some text demonstrating static HTML here. </pre> </body> </html>
useradmin/help/max.html
rcuvgd/Webmin22.01.2016
<header>Maxmimum days</header> This is the maxmimum number of days allowed between password changes. After this time has elapsed, the user will be propted to enter a new password at login. <hr>
files/cookie-bar/1.5.11/lang/en.html
vvo/jsdelivr
<div id="cookie-bar-prompt" style="display:none"> <div id="cookie-bar-prompt-content"> <a rel='nofollow' id="cookie-bar-prompt-logo" href="http://cookie-bar.eu"><span>cookie bar</span></a> <a rel='nofollow' id="cookie-bar-prompt-close"><span>close</span></a> <div class="clear"></div> <p>This website makes use of cookies to enhance browsing experience and provide additional functionality. None of this data can or will be used to identify or contact you.<br> <i id='cookie-bar-thirdparty'> <br>This website makes use of third party cookies, see the details in the privacy policy.<br> </i> <i id='cookie-bar-tracking'> <br>This website makes use of tracking cookies, see the details in the privacy policy.<br> </i> <i id='cookie-bar-privacy-page'> <br>To learn more about how this website uses cookies or localStorage, please read our <a rel='nofollow' id='cookie-bar-privacy-link' href=''>PRIVACY POLICY</a>.<br><br></i> <br>By clicking <span>Allow cookies</span> you give your permission to this website to store small bits of data as on your device. <i id='cookie-bar-no-consent'> <br> <br>By clicking <span>Disallow cookies</span> you deny your consent to store any cookies and localStorage data for this website, eventually deleting already stored cookies (some parts of the site may stop working properly).</i><br> <br>To learn more about cookies and localStorage, visit <a rel='nofollow' target='_blank' href='http://ico.org.uk/for_organisations/privacy_and_electronic_communications/the_guide/cookies'>Information Commissioner's Office</a>. <hr> To disable all cookies through the browser, click on the corresponding icon and follow the instructions: <br> <br> <div id='cookie-bar-browsers'> <!-- Thanks Peequi for the icons http://ampeross.deviantart.com/art/Peequi-part-1-290622606 --> <a rel='nofollow' class='chrome' target='_blank' href='https://support.google.com/accounts/answer/61416?hl=en'><span>Chrome</span></a> <a rel='nofollow' class='firefox' target='_blank' href='https://support.mozilla.org/en-GB/kb/enable-and-disable-cookies-website-preferences'><span>Firefox</span></a> <a rel='nofollow' class='ie' target='_blank' href='http://windows.microsoft.com/en-gb/internet-explorer/delete-manage-cookies#ie=ie-11'><span>Internet Explorer</span></a> <a rel='nofollow' class='opera' target='_blank' href='http://help.opera.com/Windows/10.00/en/cookies.html'><span>Opera</span></a> <a rel='nofollow' class='safari' target='_blank' href='https://support.apple.com/kb/PH17191?viewlocale=en_GB'><span>Safari</span></a> </div> <br> </div> </div> <div id="cookie-bar" style="display:none"> <p>This website makes use of cookies to enhance browsing experience and provide additional functionality. <a rel='nofollow' id="cookie-bar-prompt-button" data-alt="Privacy policy">Details</a> </p> <a rel='nofollow' id="cookie-bar-button-no">Disallow cookies</a> <a rel='nofollow' id="cookie-bar-button">Allow cookies</a> </div>
resources/assets/global/plugins/carousel-owl-carousel/demos/progressBar.html
aafahad/laravel
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Owl Carousel - Progress Bar</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="jQuery Responsive Carousel - Owl Carusel"> <meta name="author" content="Bartosz Wojciechowski"> <link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600,700' rel='stylesheet' type='text/css'> <link href="../assets/css/bootstrapTheme.css" rel="stylesheet"> <link href="../assets/css/custom.css" rel="stylesheet"> <!-- Owl Carousel Assets --> <link href="../owl-carousel/owl.carousel.css" rel="stylesheet"> <link href="../owl-carousel/owl.theme.css" rel="stylesheet"> <link href="../assets/js/google-code-prettify/prettify.css" rel="stylesheet"> <!-- Le fav and touch icons --> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/ico/apple-touch-icon-144-precomposed.png"> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png"> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png"> <link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png"> <link rel="shortcut icon" href="../assets/ico/favicon.png"> </head> <body> <div id="top-nav" class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <div class="nav-collapse collapse"> <ul class="nav pull-right"> <li><a href="../index.html"><i class="icon-chevron-left"></i> Back to Frontpage</a></li> <li><a href="../owl.carousel.zip" class="download download-on" data-spy="affix" data-offset-top="450">Download</a></li> </ul> <ul class="nav pull-left"> </ul> </div> </div> </div> </div> <div id="title"> <div class="container"> <div class="row"> <div class="span12"> <h1>Progress Bar</h1> </div> </div> </div> </div> <div id="demo"> <div class="container"> <div class="row"> <div class="span12"> <div id="owl-demo" class="owl-carousel"> <div class="item"><img src="assets/fullimage1.jpg" alt="The Last of us"></div> <div class="item"><img src="assets/fullimage2.jpg" alt="GTA V"></div> <div class="item"><img src="assets/fullimage3.jpg" alt="Mirror Edge"></div> </div> </div> </div> </div> </div> <div id="example-info"> <div class="container"> <div class="row"> <div class="span12"> <h1>Setup</h1> <p>Progress Bar made by three callbacks: <code>afterInit</code>, <code>afterMove</code> and <code>startDragging</code>.</p> <ul class="nav nav-tabs" id="myTab"> <li class="active"><a href="#javascript">Javascript</a></li> <li><a href="#HTML">HTML</a></li> <li><a href="#CSS">CSS</a></li> </ul> <div class="tab-content"> <div class="tab-pane active" id="javascript"> <pre class="pre-show prettyprint linenums"> $(document).ready(function() { var time = 7; // time in seconds var $progressBar, $bar, $elem, isPause, tick, percentTime; //Init the carousel $("#owl-demo").owlCarousel({ slideSpeed : 500, paginationSpeed : 500, singleItem : true, afterInit : progressBar, afterMove : moved, startDragging : pauseOnDragging }); //Init progressBar where elem is $("#owl-demo") function progressBar(elem){ $elem = elem; //build progress bar elements buildProgressBar(); //start counting start(); } //create div#progressBar and div#bar then prepend to $("#owl-demo") function buildProgressBar(){ $progressBar = $("&lt;div&gt;",{ id:"progressBar" }); $bar = $("&lt;div&gt;",{ id:"bar" }); $progressBar.append($bar).prependTo($elem); } function start() { //reset timer percentTime = 0; isPause = false; //run interval every 0.01 second tick = setInterval(interval, 10); }; function interval() { if(isPause === false){ percentTime += 1 / time; $bar.css({ width: percentTime+"%" }); //if percentTime is equal or greater than 100 if(percentTime >= 100){ //slide to next item $elem.trigger('owl.next') } } } //pause while dragging function pauseOnDragging(){ isPause = true; } //moved callback function moved(){ //clear interval clearTimeout(tick); //start again start(); } //uncomment this to make pause on mouseover // $elem.on('mouseover',function(){ // isPause = true; // }) // $elem.on('mouseout',function(){ // isPause = false; // }) }); </pre> </div> <div class="tab-pane" id="HTML"> <pre class="pre-show prettyprint linenums"> &lt;div id="owl-demo" class="owl-carousel owl-theme"&gt; &lt;div class="item"&gt;&lt;img src="assets/fullimage1.jpg" alt="The Last of us"&gt;&lt;/div&gt; &lt;div class="item"&gt;&lt;img src="assets/fullimage2.jpg" alt="GTA V"&gt;&lt;/div&gt; &lt;div class="item"&gt;&lt;img src="assets/fullimage3.jpg" alt="Mirror Edge"&gt;&lt;/div&gt; &lt;/div&gt; </pre> </div> <div class="tab-pane" id="CSS"> <pre class="pre-show prettyprint linenums"> #owl-demo .item img{ display: block; width: 100%; height: auto; } #bar{ width: 0%; max-width: 100%; height: 4px; background: #7fc242; } #progressBar{ width: 100%; background: #EDEDED; } </pre> </div> </div><!--End Tab Content--> </div> </div> </div> </div> <div id="more"> <div class="container"> <div class="row"> <div class="span12"> <h1>More Demos</h1> </div> </div> <div class="row demos-row"> <div class="span3"> <a href="images.html" class="demo-box"> <div class="demo-wrapper demo-images clearfix"> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> </div> <h3>Images</h3> </a> </div> <div class="span3"> <a href="custom.html" class="demo-box"> <div class="demo-wrapper demo-custom clearfix"> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> </div> <h3>Custom</h3> </a> </div> <div class="span3"> <a href="itemsCustom.html" class="demo-box"> <div class="demo-wrapper demo-full clearfix"> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> </div> <h3>Custom 2</h3> </a> </div> <div class="span3"> <a href="one.html" class="demo-box"> <div class="demo-wrapper demo-one clearfix"> <div class="demo-slide"><div class="bg"></div></div> </div> <h3>One Slide</h3> </a> </div> </div> <div class="row demos-row"> <div class="span3"> <a href="json.html" class="demo-box"> <div class="demo-wrapper demo-Json clearfix"> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> </div> <h3>JSON</h3> </a> </div> <div class="span3"> <a href="customJson.html" class="demo-box"> <div class="demo-wrapper demo-Json-custom clearfix"> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> </div> <h3>JSON Custom</h3> </a> </div> <div class="span3"> <a href="lazyLoad.html" class="demo-box"> <div class="demo-wrapper demo-lazy clearfix"> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> <div class="demo-slide"><div class="bg"></div></div> </div> <h3>Lazy Load</h3> </a> </div> <div class="span3"> <a href="autoHeight.html" class="demo-box"> <div class="demo-wrapper demo-height clearfix"> <div class="demo-slide"><div class="bg"></div></div> </div> <h3>Auto Height</h3> </a> </div> </div> </div> </div> <div id="footer"> <div class="container"> <div class="row"> <div class="span12"> <h5>Bartosz Wojciechowski 2013 / @OwlFonk / <a href="mailto:owl@owlgraphic.com?subject=Hey Owl!">email</a> / <a href="../changelog.html">changelog</a> / <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=EFSGXZS7V2U9N">donate</a> / <a href="https://twitter.com/share" class="twitter-share-button" data-url="http://owlgraphic.com/owlcarousel/" data-text="Awesome jQuery Owl Carousel Responsive Plugin" data-via="OwlFonk" data-count="none" data-hashtags="owlcarousel"></a> <script> var owldomain = window.location.hostname.indexOf("owlgraphic"); if(owldomain !== -1){ !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> </h5> </div> </div> </div> </div> <script src="../assets/js/jquery-1.9.1.min.js"></script> <script src="../owl-carousel/owl.carousel.js"></script> <!-- Demo --> <style> #owl-demo .item img{ display: block; width: 100%; height: auto; } #bar{ width: 0%; max-width: 100%; height: 4px; background: #7fc242; } #progressBar{ width: 100%; background: #EDEDED; } </style> <script> $(document).ready(function() { var time = 7; // time in seconds var $progressBar, $bar, $elem, isPause, tick, percentTime; //Init the carousel $("#owl-demo").owlCarousel({ slideSpeed : 500, paginationSpeed : 500, singleItem : true, afterInit : progressBar, afterMove : moved, startDragging : pauseOnDragging }); //Init progressBar where elem is $("#owl-demo") function progressBar(elem){ $elem = elem; <<<<<<< HEAD //build progress bar elements ======= <<<<<<< HEAD //build progress bar elements ======= <<<<<<< HEAD //build progress bar elements ======= <<<<<<< HEAD //build progress bar elements ======= //build progress bar partial >>>>>>> 018f6b9d81e5d7bc15aa547482fadde9312e8040 >>>>>>> 065b76f90b2ff7ee69815b4ce700376e708acc55 >>>>>>> a1de9b143e16067bb77e823064c94d33d825d54e >>>>>>> 0ca9bd85c649a9ede4372c3aeeb41ef4b7aae6e4 buildProgressBar(); //start counting start(); } //create div#progressBar and div#bar then prepend to $("#owl-demo") function buildProgressBar(){ $progressBar = $("<div>",{ id:"progressBar" }); $bar = $("<div>",{ id:"bar" }); $progressBar.append($bar).prependTo($elem); } function start() { //reset timer percentTime = 0; isPause = false; //run interval every 0.01 second tick = setInterval(interval, 10); }; function interval() { if(isPause === false){ percentTime += 1 / time; $bar.css({ width: percentTime+"%" }); //if percentTime is equal or greater than 100 if(percentTime >= 100){ //slide to next item $elem.trigger('owl.next') } } } //pause while dragging function pauseOnDragging(){ isPause = true; } //moved callback function moved(){ //clear interval clearTimeout(tick); //start again start(); } //uncomment this to make pause on mouseover // $elem.on('mouseover',function(){ // isPause = true; // }) // $elem.on('mouseout',function(){ // isPause = false; // }) }); </script> <script src="../assets/js/bootstrap-collapse.js"></script> <script src="../assets/js/bootstrap-transition.js"></script> <script src="../assets/js/bootstrap-tab.js"></script> <script src="../assets/js/google-code-prettify/prettify.js"></script> <script src="../assets/js/application.js"></script> </body> </html>
sites/all/libraries/quail/test/testfiles/oac/185-2.html
ktrovato/drupal-secured
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html xml:lang="en-US" lang="en"> <head> <title>Check #1 - Negative</title> <link rel="stylesheet" href="../../../libs/qunit/qunit.css" media="screen"> </head> <body> <table border=1 summary="table #1 with IDs and HEADERS"> <tr> <th id="city">City</th> <th id="state">State</th> </tr> <tr> <td headers="city">Phoenix</td> <td headers="state">Arizona</td> </tr> <tr> <td headers="city">Seattle</td> <td headers="state">Washington</td> </tr> </table> <table border=1 summary="table #2 with IDs and HEADERS"> <tr> <th id="bigcity">City</th> <th id="bigstate">State</th> </tr> <tr> <td headers="city">Phoenix</td> <td headers="state">Arizona</td> </tr> <tr> <td headers="city">Seattle</td> <td headers="state">Washington</td> </tr> </table> <script id="qunit-jquery" src="../../../libs/jquery/jquery.js"></script> <script id="qunit-events" src="../../../libs/jquery.hasEventListener/jquery.hasEventListener-2.0.3.js"></script> <script id="qunit-quail" src="../../../src/quail.js"></script> <script id="qunit-composite" src="../../composite.js"></script> <script id="qunit-qunit" src="../../../libs/qunit/qunit.js"></script> <script> test('documentIDsMustBeUnique', function() { quailTest.runTest( 'documentIDsMustBeUnique', '185-2.html'); equal(true, quailTest.confirmIsEmpty(), 'Results are empty'); }); </script> </body> </html>
sites/all/libraries/quail/test/testfiles/oac/87-2.html
ktrovato/drupal-secured
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html lang="en"> <head> <title>Check #87 - Negative</title> <link rel="stylesheet" href="../../../libs/qunit/qunit.css" media="screen"> </head> <body> <div id="quail-scope"> <p>There are no scripts here</p> </body> <script id="qunit-jquery" src="../../../libs/jquery/jquery.js"></script> <script id="qunit-events" src="../../../libs/jquery.hasEventListener/jquery.hasEventListener-2.0.3.js"></script> <script id="qunit-quail" src="../../../src/quail.js"></script> <script id="qunit-composite" src="../../composite.js"></script> <script id="qunit-qunit" src="../../../libs/qunit/qunit.js"></script> <script id="qunit-script"> test('scriptsDoNotFlicker', function() { quailTest.runTest( 'scriptsDoNotFlicker', '87-2.html'); equal(true, quailTest.confirmIsTag('script'), 'First item tag test'); }); </script> </body> </html>
src/main/drupal/sites/all/libraries/shindig2.5beta/content/samplecontainer/examples/rewriter/rewriteron.html
ROLE/widget-store
<!-- * 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. --> <style type="text/css"> @import url( rewriter1.css ); </style> <link rel="stylesheet" type="text/css" href="rewriter2.css"/> <p>A simple gadget to demonstrate the content rewriter</p> <div> This is a URL in content that was not rewritten http://www.notrewritten.com </div> <div id="backgrdiv"> This div has a background <br/> image from imported CSS </div> <div id="backgrdiv2"> This div has a background <br/> image from linked CSS </div> <p> This <img id="rewriteimg" src="feather.png" alt="If you can read this there is a problem"/> is an image tag that was rewritten</p> <p id="jstarget1">If you can read this there is a problem</p> <p id="jstarget2">If you can read this there is a problem</p> <script type="text/javascript" src="rewriter1.js"></script> <script type="text/javascript" src="rewriter2.js"></script>
docs/api/dir_f7224cec08f93010fc1f2caa967fc647.html
gjms2000/mixerp
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.10"/> <title>C:/Users/nirvan/Desktop/mixerp/0. GitHub/src/Libraries/Server Controls/Project/MixERP.Net.WebControls.StockAdjustmentFactory/Properties Directory Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="mixerp.png"/></td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.10 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Packages</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- 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('dir_f7224cec08f93010fc1f2caa967fc647.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">Properties Directory Reference</div> </div> </div><!--header--> <div class="contents"> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="files"></a> Files</h2></td></tr> <tr class="memitem:_libraries_2_server_01_controls_2_project_2_mix_e_r_p_8_net_8_web_controls_8_stock_adjustment_facc05384b7488c2f292a9ff6c188b4615"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><b>AssemblyInfo.cs</b></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="dir_4871f0b9550e91a1fa0653640c7571cd.html">Desktop</a></li><li class="navelem"><a class="el" href="dir_087b9be18be6285e628a4880fe16d865.html">mixerp</a></li><li class="navelem"><a class="el" href="dir_1ad32c0cb891840458560a950ec801ff.html">0. GitHub</a></li><li class="navelem"><a class="el" href="dir_54ea7281b37447459108abd86eda9487.html">src</a></li><li class="navelem"><a class="el" href="dir_bfed6e4d22d6fcc7ed8c8df91c61a278.html">Libraries</a></li><li class="navelem"><a class="el" href="dir_ae39407d4a530d25cf73d22f7ad70de8.html">Server Controls</a></li><li class="navelem"><a class="el" href="dir_4362eb98d8060225e760b54f8a41722f.html">Project</a></li><li class="navelem"><a class="el" href="dir_38258da714bf753c6963f457d10bf87c.html">MixERP.Net.WebControls.StockAdjustmentFactory</a></li><li class="navelem"><a class="el" href="dir_f7224cec08f93010fc1f2caa967fc647.html">Properties</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.10 </li> </ul> </div> </body> </html>
src/main/webapp/angularjs/js/lib/angular-1.3.0-rc.3/docs/examples/example-example49/index.html
oltruong/javaee-bookstore
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-example49</title> <script src="../../../angular.min.js"></script> </head> <body ng-app="selectExample"> <script> angular.module('selectExample', []) .controller('ExampleController', ['$scope', function($scope) { $scope.colors = [ {name:'black', shade:'dark'}, {name:'white', shade:'light'}, {name:'red', shade:'dark'}, {name:'blue', shade:'dark'}, {name:'yellow', shade:'light'} ]; $scope.myColor = $scope.colors[2]; // red }]); </script> <div ng-controller="ExampleController"> <ul> <li ng-repeat="color in colors"> Name: <input ng-model="color.name"> [<a href ng-click="colors.splice($index, 1)">X</a>] </li> <li> [<a href ng-click="colors.push({})">add</a>] </li> </ul> <hr/> Color (null not allowed): <select ng-model="myColor" ng-options="color.name for color in colors"></select><br> Color (null allowed): <span class="nullable"> <select ng-model="myColor" ng-options="color.name for color in colors"> <option value="">-- choose color --</option> </select> </span><br/> Color grouped by shade: <select ng-model="myColor" ng-options="color.name group by color.shade for color in colors"> </select><br/> Select <a href ng-click="myColor = { name:'not in list', shade: 'other' }">bogus</a>.<br> <hr/> Currently selected: {{ {selected_color:myColor} }} <div style="border:solid 1px black; height:20px" ng-style="{'background-color':myColor.name}"> </div> </div> </body> </html>
docs/api/class_mix_e_r_p_1_1_net_1_1_front_end_1_1_mix_e_r_p_blank_master.html
mixerp/mixerp
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.10"/> <title>MixERP.Net.FrontEnd.MixERPBlankMaster Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="mixerp.png"/></td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.10 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Packages</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> </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('class_mix_e_r_p_1_1_net_1_1_front_end_1_1_mix_e_r_p_blank_master.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="summary"> <a href="#pro-methods">Protected Member Functions</a> &#124; <a href="#pro-attribs">Protected Attributes</a> &#124; <a href="class_mix_e_r_p_1_1_net_1_1_front_end_1_1_mix_e_r_p_blank_master-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">MixERP.Net.FrontEnd.MixERPBlankMaster Class Reference</div> </div> </div><!--header--> <div class="contents"> <div class="dynheader"> Inheritance diagram for MixERP.Net.FrontEnd.MixERPBlankMaster:</div> <div class="dyncontent"> <div class="center"> <img src="class_mix_e_r_p_1_1_net_1_1_front_end_1_1_mix_e_r_p_blank_master.png" usemap="#MixERP.Net.FrontEnd.MixERPBlankMaster_map" alt=""/> <map id="MixERP.Net.FrontEnd.MixERPBlankMaster_map" name="MixERP.Net.FrontEnd.MixERPBlankMaster_map"> </map> </div></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a> Protected Member Functions</h2></td></tr> <tr class="memitem:a688fead6674f2238c2702feb7359af08"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a688fead6674f2238c2702feb7359af08"></a> void&#160;</td><td class="memItemRight" valign="bottom"><b>Page_Init</b> (object sender, EventArgs e)</td></tr> <tr class="separator:a688fead6674f2238c2702feb7359af08"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:af856691a4f34522a24d82447c3a795a4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af856691a4f34522a24d82447c3a795a4"></a> void&#160;</td><td class="memItemRight" valign="bottom"><b>Page_Load</b> (object sender, EventArgs e)</td></tr> <tr class="separator:af856691a4f34522a24d82447c3a795a4"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-attribs"></a> Protected Attributes</h2></td></tr> <tr class="memitem:a19465ad48c2651ab6b4e5d9279b728d6"><td class="memItemLeft" align="right" valign="top">global::System.Web.UI.WebControls.ContentPlaceHolder&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_front_end_1_1_mix_e_r_p_blank_master.html#a19465ad48c2651ab6b4e5d9279b728d6">ScriptContentPlaceholder</a></td></tr> <tr class="memdesc:a19465ad48c2651ab6b4e5d9279b728d6"><td class="mdescLeft">&#160;</td><td class="mdescRight">ScriptContentPlaceholder control. <a href="#a19465ad48c2651ab6b4e5d9279b728d6">More...</a><br /></td></tr> <tr class="separator:a19465ad48c2651ab6b4e5d9279b728d6"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa866cac33459c68245cb25d910fe8af8"><td class="memItemLeft" align="right" valign="top">global::System.Web.UI.WebControls.ContentPlaceHolder&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_front_end_1_1_mix_e_r_p_blank_master.html#aa866cac33459c68245cb25d910fe8af8">StyleSheetContentPlaceholder</a></td></tr> <tr class="memdesc:aa866cac33459c68245cb25d910fe8af8"><td class="mdescLeft">&#160;</td><td class="mdescRight">StyleSheetContentPlaceholder control. <a href="#aa866cac33459c68245cb25d910fe8af8">More...</a><br /></td></tr> <tr class="separator:aa866cac33459c68245cb25d910fe8af8"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3002888d8a921aeb74276ac2df562074"><td class="memItemLeft" align="right" valign="top">global::System.Web.UI.WebControls.ContentPlaceHolder&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_front_end_1_1_mix_e_r_p_blank_master.html#a3002888d8a921aeb74276ac2df562074">ContentPlaceHolderHead</a></td></tr> <tr class="memdesc:a3002888d8a921aeb74276ac2df562074"><td class="mdescLeft">&#160;</td><td class="mdescRight">ContentPlaceHolderHead control. <a href="#a3002888d8a921aeb74276ac2df562074">More...</a><br /></td></tr> <tr class="separator:a3002888d8a921aeb74276ac2df562074"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a9b776e6bacff622514d070150c6805df"><td class="memItemLeft" align="right" valign="top">global::System.Web.UI.HtmlControls.HtmlForm&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_front_end_1_1_mix_e_r_p_blank_master.html#a9b776e6bacff622514d070150c6805df">form1</a></td></tr> <tr class="memdesc:a9b776e6bacff622514d070150c6805df"><td class="mdescLeft">&#160;</td><td class="mdescRight">form1 control. <a href="#a9b776e6bacff622514d070150c6805df">More...</a><br /></td></tr> <tr class="separator:a9b776e6bacff622514d070150c6805df"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7159e8fcabc3f3581c73563bd517c59f"><td class="memItemLeft" align="right" valign="top">global::System.Web.UI.WebControls.Button&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_front_end_1_1_mix_e_r_p_blank_master.html#a7159e8fcabc3f3581c73563bd517c59f">SwallowSubmit</a></td></tr> <tr class="memdesc:a7159e8fcabc3f3581c73563bd517c59f"><td class="mdescLeft">&#160;</td><td class="mdescRight">SwallowSubmit control. <a href="#a7159e8fcabc3f3581c73563bd517c59f">More...</a><br /></td></tr> <tr class="separator:a7159e8fcabc3f3581c73563bd517c59f"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a1b0e84e37186f454b78afb4c62aa4434"><td class="memItemLeft" align="right" valign="top">global::System.Web.UI.ScriptManager&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_front_end_1_1_mix_e_r_p_blank_master.html#a1b0e84e37186f454b78afb4c62aa4434">ScriptManager1</a></td></tr> <tr class="memdesc:a1b0e84e37186f454b78afb4c62aa4434"><td class="mdescLeft">&#160;</td><td class="mdescRight">ScriptManager1 control. <a href="#a1b0e84e37186f454b78afb4c62aa4434">More...</a><br /></td></tr> <tr class="separator:a1b0e84e37186f454b78afb4c62aa4434"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6e9467603be4c4d30ae8fbc353b986ff"><td class="memItemLeft" align="right" valign="top">global::System.Web.UI.WebControls.ContentPlaceHolder&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_front_end_1_1_mix_e_r_p_blank_master.html#a6e9467603be4c4d30ae8fbc353b986ff">BodyContentPlaceholder</a></td></tr> <tr class="memdesc:a6e9467603be4c4d30ae8fbc353b986ff"><td class="mdescLeft">&#160;</td><td class="mdescRight">BodyContentPlaceholder control. <a href="#a6e9467603be4c4d30ae8fbc353b986ff">More...</a><br /></td></tr> <tr class="separator:a6e9467603be4c4d30ae8fbc353b986ff"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <h2 class="groupheader">Member Data Documentation</h2> <a class="anchor" id="a6e9467603be4c4d30ae8fbc353b986ff"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">global.System.Web.UI.WebControls.ContentPlaceHolder MixERP.Net.FrontEnd.MixERPBlankMaster.BodyContentPlaceholder</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>BodyContentPlaceholder control. </p> <p>Auto-generated field. To modify move field declaration from designer file to code-behind file. </p> </div> </div> <a class="anchor" id="a3002888d8a921aeb74276ac2df562074"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">global.System.Web.UI.WebControls.ContentPlaceHolder MixERP.Net.FrontEnd.MixERPBlankMaster.ContentPlaceHolderHead</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>ContentPlaceHolderHead control. </p> <p>Auto-generated field. To modify move field declaration from designer file to code-behind file. </p> </div> </div> <a class="anchor" id="a9b776e6bacff622514d070150c6805df"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">global.System.Web.UI.HtmlControls.HtmlForm MixERP.Net.FrontEnd.MixERPBlankMaster.form1</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>form1 control. </p> <p>Auto-generated field. To modify move field declaration from designer file to code-behind file. </p> </div> </div> <a class="anchor" id="a19465ad48c2651ab6b4e5d9279b728d6"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">global.System.Web.UI.WebControls.ContentPlaceHolder MixERP.Net.FrontEnd.MixERPBlankMaster.ScriptContentPlaceholder</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>ScriptContentPlaceholder control. </p> <p>Auto-generated field. To modify move field declaration from designer file to code-behind file. </p> </div> </div> <a class="anchor" id="a1b0e84e37186f454b78afb4c62aa4434"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">global.System.Web.UI.ScriptManager MixERP.Net.FrontEnd.MixERPBlankMaster.ScriptManager1</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>ScriptManager1 control. </p> <p>Auto-generated field. To modify move field declaration from designer file to code-behind file. </p> </div> </div> <a class="anchor" id="aa866cac33459c68245cb25d910fe8af8"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">global.System.Web.UI.WebControls.ContentPlaceHolder MixERP.Net.FrontEnd.MixERPBlankMaster.StyleSheetContentPlaceholder</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>StyleSheetContentPlaceholder control. </p> <p>Auto-generated field. To modify move field declaration from designer file to code-behind file. </p> </div> </div> <a class="anchor" id="a7159e8fcabc3f3581c73563bd517c59f"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">global.System.Web.UI.WebControls.Button MixERP.Net.FrontEnd.MixERPBlankMaster.SwallowSubmit</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>SwallowSubmit control. </p> <p>Auto-generated field. To modify move field declaration from designer file to code-behind file. </p> </div> </div> <hr/>The documentation for this class was generated from the following files:<ul> <li>C:/Users/nirvan/Desktop/mixerp/0. GitHub/src/FrontEnd/MixERP.Net.FrontEnd/MixERPBlankMaster.Master.cs</li> <li>C:/Users/nirvan/Desktop/mixerp/0. GitHub/src/FrontEnd/MixERP.Net.FrontEnd/MixERPBlankMaster.Master.designer.cs</li> </ul> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="namespace_mix_e_r_p.html">MixERP</a></li><li class="navelem"><a class="el" href="namespace_mix_e_r_p_1_1_net.html">Net</a></li><li class="navelem"><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end.html">FrontEnd</a></li><li class="navelem"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_front_end_1_1_mix_e_r_p_blank_master.html">MixERPBlankMaster</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.10 </li> </ul> </div> </body> </html>
src/webui/master/static/browse.html
shakamunyi/mesos
<ol class="breadcrumb"> <li> <a class="badge badge-type" href="#">Master</a> </li> <li> <a class="badge badge-type" href="#/agents/{{agent_id}}" title="{{agent_id}}"> Agent</a> </li> <li class="active"> Browse </li> </ol> <ol class="breadcrumb"> <!-- We want to ensure that if the user highlights the path breadcrumb, and copies it, they will receive a /path/without/spaces that they can then paste into a terminal, or elsewhere. In order to do this, we have to ensure there is no whitespace within the <a> tag contents. Also, we have to inject a hidden '/' character because the slashes in the breadcrumb are not copied. --> <li ng-repeat="dir in path.split('/')"><a href="#/agents/{{agent_id}}/browse?path={{ encodeURIComponent(path.split('/').slice(0, $index + 1).join('/')) }}">{{dir}}</a><span class="hidden-text">/</span></li> </ol> <div class="alert alert-error hidden" id="alert"> <button class="close" data-dismiss="alert">×</button> <strong>{{alert_message}}</strong> </div> <div class="row" id="listing"> <div class="col-md-9"> <div class="well"> <div data-ng-show="listing.length == 0"> No files in this directory. </div> <table class="table table-condensed" data-ng-show="listing.length > 0"> <thead> <tr> <th>mode</th> <th class="text-right">nlink</th> <th>uid</th> <th>gid</th> <th class="text-right">size</th> <th class="text-right">mtime</th> <th></th> <th></th> </tr> </thead> <tbody> <tr ng-repeat="file in listing | orderBy:['-mode', 'path']"> <td>{{file.mode}}</td> <td class="text-right">{{file.nlink}}</td> <td>{{file.uid}}</td> <td>{{file.gid}}</td> <td class="text-right">{{file.size | dataSize}}</td> <td class="text-right">{{file.mtime * 1000 | unixDate}}</td> <td> <span data-ng-show="file.mode[0] == 'd'"> <i class="glyphicon glyphicon-folder-close"></i> <a href="#/agents/{{agent_id}}/browse?path={{encodeURIComponent(file.path)}}"> {{basename(file.path)}} </a> </span> <span data-ng-show="file.mode[0] != 'd'"> <i class="glyphicon glyphicon-file" style="visibility: hidden;"></i> <a href="" ng-click="pail($event, encodeURIComponent(file.path))"> {{basename(file.path)}} </a> </span> </td> <td> <a data-ng-show="file.mode[0] != 'd'" href="{{agent_url_prefix}}/files/download?path={{encodeURIComponent(file.path)}}"> <button class="btn btn-xs btn-default" type="button"> Download </button> </a> </td> </tr> </tbody> </table> </div> </div> </div>
testdata/9.8.2.html
esrille/escudo
<HTML> <HEAD> <TITLE>Comparison of positioning schemes</TITLE> <STYLE> body { display: block; font-size:12px; line-height: 200%; width: 400px; height: 400px } p { display: block } span { display: inline } #outer { position: relative; top: -12px; color: red } #inner { position: relative; top: 12px; color: blue } </STYLE> </HEAD> <BODY> <P>Beginning of body contents. <SPAN id="outer"> Start of outer contents. <SPAN id="inner"> Inner contents.</SPAN> End of outer contents.</SPAN> End of body contents. </P> </BODY> </HTML>
www/lib/auth0-angular/examples/sso/index.html
suntorytime/global_marathon
<!DOCTYPE html> <html> <head> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.16/angular.min.js" type="text/javascript"> </script> <script src="//cdn.auth0.com/js/lock-7.1.js" type="text/javascript"> </script> <script src="//cdn.rawgit.com/auth0/angular-storage/master/dist/angular-storage.js" type="text/javascript"> </script> <script src="//cdn.rawgit.com/auth0/angular-jwt/master/dist/angular-jwt.js" type="text/javascript"> </script> <script src="//code.angularjs.org/1.2.16/angular-route.min.js" type="text/javascript"> </script> <script src="//code.angularjs.org/1.2.16/angular-cookies.min.js" type="text/javascript"> </script> <script src="./scripts/myApp.js" type="text/javascript"> </script> <script src="./scripts/auth0-angular.js" type="text/javascript"> </script> <script src="./scripts/controllers.js" type="text/javascript"> </script> <title>Sample Angular App with Auth0</title> </head> <body> <div ng-app="myApp"> <div ng-controller="MenuCtrl"> <a href="" ng-controller="LoginCtrl" ng-click="login()">click to login</a> <br /> <a href="" ng-click="go('/')">main</a> <a href="" ng-click="go('/logout')">logout</a> </div> <div style="margin-top: 10px;">{{message}}</div> <div ng-view> </div> </div> </body> </html>
sensor_node/arduino/libraries/libxbee_3.0.11/html/man3/xbee_pkt.3.html
Introsys/fresh
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML><HEAD><TITLE>Man page of XBEE_PKT</TITLE> </HEAD><BODY> <H1>XBEE_PKT</H1> Section: Linux Programmer's Manual (3)<BR>Updated: 04-Mar-2012<BR><A HREF="#index">Index</A> <A HREF="../index.html">Return to Main Contents</A><HR> <A NAME="lbAB">&nbsp;</A> <H2>NAME</H2> xbee_pkt <A NAME="lbAC">&nbsp;</A> <H2>SYNOPSIS</H2> <PRE> #include &lt;<A HREF="file:///usr/include/xbee.h">xbee.h</A>&gt; struct xbee_pkt { struct xbee *xbee; struct xbee_con *con; const char *conType; unsigned char status; unsigned char options; unsigned char rssi; /* print as &quot;RSSI: -%d - only valid for XBee 1 */ unsigned char frameId; struct timespec timestamp; struct xbee_conAddress address; unsigned char atCommand[2]; void *dataItems; /* do NOT access this item */ int dataLen; unsigned char data[1]; }; </PRE> <A NAME="lbAD">&nbsp;</A> <H2>DESCRIPTION</H2> The <I>xbee_pkt</I> structure provides access to the information contained within a packet. <DL COMPACT> <DT><I>xbee</I> <DD> provides a handle to the related libxbee instance <DT><I>con</I> <DD> provides a handle to the related libxbee connection <DT><I>status</I> <DD> provides the returned status information. This is not populated for all connection types, but is populated for <B>Local AT</B>, <B>Remote AT</B> and possibly others (refer to the XBee datasheet for more information). <DT><I>options</I> <DD> like <I>status</I>, this field isn't populated for every connection type, but is populated for <B>Data</B> and <B>I/O</B> (refer to the XBee datasheet for more information). <DT><I>rssi</I> <DD> this field contains the 'Received Signal Strength Indication' value. <P> If populated, this can be printed like so: <PRE> printf(&quot;RSSI: -%d dBm\n&quot;, pkt-&gt;rssi); </PRE> <DT><I>atCommand</I> <DD> this is only populated for AT connection types, and contains the 2 character AT command. <DT><I>dataItems</I> <DD> you should not dereference this pointer, it is for internal use <I>only</I>. To access data, use <B><A HREF="../man3/xbee_pktDataGet.3.html">xbee_pktDataGet</A></B>(3) and its variations. <DT><I>dataLen</I> <DD> this indicates the length of the <I>data</I> field. <DT><I>data</I> <DD> this contains the body of the packet. This can contain <B>zero</B> bytes, and libxbee will nul terminate it, so that data may be treated as a string (using <B><A HREF="../man3/printf.3.html">printf</A></B>(3) for example). </DL> <A NAME="lbAE">&nbsp;</A> <H2>AUTHOR</H2> Attie Grande &lt;<A HREF="mailto:attie@attie.co.uk">attie@attie.co.uk</A>&gt; <A NAME="lbAF">&nbsp;</A> <H2>SEE ALSO</H2> <B><A HREF="../man3/libxbee.3.html">libxbee</A></B>(3), <B><A HREF="../man3/xbee_setup.3.html">xbee_setup</A></B>(3), <B><A HREF="../man3/xbee_conNew.3.html">xbee_conNew</A></B>(3), <B><A HREF="../man3/xbee_conRx.3.html">xbee_conRx</A></B>(3), <B><A HREF="../man3/xbee_pktFree.3.html">xbee_pktFree</A></B>(3) <P> <HR> <A NAME="index">&nbsp;</A><H2>Index</H2> <DL> <DT><A HREF="#lbAB">NAME</A><DD> <DT><A HREF="#lbAC">SYNOPSIS</A><DD> <DT><A HREF="#lbAD">DESCRIPTION</A><DD> <DT><A HREF="#lbAE">AUTHOR</A><DD> <DT><A HREF="#lbAF">SEE ALSO</A><DD> </DL> <HR> This document was created by <A HREF="/cgi-bin/man/man2html">man2html</A>, using the manual pages.<BR> Time: 18:19:28 GMT, September 04, 2013 </BODY> </HTML>
webif/config/config.html
bas-t/oscam
##TPLHEADERSHORT## <script type="text/javascript"> var oscamconf = 'conf'; </script> ##TPLBODY## ##TPLMENU## ##TPLCONFIGMENU## ##TPLMESSAGE## <form action="config.html" method="get"> <input name="action" type="hidden" value="execute"> ##CONFIG_CONTENT## <TR><TD CLASS="configcolsave" COLSPAN="2"><input type="submit" value="Save" title="Save Settings ##BTNDISABLED##" ##BTNDISABLED##></TD></TR> <TR CLASS="configfirstrow"><TD></TD><TD></TD></TR> </TABLE> </form> ##CONFIG_CONTROL## ##TPLFOOTER##
web/templates/admin/login.html
CarlosTenorio/vespapp-web
{% extends "admin/base_site.html" %} {% load i18n static %} {% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static "admin/css/login.css" %}" /> {{ form.media }} {% endblock %} {% block bodyclass %}{{ block.super }} login{% endblock %} {% block usertools %}{% endblock %} {% block nav-global %}{% endblock %} {% block content_title %}{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %} {% if form.errors and not form.non_field_errors %} <p class="errornote"> {% if form.errors.items|length == 1 %}{% trans "Please correct the error below." %}{% else %}{% trans "Please correct the errors below." %}{% endif %} </p> {% endif %} {% if form.non_field_errors %} {% for error in form.non_field_errors %} <p class="errornote"> {{ error }} </p> {% endfor %} {% endif %} <div id="content-main"> {% if user.is_authenticated %} <p class="errornote"> {% blocktrans with username=request.user.get_username trimmed %} You are authenticated as {{ username }}, but are not authorized to access this page. Would you like to login to a different account? {% endblocktrans %} </p> {% endif %} <form action="{{ app_path }}" method="post" id="login-form">{% csrf_token %} <div class="form-row"> {{ form.username.errors }} {{ form.username.label_tag }} {{ form.username }} </div> <div class="form-row"> {{ form.password.errors }} {{ form.password.label_tag }} {{ form.password }} <input type="hidden" name="next" value="{{ next }}" /> </div> {% url 'admin_password_reset' as password_reset_url %} {% if password_reset_url %} <div class="password-reset-link"> <a href="{{ password_reset_url }}">{% trans 'Forgotten your password or username?' %}</a> </div> {% endif %} <div class="submit-row"> <label>&nbsp;</label><input type="submit" value="{% trans 'Log in' %}" /> </div> </form> </div> {% endblock %}
src/main/resources/fwapp/external/semantic-2.3/components/rail.css
opendesignflow/fwapp
/*! * # Semantic UI 2.3.1 - Rail * http://github.com/semantic-org/semantic-ui/ * * * Released under the MIT license * http://opensource.org/licenses/MIT * */ /******************************* Rails *******************************/ .ui.rail { position: absolute; top: 0%; width: 300px; height: 100%; } .ui.left.rail { left: auto; right: 100%; padding: 0em 2rem 0em 0em; margin: 0em 2rem 0em 0em; } .ui.right.rail { left: 100%; right: auto; padding: 0em 0em 0em 2rem; margin: 0em 0em 0em 2rem; } /******************************* Variations *******************************/ /*-------------- Internal ---------------*/ .ui.left.internal.rail { left: 0%; right: auto; padding: 0em 0em 0em 2rem; margin: 0em 0em 0em 2rem; } .ui.right.internal.rail { left: auto; right: 0%; padding: 0em 2rem 0em 0em; margin: 0em 2rem 0em 0em; } /*-------------- Dividing ---------------*/ .ui.dividing.rail { width: 302.5px; } .ui.left.dividing.rail { padding: 0em 2.5rem 0em 0em; margin: 0em 2.5rem 0em 0em; border-right: 1px solid rgba(34, 36, 38, 0.15); } .ui.right.dividing.rail { border-left: 1px solid rgba(34, 36, 38, 0.15); padding: 0em 0em 0em 2.5rem; margin: 0em 0em 0em 2.5rem; } /*-------------- Distance ---------------*/ .ui.close.rail { width: calc( 300px + 1em ); } .ui.close.left.rail { padding: 0em 1em 0em 0em; margin: 0em 1em 0em 0em; } .ui.close.right.rail { padding: 0em 0em 0em 1em; margin: 0em 0em 0em 1em; } .ui.very.close.rail { width: calc( 300px + 0.5em ); } .ui.very.close.left.rail { padding: 0em 0.5em 0em 0em; margin: 0em 0.5em 0em 0em; } .ui.very.close.right.rail { padding: 0em 0em 0em 0.5em; margin: 0em 0em 0em 0.5em; } /*-------------- Attached ---------------*/ .ui.attached.left.rail, .ui.attached.right.rail { padding: 0em; margin: 0em; } /*-------------- Sizing ---------------*/ .ui.mini.rail { font-size: 0.78571429rem; } .ui.tiny.rail { font-size: 0.85714286rem; } .ui.small.rail { font-size: 0.92857143rem; } .ui.rail { font-size: 1rem; } .ui.large.rail { font-size: 1.14285714rem; } .ui.big.rail { font-size: 1.28571429rem; } .ui.huge.rail { font-size: 1.42857143rem; } .ui.massive.rail { font-size: 1.71428571rem; } /******************************* Theme Overrides *******************************/ /******************************* Site Overrides *******************************/
third_party/blink/web_tests/external/wpt/svg/text/reftests/transform-dynamic-change-ref.html
chromium/chromium
<!DOCTYPE html> <html> <body> <div style="position:absolute; transform-origin: 0px 0px; transform: matrix(0.9, 0, 0, 0.9, -210, -777);"> <svg width="2384" height="1684" style="position:absolute; left:0; top:0;"> <circle cx="475" cy="975" r="40" stroke="black" stroke-width="2" fill="none" /> <text fill="red" style="font-size: 40px;" transform="matrix(1, 0, 0, 1, 468, 988)">A</text> </svg> </div> <svg width="500" height="400" style="transform-origin: 0px 0px; transform: scale(2) translate(-300px, -300px);"> <text x="300" y="350" font-size="50" fill="green">PASS</text> </svg> </body> </html>
frappe/public/js/frappe/views/module/module_section.html
reachalpineswift/frappe-bench
<div class="module-section"> {% for(var i=0, j= data.items.length; i < j; i++) { var item = data.items[i]; %} <div class="row module-item" data-item-index={%= i %}> {% if (item.description) { %} <div class="col-xs-8"> <h4>{%= item.label || item.name %}</h4> {% if (item.type==="doctype") { %} <span class="open-notification hide" data-doctype="{%= item.name %}"></span> {% } %} <p class="text-muted small module-item-description hidden-xs">{%= item.description %}</p> </div> <div class="col-xs-4 text-muted text-right small" style="padding-top: 5px;"> {% if (item.last_modified) { %} {%= comment_when(item.last_modified) %} {% } %} </div> {% } else { %} <div class="col-xs-12"> <h4>{%= item.label || item.name %}</h4> </div> {% } %} </div> {% } %} <div class="row visible-sm visible-xs" style="padding: 15px;"> <div class="col-xs-12"> <a onclick="frappe.ui.toolbar.toggle_left_sidebar();" class="text-primary"> {%= __("More") %}</a> </div> </div> </div>
doc/lib/trello/checklist_rb.html
ksamc/ruby-trello
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <title>File: checklist.rb [RDoc Documentation]</title> <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" /> <script src="../../js/jquery.js" type="text/javascript" charset="utf-8"></script> <script src="../../js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script> <script src="../../js/quicksearch.js" type="text/javascript" charset="utf-8"></script> <script src="../../js/darkfish.js" type="text/javascript" charset="utf-8"></script> </head> <body class="file file-popup"> <div id="metadata"> <dl> <dt class="modified-date">Last Modified</dt> <dd class="modified-date">2012-02-13 00:16:22 -0600</dd> <dt class="requires">Requires</dt> <dd class="requires"> <ul> </ul> </dd> </dl> </div> <div id="documentation"> <div class="description"> <h2>Description</h2> </div> </div> </body> </html>
doc/lib/html/struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y-members.html
dthongvl/Blackbone
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.8"/> <title>BlackBone: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">BlackBone </div> <div id="projectbrief">Windows memory hacking library</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.8 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> </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('struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Functions</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">_API_SET_NAMESPACE_ARRAY Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>, including all inherited members.</p> <table class="directory"> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>apiName</b>(PAPI_SET_NAMESPACE_ENTRY pEntry, wchar_t *output) (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Array</b> (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Count</b> (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>entry</b>(DWORD i) (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Flags</b> (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Size</b> (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>valArray</b>(PAPI_SET_NAMESPACE_ENTRY pEntry) (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Version</b> (defined in <a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a>)</td><td class="entry"><a class="el" href="struct___a_p_i___s_e_t___n_a_m_e_s_p_a_c_e___a_r_r_a_y.html">_API_SET_NAMESPACE_ARRAY</a></td><td class="entry"></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated on Tue Jul 21 2015 12:31:40 for BlackBone by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.8 </li> </ul> </div> </body> </html>
test/serializertests.html
shuizhongyueming/rangy
<?xml version="1.0"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title>Rangy - Serializer Tests</title> <script type="text/javascript" src="../external/log4javascript.js"></script> <script type="text/javascript" src="../external/jshashtable.js"></script> <script type="text/javascript"> //var appender = new log4javascript.InPageAppender(); var appender = new log4javascript.BrowserConsoleAppender(); //log4javascript.getRootLogger().addAppender(appender); var log = log4javascript.getRootLogger(); log4javascript.setShowStackTraces(true); //log4javascript.setEnabled(false); </script> <script type="text/javascript" src="xntest.js"></script> <script type="text/javascript" src="testutils.js"></script> <script type="text/javascript"> xn.test.enableStackTraces = true; </script> <script type="text/javascript" src="../src/core/core.js"></script> <script type="text/javascript" src="../src/core/dom.js"></script> <script type="text/javascript" src="../src/core/domrange.js"></script> <script type="text/javascript" src="../src/core/wrappedrange.js"></script> <script type="text/javascript" src="../src/core/wrappedselection.js"></script> <script type="text/javascript" src="../src/modules/rangy-serializer.js"></script> <script type="text/javascript" src="serializertests.js"></script> <link rel="stylesheet" type="text/css" href="tests.css"/> </head> <body> <div id="test"></div> <div id="messages"></div> </body> </html>
web/ui/development-bundle/docs/selectable.html
csgf/myjobs-portlet
<ul class="UIAPIPlugin-toc"> <li><a href="#overview">Overview</a></li> <li><a href="#options">Options</a></li> <li><a href="#events">Events</a></li> <li><a href="#methods">Methods</a></li> <li><a href="#theming">Theming</a></li> </ul> <div class="UIAPIPlugin"> <h1>jQuery UI Selectable</h1> <div id="overview"> <h2 class="top-header">Overview</h2> <div id="overview-main"> <p>The jQuery UI Selectable plugin allows for elements to be selected by dragging a box (sometimes called a lasso) with the mouse over the elements. Also, elements can be selected by click or drag while holding the Ctrl/Meta key, allowing for multiple (non-contiguous) selections.</p> </div> <div id="overview-dependencies"> <h3>Dependencies</h3> <ul> <li>UI Core</li> <li>UI Widget</li> <li>UI Mouse</li> </ul> </div> <div id="overview-example"> <h3>Example</h3> <div id="overview-example" class="example"> <ul><li><a href="#demo"><span>Demo</span></a></li><li><a href="#source"><span>View Source</span></a></li></ul> <p><div id="demo" class="tabs-container" rel=""> A simple jQuery UI Selectable.<br /> </p> <pre>$(&quot;#selectable&quot;).selectable(); </pre> <p></div><div id="source" class="tabs-container"> </p> <pre>&lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;link href=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;/&gt; &lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js&quot;&gt;&lt;/script&gt; &lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js&quot;&gt;&lt;/script&gt; &lt;style type=&quot;text/css&quot;&gt; #selectable .ui-selecting { background: silver; } #selectable .ui-selected { background: gray; } &lt;/style&gt; &lt;script&gt; $(document).ready(function() { $(&quot;#selectable&quot;).selectable(); }); &lt;/script&gt; &lt;/head&gt; &lt;body style="font-size:62.5%;"&gt; &lt;ul id=&quot;selectable&quot;&gt; &lt;li&gt;Item 1&lt;/li&gt; &lt;li&gt;Item 2&lt;/li&gt; &lt;li&gt;Item 3&lt;/li&gt; &lt;li&gt;Item 4&lt;/li&gt; &lt;li&gt;Item 5&lt;/li&gt; &lt;/ul&gt; &lt;/body&gt; &lt;/html&gt; </pre> <p></div> </p><p></div> </div> </div> <div id="options"> <h2 class="top-header">Options</h2> <ul class="options-list"> <li class="option" id="option-disabled"> <div class="option-header"> <h3 class="option-name"><a href="#option-disabled">disabled</a></h3> <dl> <dt class="option-type-label">Type:</dt> <dd class="option-type">Boolean</dd> <dt class="option-default-label">Default:</dt> <dd class="option-default">false</dd> </dl> </div> <div class="option-description"> <p>Disables (true) or enables (false) the selectable. Can be set when initialising (first creating) the selectable.</p> </div> <div class="option-examples"> <h4>Code examples</h4> <dl class="option-examples-list"> <dt> Initialize a selectable with the <code>disabled</code> option specified. </dt> <dd> <pre><code>$( ".selector" ).selectable({ disabled: true });</code></pre> </dd> <dt> Get or set the <code>disabled</code> option, after init. </dt> <dd> <pre><code>//getter var disabled = $( ".selector" ).selectable( "option", "disabled" ); //setter $( ".selector" ).selectable( "option", "disabled", true );</code></pre> </dd> </dl> </div> </li> <li class="option" id="option-autoRefresh"> <div class="option-header"> <h3 class="option-name"><a href="#option-autoRefresh">autoRefresh</a></h3> <dl> <dt class="option-type-label">Type:</dt> <dd class="option-type">Boolean</dd> <dt class="option-default-label">Default:</dt> <dd class="option-default">true</dd> </dl> </div> <div class="option-description"> <p>This determines whether to refresh (recalculate) the position and size of each selectee at the beginning of each select operation. If you have many many items, you may want to set this to false and call the refresh method manually.</p> </div> <div class="option-examples"> <h4>Code examples</h4> <dl class="option-examples-list"> <dt> Initialize a selectable with the <code>autoRefresh</code> option specified. </dt> <dd> <pre><code>$( ".selector" ).selectable({ autoRefresh: false });</code></pre> </dd> <dt> Get or set the <code>autoRefresh</code> option, after init. </dt> <dd> <pre><code>//getter var autoRefresh = $( ".selector" ).selectable( "option", "autoRefresh" ); //setter $( ".selector" ).selectable( "option", "autoRefresh", false );</code></pre> </dd> </dl> </div> </li> <li class="option" id="option-cancel"> <div class="option-header"> <h3 class="option-name"><a href="#option-cancel">cancel</a></h3> <dl> <dt class="option-type-label">Type:</dt> <dd class="option-type">Selector</dd> <dt class="option-default-label">Default:</dt> <dd class="option-default">':input,option'</dd> </dl> </div> <div class="option-description"> <p>Prevents selecting if you start on elements matching the selector.</p> </div> <div class="option-examples"> <h4>Code examples</h4> <dl class="option-examples-list"> <dt> Initialize a selectable with the <code>cancel</code> option specified. </dt> <dd> <pre><code>$( ".selector" ).selectable({ cancel: ':input,option' });</code></pre> </dd> <dt> Get or set the <code>cancel</code> option, after init. </dt> <dd> <pre><code>//getter var cancel = $( ".selector" ).selectable( "option", "cancel" ); //setter $( ".selector" ).selectable( "option", "cancel", ':input,option' );</code></pre> </dd> </dl> </div> </li> <li class="option" id="option-delay"> <div class="option-header"> <h3 class="option-name"><a href="#option-delay">delay</a></h3> <dl> <dt class="option-type-label">Type:</dt> <dd class="option-type">Integer</dd> <dt class="option-default-label">Default:</dt> <dd class="option-default">0</dd> </dl> </div> <div class="option-description"> <p>Time in milliseconds to define when the selecting should start. It helps preventing unwanted selections when clicking on an element.</p> </div> <div class="option-examples"> <h4>Code examples</h4> <dl class="option-examples-list"> <dt> Initialize a selectable with the <code>delay</code> option specified. </dt> <dd> <pre><code>$( ".selector" ).selectable({ delay: 20 });</code></pre> </dd> <dt> Get or set the <code>delay</code> option, after init. </dt> <dd> <pre><code>//getter var delay = $( ".selector" ).selectable( "option", "delay" ); //setter $( ".selector" ).selectable( "option", "delay", 20 );</code></pre> </dd> </dl> </div> </li> <li class="option" id="option-distance"> <div class="option-header"> <h3 class="option-name"><a href="#option-distance">distance</a></h3> <dl> <dt class="option-type-label">Type:</dt> <dd class="option-type">Integer</dd> <dt class="option-default-label">Default:</dt> <dd class="option-default">0</dd> </dl> </div> <div class="option-description"> <p>Tolerance, in pixels, for when selecting should start. If specified, selecting will not start until after mouse is dragged beyond distance.</p> </div> <div class="option-examples"> <h4>Code examples</h4> <dl class="option-examples-list"> <dt> Initialize a selectable with the <code>distance</code> option specified. </dt> <dd> <pre><code>$( ".selector" ).selectable({ distance: 20 });</code></pre> </dd> <dt> Get or set the <code>distance</code> option, after init. </dt> <dd> <pre><code>//getter var distance = $( ".selector" ).selectable( "option", "distance" ); //setter $( ".selector" ).selectable( "option", "distance", 20 );</code></pre> </dd> </dl> </div> </li> <li class="option" id="option-filter"> <div class="option-header"> <h3 class="option-name"><a href="#option-filter">filter</a></h3> <dl> <dt class="option-type-label">Type:</dt> <dd class="option-type">Selector</dd> <dt class="option-default-label">Default:</dt> <dd class="option-default">'*'</dd> </dl> </div> <div class="option-description"> <p>The matching child elements will be made selectees (able to be selected).</p> </div> <div class="option-examples"> <h4>Code examples</h4> <dl class="option-examples-list"> <dt> Initialize a selectable with the <code>filter</code> option specified. </dt> <dd> <pre><code>$( ".selector" ).selectable({ filter: 'li' });</code></pre> </dd> <dt> Get or set the <code>filter</code> option, after init. </dt> <dd> <pre><code>//getter var filter = $( ".selector" ).selectable( "option", "filter" ); //setter $( ".selector" ).selectable( "option", "filter", 'li' );</code></pre> </dd> </dl> </div> </li> <li class="option" id="option-tolerance"> <div class="option-header"> <h3 class="option-name"><a href="#option-tolerance">tolerance</a></h3> <dl> <dt class="option-type-label">Type:</dt> <dd class="option-type">String</dd> <dt class="option-default-label">Default:</dt> <dd class="option-default">'touch'</dd> </dl> </div> <div class="option-description"> <p>Possible values: 'touch', 'fit'. </p> <ul> <li><b>fit</b>: draggable overlaps the droppable entirely</li> <li><b>touch</b>: draggable overlaps the droppable any amount</li> </ul> <p></p> </div> <div class="option-examples"> <h4>Code examples</h4> <dl class="option-examples-list"> <dt> Initialize a selectable with the <code>tolerance</code> option specified. </dt> <dd> <pre><code>$( ".selector" ).selectable({ tolerance: 'fit' });</code></pre> </dd> <dt> Get or set the <code>tolerance</code> option, after init. </dt> <dd> <pre><code>//getter var tolerance = $( ".selector" ).selectable( "option", "tolerance" ); //setter $( ".selector" ).selectable( "option", "tolerance", 'fit' );</code></pre> </dd> </dl> </div> </li> </ul> </div> <div id="events"> <h2 class="top-header">Events</h2> <ul class="events-list"> <li class="event" id="event-create"> <div class="event-header"> <h3 class="event-name"><a href="#event-create">create</a></h3> <dl> <dt class="event-type-label">Type:</dt> <dd class="event-type">selectablecreate</dd> </dl> </div> <div class="event-description"> <p>This event is triggered when selectable is created.</p> </div> <div class="event-examples"> <h4>Code examples</h4> <dl class="event-examples-list"> <dt> Supply a callback function to handle the <code>create</code> event as an init option. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).selectable({ create: function(event, ui) { ... } });</code></pre> </dd> <dt> Bind to the <code>create</code> event by type: <code>selectablecreate</code>. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).bind( &quot;selectablecreate&quot;, function(event, ui) { ... });</code></pre> </dd> </dl> </div> </li> <li class="event" id="event-selected"> <div class="event-header"> <h3 class="event-name"><a href="#event-selected">selected</a></h3> <dl> <dt class="event-type-label">Type:</dt> <dd class="event-type">selectableselected</dd> </dl> </div> <div class="event-description"> <p>This event is triggered at the end of the select operation, on each element added to the selection.</p> </div> <div class="event-examples"> <h4>Code examples</h4> <dl class="event-examples-list"> <dt> Supply a callback function to handle the <code>selected</code> event as an init option. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).selectable({ selected: function(event, ui) { ... } });</code></pre> </dd> <dt> Bind to the <code>selected</code> event by type: <code>selectableselected</code>. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).bind( &quot;selectableselected&quot;, function(event, ui) { ... });</code></pre> </dd> </dl> </div> </li> <li class="event" id="event-selecting"> <div class="event-header"> <h3 class="event-name"><a href="#event-selecting">selecting</a></h3> <dl> <dt class="event-type-label">Type:</dt> <dd class="event-type">selectableselecting</dd> </dl> </div> <div class="event-description"> <p>This event is triggered during the select operation, on each element added to the selection.</p> </div> <div class="event-examples"> <h4>Code examples</h4> <dl class="event-examples-list"> <dt> Supply a callback function to handle the <code>selecting</code> event as an init option. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).selectable({ selecting: function(event, ui) { ... } });</code></pre> </dd> <dt> Bind to the <code>selecting</code> event by type: <code>selectableselecting</code>. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).bind( &quot;selectableselecting&quot;, function(event, ui) { ... });</code></pre> </dd> </dl> </div> </li> <li class="event" id="event-start"> <div class="event-header"> <h3 class="event-name"><a href="#event-start">start</a></h3> <dl> <dt class="event-type-label">Type:</dt> <dd class="event-type">selectablestart</dd> </dl> </div> <div class="event-description"> <p>This event is triggered at the beginning of the select operation.</p> </div> <div class="event-examples"> <h4>Code examples</h4> <dl class="event-examples-list"> <dt> Supply a callback function to handle the <code>start</code> event as an init option. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).selectable({ start: function(event, ui) { ... } });</code></pre> </dd> <dt> Bind to the <code>start</code> event by type: <code>selectablestart</code>. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).bind( &quot;selectablestart&quot;, function(event, ui) { ... });</code></pre> </dd> </dl> </div> </li> <li class="event" id="event-stop"> <div class="event-header"> <h3 class="event-name"><a href="#event-stop">stop</a></h3> <dl> <dt class="event-type-label">Type:</dt> <dd class="event-type">selectablestop</dd> </dl> </div> <div class="event-description"> <p>This event is triggered at the end of the select operation.</p> </div> <div class="event-examples"> <h4>Code examples</h4> <dl class="event-examples-list"> <dt> Supply a callback function to handle the <code>stop</code> event as an init option. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).selectable({ stop: function(event, ui) { ... } });</code></pre> </dd> <dt> Bind to the <code>stop</code> event by type: <code>selectablestop</code>. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).bind( &quot;selectablestop&quot;, function(event, ui) { ... });</code></pre> </dd> </dl> </div> </li> <li class="event" id="event-unselected"> <div class="event-header"> <h3 class="event-name"><a href="#event-unselected">unselected</a></h3> <dl> <dt class="event-type-label">Type:</dt> <dd class="event-type">selectableunselected</dd> </dl> </div> <div class="event-description"> <p>This event is triggered at the end of the select operation, on each element removed from the selection.</p> </div> <div class="event-examples"> <h4>Code examples</h4> <dl class="event-examples-list"> <dt> Supply a callback function to handle the <code>unselected</code> event as an init option. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).selectable({ unselected: function(event, ui) { ... } });</code></pre> </dd> <dt> Bind to the <code>unselected</code> event by type: <code>selectableunselected</code>. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).bind( &quot;selectableunselected&quot;, function(event, ui) { ... });</code></pre> </dd> </dl> </div> </li> <li class="event" id="event-unselecting"> <div class="event-header"> <h3 class="event-name"><a href="#event-unselecting">unselecting</a></h3> <dl> <dt class="event-type-label">Type:</dt> <dd class="event-type">selectableunselecting</dd> </dl> </div> <div class="event-description"> <p>This event is triggered during the select operation, on each element removed from the selection.</p> </div> <div class="event-examples"> <h4>Code examples</h4> <dl class="event-examples-list"> <dt> Supply a callback function to handle the <code>unselecting</code> event as an init option. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).selectable({ unselecting: function(event, ui) { ... } });</code></pre> </dd> <dt> Bind to the <code>unselecting</code> event by type: <code>selectableunselecting</code>. </dt> <dd> <pre><code>$( &quot;.selector&quot; ).bind( &quot;selectableunselecting&quot;, function(event, ui) { ... });</code></pre> </dd> </dl> </div> </li> </ul> </div> <div id="methods"> <h2 class="top-header">Methods</h2> <ul class="methods-list"> <li class="method" id="method-destroy"> <div class="method-header"> <h3 class="method-name"><a href="#method-destroy">destroy</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.selectable( "destroy" )</dd> </dl> </div> <div class="method-description"> <p>Remove the selectable functionality completely. This will return the element back to its pre-init state.</p> </div> </li> <li class="method" id="method-disable"> <div class="method-header"> <h3 class="method-name"><a href="#method-disable">disable</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.selectable( "disable" )</dd> </dl> </div> <div class="method-description"> <p>Disable the selectable.</p> </div> </li> <li class="method" id="method-enable"> <div class="method-header"> <h3 class="method-name"><a href="#method-enable">enable</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.selectable( "enable" )</dd> </dl> </div> <div class="method-description"> <p>Enable the selectable.</p> </div> </li> <li class="method" id="method-option"> <div class="method-header"> <h3 class="method-name"><a href="#method-option">option</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.selectable( "option" , optionName , <span class="optional">[</span>value<span class="optional">] </span> )</dd> </dl> </div> <div class="method-description"> <p>Get or set any selectable option. If no value is specified, will act as a getter.</p> </div> </li> <li class="method" id="method-option"> <div class="method-header"> <h3 class="method-name"><a href="#method-option">option</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.selectable( "option" , options )</dd> </dl> </div> <div class="method-description"> <p>Set multiple selectable options at once by providing an options object.</p> </div> </li> <li class="method" id="method-widget"> <div class="method-header"> <h3 class="method-name"><a href="#method-widget">widget</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.selectable( "widget" )</dd> </dl> </div> <div class="method-description"> <p>Returns the .ui-selectable element.</p> </div> </li> <li class="method" id="method-refresh"> <div class="method-header"> <h3 class="method-name"><a href="#method-refresh">refresh</a></h3> <dl> <dt class="method-signature-label">Signature:</dt> <dd class="method-signature">.selectable( "refresh" )</dd> </dl> </div> <div class="method-description"> <p>Refresh the position and size of each selectee element. This method can be used to manually recalculate the position and size of each selectee element. Very useful if autoRefresh is set to false.</p> </div> </li> </ul> </div> <div id="theming"> <h2 class="top-header">Theming</h2> <p>The jQuery UI Selectable plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain. </p> <p>If a deeper level of customization is needed, there are widget-specific classes referenced within the jquery.ui.selectable.css stylesheet that can be modified. These classes are highlighed in bold below. </p> <h3>Sample markup with jQuery UI CSS Framework classes</h3> &lt;ul class=&quot;<strong>ui-selectable</strong>&quot;&gt;<br /> &#160;&#160;&#160;&lt;li class=&quot;<strong>ui-selectee</strong>&quot;&gt;&lt;/li&gt;<br /> &#160;&#160;&#160;&lt;li class=&quot;<strong>ui-selectee</strong>&quot;&gt;&lt;/li&gt;<br /> &#160;&#160;&#160;&lt;li class=&quot;<strong>ui-selectee</strong>&quot;&gt;&lt;/li&gt;<br /> &lt;/ul&gt; <p class="theme-note"> <strong> Note: This is a sample of markup generated by the selectable plugin, not markup you should use to create a selectable. The only markup needed for that is <br />&lt;ul&gt;<br /> &#160;&#160;&#160;&lt;li&gt;&lt;/li&gt;<br /> &#160;&#160;&#160;&lt;li&gt;&lt;/li&gt;<br /> &#160;&#160;&#160;&lt;li&gt;&lt;/li&gt;<br /> &lt;/ul&gt;. </strong> </p> </div> </div> </p><!-- Pre-expand include size: 34703 bytes Post-expand include size: 54220 bytes Template argument size: 27222 bytes Maximum: 2097152 bytes --> <!-- Saved in parser cache with key jqdocs_docs:pcache:idhash:3771-1!1!0!!en!2 and timestamp 20110413160311 -->
public/apps/equifit/bower_components/backbone-forms/examples/register-form-custom-template/submit.html
mromanoff/equifit
Thanks for registering!
ajax/libs/oojs-ui/0.23.1/oojs-ui-apex-icons-alerts.css
him2him2/cdnjs
/*! * OOjs UI v0.23.1 * https://www.mediawiki.org/wiki/OOjs_UI * * Copyright 2011–2017 OOjs UI Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * * Date: 2017-09-20T00:32:00Z */ .oo-ui-icon-alert { background-image: url('themes/apex/images/icons/alert.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/alert.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/alert.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/alert.png'); } .oo-ui-icon-bell { background-image: url('themes/apex/images/icons/bell.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/bell.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/bell.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/bell.png'); } .oo-ui-icon-bellOn { background-image: url('themes/apex/images/icons/bellOn-ltr.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/bellOn-ltr.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/bellOn-ltr.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/bellOn-ltr.png'); } .oo-ui-icon-comment { background-image: url('themes/apex/images/icons/comment.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/comment.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/comment.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/comment.png'); } .oo-ui-icon-eye { background-image: url('themes/apex/images/icons/eye.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/eye.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/eye.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/eye.png'); } .oo-ui-icon-eyeClosed { background-image: url('themes/apex/images/icons/eyeClosed.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/eyeClosed.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/eyeClosed.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/eyeClosed.png'); } .oo-ui-icon-message { background-image: url('themes/apex/images/icons/message-ltr.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/message-ltr.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/message-ltr.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/message-ltr.png'); } .oo-ui-icon-notice { background-image: url('themes/apex/images/icons/notice.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/notice.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/notice.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/notice.png'); } .oo-ui-icon-signature { background-image: url('themes/apex/images/icons/signature-ltr.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/signature-ltr.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/signature-ltr.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/signature-ltr.png'); } .oo-ui-icon-speechBubble { background-image: url('themes/apex/images/icons/speechBubble-ltr.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/speechBubble-ltr.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/speechBubble-ltr.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/speechBubble-ltr.png'); } .oo-ui-icon-speechBubbleAdd { background-image: url('themes/apex/images/icons/speechBubbleAdd-ltr.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/speechBubbleAdd-ltr.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/speechBubbleAdd-ltr.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/speechBubbleAdd-ltr.png'); } .oo-ui-icon-speechBubbles { background-image: url('themes/apex/images/icons/speechBubbles-ltr.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/speechBubbles-ltr.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/speechBubbles-ltr.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/speechBubbles-ltr.png'); } .oo-ui-icon-tray { background-image: url('themes/apex/images/icons/tray.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/tray.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/tray.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/tray.png'); }
libstreaming/doc/net/majorkernelpanic/streaming/hw/package-tree.html
mrtensai/sosapp
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_79) on Mon Jun 01 05:18:47 EDT 2015 --> <title>net.majorkernelpanic.streaming.hw Class Hierarchy</title> <meta name="date" content="2015-06-01"> <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="net.majorkernelpanic.streaming.hw Class Hierarchy"; } //--> </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">Tree</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="../../../../net/majorkernelpanic/streaming/gl/package-tree.html">Prev</a></li> <li><a href="../../../../net/majorkernelpanic/streaming/mp4/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?net/majorkernelpanic/streaming/hw/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 class="title">Hierarchy For Package net.majorkernelpanic.streaming.hw</h1> <span class="strong">Package Hierarchies:</span> <ul class="horizontal"> <li><a href="../../../../overview-tree.html">All Packages</a></li> </ul> </div> <div class="contentContainer"> <h2 title="Class Hierarchy">Class Hierarchy</h2> <ul> <li type="circle">java.lang.Object <ul> <li type="circle">net.majorkernelpanic.streaming.hw.<a href="../../../../net/majorkernelpanic/streaming/hw/CodecManager.html" title="class in net.majorkernelpanic.streaming.hw"><span class="strong">CodecManager</span></a></li> <li type="circle">net.majorkernelpanic.streaming.hw.<a href="../../../../net/majorkernelpanic/streaming/hw/EncoderDebugger.html" title="class in net.majorkernelpanic.streaming.hw"><span class="strong">EncoderDebugger</span></a></li> <li type="circle">net.majorkernelpanic.streaming.hw.<a href="../../../../net/majorkernelpanic/streaming/hw/NV21Convertor.html" title="class in net.majorkernelpanic.streaming.hw"><span class="strong">NV21Convertor</span></a></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>Class</li> <li class="navBarCell1Rev">Tree</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="../../../../net/majorkernelpanic/streaming/gl/package-tree.html">Prev</a></li> <li><a href="../../../../net/majorkernelpanic/streaming/mp4/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?net/majorkernelpanic/streaming/hw/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.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>
mod/turnitintool/lang/fi_utf8/help/turnitintool/partnames.html
classroomtechtools/dragonnet
<p><b><img alt="" src="<?php echo $CFG->wwwroot; ?>/mod/turnitintool/icon.gif" />&nbsp;Turnitin-tehtävät&nbsp;-&nbsp;Tehtävän Osia</b></p> <p>Päättää, ovatko tämän tehtävän osat Nimettyjä Osia, vai onko tehtävä Kansiotehtävä.</p>
web-platform-tests/tests/conformance-checkers/html/media-queries/015-novalid.html
cr/fxos-certsuite
<!DOCTYPE html> <html> <head> <meta charset=utf-8> <title>tv and (scan: 1)</title> <link href='foo' media='tv and (scan: 1)' rel='stylesheet'> </head> <body> <p>tv and (scan: 1)</p> </body> </html>
wicket-core/src/test/java/org/apache/wicket/markup/parser/PageExpectedResult_1.html
topicusonderwijs/wicket
<html xmlns:wicket> <body> <a href="../../myImage.gif">mein Label</a> <a href="/myImage.gif">mein Label</a> </body> </html>
doc/com/intel/hadoop/graphbuilder/partition/mapreduce/edge/package-summary.html
drtobbe/graphbuilder
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_26) on Thu Nov 08 03:57:19 PST 2012 --> <TITLE> com.intel.hadoop.graphbuilder.partition.mapreduce.edge </TITLE> <META NAME="date" CONTENT="2012-11-08"> <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="com.intel.hadoop.graphbuilder.partition.mapreduce.edge"; } } </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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../../com/intel/hadoop/graphbuilder/parser/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/keyvalue/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?com/intel/hadoop/graphbuilder/partition/mapreduce/edge/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.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> <H2> Package com.intel.hadoop.graphbuilder.partition.mapreduce.edge </H2> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/edge/EdgeIngressCombiner.html" title="class in com.intel.hadoop.graphbuilder.partition.mapreduce.edge">EdgeIngressCombiner&lt;KeyType extends IngressKeyType,ValType extends IngressValueType&gt;</A></B></TD> <TD>Combines intermediate IngressValues.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/edge/EdgeIngressMapper.html" title="class in com.intel.hadoop.graphbuilder.partition.mapreduce.edge">EdgeIngressMapper&lt;VidType extends WritableComparable&lt;VidType&gt;,VertexData extends Writable,EdgeData extends Writable,KeyType extends IngressKeyType&lt;VidType&gt;,ValueType extends IngressValueType&lt;VidType,VertexData,EdgeData&gt;&gt;</A></B></TD> <TD>This mapper class maps edge and vertex list into intermediate key, value pairs.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/edge/EdgeIngressMR.html" title="class in com.intel.hadoop.graphbuilder.partition.mapreduce.edge">EdgeIngressMR</A></B></TD> <TD>The MapRedue class takes from input directory a list of edges and vertices, and output 2 parts: partitioned graphs and a list of distributed vertex records.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/edge/EdgeIngressReducer.html" title="class in com.intel.hadoop.graphbuilder.partition.mapreduce.edge">EdgeIngressReducer&lt;VidType extends WritableComparable&lt;VidType&gt;,VertexData extends Writable,EdgeData extends Writable,KeyType extends IngressKeyType&lt;VidType&gt;,ValueType extends IngressValueType&lt;VidType,VertexData,EdgeData&gt;&gt;</A></B></TD> <TD>This reduce task has 2 subroutines: edges are reduced into a <code>Graph</code> and vertices are reduced into <code>VertexRecord</code>.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Enum Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/edge/EdgeIngressMR.COUNTER.html" title="enum in com.intel.hadoop.graphbuilder.partition.mapreduce.edge">EdgeIngressMR.COUNTER</A></B></TD> <TD>MapReduce Job Counters.</TD> </TR> </TABLE> &nbsp; <P> <DL> </DL> <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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../../com/intel/hadoop/graphbuilder/parser/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../../../../../com/intel/hadoop/graphbuilder/partition/mapreduce/keyvalue/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?com/intel/hadoop/graphbuilder/partition/mapreduce/edge/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
third_party/blink/web_tests/external/wpt/referrer-policy/gen/iframe.meta/strict-origin/xhr.http.html
scheib/chromium
<!DOCTYPE html> <!-- DO NOT EDIT! Generated by `common/security-features/tools/generate.py --spec referrer-policy/` --> <html> <head> <meta charset="utf-8"> <meta name="timeout" content="long"> <meta name="referrer" content="unsafe-url"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/common/security-features/resources/common.sub.js"></script> <script src="../../../generic/test-case.sub.js"></script> </head> <body> <script> TestCase( [ { "expectation": "origin", "origin": "cross-http", "redirection": "keep-origin", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "meta", "key": "referrerPolicy", "value": "strict-origin" } ], "sourceContextType": "iframe" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [], "test_description": "Referrer Policy: Expects origin for xhr to cross-http origin and keep-origin redirection from http context." }, { "expectation": "origin", "origin": "cross-http", "redirection": "no-redirect", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "meta", "key": "referrerPolicy", "value": "strict-origin" } ], "sourceContextType": "iframe" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [], "test_description": "Referrer Policy: Expects origin for xhr to cross-http origin and no-redirect redirection from http context." }, { "expectation": "origin", "origin": "cross-http", "redirection": "swap-origin", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "meta", "key": "referrerPolicy", "value": "strict-origin" } ], "sourceContextType": "iframe" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [], "test_description": "Referrer Policy: Expects origin for xhr to cross-http origin and swap-origin redirection from http context." }, { "expectation": "origin", "origin": "cross-https", "redirection": "keep-origin", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "meta", "key": "referrerPolicy", "value": "strict-origin" } ], "sourceContextType": "iframe" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [], "test_description": "Referrer Policy: Expects origin for xhr to cross-https origin and keep-origin redirection from http context." }, { "expectation": "origin", "origin": "cross-https", "redirection": "no-redirect", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "meta", "key": "referrerPolicy", "value": "strict-origin" } ], "sourceContextType": "iframe" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [], "test_description": "Referrer Policy: Expects origin for xhr to cross-https origin and no-redirect redirection from http context." }, { "expectation": "origin", "origin": "cross-https", "redirection": "swap-origin", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "meta", "key": "referrerPolicy", "value": "strict-origin" } ], "sourceContextType": "iframe" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [], "test_description": "Referrer Policy: Expects origin for xhr to cross-https origin and swap-origin redirection from http context." }, { "expectation": "origin", "origin": "same-http", "redirection": "keep-origin", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "meta", "key": "referrerPolicy", "value": "strict-origin" } ], "sourceContextType": "iframe" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [], "test_description": "Referrer Policy: Expects origin for xhr to same-http origin and keep-origin redirection from http context." }, { "expectation": "origin", "origin": "same-http", "redirection": "no-redirect", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "meta", "key": "referrerPolicy", "value": "strict-origin" } ], "sourceContextType": "iframe" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [], "test_description": "Referrer Policy: Expects origin for xhr to same-http origin and no-redirect redirection from http context." }, { "expectation": "origin", "origin": "same-http", "redirection": "swap-origin", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "meta", "key": "referrerPolicy", "value": "strict-origin" } ], "sourceContextType": "iframe" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [], "test_description": "Referrer Policy: Expects origin for xhr to same-http origin and swap-origin redirection from http context." }, { "expectation": "origin", "origin": "same-https", "redirection": "keep-origin", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "meta", "key": "referrerPolicy", "value": "strict-origin" } ], "sourceContextType": "iframe" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [], "test_description": "Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context." }, { "expectation": "origin", "origin": "same-https", "redirection": "no-redirect", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "meta", "key": "referrerPolicy", "value": "strict-origin" } ], "sourceContextType": "iframe" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [], "test_description": "Referrer Policy: Expects origin for xhr to same-https origin and no-redirect redirection from http context." }, { "expectation": "origin", "origin": "same-https", "redirection": "swap-origin", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "meta", "key": "referrerPolicy", "value": "strict-origin" } ], "sourceContextType": "iframe" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [], "test_description": "Referrer Policy: Expects origin for xhr to same-https origin and swap-origin redirection from http context." } ], new SanityChecker() ).start(); </script> <div id="log"></div> </body> </html>
ajax/libs/semantic-ui/1.11.3/components/shape.css
wackyapples/cdnjs
/*! * # Semantic UI 1.11.3 - Shape * http://github.com/semantic-org/semantic-ui/ * * * Copyright 2014 Contributors * Released under the MIT license * http://opensource.org/licenses/MIT * */ /******************************* Shape *******************************/ .ui.shape { position: relative; display: inline-block; -webkit-perspective: 2000px; perspective: 2000px; } .ui.shape .sides { -webkit-transform-style: preserve-3d; transform-style: preserve-3d; } .ui.shape .side { opacity: 1; width: 100%; margin: 0em !important; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .ui.shape .side { display: none; } .ui.shape .side > * { -webkit-backface-visibility: visible !important; backface-visibility: visible !important; } /******************************* Types *******************************/ .ui.cube.shape .side { min-width: 15em; height: 15em; padding: 2em; background-color: #e6e6e6; color: rgba(0, 0, 0, 0.8); box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3); } .ui.cube.shape .side > .content { width: 100%; height: 100%; display: table; text-align: center; -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; } .ui.cube.shape .side > .content > div { display: table-cell; vertical-align: middle; font-size: 2em; } /******************************* Variations *******************************/ .ui.text.shape.animating .sides { position: static; } .ui.text.shape .side { white-space: nowrap; } .ui.text.shape .side > * { white-space: normal; } /******************************* States *******************************/ /*-------------- Loading ---------------*/ .ui.loading.shape { position: absolute; top: -9999px; left: -9999px; } /*-------------- Animating ---------------*/ .ui.shape .animating.side { position: absolute; top: 0px; left: 0px; z-index: 100; } .ui.shape .hidden.side { opacity: 0.4; } /*-------------- CSS ---------------*/ .ui.shape.animating { -webkit-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out; } .ui.shape.animating .sides { position: absolute; } .ui.shape.animating .sides { -webkit-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out; } .ui.shape.animating .side { -webkit-transition: opacity 0.6s ease-in-out; transition: opacity 0.6s ease-in-out; } /*-------------- Active ---------------*/ .ui.shape .active.side { display: block; } /******************************* Theme Overrides *******************************/ /******************************* User Overrides *******************************/
public/app/scripts/directives/dashboard/stats/stats.html
vcarreno96/directives-demo
<div class="col-lg-3 col-md-6"> <div class="panel panel-{{colour}}"> <div class="panel-heading"> <div class="row"> <div class="col-xs-3"> <i class="fa fa-{{type}} fa-5x"></i> </div> <div class="col-xs-9 text-right"> <div class="huge">{{number}}</div> <div>{{comments}}</div> </div> </div> </div> <a href="#"> <div class="panel-footer"> <span class="pull-left">View Details</span> <span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span> <div class="clearfix"></div> </div> </a> </div> </div>
webkit/app/vendor/angular/lib/docs/examples/example-example89/index-jquery.html
petervyvey/portfolio
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-example89-jquery</title> <script src="../../components/jquery-2.1.1/jquery.js"></script> <script src="../../../angular.js"></script> <script src="script.js"></script> </head> <body ng-app="dragModule"> <span my-draggable>Drag ME</span> </body> </html>
resources/iso-8859-8.css
snf/servo
/* https://html.spec.whatwg.org/multipage/rendering.html#bidi-rendering > When the document's character encoding is ISO-8859-8, > the following rules are additionally expected to apply, following [user-agent.css] */ @namespace url(http://www.w3.org/1999/xhtml); address, blockquote, center, div, figure, figcaption, footer, form, header, hr, legend, listing, main, p, plaintext, pre, summary, xmp, article, aside, h1, h2, h3, h4, h5, h6, hgroup, nav, section, table, caption, colgroup, col, thead, tbody, tfoot, tr, td, th, dir, dd, dl, dt, menu, ol, ul, li, [dir=ltr i], [dir=rtl i], [dir=auto i], *|* { unicode-bidi: bidi-override; } input:not([type=submit i]):not([type=reset i]):not([type=button i]), textarea, keygen { unicode-bidi: normal; }