path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
third_party/blink/web_tests/external/wpt/html/canvas/offscreen/fill-and-stroke-styles/2d.gradient.radial.cone.top.html | scheib/chromium | <!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<title>OffscreenCanvas test: 2d.gradient.radial.cone.top</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/html/canvas/resources/canvas-tests.js"></script>
<h1>2d.gradient.radial.cone.top</h1>
<p class="desc"></p>
<script>
var t = async_test("");
var t_pass = t.done.bind(t);
var t_fail = t.step_func(function(reason) {
throw reason;
});
t.step(function() {
var offscreenCanvas = new OffscreenCanvas(100, 50);
var ctx = offscreenCanvas.getContext('2d');
ctx.fillStyle = '#f00';
ctx.fillRect(0, 0, 100, 50);
var g = ctx.createRadialGradient(230, 25, 100, 100, 25, 101);
g.addColorStop(0, '#f00');
g.addColorStop(1, '#0f0');
ctx.fillStyle = g;
ctx.fillRect(0, 0, 100, 50);
_assertPixel(offscreenCanvas, 1,1, 0,255,0,255, "1,1", "0,255,0,255");
_assertPixel(offscreenCanvas, 50,1, 0,255,0,255, "50,1", "0,255,0,255");
_assertPixel(offscreenCanvas, 98,1, 0,255,0,255, "98,1", "0,255,0,255");
_assertPixel(offscreenCanvas, 1,25, 0,255,0,255, "1,25", "0,255,0,255");
_assertPixel(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");
_assertPixel(offscreenCanvas, 98,25, 0,255,0,255, "98,25", "0,255,0,255");
_assertPixel(offscreenCanvas, 1,48, 0,255,0,255, "1,48", "0,255,0,255");
_assertPixel(offscreenCanvas, 50,48, 0,255,0,255, "50,48", "0,255,0,255");
_assertPixel(offscreenCanvas, 98,48, 0,255,0,255, "98,48", "0,255,0,255");
t.done();
});
</script>
|
docs/html/index.html | tpgxyz/PackageKit | <!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>
<title>PackageKit - Main Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="style.css" type="text/css" media="screen"/>
</head>
<body>
<br/>
<table align="center" cellpadding="10px" border="0">
<tr>
<td align="center"><a href="pk-intro.html"><img src="img/large-accessories-text-editor.png" width="128" alt=""/></a></td>
<td align="center"><a href="pk-using.html"><img src="img/large-preferences-system.png" width="128" alt=""/></a></td>
<td align="center"><a href="pk-download.html"><img src="img/large-dialog-information.png" width="128" alt=""/></a></td>
<td align="center"><a href="pk-profiles.html"><img src="img/large-system-users.png" width="128" alt=""/></a></td>
</tr>
<tr>
<td><p class="indextitle"><a href="pk-intro.html" class="indextitle">What is<br/>PackageKit?</a></p></td>
<td><p class="indextitle"><a href="pk-using.html" class="indextitle">How do I use<br/>PackageKit?</a></p></td>
<td><p class="indextitle"><a href="pk-download.html" class="indextitle">Where can I<br/>download it?</a></p></td>
<td><p class="indextitle"><a href="pk-profiles.html" class="indextitle">Typical<br/>User Profiles</a></p></td>
</tr>
</table>
<table align="center" cellpadding="10px" border="0">
<tr>
<td align="center"><a href="pk-users.html"><img src="img/large-application-certificate.png" width="128" alt=""/></a></td>
<td align="center"><a href="pk-bugs.html"><img src="img/large-applications-development.png" width="128" alt=""/></a></td>
<td align="center"><a href="pk-help.html"><img src="img/large-emblem-favorite.png" width="128" alt=""/></a></td>
<td align="center"><a href="pk-faq.html"><img src="img/large-help-browser.png" width="128" alt=""/></a></td>
</tr>
<tr>
<td><p class="indextitle"><a href="pk-users.html" class="indextitle">Who uses<br/>PackageKit?</a></p></td>
<td><p class="indextitle"><a href="pk-bugs.html" class="indextitle">Reporting<br/>bugs</a></p></td>
<td><p class="indextitle"><a href="pk-help.html" class="indextitle">How can<br/>I help?</a></p></td>
<td><p class="indextitle"><a href="pk-faq.html" class="indextitle">Frequently<br/>asked questions</a></p></td>
</tr>
</table>
<p class="footer">
Copyright <a href="mailto:richard@hughsie.com">Richard Hughes 2007-2013</a><br/>
<a href="http://validator.w3.org/check/referer">Optimized</a>
for <a href="http://www.w3.org/">standards</a>.
</p>
</body>
</html>
|
public/src/resources/templates/dialogs/select.html | jeremiahmarks/dashboard | <div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title"><%- options.title || hr.i18n.t("dialogs.select.title") %></h4>
</div>
<div class="modal-body">
<p><%= options.message %></p>
<select class="input form-control">
<% _.each(options.choices, function(choice, key) { %>
<option value="<%- key %>" <% if (!key) { %>disabled<% } %> <% if (options.default == key) { %>selected<% } %>><%- choice %></option>
<% }); %>
</select>
</div>
<div class="modal-footer">
<button class="btn btn-default action-confirm"><%- hr.i18n.t("dialogs.select.ok") %></button>
</div>
</div>
</div> |
admin/templates/preprint_providers/register_moderator_admin.html | pattisdr/osf.io | {% extends 'base.html' %}
{% load render_bundle from webpack_loader %}
{% load staticfiles %}
{% block content %}
<div class="register-box">
<div class="register-box-body">
<h4>Add or Update Moderator/Admin for {{ provider_name }}</h4>
<div>
{% if messages %}
<ul class="login_page_messages">
{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
</div>
<form action="" method="post">
{% csrf_token %}
{% if form.non_field_errors %}
<ul>
{% for error in form.non_field_errors %}
<li class="errorclass">{{ error }}</li>
{% endfor %}
</ul>
{% endif %}
<div class="form-group">
<label for="email">OSF ID:</label>
<p>{{ form.user_id }}</p>
{% if form.user_id.errors %}<span class="text-danger"> {{ form.user_id.errors }}</span>{% endif %}
</div>
<div class="form-group">
<p>{{ form.group_perms }}</p>
{% if form.group_perms.errors %}<span class="text-danger"> {{ form.group_perms.errors }}</span>{% endif %}
</div>
<div class="row">
<div class="col-xs-4">
<button type="submit" class="btn btn-primary btn-block btn-flat">Register</button>
</div><!-- /.col -->
</div>
</form>
</div><!-- /.form-box -->
</div><!-- /.register-box -->
{% endblock %} |
src/content/en/fundamentals/design-and-ux/animations/_code/box-move-linear.html | lucab85/WebFundamentals | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width">
<title>Simple Box Move</title>
<style>
html {
background: #f2f2f2;
}
p {
font-family: 'Helvetica', Arial, sans-serif;
text-align: center;
}
.box {
width: 100px;
height: 100px;
background: #FFF;
box-shadow: 0 10px 20px rgba(0,0,0,0.5);
-webkit-transform: translate(0, 0);
-webkit-transition: -webkit-transform 500ms linear;
transform: translate(0, 0);
transition: transform 500ms linear;
will-change: transform;
}
.box.move {
transform: translate(100px, 100px);
}
</style>
</head>
<body>
<p>Click on the box to animate it</p>
<div class="box"></div>
<script>
var box = document.querySelector('.box');
box.addEventListener('click', function() {
box.classList.toggle('move');
});
</script>
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-52746336-1');ga('send','pageview');
</script>
</body>
</html>
|
code/doxygen/html/RouteConfig_8cs.html | ultranaut/illacceptanything | <!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>illacceptanything: RouteConfig.cs File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="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">illacceptanything
 <span id="projectnumber">2.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.8 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>Globals</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('RouteConfig_8cs.html','');});
</script>
<div id="doc-content">
<div class="header">
<div class="summary">
<a href="#nested-classes">Data Structures</a> |
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<div class="title">RouteConfig.cs File Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><a href="RouteConfig_8cs_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Data Structures</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classSharepoint2007_1_1Web_1_1RouteConfig.html">Sharepoint2007.Web.RouteConfig</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr class="memitem:namespaceSharepoint2007_1_1Web"><td class="memItemLeft" align="right" valign="top">package  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceSharepoint2007_1_1Web.html">Sharepoint2007.Web</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </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_9e8d5b26fe67125653385a46000570c3.html">Sharepoint2007</a></li><li class="navelem"><a class="el" href="dir_df447051c6ddd6f73df237d0017c8184.html">Sharepoint2007.Web</a></li><li class="navelem"><a class="el" href="dir_ab2fddcc66c2ebc190708d44d86acf94.html">App_Start</a></li><li class="navelem"><a class="el" href="RouteConfig_8cs.html">RouteConfig.cs</a></li>
<li class="footer">Generated on Fri Apr 10 2015 15:21:50 for illacceptanything 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>
|
docs/classes/TilingSprite.html | krzysztof-o/pixi.js | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>TilingSprite - Pixi.JS</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/3.8.0/build/cssgrids/cssgrids-min.css">
<link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
<link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
<link rel="shortcut icon" type="image/png" href="../assets/favicon.png">
<script src="http://yui.yahooapis.com/combo?3.8.0/build/yui/yui-min.js"></script>
</head>
<body class="yui3-skin-sam">
<div id="doc">
<div id="hd" class="yui3-g header">
<div class="yui3-u-3-4">
<h1><img src="http://www.goodboydigital.com/pixijs/logo_small.png" title="Pixi.JS"></h1>
</div>
<div class="yui3-u-1-4 version">
<em>API Docs for: 1.0.0</em>
</div>
</div>
<div id="bd" class="yui3-g">
<div class="yui3-u-1-4">
<div id="docs-sidebar" class="sidebar apidocs">
<div id="api-list">
<h2 class="off-left">APIs</h2>
<div id="api-tabview" class="tabview">
<ul class="tabs">
<li><a href="#api-classes">Classes</a></li>
<li><a href="#api-modules">Modules</a></li>
</ul>
<div id="api-tabview-filter">
<input type="search" id="api-filter" placeholder="Type to filter APIs">
</div>
<div id="api-tabview-panel">
<ul id="api-classes" class="apis classes">
<li><a href="../classes/AssetLoader.html">AssetLoader</a></li>
<li><a href="../classes/BaseTexture.html">BaseTexture</a></li>
<li><a href="../classes/BitmapFontLoader.html">BitmapFontLoader</a></li>
<li><a href="../classes/BitmapText.html">BitmapText</a></li>
<li><a href="../classes/CanvasRenderer.html">CanvasRenderer</a></li>
<li><a href="../classes/DisplayObject.html">DisplayObject</a></li>
<li><a href="../classes/DisplayObjectContainer.html">DisplayObjectContainer</a></li>
<li><a href="../classes/ImageLoader.html">ImageLoader</a></li>
<li><a href="../classes/InteractionData.html">InteractionData</a></li>
<li><a href="../classes/InteractionManager.html">InteractionManager</a></li>
<li><a href="../classes/MovieClip.html">MovieClip</a></li>
<li><a href="../classes/Point.html">Point</a></li>
<li><a href="../classes/Rectangle.html">Rectangle</a></li>
<li><a href="../classes/Sprite.html">Sprite</a></li>
<li><a href="../classes/SpriteSheetLoader.html">SpriteSheetLoader</a></li>
<li><a href="../classes/Stage.html">Stage</a></li>
<li><a href="../classes/Text.html">Text</a></li>
<li><a href="../classes/Texture.html">Texture</a></li>
<li><a href="../classes/TilingSprite.html">TilingSprite</a></li>
<li><a href="../classes/WebGLBatch.html">WebGLBatch</a></li>
<li><a href="../classes/WebGLRenderer.html">WebGLRenderer</a></li>
</ul>
<ul id="api-modules" class="apis modules">
<li><a href="../modules/PIXI.html">PIXI</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="yui3-u-3-4">
<div id="api-options">
Show:
<label for="api-show-inherited">
<input type="checkbox" id="api-show-inherited" checked>
Inherited
</label>
<label for="api-show-protected">
<input type="checkbox" id="api-show-protected">
Protected
</label>
<label for="api-show-private">
<input type="checkbox" id="api-show-private">
Private
</label>
<label for="api-show-deprecated">
<input type="checkbox" id="api-show-deprecated">
Deprecated
</label>
</div>
<div class="apidocs">
<div id="docs-main">
<div class="content">
<h1>TilingSprite Class</h1>
<div class="box meta">
<div class="extends">
Extends <a href="../classes/DisplayObjectContainer.html" class="crosslink">DisplayObjectContainer</a>
</div>
<div class="foundat">
Defined in: <a href="../files/src_pixi_extras_TilingSprite.js.html#l5"><code>src/pixi/extras/TilingSprite.js:5</code></a>
</div>
Module: <a href="../modules/PIXI.html">PIXI</a>
</div>
<div class="box intro">
<p>A tiling sprite is a fast way of rendering a tiling image</p>
</div>
<div class="constructor">
<h2>Constructor</h2>
<div id="method_TilingSprite" class="method item">
<h3 class="name"><code>TilingSprite</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>texture</code>
</li>
<li class="arg">
<code>width</code>
</li>
<li class="arg">
<code>height</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>
Defined in
<a href="../files/src_pixi_extras_TilingSprite.js.html#l5"><code>src/pixi/extras/TilingSprite.js:5</code></a>
</p>
</div>
<div class="description">
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">texture</code>
<span class="type"><a href="../classes/Texture.html" class="crosslink">Texture</a></span>
<div class="param-description">
<p>the texture of the tiling sprite</p>
</div>
</li>
<li class="param">
<code class="param-name">width</code>
<span class="type">Number</span>
<div class="param-description">
<p>the width of the tiling sprite</p>
</div>
</li>
<li class="param">
<code class="param-name">height</code>
<span class="type">Number</span>
<div class="param-description">
<p>the height of the tiling sprite</p>
</div>
</li>
</ul>
</div>
</div>
</div>
<div id="classdocs" class="tabview">
<ul class="api-class-tabs">
<li class="api-class-tab index"><a href="#index">Index</a></li>
<li class="api-class-tab methods"><a href="#methods">Methods</a></li>
<li class="api-class-tab properties"><a href="#properties">Properties</a></li>
</ul>
<div>
<div id="index" class="api-class-tabpanel index">
<h2 class="off-left">Item Index</h2>
<div class="index-section methods">
<h3>Methods</h3>
<ul class="index-list methods extends">
<li class="index-item method inherited">
<a href="#method_addChild">addChild</a>
</li>
<li class="index-item method inherited">
<a href="#method_addChildAt">addChildAt</a>
</li>
<li class="index-item method inherited">
<a href="#method_click">click</a>
</li>
<li class="index-item method inherited">
<a href="#method_getChildAt">getChildAt</a>
</li>
<li class="index-item method inherited">
<a href="#method_mousedown">mousedown</a>
</li>
<li class="index-item method inherited">
<a href="#method_mouseout">mouseout</a>
</li>
<li class="index-item method inherited">
<a href="#method_mouseover">mouseover</a>
</li>
<li class="index-item method inherited">
<a href="#method_mouseup">mouseup</a>
</li>
<li class="index-item method inherited">
<a href="#method_mouseupoutside">mouseupoutside</a>
</li>
<li class="index-item method inherited">
<a href="#method_removeChild">removeChild</a>
</li>
<li class="index-item method inherited">
<a href="#method_setInteractive">setInteractive</a>
</li>
<li class="index-item method inherited">
<a href="#method_swapChildren">swapChildren</a>
</li>
<li class="index-item method inherited">
<a href="#method_tap">tap</a>
</li>
<li class="index-item method inherited">
<a href="#method_touchend">touchend</a>
</li>
<li class="index-item method inherited">
<a href="#method_touchendoutside">touchendoutside</a>
</li>
<li class="index-item method inherited">
<a href="#method_touchstart">touchstart</a>
</li>
</ul>
</div>
<div class="index-section properties">
<h3>Properties</h3>
<ul class="index-list properties extends">
<li class="index-item property inherited">
<a href="#property_alpha">alpha</a>
</li>
<li class="index-item property inherited">
<a href="#property_buttonMode">buttonMode</a>
</li>
<li class="index-item property inherited">
<a href="#property_children">children</a>
</li>
<li class="index-item property inherited">
<a href="#property_hitArea">hitArea</a>
</li>
<li class="index-item property inherited">
<a href="#property_parent">parent</a>
</li>
<li class="index-item property inherited">
<a href="#property_position">position</a>
</li>
<li class="index-item property inherited">
<a href="#property_rotation">rotation</a>
</li>
<li class="index-item property inherited">
<a href="#property_scale">scale</a>
</li>
<li class="index-item property inherited">
<a href="#property_stage">stage</a>
</li>
<li class="index-item property">
<a href="#property_tileScale">tileScale</a>
</li>
<li class="index-item property">
<a href="#property_tileScale">tileScale</a>
</li>
<li class="index-item property inherited">
<a href="#property_visible">visible</a>
</li>
</ul>
</div>
</div>
<div id="methods" class="api-class-tabpanel">
<h2 class="off-left">Methods</h2>
<div id="method_addChild" class="method item inherited">
<h3 class="name"><code>addChild</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>DisplayObject</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObjectContainer.html#method_addChild">DisplayObjectContainer</a>:
<a href="../files/src_pixi_DisplayObjectContainer.js.html#l29"><code>src/pixi/DisplayObjectContainer.js:29</code></a>
</p>
</div>
<div class="description">
<p>Adds a child to the container.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">DisplayObject</code>
<span class="type"><a href="../classes/DisplayObject.html" class="crosslink">DisplayObject</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_addChildAt" class="method item inherited">
<h3 class="name"><code>addChildAt</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>DisplayObject</code>
</li>
<li class="arg">
<code>index</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObjectContainer.html#method_addChildAt">DisplayObjectContainer</a>:
<a href="../files/src_pixi_DisplayObjectContainer.js.html#l51"><code>src/pixi/DisplayObjectContainer.js:51</code></a>
</p>
</div>
<div class="description">
<p>Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">DisplayObject</code>
<span class="type"><a href="../classes/DisplayObject.html" class="crosslink">DisplayObject</a></span>
<div class="param-description">
</div>
</li>
<li class="param">
<code class="param-name">index</code>
<span class="type">Number</span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_click" class="method item inherited">
<h3 class="name"><code>click</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>interactionData</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#method_click">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l97"><code>src/pixi/DisplayObject.js:97</code></a>
</p>
</div>
<div class="description">
<p>A callback that is used when the users clicks on the displayObject with their mouse</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">interactionData</code>
<span class="type"><a href="../classes/InteractionData.html" class="crosslink">InteractionData</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_getChildAt" class="method item inherited">
<h3 class="name"><code>getChildAt</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>index</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObjectContainer.html#method_getChildAt">DisplayObjectContainer</a>:
<a href="../files/src_pixi_DisplayObjectContainer.js.html#l137"><code>src/pixi/DisplayObjectContainer.js:137</code></a>
</p>
</div>
<div class="description">
<p>Returns the Child at the specified index</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">index</code>
<span class="type">Number</span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_mousedown" class="method item inherited">
<h3 class="name"><code>mousedown</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>interactionData</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#method_mousedown">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l103"><code>src/pixi/DisplayObject.js:103</code></a>
</p>
</div>
<div class="description">
<p>A callback that is used when the user clicks the mouse down over the sprite</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">interactionData</code>
<span class="type"><a href="../classes/InteractionData.html" class="crosslink">InteractionData</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_mouseout" class="method item inherited">
<h3 class="name"><code>mouseout</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>interactionData</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#method_mouseout">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l129"><code>src/pixi/DisplayObject.js:129</code></a>
</p>
</div>
<div class="description">
<p>A callback that is used when the users mouse leaves the displayObject</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">interactionData</code>
<span class="type"><a href="../classes/InteractionData.html" class="crosslink">InteractionData</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_mouseover" class="method item inherited">
<h3 class="name"><code>mouseover</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>interactionData</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#method_mouseover">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l123"><code>src/pixi/DisplayObject.js:123</code></a>
</p>
</div>
<div class="description">
<p>A callback that is used when the users mouse rolls over the displayObject</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">interactionData</code>
<span class="type"><a href="../classes/InteractionData.html" class="crosslink">InteractionData</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_mouseup" class="method item inherited">
<h3 class="name"><code>mouseup</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>interactionData</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#method_mouseup">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l109"><code>src/pixi/DisplayObject.js:109</code></a>
</p>
</div>
<div class="description">
<p>A callback that is used when the user releases the mouse that was over the displayObject
for this callback to be fired the mouse must have been pressed down over the displayObject</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">interactionData</code>
<span class="type"><a href="../classes/InteractionData.html" class="crosslink">InteractionData</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_mouseupoutside" class="method item inherited">
<h3 class="name"><code>mouseupoutside</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>interactionData</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#method_mouseupoutside">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l116"><code>src/pixi/DisplayObject.js:116</code></a>
</p>
</div>
<div class="description">
<p>A callback that is used when the user releases the mouse that was over the displayObject but is no longer over the displayObject
for this callback to be fired, The touch must have started over the displayObject</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">interactionData</code>
<span class="type"><a href="../classes/InteractionData.html" class="crosslink">InteractionData</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_removeChild" class="method item inherited">
<h3 class="name"><code>removeChild</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>DisplayObject</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObjectContainer.html#method_removeChild">DisplayObjectContainer</a>:
<a href="../files/src_pixi_DisplayObjectContainer.js.html#l155"><code>src/pixi/DisplayObjectContainer.js:155</code></a>
</p>
</div>
<div class="description">
<p>Removes a child from the container.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">DisplayObject</code>
<span class="type"><a href="../classes/DisplayObject.html" class="crosslink">DisplayObject</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_setInteractive" class="method item inherited">
<h3 class="name"><code>setInteractive</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>interactive</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#method_setInteractive">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l170"><code>src/pixi/DisplayObject.js:170</code></a>
</p>
</div>
<div class="description">
<p>Indicates if the sprite will have touch and mouse interactivity. It is false by default</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">interactive</code>
<span class="type">Boolean</span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_swapChildren" class="method item inherited">
<h3 class="name"><code>swapChildren</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>DisplayObject</code>
</li>
<li class="arg">
<code>DisplayObject2</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObjectContainer.html#method_swapChildren">DisplayObjectContainer</a>:
<a href="../files/src_pixi_DisplayObjectContainer.js.html#l97"><code>src/pixi/DisplayObjectContainer.js:97</code></a>
</p>
</div>
<div class="description">
<p>Swaps the depth of 2 displayObjects</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">DisplayObject</code>
<span class="type"><a href="../classes/DisplayObject.html" class="crosslink">DisplayObject</a></span>
<div class="param-description">
</div>
</li>
<li class="param">
<code class="param-name">DisplayObject2</code>
<span class="type"><a href="../classes/DisplayObject.html" class="crosslink">DisplayObject</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_tap" class="method item inherited">
<h3 class="name"><code>tap</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>interactionData</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#method_tap">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l140"><code>src/pixi/DisplayObject.js:140</code></a>
</p>
</div>
<div class="description">
<p>A callback that is used when the users taps on the sprite with their finger
basically a touch version of click</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">interactionData</code>
<span class="type"><a href="../classes/InteractionData.html" class="crosslink">InteractionData</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_touchend" class="method item inherited">
<h3 class="name"><code>touchend</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>interactionData</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#method_touchend">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l153"><code>src/pixi/DisplayObject.js:153</code></a>
</p>
</div>
<div class="description">
<p>A callback that is used when the user releases a touch over the displayObject</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">interactionData</code>
<span class="type"><a href="../classes/InteractionData.html" class="crosslink">InteractionData</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_touchendoutside" class="method item inherited">
<h3 class="name"><code>touchendoutside</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>interactionData</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#method_touchendoutside">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l159"><code>src/pixi/DisplayObject.js:159</code></a>
</p>
</div>
<div class="description">
<p>A callback that is used when the user releases the touch that was over the displayObject
for this callback to be fired, The touch must have started over the sprite</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">interactionData</code>
<span class="type"><a href="../classes/InteractionData.html" class="crosslink">InteractionData</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
<div id="method_touchstart" class="method item inherited">
<h3 class="name"><code>touchstart</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>interactionData</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#method_touchstart">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l147"><code>src/pixi/DisplayObject.js:147</code></a>
</p>
</div>
<div class="description">
<p>A callback that is used when the user touch's over the displayObject</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">interactionData</code>
<span class="type"><a href="../classes/InteractionData.html" class="crosslink">InteractionData</a></span>
<div class="param-description">
</div>
</li>
</ul>
</div>
</div>
</div>
<div id="properties" class="api-class-tabpanel">
<h2 class="off-left">Properties</h2>
<div id="property_alpha" class="property item inherited">
<h3 class="name"><code>alpha</code></h3>
<span class="type">Number</span>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#property_alpha">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l33"><code>src/pixi/DisplayObject.js:33</code></a>
</p>
</div>
<div class="description">
<p>The opacity of the object.</p>
</div>
</div>
<div id="property_buttonMode" class="property item inherited">
<h3 class="name"><code>buttonMode</code></h3>
<span class="type">Boolean</span>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#property_buttonMode">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l86"><code>src/pixi/DisplayObject.js:86</code></a>
</p>
</div>
<div class="description">
<p>This is used to indicate if the displayObject should display a mouse hand cursor on rollover</p>
</div>
</div>
<div id="property_children" class="property item inherited">
<h3 class="name"><code>children</code></h3>
<span class="type">Array</span>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObjectContainer.html#property_children">DisplayObjectContainer</a>:
<a href="../files/src_pixi_DisplayObjectContainer.js.html#l16"><code>src/pixi/DisplayObjectContainer.js:16</code></a>
</p>
</div>
<div class="description">
<p>[read-only] The of children of this container.</p>
</div>
</div>
<div id="property_hitArea" class="property item inherited">
<h3 class="name"><code>hitArea</code></h3>
<span class="type"><a href="../classes/Rectangle.html" class="crosslink">Rectangle</a></span>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#property_hitArea">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l62"><code>src/pixi/DisplayObject.js:62</code></a>
</p>
</div>
<div class="description">
<p>This is the defined area that will pick up mouse / touch events. It is null by default.
Setting it is a neat way of optimising the hitTest function that the interactionManager will use (as it will not need to hit test all the children)</p>
</div>
</div>
<div id="property_parent" class="property item inherited">
<h3 class="name"><code>parent</code></h3>
<span class="type"><a href="../classes/DisplayObjectContainer.html" class="crosslink">DisplayObjectContainer</a></span>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#property_parent">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l48"><code>src/pixi/DisplayObject.js:48</code></a>
</p>
</div>
<div class="description">
<p>[read-only] The display object container that contains this display object.</p>
</div>
</div>
<div id="property_position" class="property item inherited">
<h3 class="name"><code>position</code></h3>
<span class="type"><a href="../classes/Point.html" class="crosslink">Point</a></span>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#property_position">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l12"><code>src/pixi/DisplayObject.js:12</code></a>
</p>
</div>
<div class="description">
<p>The coordinate of the object relative to the local coordinates of the parent.</p>
</div>
</div>
<div id="property_rotation" class="property item inherited">
<h3 class="name"><code>rotation</code></h3>
<span class="type">Number</span>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#property_rotation">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l26"><code>src/pixi/DisplayObject.js:26</code></a>
</p>
</div>
<div class="description">
<p>The rotation of the object in radians.</p>
</div>
</div>
<div id="property_scale" class="property item inherited">
<h3 class="name"><code>scale</code></h3>
<span class="type"><a href="../classes/Point.html" class="crosslink">Point</a></span>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#property_scale">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l19"><code>src/pixi/DisplayObject.js:19</code></a>
</p>
</div>
<div class="description">
<p>The scale factor of the object.</p>
</div>
</div>
<div id="property_stage" class="property item inherited">
<h3 class="name"><code>stage</code></h3>
<span class="type"><a href="../classes/Stage.html" class="crosslink">Stage</a></span>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#property_stage">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l55"><code>src/pixi/DisplayObject.js:55</code></a>
</p>
</div>
<div class="description">
<p>[read-only] The stage the display object is connected to, or undefined if it is not connected to the stage.</p>
</div>
</div>
<div id="property_tileScale" class="property item">
<h3 class="name"><code>tileScale</code></h3>
<span class="type"><a href="../classes/Point.html" class="crosslink">Point</a></span>
<div class="meta">
<p>
Defined in
<a href="../files/src_pixi_extras_TilingSprite.js.html#l29"><code>src/pixi/extras/TilingSprite.js:29</code></a>
</p>
</div>
<div class="description">
<p>The offset position of the image that is being tiled</p>
</div>
</div>
<div id="property_tileScale" class="property item">
<h3 class="name"><code>tileScale</code></h3>
<span class="type"><a href="../classes/Point.html" class="crosslink">Point</a></span>
<div class="meta">
<p>
Defined in
<a href="../files/src_pixi_extras_TilingSprite.js.html#l23"><code>src/pixi/extras/TilingSprite.js:23</code></a>
</p>
</div>
<div class="description">
<p>The scaling of the image that is being tiled</p>
</div>
</div>
<div id="property_visible" class="property item inherited">
<h3 class="name"><code>visible</code></h3>
<span class="type">Boolean</span>
<div class="meta">
<p>Inherited from
<a href="../classes/DisplayObject.html#property_visible">DisplayObject</a>:
<a href="../files/src_pixi_DisplayObject.js.html#l40"><code>src/pixi/DisplayObject.js:40</code></a>
</p>
</div>
<div class="description">
<p>The visibility of the object.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="../assets/vendor/prettify/prettify-min.js"></script>
<script>prettyPrint();</script>
<script src="../assets/js/yui-prettify.js"></script>
<script src="../assets/../api.js"></script>
<script src="../assets/js/api-filter.js"></script>
<script src="../assets/js/api-list.js"></script>
<script src="../assets/js/api-search.js"></script>
<script src="../assets/js/apidocs.js"></script>
</body>
</html>
|
public/javascripts/fckeditor/editor/dialog/fck_source.html | jacobo/tnaidar | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<!--
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2007 Frederico Caldeira Knabben
*
* == BEGIN LICENSE ==
*
* Licensed under the terms of any of the following licenses at your
* choice:
*
* - GNU General Public License Version 2 or later (the "GPL")
* http://www.gnu.org/licenses/gpl.html
*
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
* http://www.gnu.org/licenses/lgpl.html
*
* - Mozilla Public License Version 1.1 or later (the "MPL")
* http://www.mozilla.org/MPL/MPL-1.1.html
*
* == END LICENSE ==
*
* Source editor dialog window.
-->
<html>
<head>
<title>Source</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="robots" content="noindex, nofollow">
<link href="common/fck_dialog_common.css" rel="stylesheet" type="text/css" />
<script language="javascript">
var oEditor = window.parent.InnerDialogLoaded() ;
var FCK = oEditor.FCK ;
var FCKConfig = oEditor.FCKConfig ;
window.onload = function()
{
// EnableXHTML and EnableSourceXHTML has been deprecated
// document.getElementById('txtSource').value = ( FCKConfig.EnableXHTML && FCKConfig.EnableSourceXHTML ? FCK.GetXHTML( FCKConfig.FormatSource ) : FCK.GetHTML( FCKConfig.FormatSource ) ) ;
document.getElementById('txtSource').value = FCK.GetXHTML( FCKConfig.FormatSource ) ;
// Activate the "OK" button.
window.parent.SetOkButton( true ) ;
}
//#### The OK button was hit.
function Ok()
{
if ( oEditor.FCKBrowserInfo.IsIE )
oEditor.FCKUndo.SaveUndoStep() ;
FCK.SetHTML( document.getElementById('txtSource').value, false ) ;
return true ;
}
</script>
</head>
<body scroll="no" style="OVERFLOW: hidden">
<table width="100%" height="100%">
<tr>
<td height="100%"><textarea id="txtSource" dir="ltr" style="PADDING-RIGHT: 5px; PADDING-LEFT: 5px; FONT-SIZE: 14px; PADDING-BOTTOM: 5px; WIDTH: 100%; PADDING-TOP: 5px; FONT-FAMILY: Monospace; HEIGHT: 100%">Loading. Please wait...</textarea></td>
</tr>
</table>
</body>
</html>
|
drupal/PHP Programming Basics/05. Building a CMS/09.site-using-a-class/styles/style.css | wchabinga/change-management | html {
background: url('../images/sticks.jpg');
}
.body {
margin: 30px 100px;
font-family: sans-serif;
font-size: 18px;
box-shadow: 0px 10px 15px #333;
border-radius:15px;
}
.logo {
float:left;
margin-top:-15px;
}
.header {
background-color: #333;
border-top-right-radius: 15px;
border-top-left-radius: 15px;
}
.header-menu ul {
padding: 0px;
margin: 0px;
}
.site-title {
font-size: 34px;
color: white;
padding: 30px;
padding-left:150px;
}
.header-menu ul {
background-color: #666;
height: 30px;
}
.header-menu li {
display: block;
float: left;
width: 100px;
padding: 5px;
text-align: center;
list-style-image: none;
color: white;
border-right:1px solid #999;
}
.header-menu li a {
color: white;
text-decoration: none;
}
.header-menu {
height: 30px;
}
.footer {
background-color: #333;
padding: 10px;
color: white;
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
text-align:center;
clear:both;
}
.content-outer {
padding: 20px 30px;
background-color: white;
}
.content {
padding-left:240px;
}
h1 {
font-weight: normal;
font-size: 28px;
}
.right-image {
float:right;
margin:0px 0px 30px 30px;
}
.left-column {
float:left;
background:#e5e5e5;
border-right:1px solid #9e9e9e;
padding:10px;
text-align:center;
margin-left:-20px;
margin-right:30px;
}
.product {
border-bottom:1px solid #666;
padding-bottom:10px;
margin-bottom:10px;
}
.product-img img {
padding:3px;
background:white;
border:1px solid #666;
}
.product-price {
float:right;
}
.product-title {
text-align:left;
}
.clear {
clear:both;
}
.cart-button {
display:block;
border-radius:5px;
border:2px solid white;
background:#333;
text-decoration:none;
padding:5px;
color:white;
margin-top:5px;
text-align:center;
}
.left-column-title {
font-size:24px;
font-style:italic;
margin-bottom:10px;
}
.main-product-listing .product {
float:left;
margin:10px;
}
.input-wrapper {
margin-bottom:10px;
}
.label {
float:left;
text-align:right;
width:100px;
margin-right:10px;
}
.comments {
height:200px;
}
.input-wrapper input, .input-wrapper textarea {
width:400px;
padding:5px;
border:1px solid #333;
border-radius:3px;
}
.submit {
background:#333;
color:white;
margin-left:110px;
}
.user-menu {
float:right;
margin-right:10px;
margin-top:-20px;
color:#999;
font-size:13px;
}
.user-menu a {
color:white;
}
.notices {
background:#666;
border:1px solid white;
padding:10px;
margin:10px 0px;
color:white;
} |
toolchain/share/doc/arm-arm-none-eabi/html/gdb/Ada-Tasks-and-Core-Files.html | byeonggonlee/lynx-ns-gb | <html lang="en">
<head>
<title>Ada Tasks and Core Files - Debugging with GDB</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Debugging with GDB">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Ada.html#Ada" title="Ada">
<link rel="prev" href="Ada-Tasks.html#Ada-Tasks" title="Ada Tasks">
<link rel="next" href="Ada-Glitches.html#Ada-Glitches" title="Ada Glitches">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being ``Free Software'' and ``Free Software Needs
Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,''
and with the Back-Cover Texts as in (a) below.
(a) The FSF's Back-Cover Text is: ``You are free to copy and modify
this GNU Manual. Buying copies from GNU Press supports the FSF in
developing GNU and promoting software freedom.''-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
<link rel="stylesheet" type="text/css" href="../cs.css">
</head>
<body>
<div class="node">
<a name="Ada-Tasks-and-Core-Files"></a>
<p>
Next: <a rel="next" accesskey="n" href="Ada-Glitches.html#Ada-Glitches">Ada Glitches</a>,
Previous: <a rel="previous" accesskey="p" href="Ada-Tasks.html#Ada-Tasks">Ada Tasks</a>,
Up: <a rel="up" accesskey="u" href="Ada.html#Ada">Ada</a>
<hr>
</div>
<h5 class="subsubsection">15.4.7.6 Tasking Support when Debugging Core Files</h5>
<p><a name="index-Ada-tasking-and-core-file-debugging-877"></a>
When inspecting a core file, as opposed to debugging a live program,
tasking support may be limited or even unavailable, depending on
the platform being used.
For instance, on x86-linux, the list of tasks is available, but task
switching is not supported. On Tru64, however, task switching will work
as usual.
<p>On certain platforms, including Tru64, the debugger needs to perform some
memory writes in order to provide Ada tasking support. When inspecting
a core file, this means that the core file must be opened with read-write
privileges, using the command ‘<samp><span class="samp">"set write on"</span></samp>’ (see <a href="Patching.html#Patching">Patching</a>).
Under these circumstances, you should make a backup copy of the core
file before inspecting it with <span class="sc">gdb</span>.
</body></html>
|
qtopiacore/qt/doc/html/widgets-stylesheet-stylesheeteditor-cpp.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: stylesheeteditor.cpp Example File (widgets/stylesheet/stylesheeteditor.cpp)</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"> </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a> · <a href="namespaces.html"><font color="#004faf">All Namespaces</font></a> · <a href="classes.html"><font color="#004faf">All Classes</font></a> · <a href="mainclasses.html"><font color="#004faf">Main Classes</font></a> · <a href="groups.html"><font color="#004faf">Grouped Classes</font></a> · <a href="modules.html"><font color="#004faf">Modules</font></a> · <a href="functions.html"><font color="#004faf">Functions</font></a></td>
<td align="right" valign="top" width="230"></td></tr></table><h1 class="title">stylesheeteditor.cpp Example File<br /><span class="small-subtitle">widgets/stylesheet/stylesheeteditor.cpp</span>
</h1>
<pre><span class="comment"> /****************************************************************************
**
** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the example classes of the Qt Toolkit.
**
** Commercial Usage
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License versions 2.0 or 3.0 as published by the Free
** Software Foundation and appearing in the file LICENSE.GPL included in
** the packaging of this file. Please review the following information
** to ensure GNU General Public Licensing requirements will be met:
** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
** http://www.gnu.org/copyleft/gpl.html. In addition, as a special
** exception, Nokia gives you certain additional rights. These rights
** are described in the Nokia Qt GPL Exception version 1.3, included in
** the file GPL_EXCEPTION.txt in this package.
**
** Qt for Windows(R) Licensees
** As a special exception, Nokia, as the sole copyright holder for Qt
** Designer, grants users of the Qt/Eclipse Integration plug-in the
** right for the Qt/Eclipse Integration to link to functionality
** provided by Qt Designer and its related libraries.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at qt-sales@nokia.com.
**
****************************************************************************/</span>
#include <QtGui>
#include "stylesheeteditor.h"
StyleSheetEditor::StyleSheetEditor(QWidget *parent)
: QDialog(parent)
{
ui.setupUi(this);
QRegExp regExp("Q(.*)Style");
QString defaultStyle = QApplication::style()->metaObject()->className();
if (defaultStyle == QLatin1String("QMacStyle"))
defaultStyle = QLatin1String("Macintosh (Aqua)");
else if (regExp.exactMatch(defaultStyle))
defaultStyle = regExp.cap(1);
ui.styleCombo->addItems(QStyleFactory::keys());
ui.styleCombo->setCurrentIndex(ui.styleCombo->findText(defaultStyle));
ui.styleSheetCombo->setCurrentIndex(ui.styleSheetCombo->findText("Coffee"));
loadStyleSheet("Coffee");
}
void StyleSheetEditor::on_styleCombo_activated(const QString &styleName)
{
qApp->setStyle(styleName);
ui.applyButton->setEnabled(false);
}
void StyleSheetEditor::on_styleSheetCombo_activated(const QString &sheetName)
{
loadStyleSheet(sheetName);
}
void StyleSheetEditor::on_styleTextEdit_textChanged()
{
ui.applyButton->setEnabled(true);
}
void StyleSheetEditor::on_applyButton_clicked()
{
qApp->setStyleSheet(ui.styleTextEdit->toPlainText());
ui.applyButton->setEnabled(false);
}
void StyleSheetEditor::loadStyleSheet(const QString &sheetName)
{
QFile file(":/qss/" + sheetName.toLower() + ".qss");
file.open(QFile::ReadOnly);
QString styleSheet = QLatin1String(file.readAll());
ui.styleTextEdit->setPlainText(styleSheet);
qApp->setStyleSheet(styleSheet);
ui.applyButton->setEnabled(false);
}</pre>
<p /><address><hr /><div align="center">
<table width="100%" cellspacing="0" border="0"><tr class="address">
<td width="30%" align="left">Copyright © 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>
|
toolchain/share/doc/arm-arm-none-eabi/html/gdb/D.html | byeonggonlee/lynx-ns-gb | <html lang="en">
<head>
<title>D - Debugging with GDB</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Debugging with GDB">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Supported-Languages.html#Supported-Languages" title="Supported Languages">
<link rel="prev" href="C.html#C" title="C">
<link rel="next" href="Objective_002dC.html#Objective_002dC" title="Objective-C">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being ``Free Software'' and ``Free Software Needs
Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,''
and with the Back-Cover Texts as in (a) below.
(a) The FSF's Back-Cover Text is: ``You are free to copy and modify
this GNU Manual. Buying copies from GNU Press supports the FSF in
developing GNU and promoting software freedom.''-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
<link rel="stylesheet" type="text/css" href="../cs.css">
</head>
<body>
<div class="node">
<a name="D"></a>
<p>
Next: <a rel="next" accesskey="n" href="Objective_002dC.html#Objective_002dC">Objective-C</a>,
Previous: <a rel="previous" accesskey="p" href="C.html#C">C</a>,
Up: <a rel="up" accesskey="u" href="Supported-Languages.html#Supported-Languages">Supported Languages</a>
<hr>
</div>
<h4 class="subsection">15.4.2 D</h4>
<p><a name="index-D-824"></a><span class="sc">gdb</span> can be used to debug programs written in D and compiled with
GDC, LDC or DMD compilers. Currently <span class="sc">gdb</span> supports only one D
specific feature — dynamic arrays.
</body></html>
|
test/javax/imageio/AppletResourceTest.html | JetBrains/jdk8u_jdk | <!--
~ Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
~ DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
~
~ This code is free software; you can redistribute it and/or modify it
~ under the terms of the GNU General Public License version 2 only, as
~ published by the Free Software Foundation.
~
~ This code is distributed in the hope that it will be useful, but WITHOUT
~ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
~ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
~ version 2 for more details (a copy is included in the LICENSE file that
~ accompanied this code).
~
~ You should have received a copy of the GNU General Public License version
~ 2 along with this work; if not, write to the Free Software Foundation,
~ Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
~
~ Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
~ or visit www.oracle.com if you need additional information or have any
~ questions.
-->
<html>
<!--
test
@bug 4481957
@run main AppletResourceTest
@run applet RestrictedBundleTest.html
@summary Tests that applet-supplied ImageReader, ImageWriter, and
IIOMetadataFormat implementations do not throw unexpected exceptions
when indirectly attempting to access ResourceBundles.
-->
<head>
<title> AppletResourceTest </title>
</head>
<body>
<applet code=AppletResourceTest.class width=400 height=400></applet>
</body>
</html>
|
src/main/resources/app/freerouting/helpset/en/html_files/WindowSnapshots.html | freerouting/freerouting | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta name="generator" content="Adobe GoLive 6">
<title>Snapshots</title>
</head>
<body bgcolor="#ffffff">
<h3>Snapshots</h3>
<p>In the Snapshot window the current interactive situation of the IDE can be saved for restoring it later on.</p>
<h4>Description of the buttons:</h4>
<blockquote>
<p><i>Goto Selected Snapshot</i></p>
<blockquote>
<p>Restores the interactive situation, when the selected snapshot was saved. You can also double click a snapshot in the list instead. </p>
<p>To avoid frequent changing between the main window and the Snapshots window, you can use the <i>j</i>-key instead. With the <i>h</i>-key you can select the previous snapshot and with the <i>k</i>-key the next snapshot.</p>
</blockquote>
<p><i>Create</i></p>
<blockquote>
<p>Here you can store current interactive situation after changing the predefined name.</p>
</blockquote>
<p><i>Remove Selected Snapshot</i></p>
<blockquote>
<p>Removes the selected snapshot from the list.</p>
</blockquote>
<p><i>Remove All Snapshots</i></p>
<blockquote>
<p>Removes all snapshots from the list.</p>
</blockquote>
<p><i>Snapshot Settings</i></p>
<blockquote>
<p>Opens a window with the <a href="#Snapshot-Einstellungen">Snapshot Settings</a>. There you can deselect attributes, which you do not want to be saved in a snapshot.</p>
</blockquote>
</blockquote>
<h4><a name="SnapshotSettings"></a>Description of the fields in the Snapshot Settings window:</h4>
<blockquote>
<i>object colors</i>
<blockquote>
<p>The current color settings of the object types will be saved in the snapshots.</p>
</blockquote>
<p><i>object visibility</i></p>
<blockquote>
<p>The current color intensity of the single object types will be saved.</p>
</blockquote>
<p><i>layer visibility</i></p>
<blockquote>
<p>The current intensity for displaying objects on the individual layers is saved.</p>
</blockquote>
<p><i>display region</i></p>
<blockquote>
<p>The currently displayed region of the board will be saved.</p>
</blockquote>
<p><i>interactive state</i></p>
<blockquote>
<p>In the snapshots will be saved, if the IDE is currently in the Select- Route- or Drag-State.</p>
</blockquote>
<p><i>selection layers</i></p>
<blockquote>
<p>In the snapshots will be saved, if in the Select Parameter window <i>selection layers</i> is set to <i>all visible</i> or to <i>current only</i>.</p>
</blockquote>
<p><i>selectable items</i></p>
<blockquote>
<p>The settings for the<i> Selectable Items</i> in the Select Parameter window will be saved in the snapshots.</p>
</blockquote>
<p><i>current layer</i></p>
<blockquote>
<p>The <i>Current Layer</i> in the Select Parameter window will be saved.</p>
</blockquote>
<p><i>rule selection</i></p>
<blockquote>
<p>In the snapshots will be saved, if in the Route Parameter Window the <i>rule selection </i>is set to <i>automatic</i> or to <i>manual</i>.</p>
</blockquote>
<p><i>manual rule settings</i></p>
<blockquote>
<p>The settings in the Manual Rules window will be saved.</p>
</blockquote>
<p><i>push&shove enabled</i></p>
<blockquote>
<p>In the snapshots will be saved, if in the Route Parameter <i>push&shove enabled</i> is selected.</p>
</blockquote>
<p><i>drag components enabled</i></p>
<blockquote>
<p>In the snapshots will be saved, if in the Route Parameter <i>drag components enabled</i> is selected.</p>
</blockquote>
<p><i>pull tight region</i></p>
<blockquote>
<p>The value for the <i>pull tight region </i>in the Route Parameter window will be saved.</p>
</blockquote>
<p><i>component grid</i></p>
<blockquote>
<p>The value for the <i>component grid </i>in the Move Parameter window will be saved.</p>
</blockquote>
<p><i>info list selections</i></p>
<blockquote>
<p>The selected indices and the filter strings in the windows for <i>Incompletes, Library Packages, Library Padstacks, Placed Components</i> and<i> Nets </i>will be saved.</p>
<p></p>
</blockquote>
</blockquote>
</body>
</html> |
templates/backOffice/eglaan/shipping-configuration-edit.html | fluppi/dotto-project | {extends file="admin-layout.tpl"}
{block name="no-return-functions"}
{$admin_current_location = 'configuration'}
{/block}
{block name="page-title"}{intl l='Edit a shipping configuration'}{/block}
{block name="check-resource"}admin.configuration.shipping-configuration{/block}
{block name="check-access"}update{/block}
{block name="main-content"}
<div class="shipping-configuration edit-shipping-configuration">
<div id="wrapper" class="container">
{loop name="area-edit" type="area" id=$area_id}
<ul class="breadcrumb">
<li><a href="{url path='/admin/home'}">{intl l="Home"}</a></li>
<li><a href="{url path='/admin/configuration'}">{intl l="Configuration"}</a></li>
<li><a href="{url path='/admin/configuration/shipping_configuration'}">{intl l="Shipping configuration"}</a></li>
<li>{intl l='Editing shipping zone "%name"' name="{$NAME}"}</li>
</ul>
{hook name="shipping-configuration-edit.top" area_id=$area_id}
<div class="row">
<div class="col-md-12">
<div class="general-block-decorator">
<div class="col-md-12 title title-without-tabs">
{intl l='Shipping zone "%title"' title={$NAME}}
</div>
<div class="form-container">
{include
file = "includes/inner-form-toolbar.html"
hide_submit_buttons = true
hide_flags = true
page_url = {url path="/admin/configuration/shipping_configuration/update/%id" id=$area_id}
close_url = {url path="/admin/configuration/shipping_configuration"}
}
<div class="row">
<div class="col-md-4">
{form name="thelia.admin.area.modification"}
<form method="POST" action="{url path="/admin/configuration/shipping_configuration/save/%id" id=$area_id}">
{if $form_error}<div class="alert alert-danger">{$form_error_message}</div>{/if}
{form_hidden_fields exclude="area_id"}
<input type="hidden" name="area_id" value="{$area_id}">
{render_form_field field="success_url" value={url path="/admin/configuration/shipping_configuration/update/%id" id=$area_id}}
{render_form_field field="area_id" value=$area_id}
{custom_render_form_field field='name'}
<div class="input-group">
<input type="text" {form_field_attributes field="name" value={$NAME}}>
<span class="input-group-btn">
<button type="submit" class="btn btn-primary" type="button">{intl l='Update'}</button>
</span>
</div><!-- /input-group -->
{/custom_render_form_field}
</form>
{/form}
{form name="thelia.admin.area.country"}
<form method="POST" action="{url path="/admin/configuration/shipping_configuration/country/add"}">
{if $form_error}<div class="alert alert-danger">{$form_error_message}</div>{/if}
{form_hidden_fields exclude="area_id"}
<input type="hidden" name="area_id" value="{$area_id}">
{render_form_field field="success_url" value={url path="/admin/configuration/shipping_configuration/update/%id" id=$area_id}}
{render_form_field field="area_id" value=$area_id}
<div class="form-group">
<input id="countries-filter" class="form-control" type="text" value="" placeholder="{intl l='filter country'}" />
</div><!-- /input-group -->
<select multiple {form_field_attributes field="country_id"}>
</select>
<button type="submit" class="btn btn-default btn-block btn-primary"><span class="glyphicon glyphicon-plus-sign"></span> {intl l="Add selected countries"}</button>
</form>
{/form}
</div>
<div class="col-md-8">
{form name="thelia.admin.area.delete.country"}
<form method="POST" action="{url path="/admin/configuration/shipping_configuration/countries/remove"}">
{if $form_error}<div class="alert alert-danger">{$form_error_message}</div>{/if}
{form_hidden_fields exclude="area_id"}
{render_form_field field="success_url" value={url path="/admin/configuration/shipping_configuration/update/%id" id=$area_id}}
{render_form_field field="area_id" value=$area_id}
<script id="tpl-countries-added" type="text/html">
<%
_.each(items, function(item) {
if (!item.hasStates) { %>
<tr>
<td><%= item.title %></td>
<td class="text-center">
{form_field field="country_id"}
<input class="country-selection" type="checkbox" name="{$name}[]" value="<%= item.id %>-0">
{/form_field}
</td>
</tr>
<% } else { %>
<tr>
<th colspan="2"><%- item.title %></th>
</tr>
<% if (item.allStates) { %>
<tr>
<td> — <%= i18n.states_all %></td>
<td class="text-center">
{form_field field="country_id"}
<input class="country-selection" type="checkbox" name="{$name}[]" value="<%= item.id %>-0">
{/form_field}
</td>
</tr>
<% }
_.each(item.states, function(state) { %>
<tr>
<td> — <%= state.title %></td>
<td class="text-center">
{form_field field="country_id"}
<input class="country-selection" type="checkbox" name="{$name}[]" value="<%= item.id %>-<%= state.id %>">
{/form_field}
</td>
</tr>
<% })
}
})
%>
</script>
<div class="table-responsive">
<table class="table table-striped table-condensed">
<thead>
<tr>
<th>{intl l="Countries assigned to this zone"}</th>
<th class="text-center">
{if {count type="country" area=$area_id backend_context=1 visible="*"} > 0}
{intl l='Select'} <a id="select-all" href="#">{intl l='all'}</a> - <a id="select-none" href="#">{intl l='none'}</a> - <a id="select-reverse" href="#">{intl l='reverse'}</a>
{/if}
</th>
</tr>
</thead>
<tbody id="countries-added">
</tbody>
{hook name="shipping-configuration.edit" location="shipping-configuration-edit" area_id={$area_id} }
</table>
<button type="submit" class="btn btn-default btn-primary pull-right"><span class="glyphicon glyphicon-remove"></span> {intl l="Delete selected countries"}</button>
</div>
</form>
{/form}
</div>
</div>
</div>
</div>
</div>
</div>
{hook name="shipping-configuration-edit.bottom" area_id=$area_id}
{/loop}
{elseloop rel="area-edit"}
<div class="row">
<div class="col-md-12">
{intl l="No area defined with this id"}
</div>
</div>
{/elseloop}
</div>
</div>
{* Delete related content confirmation dialog *}
{capture "delete_country_dialog"}
<input type="hidden" name="area_id" value="{$area_id}">
<input type="hidden" name="country_id" id="delete-country-id" value="">
{hook name="shipping-configuration.country-delete-form" location="shipping_configuration_country_delete_form" }
{/capture}
{include
file = "includes/generic-confirm-dialog.html"
dialog_id = "delete_country_dialog"
dialog_title = {intl l="Remove country"}
dialog_message = {intl l="Do you really want to remove this country from this shipping zone ?"}
form_action = {token_url path='/admin/configuration/shipping_configuration/country/remove'}
form_content = {$smarty.capture.delete_country_dialog nofilter}
}
{/block}
{block name="javascript-initialization"}
{javascripts file='assets/js/bootstrap-select/bootstrap-select.js'}
<script src="{$asset_url}"></script>
{/javascripts}
{javascripts file='assets/js/libs/underscore-min.js'}
<script src="{$asset_url}"></script>
{/javascripts}
<script id="tpl-countries-to-add" type="text/html">
<%
_.each(items, function(item) {
if (!item.hasStates) {
%><option value="<%= item.id %>-0"><%- item.title %></option><%
} else {
%>
<optgroup label="<%- item.title %>">
<% if (item.allStates) { %><option value="<%= item.id %>-0"><%- i18n.states_all %></option><% } %>
<%
_.each(item.states, function(state) {
%><option value="<%= item.id %>-<%= state.id %>"><%- state.title %></option><%
}) %>
</optgroup>
<%
}
})
%>
</script>
<script id="tpl-countries-added-empty" type="text/html">
<td colspan="2">
{intl l="This shipping zone does not contains any country."}
</td>
</script>
{$configuration=[]}
{loop type="country-area" name="country-area" area=$area_id}
{$configuration[]=['id' => $ID, 'countryId' => $COUNTRY_ID, 'stateId' => $STATE_ID]}
{/loop}
<script type="text/javascript">
(function($) {
var configuration = {$configuration|json_encode nofilter};
var countries = {render action='Thelia\Controller\Admin\CountryController::getDataAction'};
var $countriesAdded = $("#countries-added");
var $countriesToAdd = $("#countries-add");
var $countriesFilter = $("#countries-filter");
var i18n = {
'configuration': '{intl l="Configuration"}'
, 'states_all': '{intl l='All States'}'
, 'countries': '{intl l="Countries"}'
};
{literal}
var tpl = {
'countries-to-add': _.template($("#tpl-countries-to-add").html())
, 'countries-added': _.template($("#tpl-countries-added").html())
, 'countries-added-empty': _.template($("#tpl-countries-added-empty").html())
};
var initialize = function initialize() {
var addList = [],
addedList = [];
// build list of country/state not included
_.each(countries, function(country) {
var addStates = []
, addedStates = []
;
if (country.hasStates) {
_.each(country.states, function (state) {
if (isSelectedCountry(country.id, state.id)) {
addedStates.push(state);
} else {
addStates.push(state);
}
});
if (addedStates.length > 0 || isSelectedCountry(country.id, 0)) {
addedList.push(prepareCountry(country, addedStates, isSelectedCountry(country.id, 0)));
}
if (addStates.length > 0) {
addList.push(prepareCountry(country, addStates, !isSelectedCountry(country.id, 0)));
}
} else {
if (isSelectedCountry(country.id, 0)) {
addedList.push(prepareCountry(country));
} else {
addList.push(prepareCountry(country));
}
}
});
// sort List
var sorter = function sorter(item) {
return item.title;
};
addList = _.sortBy(addList, sorter);
addedList = _.sortBy(addedList, sorter);
// render list
$countriesToAdd.html(render('countries-to-add', {items: addList}));
if (addedList.length === 0) {
$countriesAdded.html(render('countries-added-empty', {}));
} else {
$countriesAdded.html(render('countries-added', {items: addedList}));
}
};
var prepareCountry = function prepareCountry(country, states, allStates) {
var item = {};
item.id = country.id;
item.title = country.title;
item.hasStates = country.hasStates != 0;
item.states = (undefined !== states)
? _.sortBy(states, function(item) { return item.title; })
: []
;
item.allStates = (undefined !== allStates) ? allStates : false;
return item;
};
var isSelectedCountry = function isSelectedCountry(countryId, stateId) {
return _.find(
configuration,
function(item) {
return countryId === (parseInt(item.countryId) || 0)
&& stateId === (parseInt(item.stateId) || 0);
}
);
};
var filterCountries = function filterCountries() {
var search = $countriesFilter.val().trim().toLowerCase();
if (search == '') {
$countriesToAdd.find('option, optgroup').removeClass('hidden');
} else {
$countriesToAdd.find('option, optgroup').each(function() {
var $item = $(this);
var text = $item.text();
if (text.toLowerCase().indexOf(search) !== -1) {
$item.removeClass('hidden');
} else {
$item.addClass('hidden');
}
});
}
};
// Utils
var render = function render(tplName, obj) {
var data = $.extend({}, obj, {'i18n': i18n});
return tpl[tplName](data);
};
$(document).ready(function(){
initialize();
$countriesFilter.on('keyup', function() {
filterCountries();
});
$(".btn-delete-country").click(function(e){
$("#delete-country-id").val($(this).data("id"));
});
$('#select-all').click(function(ev) {
$('.country-selection').prop("checked", true);
ev.preventDefault();
});
$('#select-none').click(function(ev) {
$('.country-selection').prop("checked", false);
ev.preventDefault();
});
$('#select-reverse').click(function(ev) {
$('.country-selection').each(function() {
$(this).prop("checked", ! $(this).prop('checked'));
});
ev.preventDefault();
});
{/literal}
});
})(jQuery);
</script>
{/block}
{block name="javascript-last-call"}
{hook name="shipping-configuration.edit-js" location="shipping-configuration-edit-js" area_id={$area_id} }
{/block}
|
docs/reference/layouts/partials/assets/javascriptExtras.html | rozza/mongo-java-driver-reactivestreams-old | <script type="text/javascript" src="{{.Site.BaseUrl}}/lib/bootstrap-toggle/bootstrap-toggle.min.js"></script>
<script type="text/javascript" src="{{.Site.BaseUrl}}/js/java.js"></script>
|
wts/tests/csp/csp_referrer_origin-manual.html | yugang/web-testing-service | <!DOCTYPE html>
<!--
Copyright (c) 2013 Intel Corporation.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of works must retain the original copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the original copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this work without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
Xu, Jianfeng <jianfengx.xu@intel.com>
-->
<html>
<head>
<title>CSP Test: csp_referrer_origin</title>
<link rel="author" title="Intel" href="http://www.intel.com"/>
<link rel="help" href="http://w3c.github.io/webappsec/specs/content-security-policy/csp-specification.dev.html#referrer"/>
<meta name="flags" content=""/>
<meta name="assert" content="referrer origin"/>
<meta http-equiv="content-security-policy" content="referrer origin">
<meta charset="utf-8"/>
</head>
<body>
<p>Test passes if show result is the ASCII serialization of referrer.</p>
<script>
document.write(document.referrer);
</script>
</body>
</html>
|
third_party/blink/web_tests/external/wpt/html/semantics/embedded-content/the-iframe-element/iframe_sandbox_navigate_other_frame_popup.sub.html | chromium/chromium | <!doctype html>
<meta charset="utf-8">
<title>Check that sandboxed iframe can not navigate other frame's popup</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
// This HTML file is loaded 3 times.
// (1) As the initial test file (mode = '').
// (2) In the popup window (mode = 'popup').
// (3) In the sandboxed iframe (mode = 'iframe').
// Note: The sandboxed iframe (3) tries to navigate the popup window (2) to
// a new mode=iframenavigated URL. But this must be blocked because (3) is not
// the 'one permitted sandboxed navigator'.
// https://html.spec.whatwg.org/multipage/origin.html#one-permitted-sandboxed-navigator
(() => {
const mode = '{{GET[mode]}}';
if (mode == 'popup') {
// (2): Loaded in the popup window.
return;
}
if (mode == 'iframe') {
// (3): Loaded in the sandboxed iframe.
try {
// Attempts to navigate the popup window (2).
parent.document.popupWin.location = location.href + 'navigated';
} catch (e) {
parent.postMessage('cannot navigate');
}
return;
}
if (mode == 'iframenavigated') {
// This URL page must not be loaded.
opener.postMessage('can navigate');
return;
}
// (1): Loaded as the initial test file.
promise_test(async t => {
// Opens a popup window to load the page (2).
document.popupWin = window.open(location.href + '?mode=popup', '_blank');
t.add_cleanup(() => document.popupWin.close());
await new Promise(resolve => {
document.popupWin.addEventListener('load', resolve);
});
// Adds an iframe to load the page (3).
const iframe = document.createElement('iframe');
t.add_cleanup(() => iframe.remove());
iframe.sandbox = 'allow-popups allow-same-origin allow-scripts';
iframe.src = location.href + '?mode=iframe';
const message_promise = new Promise(resolve => {
window.addEventListener('message', (e) => { resolve(e.data); });
});
document.body.appendChild(iframe);
const result = await message_promise;
assert_equals(result, 'cannot navigate');
}, "Sandboxed iframe can not navigate other frame's popup");
})();
</script>
</body> |
postfix/help/opt_local_command_shell.pl.UTF-8.html | rcuvgd/Webmin22.01.2016 | <header>Powłoka używana przy przekierowywaniu do programów zewnętrznych</header>
<center><tt>local_command_shell</tt></center>
<hr>
Ten parametr określa, za pomocą jakiej powłoki będzie się odbywać
przekierowywanie poczty do zewnętrznych poleceń. Domyślnie, zewnętrzne
polecenia są uruchamiane bezpośrednio; są one interpretowane przez
<tt>/bin/sh</tt> tylko wtedy, gdy zawierają metaznaki lub wbudowane
polecenia powłoki. <p>
Podaj inną powłokę, jeśli potrzebna Ci możliwość kontroli nad tym, jakie
programy mogą byc uruchamiane np. z plików <tt>.forward</tt>. <p>
Większość będzie korzystać tu z "ograniczonej powłoki
Sendmaila" (<tt>smrsh</tt> jest częścią dystrybucji Sendmaila). <p>
Uwaga: jeśli jest podana powłoka, jest ona uruchamiana nawet wtedy, gdy
polecenie nie zawiera żadnego wbudowanego polecenia ani metaznaku. <p>
Przykład: <tt>/gdzies/tam/smrsh -c</tt> <p>
<hr>
|
fsdump/help/create.html | webdev1001/webmin | <header>Create Backup</header>
On this page you can enter the details of a new configured backup.
<include dump>
Once you have finished entering the details of this backup, click the Create
button at the bottom of the page to save it. <p>
<hr>
|
awstats/awstats.studiorama.com.au.allhosts.html | milesmenegon/diorama | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
<meta name="generator" content="AWStats 6.95 (build 1.943) from config file awstats.studiorama.com.au.conf (http://awstats.sourceforge.net)">
<meta name="robots" content="noindex,nofollow">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for studiorama.com.au (2011-03) - allhosts">
<title>Statistics for studiorama.com.au (2011-03) - allhosts</title>
<style type="text/css">
<!--
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
.aws_bodyl { }
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
.aws_data {
background-color: #FFFFFF;
border-top-width: 1px;
border-left-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
}
.aws_formfield { font: 13px verdana, arial, helvetica; }
.aws_button {
font-family: arial,verdana,helvetica, sans-serif;
font-size: 12px;
border: 1px solid #ccd7e0;
background-image : url(http://www.hostcontrol.com.au/images/icons/other/button.gif);
}
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
b { font-weight: bold; }
a { font: 11px verdana, arial, helvetica, sans-serif; }
a:link { color: #0011BB; text-decoration: none; }
a:visited { color: #0011BB; text-decoration: none; }
a:hover { color: #605040; text-decoration: underline; }
.currentday { font-weight: bold; }
//-->
</style>
</head>
<body style="margin-top: 0px">
<a name="top"></a>
<a name="menu"> </a>
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=studiorama.com.au&staticlinks&output=allhosts" style="padding: 0px 0px 0px 0px; margin-top: 0">
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
<tr><td>
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
<tr><td class="aws" valign="middle"><b>Statistics for:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">studiorama.com.au</span></td><td align="right" rowspan="3"><a href="http://awstats.sourceforge.net" target="awstatshome"><img src="http://www.hostcontrol.com.au/images/icons/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Last Update:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">02 Mar 2011 - 05:24</span></td></tr>
<tr><td class="aws" valign="middle"><b>Reported period:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Month Mar 2011</span></td></tr>
</table>
</td></tr></table>
</form>
<table>
<tr><td class="aws"><a href="javascript:parent.window.close();">Close window</a></td></tr>
</table>
<a name="hosts"> </a><br />
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
<tr><td class="aws_title" width="70%">Hosts </td><td class="aws_blank"> </td></tr>
<tr><td colspan="2">
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
<tr bgcolor="#ECECEC"><th>Total : 1 Known, 0 Unknown (unresolved ip) - 1 Unique visitors</th><th bgcolor="#4477DD" width="80">Pages</th><th bgcolor="#66DDEE" width="80">Hits</th><th class="datasize" bgcolor="#2EA495" width="80">Bandwidth</th><th width="120">Last visit</th></tr>
<tr><td class="aws">13.102.233.220.static.exetel.com.au</td><td>1</td><td>52</td><td>35.26 KB</td><td>01 Mar 2011 - 11:32</td></tr>
</table></td></tr></table><br />
<br /><br />
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 6.95 (build 1.943)</b> - <a href="http://awstats.sourceforge.net" target="awstatshome">Created by awstats (plugins: timezone)</a></span><br />
<br />
</body>
</html>
|
docs/api/class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.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.Schemas.Core.Data.IsParentUnitProcedure 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 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 List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class 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_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.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="#pub-methods">Public Member Functions</a> |
<a href="#pub-attribs">Public Attributes</a> |
<a href="#properties">Properties</a> |
<a href="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>Prepares, validates, and executes the function "core.is_parent_unit(parent integer, child integer)" on the database.
<a href="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.html#details">More...</a></p>
<div class="dynheader">
Inheritance diagram for MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure:</div>
<div class="dyncontent">
<div class="center">
<img src="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.png" usemap="#MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure_map" alt=""/>
<map id="MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure_map" name="MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure_map">
<area href="class_peta_poco_1_1_db_access.html" alt="PetaPoco.DbAccess" shape="rect" coords="0,56,327,80"/>
<area href="interface_peta_poco_1_1_i_d_b_access.html" alt="PetaPoco.IDBAccess" shape="rect" coords="0,0,327,24"/>
</map>
</div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a4df88378615d4c6a8075cdd50eb8228c"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.html#a4df88378615d4c6a8075cdd50eb8228c">IsParentUnitProcedure</a> ()</td></tr>
<tr class="memdesc:a4df88378615d4c6a8075cdd50eb8228c"><td class="mdescLeft"> </td><td class="mdescRight">Prepares, validates, and executes the function "core.is_parent_unit(parent integer, child integer)" on the database. <a href="#a4df88378615d4c6a8075cdd50eb8228c">More...</a><br /></td></tr>
<tr class="separator:a4df88378615d4c6a8075cdd50eb8228c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab6d2827522cdffbacb8fc61971d44f82"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.html#ab6d2827522cdffbacb8fc61971d44f82">IsParentUnitProcedure</a> (int parent, int child)</td></tr>
<tr class="memdesc:ab6d2827522cdffbacb8fc61971d44f82"><td class="mdescLeft"> </td><td class="mdescRight">Prepares, validates, and executes the function "core.is_parent_unit(parent integer, child integer)" on the database. <a href="#ab6d2827522cdffbacb8fc61971d44f82">More...</a><br /></td></tr>
<tr class="separator:ab6d2827522cdffbacb8fc61971d44f82"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac11b2a1af05a38b8201bc02e0dec5f3f"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.html#ac11b2a1af05a38b8201bc02e0dec5f3f">Execute</a> ()</td></tr>
<tr class="memdesc:ac11b2a1af05a38b8201bc02e0dec5f3f"><td class="mdescLeft"> </td><td class="mdescRight">Prepares and executes the function "core.is_parent_unit". <a href="#ac11b2a1af05a38b8201bc02e0dec5f3f">More...</a><br /></td></tr>
<tr class="separator:ac11b2a1af05a38b8201bc02e0dec5f3f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_class_peta_poco_1_1_db_access"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_class_peta_poco_1_1_db_access')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="class_peta_poco_1_1_db_access.html">PetaPoco.DbAccess</a></td></tr>
<tr class="memitem:a175efc7f5a1d049440ba23128ce2adee inherit pub_methods_class_peta_poco_1_1_db_access"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="class_peta_poco_1_1_db_access.html#a175efc7f5a1d049440ba23128ce2adee">Validate</a> (AccessTypeEnum type, long loginId, bool noException)</td></tr>
<tr class="memdesc:a175efc7f5a1d049440ba23128ce2adee inherit pub_methods_class_peta_poco_1_1_db_access"><td class="mdescLeft"> </td><td class="mdescRight">Validates application user access rights to execute the function. <a href="#a175efc7f5a1d049440ba23128ce2adee">More...</a><br /></td></tr>
<tr class="separator:a175efc7f5a1d049440ba23128ce2adee inherit pub_methods_class_peta_poco_1_1_db_access"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
Public Attributes</h2></td></tr>
<tr class="memitem:a4c7e2227ee9ce96628007b8345a12aa9"><td class="memItemLeft" align="right" valign="top">override string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.html#a4c7e2227ee9ce96628007b8345a12aa9">ObjectNamespace</a> => "core"</td></tr>
<tr class="memdesc:a4c7e2227ee9ce96628007b8345a12aa9"><td class="mdescLeft"> </td><td class="mdescRight">The schema of this PostgreSQL function. <a href="#a4c7e2227ee9ce96628007b8345a12aa9">More...</a><br /></td></tr>
<tr class="separator:a4c7e2227ee9ce96628007b8345a12aa9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af8baff99de70060828d0b1c68fc5662d"><td class="memItemLeft" align="right" valign="top">override string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.html#af8baff99de70060828d0b1c68fc5662d">ObjectName</a> => "is_parent_unit"</td></tr>
<tr class="memdesc:af8baff99de70060828d0b1c68fc5662d"><td class="mdescLeft"> </td><td class="mdescRight">The schema unqualified name of this PostgreSQL function. <a href="#af8baff99de70060828d0b1c68fc5662d">More...</a><br /></td></tr>
<tr class="separator:af8baff99de70060828d0b1c68fc5662d"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a>
Properties</h2></td></tr>
<tr class="memitem:adafa5ddb6aab69ac35f334c5e1246312"><td class="memItemLeft" align="right" valign="top">long </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.html#adafa5ddb6aab69ac35f334c5e1246312">_LoginId</a><code> [get, set]</code></td></tr>
<tr class="memdesc:adafa5ddb6aab69ac35f334c5e1246312"><td class="mdescLeft"> </td><td class="mdescRight">Login id of application user accessing this PostgreSQL function. <a href="#adafa5ddb6aab69ac35f334c5e1246312">More...</a><br /></td></tr>
<tr class="separator:adafa5ddb6aab69ac35f334c5e1246312"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5113e9ba334e17f3c90f07e753079319"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.html#a5113e9ba334e17f3c90f07e753079319">_UserId</a><code> [get, set]</code></td></tr>
<tr class="memdesc:a5113e9ba334e17f3c90f07e753079319"><td class="mdescLeft"> </td><td class="mdescRight">User id of application user accessing this table. <a href="#a5113e9ba334e17f3c90f07e753079319">More...</a><br /></td></tr>
<tr class="separator:a5113e9ba334e17f3c90f07e753079319"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7879ea427164d9ebd8319e7f2dae3ea7"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.html#a7879ea427164d9ebd8319e7f2dae3ea7">Catalog</a><code> [get, set]</code></td></tr>
<tr class="memdesc:a7879ea427164d9ebd8319e7f2dae3ea7"><td class="mdescLeft"> </td><td class="mdescRight">The name of the database on which queries are being executed to. <a href="#a7879ea427164d9ebd8319e7f2dae3ea7">More...</a><br /></td></tr>
<tr class="separator:a7879ea427164d9ebd8319e7f2dae3ea7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7a0ea15fad5e0ea9364cea46e06b0214"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.html#a7a0ea15fad5e0ea9364cea46e06b0214">Parent</a><code> [get, set]</code></td></tr>
<tr class="memdesc:a7a0ea15fad5e0ea9364cea46e06b0214"><td class="mdescLeft"> </td><td class="mdescRight">Maps to "parent" argument of the function "core.is_parent_unit". <a href="#a7a0ea15fad5e0ea9364cea46e06b0214">More...</a><br /></td></tr>
<tr class="separator:a7a0ea15fad5e0ea9364cea46e06b0214"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a54ee81ccde2fecb9924e6de3d9dc89e4"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.html#a54ee81ccde2fecb9924e6de3d9dc89e4">Child</a><code> [get, set]</code></td></tr>
<tr class="memdesc:a54ee81ccde2fecb9924e6de3d9dc89e4"><td class="mdescLeft"> </td><td class="mdescRight">Maps to "child" argument of the function "core.is_parent_unit". <a href="#a54ee81ccde2fecb9924e6de3d9dc89e4">More...</a><br /></td></tr>
<tr class="separator:a54ee81ccde2fecb9924e6de3d9dc89e4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header properties_class_peta_poco_1_1_db_access"><td colspan="2" onclick="javascript:toggleInherit('properties_class_peta_poco_1_1_db_access')"><img src="closed.png" alt="-"/> Properties inherited from <a class="el" href="class_peta_poco_1_1_db_access.html">PetaPoco.DbAccess</a></td></tr>
<tr class="memitem:af025aa37d07e6729a6378df9aae0ad93 inherit properties_class_peta_poco_1_1_db_access"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af025aa37d07e6729a6378df9aae0ad93"></a>
abstract string </td><td class="memItemRight" valign="bottom"><b>ObjectNamespace</b><code> [get]</code></td></tr>
<tr class="separator:af025aa37d07e6729a6378df9aae0ad93 inherit properties_class_peta_poco_1_1_db_access"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3ff6c5807d3490650e0acf36782b93b5 inherit properties_class_peta_poco_1_1_db_access"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3ff6c5807d3490650e0acf36782b93b5"></a>
abstract string </td><td class="memItemRight" valign="bottom"><b>ObjectName</b><code> [get]</code></td></tr>
<tr class="separator:a3ff6c5807d3490650e0acf36782b93b5 inherit properties_class_peta_poco_1_1_db_access"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2fc07a89d61ff1e7d4637ddb35be266a inherit properties_class_peta_poco_1_1_db_access"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2fc07a89d61ff1e7d4637ddb35be266a"></a>
bool </td><td class="memItemRight" valign="bottom"><b>HasAccess</b><code> [get]</code></td></tr>
<tr class="separator:a2fc07a89d61ff1e7d4637ddb35be266a inherit properties_class_peta_poco_1_1_db_access"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a35a1eb42f088fdba6884840ad295d906 inherit properties_class_peta_poco_1_1_db_access"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a35a1eb42f088fdba6884840ad295d906"></a>
bool </td><td class="memItemRight" valign="bottom"><b>Validated</b><code> [get]</code></td></tr>
<tr class="separator:a35a1eb42f088fdba6884840ad295d906 inherit properties_class_peta_poco_1_1_db_access"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1161d6406db7de147c6eb43af79bd270 inherit properties_class_peta_poco_1_1_db_access"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1161d6406db7de147c6eb43af79bd270"></a>
bool </td><td class="memItemRight" valign="bottom"><b>SkipValidation</b><code> [get, set]</code></td></tr>
<tr class="separator:a1161d6406db7de147c6eb43af79bd270 inherit properties_class_peta_poco_1_1_db_access"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header properties_interface_peta_poco_1_1_i_d_b_access"><td colspan="2" onclick="javascript:toggleInherit('properties_interface_peta_poco_1_1_i_d_b_access')"><img src="closed.png" alt="-"/> Properties inherited from <a class="el" href="interface_peta_poco_1_1_i_d_b_access.html">PetaPoco.IDBAccess</a></td></tr>
<tr class="memitem:a0d52492d566e2dfd3645acd84bba01b1 inherit properties_interface_peta_poco_1_1_i_d_b_access"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0d52492d566e2dfd3645acd84bba01b1"></a>
bool </td><td class="memItemRight" valign="bottom"><b>HasAccess</b><code> [get]</code></td></tr>
<tr class="separator:a0d52492d566e2dfd3645acd84bba01b1 inherit properties_interface_peta_poco_1_1_i_d_b_access"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Prepares, validates, and executes the function "core.is_parent_unit(parent integer, child integer)" on the database. </p>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a4df88378615d4c6a8075cdd50eb8228c"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure.IsParentUnitProcedure </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Prepares, validates, and executes the function "core.is_parent_unit(parent integer, child integer)" on the database. </p>
</div>
</div>
<a class="anchor" id="ab6d2827522cdffbacb8fc61971d44f82"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure.IsParentUnitProcedure </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>parent</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>child</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Prepares, validates, and executes the function "core.is_parent_unit(parent integer, child integer)" on the database. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">parent</td><td>Enter argument value for "parent" parameter of the function "core.is_parent_unit".</td></tr>
<tr><td class="paramname">child</td><td>Enter argument value for "child" parameter of the function "core.is_parent_unit".</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="ac11b2a1af05a38b8201bc02e0dec5f3f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure.Execute </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Prepares and executes the function "core.is_parent_unit". </p>
</div>
</div>
<h2 class="groupheader">Member Data Documentation</h2>
<a class="anchor" id="af8baff99de70060828d0b1c68fc5662d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">override string MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure.ObjectName => "is_parent_unit"</td>
</tr>
</table>
</div><div class="memdoc">
<p>The schema unqualified name of this PostgreSQL function. </p>
</div>
</div>
<a class="anchor" id="a4c7e2227ee9ce96628007b8345a12aa9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">override string MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure.ObjectNamespace => "core"</td>
</tr>
</table>
</div><div class="memdoc">
<p>The schema of this PostgreSQL function. </p>
</div>
</div>
<h2 class="groupheader">Property Documentation</h2>
<a class="anchor" id="adafa5ddb6aab69ac35f334c5e1246312"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">long MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure._LoginId</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Login id of application user accessing this PostgreSQL function. </p>
</div>
</div>
<a class="anchor" id="a5113e9ba334e17f3c90f07e753079319"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure._UserId</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>User id of application user accessing this table. </p>
</div>
</div>
<a class="anchor" id="a7879ea427164d9ebd8319e7f2dae3ea7"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">string MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure.Catalog</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>The name of the database on which queries are being executed to. </p>
</div>
</div>
<a class="anchor" id="a54ee81ccde2fecb9924e6de3d9dc89e4"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure.Child</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Maps to "child" argument of the function "core.is_parent_unit". </p>
</div>
</div>
<a class="anchor" id="a7a0ea15fad5e0ea9364cea46e06b0214"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int MixERP.Net.Schemas.Core.Data.IsParentUnitProcedure.Parent</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Maps to "parent" argument of the function "core.is_parent_unit". </p>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>C:/Users/nirvan/Desktop/mixerp/0. GitHub/src/Libraries/DAL/Core/IsParentUnitProcedure.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_schemas.html">Schemas</a></li><li class="navelem"><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_core.html">Core</a></li><li class="navelem"><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data.html">Data</a></li><li class="navelem"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data_1_1_is_parent_unit_procedure.html">IsParentUnitProcedure</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>
|
docs/api/class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_bonus_slab_scrud_view_controller.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.Api.Core.BonusSlabScrudViewController 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 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 List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class 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_api_1_1_core_1_1_bonus_slab_scrud_view_controller.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="#pub-methods">Public Member Functions</a> |
<a href="#properties">Properties</a> |
<a href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_bonus_slab_scrud_view_controller-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">MixERP.Net.Api.Core.BonusSlabScrudViewController Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Bonus Slab Scrud Views.
<a href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_bonus_slab_scrud_view_controller.html#details">More...</a></p>
<div class="dynheader">
Inheritance diagram for MixERP.Net.Api.Core.BonusSlabScrudViewController:</div>
<div class="dyncontent">
<div class="center">
<img src="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_bonus_slab_scrud_view_controller.png" usemap="#MixERP.Net.Api.Core.BonusSlabScrudViewController_map" alt=""/>
<map id="MixERP.Net.Api.Core.BonusSlabScrudViewController_map" name="MixERP.Net.Api.Core.BonusSlabScrudViewController_map">
</map>
</div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a4166b5a59d33a5b2eafcbcfa74ddd022"><td class="memItemLeft" align="right" valign="top">long </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_bonus_slab_scrud_view_controller.html#a4166b5a59d33a5b2eafcbcfa74ddd022">Count</a> ()</td></tr>
<tr class="memdesc:a4166b5a59d33a5b2eafcbcfa74ddd022"><td class="mdescLeft"> </td><td class="mdescRight">Counts the number of bonus slab scrud views. <a href="#a4166b5a59d33a5b2eafcbcfa74ddd022">More...</a><br /></td></tr>
<tr class="separator:a4166b5a59d33a5b2eafcbcfa74ddd022"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5bbe96f19f2aa440937d8973dce277bd"><td class="memItemLeft" align="right" valign="top">IEnumerable< <a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_bonus_slab_scrud_view.html">MixERP.Net.Entities.Core.BonusSlabScrudView</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_bonus_slab_scrud_view_controller.html#a5bbe96f19f2aa440937d8973dce277bd">GetPagedResult</a> ()</td></tr>
<tr class="memdesc:a5bbe96f19f2aa440937d8973dce277bd"><td class="mdescLeft"> </td><td class="mdescRight">Creates a paginated collection containing 25 bonus slab scrud views on each page, sorted by the property . <a href="#a5bbe96f19f2aa440937d8973dce277bd">More...</a><br /></td></tr>
<tr class="separator:a5bbe96f19f2aa440937d8973dce277bd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a32005fba9b71fd580d10a25212cb2a22"><td class="memItemLeft" align="right" valign="top">IEnumerable< <a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_bonus_slab_scrud_view.html">MixERP.Net.Entities.Core.BonusSlabScrudView</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_bonus_slab_scrud_view_controller.html#a32005fba9b71fd580d10a25212cb2a22">GetPagedResult</a> (long pageNumber)</td></tr>
<tr class="memdesc:a32005fba9b71fd580d10a25212cb2a22"><td class="mdescLeft"> </td><td class="mdescRight">Creates a paginated collection containing 25 bonus slab scrud views on each page, sorted by the property . <a href="#a32005fba9b71fd580d10a25212cb2a22">More...</a><br /></td></tr>
<tr class="separator:a32005fba9b71fd580d10a25212cb2a22"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac859a01819deec0c497f31bb2f74b583"><td class="memItemLeft" align="right" valign="top">IEnumerable< <a class="el" href="class_peta_poco_1_1_display_field.html">DisplayField</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_bonus_slab_scrud_view_controller.html#ac859a01819deec0c497f31bb2f74b583">GetDisplayFields</a> ()</td></tr>
<tr class="memdesc:ac859a01819deec0c497f31bb2f74b583"><td class="mdescLeft"> </td><td class="mdescRight">Displayfield is a lightweight key/value collection of bonus slab scrud views. <a href="#ac859a01819deec0c497f31bb2f74b583">More...</a><br /></td></tr>
<tr class="separator:ac859a01819deec0c497f31bb2f74b583"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acbbae3064476487e6d4af221062e104a"><td class="memItemLeft" align="right" valign="top">long </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_bonus_slab_scrud_view_controller.html#acbbae3064476487e6d4af221062e104a">CountWhere</a> ([FromBody]dynamic filters)</td></tr>
<tr class="memdesc:acbbae3064476487e6d4af221062e104a"><td class="mdescLeft"> </td><td class="mdescRight">Counts the number of bonus slab scrud views using the supplied filter(s). <a href="#acbbae3064476487e6d4af221062e104a">More...</a><br /></td></tr>
<tr class="separator:acbbae3064476487e6d4af221062e104a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4aa8d7c698376f7b1fdca8c679bfad5d"><td class="memItemLeft" align="right" valign="top">IEnumerable< <a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_bonus_slab_scrud_view.html">MixERP.Net.Entities.Core.BonusSlabScrudView</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_bonus_slab_scrud_view_controller.html#a4aa8d7c698376f7b1fdca8c679bfad5d">GetWhere</a> (long pageNumber, [FromBody]dynamic filters)</td></tr>
<tr class="memdesc:a4aa8d7c698376f7b1fdca8c679bfad5d"><td class="mdescLeft"> </td><td class="mdescRight">Creates a filtered and paginated collection containing 25 bonus slab scrud views on each page, sorted by the property . <a href="#a4aa8d7c698376f7b1fdca8c679bfad5d">More...</a><br /></td></tr>
<tr class="separator:a4aa8d7c698376f7b1fdca8c679bfad5d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61147f74af0edddaeeedb5358ec263a0"><td class="memItemLeft" align="right" valign="top">long </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_bonus_slab_scrud_view_controller.html#a61147f74af0edddaeeedb5358ec263a0">CountFiltered</a> (string filterName)</td></tr>
<tr class="memdesc:a61147f74af0edddaeeedb5358ec263a0"><td class="mdescLeft"> </td><td class="mdescRight">Counts the number of bonus slab scrud views using the supplied filter name. <a href="#a61147f74af0edddaeeedb5358ec263a0">More...</a><br /></td></tr>
<tr class="separator:a61147f74af0edddaeeedb5358ec263a0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac2caa1e6e9a71a285cff96cc9888c1ab"><td class="memItemLeft" align="right" valign="top">IEnumerable< <a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_bonus_slab_scrud_view.html">MixERP.Net.Entities.Core.BonusSlabScrudView</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_bonus_slab_scrud_view_controller.html#ac2caa1e6e9a71a285cff96cc9888c1ab">GetFiltered</a> (long pageNumber, string filterName)</td></tr>
<tr class="memdesc:ac2caa1e6e9a71a285cff96cc9888c1ab"><td class="mdescLeft"> </td><td class="mdescRight">Creates a filtered and paginated collection containing 25 bonus slab scrud views on each page, sorted by the property . <a href="#ac2caa1e6e9a71a285cff96cc9888c1ab">More...</a><br /></td></tr>
<tr class="separator:ac2caa1e6e9a71a285cff96cc9888c1ab"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a>
Properties</h2></td></tr>
<tr class="memitem:a1044f821b6cccd9512b4d8ab82c074cc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1044f821b6cccd9512b4d8ab82c074cc"></a>
long </td><td class="memItemRight" valign="bottom"><b>LoginId</b><code> [get]</code></td></tr>
<tr class="separator:a1044f821b6cccd9512b4d8ab82c074cc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab095a2a793c4de6a40d4368315ebd2d6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab095a2a793c4de6a40d4368315ebd2d6"></a>
int </td><td class="memItemRight" valign="bottom"><b>UserId</b><code> [get]</code></td></tr>
<tr class="separator:ab095a2a793c4de6a40d4368315ebd2d6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a14cefa1a183849a891e1c9830b38f913"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a14cefa1a183849a891e1c9830b38f913"></a>
int </td><td class="memItemRight" valign="bottom"><b>OfficeId</b><code> [get]</code></td></tr>
<tr class="separator:a14cefa1a183849a891e1c9830b38f913"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a20882459cca4a60289f9117b5cf1a7c2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a20882459cca4a60289f9117b5cf1a7c2"></a>
string </td><td class="memItemRight" valign="bottom"><b>Catalog</b><code> [get]</code></td></tr>
<tr class="separator:a20882459cca4a60289f9117b5cf1a7c2"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Bonus Slab Scrud Views. </p>
</div><h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a4166b5a59d33a5b2eafcbcfa74ddd022"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">long MixERP.Net.Api.Core.BonusSlabScrudViewController.Count </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Counts the number of bonus slab scrud views. </p>
<dl class="section return"><dt>Returns</dt><dd>Returns the count of the bonus slab scrud views.</dd></dl>
</div>
</div>
<a class="anchor" id="a61147f74af0edddaeeedb5358ec263a0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">long MixERP.Net.Api.Core.BonusSlabScrudViewController.CountFiltered </td>
<td>(</td>
<td class="paramtype">string </td>
<td class="paramname"><em>filterName</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Counts the number of bonus slab scrud views using the supplied filter name. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">filterName</td><td>The named filter.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns the count of filtered bonus slab scrud views.</dd></dl>
</div>
</div>
<a class="anchor" id="acbbae3064476487e6d4af221062e104a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">long MixERP.Net.Api.Core.BonusSlabScrudViewController.CountWhere </td>
<td>(</td>
<td class="paramtype">[FromBody] dynamic </td>
<td class="paramname"><em>filters</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Counts the number of bonus slab scrud views using the supplied filter(s). </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">filters</td><td>The list of filter conditions.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns the count of filtered bonus slab scrud views.</dd></dl>
</div>
</div>
<a class="anchor" id="ac859a01819deec0c497f31bb2f74b583"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">IEnumerable<<a class="el" href="class_peta_poco_1_1_display_field.html">DisplayField</a>> MixERP.Net.Api.Core.BonusSlabScrudViewController.GetDisplayFields </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Displayfield is a lightweight key/value collection of bonus slab scrud views. </p>
<dl class="section return"><dt>Returns</dt><dd>Returns an enumerable key/value collection of bonus slab scrud views.</dd></dl>
</div>
</div>
<a class="anchor" id="ac2caa1e6e9a71a285cff96cc9888c1ab"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">IEnumerable<<a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_bonus_slab_scrud_view.html">MixERP.Net.Entities.Core.BonusSlabScrudView</a>> MixERP.Net.Api.Core.BonusSlabScrudViewController.GetFiltered </td>
<td>(</td>
<td class="paramtype">long </td>
<td class="paramname"><em>pageNumber</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">string </td>
<td class="paramname"><em>filterName</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Creates a filtered and paginated collection containing 25 bonus slab scrud views on each page, sorted by the property . </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">pageNumber</td><td>Enter the page number to produce the resultset.</td></tr>
<tr><td class="paramname">filterName</td><td>The named filter.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns the requested page from the collection using the supplied filters.</dd></dl>
</div>
</div>
<a class="anchor" id="a5bbe96f19f2aa440937d8973dce277bd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">IEnumerable<<a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_bonus_slab_scrud_view.html">MixERP.Net.Entities.Core.BonusSlabScrudView</a>> MixERP.Net.Api.Core.BonusSlabScrudViewController.GetPagedResult </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Creates a paginated collection containing 25 bonus slab scrud views on each page, sorted by the property . </p>
<dl class="section return"><dt>Returns</dt><dd>Returns the first page from the collection.</dd></dl>
</div>
</div>
<a class="anchor" id="a32005fba9b71fd580d10a25212cb2a22"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">IEnumerable<<a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_bonus_slab_scrud_view.html">MixERP.Net.Entities.Core.BonusSlabScrudView</a>> MixERP.Net.Api.Core.BonusSlabScrudViewController.GetPagedResult </td>
<td>(</td>
<td class="paramtype">long </td>
<td class="paramname"><em>pageNumber</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Creates a paginated collection containing 25 bonus slab scrud views on each page, sorted by the property . </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">pageNumber</td><td>Enter the page number to produce the resultset.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns the requested page from the collection.</dd></dl>
</div>
</div>
<a class="anchor" id="a4aa8d7c698376f7b1fdca8c679bfad5d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">IEnumerable<<a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_bonus_slab_scrud_view.html">MixERP.Net.Entities.Core.BonusSlabScrudView</a>> MixERP.Net.Api.Core.BonusSlabScrudViewController.GetWhere </td>
<td>(</td>
<td class="paramtype">long </td>
<td class="paramname"><em>pageNumber</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">[FromBody] dynamic </td>
<td class="paramname"><em>filters</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Creates a filtered and paginated collection containing 25 bonus slab scrud views on each page, sorted by the property . </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">pageNumber</td><td>Enter the page number to produce the resultset.</td></tr>
<tr><td class="paramname">filters</td><td>The list of filter conditions.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns the requested page from the collection using the supplied filters.</dd></dl>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>C:/Users/nirvan/Desktop/mixerp/0. GitHub/src/Libraries/Web API/Core/BonusSlabScrudViewController.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_api.html">Api</a></li><li class="navelem"><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_api_1_1_core.html">Core</a></li><li class="navelem"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_bonus_slab_scrud_view_controller.html">BonusSlabScrudViewController</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>
|
mysite/missions/templates/missions/irc/base.html | nirmeshk/oh-mainline | {% extends 'missions/mission_base.html' %}
{% block side_nav_links %}
<li id='link-irc_mission'>
<a href='{% url mysite.missions.irc.views.irc_mission %}'>
About this mission
</a>
</li>
{% endblock side_nav_links %}
|
help/help/src/sakai_screensteps_resourcesInstructorGuide/How-do-I-copy-a-Resources-file-or-folder-from-one-site-to-another-site-.html | marktriggs/nyu-sakai-10.4 | <!DOCTYPE html>
<html lang="en">
<head>
<title>How do I copy a Resources file or folder from one site to another site?</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta content="sakai.resources" name="description">
<meta content="" name="search">
<link href="/library/skin/tool_base.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8">
<link href="/library/skin/neo-default/tool.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8">
<link href="/library/skin/neo-default/help.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8">
<link href="/library/js/jquery/featherlight/0.4.0/featherlight.min.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8">
<script src="/library/js/jquery/jquery-1.9.1.min.js" type="text/javascript" charset="utf-8"></script><script src="/library/js/jquery/featherlight/0.4.0/featherlight.min.js" type="text/javascript" charset="utf-8"></script><script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$("a[rel^='featherlight']").featherlight({
type: { image:true },
closeOnClick: 'anywhere'
});
});
</script>
</head>
<body>
<div id="wrapper">
<div id="article-content">
<div id="article-header">
<h1 class="article-title">How do I copy a Resources file or folder from one site to another site?</h1>
</div>
<div id="article-description">
<p>Instructors can copy a Resource file or folder from on site to another site.</p>
</div> <div id="steps-container"> <div id="step-7068" class="step-container"> <h2 class="step-title">Go to Resources.</h2> <div class="step-instructions"><p>Select the <strong>Resources</strong> tool from the Tool Menu of the destination site.</p></div> </div>
<div class="clear"></div> <div id="step-7069" class="step-container"> <h2 class="step-title">Click Copy Content from My Other Sites.</h2> <div class="step-image-container">
<img src="/library/image/help/en/How-do-I-copy-a-Resources-file-or-folder-from-one-site-to-another-site-/Click-Copy-Content-from-My-Other-Sites.png" width="539" height="204" class="step-image" alt="Click Copy Content from My Other Sites.">
</div>
<div class="step-instructions"><p>This displays the Resource folders located in your other sites.</p></div> </div>
<div class="clear"></div> <div id="step-7070" class="step-container"> <h2 class="step-title">Select the files or folders you would like to copy, then click Copy.</h2> <div class="step-image-container">
<img src="/library/image/help/en/How-do-I-copy-a-Resources-file-or-folder-from-one-site-to-another-site-/Select-the-files-or-folders-you-would-like-to-copy.png" width="629" height="472" class="step-image" alt="Select the files or folders you would like to copy, then click Copy.">
</div>
<div class="step-instructions"><p>This places the Resources page into a temporary display state to facilitate the copying of files (Click reset to cancel).</p></div> </div>
<div class="clear"></div> <div id="step-7071" class="step-container"> <h2 class="step-title">Click the clipboard icon.</h2> <div class="step-image-container">
<img src="/library/image/help/en/How-do-I-copy-a-Resources-file-or-folder-from-one-site-to-another-site-/Click-the-clipboard-icon.png" width="634" height="367" class="step-image" alt="Click the clipboard icon.">
</div>
<div class="step-instructions"><p>To the right of the folder you want to copy the files or folders to, click the clipboard icon.</p></div> </div>
<div class="clear"></div> <div id="step-7072" class="step-container"> <h2 class="step-title">View copied files.</h2> <div class="step-image-container">
<img src="/library/image/help/en/How-do-I-copy-a-Resources-file-or-folder-from-one-site-to-another-site-/View-copied-files.png" width="623" height="481" class="step-image" alt="View copied files.">
</div>
<div class="step-instructions"><p>This places a copy of the files or folders into the Resources folder on the other site.</p></div> </div>
<div class="clear"></div> </div>
</div>
</div>
</body>
</html>
|
third_party/blink/web_tests/external/wpt/css/compositing/background-blending/reference/background-blend-mode-plus-lighter-ref.html | chromium/chromium | <!DOCTYPE html>
<title>background-blend-mode: plus-lighter test</title>
<link rel="author" title="Jake Archibald" href="mailto:jakearchibald@chromium.org">
<link rel="help" href="https://drafts.fxtf.org/compositing-2/#background-blend-mode">
<style>
.test {
width: 100px;
height: 100px;
}
</style>
<script type="module">
import { tests, plusLighter } from '../../support/plus-lighter.js';
import { toCSSColor } from '../../support/utils.js';
for (const colors of tests) {
document.body.insertAdjacentHTML('beforeend', `
<div class="test" style="background-color: ${toCSSColor(plusLighter(colors))}"></div>
`);
}
</script>
|
utils/ant/apache-ant-1.9.4/manual/api/org/apache/tools/ant/helper/ProjectHelper2.TargetHandler.html | byronka/xenos | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_65) on Tue Apr 29 23:14:28 EDT 2014 -->
<TITLE>
ProjectHelper2.TargetHandler (Apache Ant API)
</TITLE>
<META NAME="date" CONTENT="2014-04-29">
<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="ProjectHelper2.TargetHandler (Apache Ant 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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.RootHandler.html" title="class in org.apache.tools.ant.helper"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelperImpl.html" title="class in org.apache.tools.ant.helper"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/tools/ant/helper/ProjectHelper2.TargetHandler.html" target="_top"><B>FRAMES</B></A>
<A HREF="ProjectHelper2.TargetHandler.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.apache.tools.ant.helper</FONT>
<BR>
Class ProjectHelper2.TargetHandler</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html" title="class in org.apache.tools.ant.helper">org.apache.tools.ant.helper.ProjectHelper2.AntHandler</A>
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.tools.ant.helper.ProjectHelper2.TargetHandler</B>
</PRE>
<DL>
<DT><B>Enclosing class:</B><DD><A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.html" title="class in org.apache.tools.ant.helper">ProjectHelper2</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public static class <B>ProjectHelper2.TargetHandler</B><DT>extends <A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html" title="class in org.apache.tools.ant.helper">ProjectHelper2.AntHandler</A></DL>
</PRE>
<P>
Handler for "target" and "extension-point" elements.
<P>
<P>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.TargetHandler.html#ProjectHelper2.TargetHandler()">ProjectHelper2.TargetHandler</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.TargetHandler.html#onEndElement(java.lang.String, java.lang.String, org.apache.tools.ant.helper.AntXMLContext)">onEndElement</A></B>(java.lang.String uri,
java.lang.String tag,
<A HREF="../../../../../org/apache/tools/ant/helper/AntXMLContext.html" title="class in org.apache.tools.ant.helper">AntXMLContext</A> context)</CODE>
<BR>
Handle the end of the project, sets the current target of the
context to be the implicit target.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html" title="class in org.apache.tools.ant.helper">ProjectHelper2.AntHandler</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.TargetHandler.html#onStartChild(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes, org.apache.tools.ant.helper.AntXMLContext)">onStartChild</A></B>(java.lang.String uri,
java.lang.String name,
java.lang.String qname,
org.xml.sax.Attributes attrs,
<A HREF="../../../../../org/apache/tools/ant/helper/AntXMLContext.html" title="class in org.apache.tools.ant.helper">AntXMLContext</A> context)</CODE>
<BR>
Handles the start of an element within a target.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.TargetHandler.html#onStartElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes, org.apache.tools.ant.helper.AntXMLContext)">onStartElement</A></B>(java.lang.String uri,
java.lang.String tag,
java.lang.String qname,
org.xml.sax.Attributes attrs,
<A HREF="../../../../../org/apache/tools/ant/helper/AntXMLContext.html" title="class in org.apache.tools.ant.helper">AntXMLContext</A> context)</CODE>
<BR>
Initialisation routine called after handler creation
with the element name and attributes.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_org.apache.tools.ant.helper.ProjectHelper2.AntHandler"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class org.apache.tools.ant.helper.<A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html" title="class in org.apache.tools.ant.helper">ProjectHelper2.AntHandler</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html#characters(char[], int, int, org.apache.tools.ant.helper.AntXMLContext)">characters</A>, <A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html#checkNamespace(java.lang.String)">checkNamespace</A>, <A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html#onEndChild(java.lang.String, java.lang.String, java.lang.String, org.apache.tools.ant.helper.AntXMLContext)">onEndChild</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="ProjectHelper2.TargetHandler()"><!-- --></A><H3>
ProjectHelper2.TargetHandler</H3>
<PRE>
public <B>ProjectHelper2.TargetHandler</B>()</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="onStartElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes, org.apache.tools.ant.helper.AntXMLContext)"><!-- --></A><H3>
onStartElement</H3>
<PRE>
public void <B>onStartElement</B>(java.lang.String uri,
java.lang.String tag,
java.lang.String qname,
org.xml.sax.Attributes attrs,
<A HREF="../../../../../org/apache/tools/ant/helper/AntXMLContext.html" title="class in org.apache.tools.ant.helper">AntXMLContext</A> context)
throws org.xml.sax.SAXParseException</PRE>
<DL>
<DD>Initialisation routine called after handler creation
with the element name and attributes. The attributes which
this handler can deal with are: <code>"name"</code>,
<code>"depends"</code>, <code>"if"</code>,
<code>"unless"</code>, <code>"id"</code> and
<code>"description"</code>.
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html#onStartElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes, org.apache.tools.ant.helper.AntXMLContext)">onStartElement</A></CODE> in class <CODE><A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html" title="class in org.apache.tools.ant.helper">ProjectHelper2.AntHandler</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>uri</CODE> - The namespace URI for this element.<DD><CODE>tag</CODE> - Name of the element which caused this handler
to be created. Should not be <code>null</code>.
Ignored in this implementation.<DD><CODE>qname</CODE> - The qualified name for this element.<DD><CODE>attrs</CODE> - Attributes of the element which caused this
handler to be created. Must not be <code>null</code>.<DD><CODE>context</CODE> - The current context.
<DT><B>Throws:</B>
<DD><CODE>org.xml.sax.SAXParseException</CODE> - if an unexpected attribute is encountered
or if the <code>"name"</code> attribute is missing.</DL>
</DD>
</DL>
<HR>
<A NAME="onStartChild(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes, org.apache.tools.ant.helper.AntXMLContext)"><!-- --></A><H3>
onStartChild</H3>
<PRE>
public <A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html" title="class in org.apache.tools.ant.helper">ProjectHelper2.AntHandler</A> <B>onStartChild</B>(java.lang.String uri,
java.lang.String name,
java.lang.String qname,
org.xml.sax.Attributes attrs,
<A HREF="../../../../../org/apache/tools/ant/helper/AntXMLContext.html" title="class in org.apache.tools.ant.helper">AntXMLContext</A> context)
throws org.xml.sax.SAXParseException</PRE>
<DL>
<DD>Handles the start of an element within a target.
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html#onStartChild(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes, org.apache.tools.ant.helper.AntXMLContext)">onStartChild</A></CODE> in class <CODE><A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html" title="class in org.apache.tools.ant.helper">ProjectHelper2.AntHandler</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>uri</CODE> - The namespace URI for this element.<DD><CODE>name</CODE> - The name of the element being started.
Will not be <code>null</code>.<DD><CODE>qname</CODE> - The qualified name for this element.<DD><CODE>attrs</CODE> - Attributes of the element being started.
Will not be <code>null</code>.<DD><CODE>context</CODE> - The current context.
<DT><B>Returns:</B><DD>an element handler.
<DT><B>Throws:</B>
<DD><CODE>org.xml.sax.SAXParseException</CODE> - if an error occurs when initialising
the appropriate child handler</DL>
</DD>
</DL>
<HR>
<A NAME="onEndElement(java.lang.String, java.lang.String, org.apache.tools.ant.helper.AntXMLContext)"><!-- --></A><H3>
onEndElement</H3>
<PRE>
public void <B>onEndElement</B>(java.lang.String uri,
java.lang.String tag,
<A HREF="../../../../../org/apache/tools/ant/helper/AntXMLContext.html" title="class in org.apache.tools.ant.helper">AntXMLContext</A> context)</PRE>
<DL>
<DD>Handle the end of the project, sets the current target of the
context to be the implicit target.
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html#onEndElement(java.lang.String, java.lang.String, org.apache.tools.ant.helper.AntXMLContext)">onEndElement</A></CODE> in class <CODE><A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.AntHandler.html" title="class in org.apache.tools.ant.helper">ProjectHelper2.AntHandler</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>uri</CODE> - The namespace URI of the element.<DD><CODE>tag</CODE> - The name of the element.<DD><CODE>context</CODE> - The current context.</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelper2.RootHandler.html" title="class in org.apache.tools.ant.helper"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/tools/ant/helper/ProjectHelperImpl.html" title="class in org.apache.tools.ant.helper"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/tools/ant/helper/ProjectHelper2.TargetHandler.html" target="_top"><B>FRAMES</B></A>
<A HREF="ProjectHelper2.TargetHandler.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
solr/vendor/docs/solr-core/org/apache/solr/response/class-use/SortingResponseWriter.DoubleDesc.html | ubtue/ixTheo | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_71) on Tue Feb 16 15:23:08 EST 2016 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Uses of Class org.apache.solr.response.SortingResponseWriter.DoubleDesc (Solr 5.5.0 API)</title>
<meta name="date" content="2016-02-16">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.solr.response.SortingResponseWriter.DoubleDesc (Solr 5.5.0 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/solr/response/SortingResponseWriter.DoubleDesc.html" title="class in org.apache.solr.response">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/solr/response/class-use/SortingResponseWriter.DoubleDesc.html" target="_top">Frames</a></li>
<li><a href="SortingResponseWriter.DoubleDesc.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.solr.response.SortingResponseWriter.DoubleDesc" class="title">Uses of Class<br>org.apache.solr.response.SortingResponseWriter.DoubleDesc</h2>
</div>
<div class="classUseContainer">No usage of org.apache.solr.response.SortingResponseWriter.DoubleDesc</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/solr/response/SortingResponseWriter.DoubleDesc.html" title="class in org.apache.solr.response">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/solr/response/class-use/SortingResponseWriter.DoubleDesc.html" target="_top">Frames</a></li>
<li><a href="SortingResponseWriter.DoubleDesc.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</small></p>
</body>
</html>
|
solr/vendor/docs/solr-dataimporthandler/serialized-form.html | lahmann/vufind | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_71) on Tue Feb 16 15:23:26 EST 2016 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Serialized Form (Solr 5.5.0 API)</title>
<meta name="date" content="2016-02-16">
<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="Serialized Form (Solr 5.5.0 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>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="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 Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Serialized Form" class="title">Serialized Form</h1>
</div>
<div class="serializedFormContainer">
<ul class="blockList">
<li class="blockList">
<h2 title="Package">Package org.apache.solr.handler.dataimport</h2>
<ul class="blockList">
<li class="blockList"><a name="org.apache.solr.handler.dataimport.DataImportHandlerException">
<!-- -->
</a>
<h3>Class <a href="org/apache/solr/handler/dataimport/DataImportHandlerException.html" title="class in org.apache.solr.handler.dataimport">org.apache.solr.handler.dataimport.DataImportHandlerException</a> extends <a href="http://download.oracle.com/javase/7/docs/api/java/lang/RuntimeException.html?is-external=true" title="class or interface in java.lang">RuntimeException</a> implements Serializable</h3>
<ul class="blockList">
<li class="blockList"><a name="serializedForm">
<!-- -->
</a>
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>errCode</h4>
<pre>int errCode</pre>
</li>
<li class="blockListLast">
<h4>debugged</h4>
<pre>boolean debugged</pre>
</li>
</ul>
</li>
</ul>
</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>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="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 Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.</i>
<script src='/prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</small></p>
</body>
</html>
|
administrator/templates/hathor/css/template.css | BurtNL/joomla-cms-BurtNL | .clearfix {
*zoom: 1;
}
.clearfix:before,
.clearfix:after {
display: table;
content: "";
line-height: 0;
}
.clearfix:after {
clear: both;
}
.hide-text {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.input-block-level {
display: block;
width: 100%;
min-height: 25px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.fade {
opacity: 0;
-webkit-transition: opacity .15s linear;
-moz-transition: opacity .15s linear;
-o-transition: opacity .15s linear;
transition: opacity .15s linear;
}
.fade.in {
opacity: 1;
}
.collapse {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition: height .35s ease;
-moz-transition: height .35s ease;
-o-transition: height .35s ease;
transition: height .35s ease;
}
.collapse.in {
height: auto;
}
.modal-open .dropdown-menu {
z-index: 2050;
}
.modal-open .dropdown.open {
*z-index: 2050;
}
.modal-open .popover {
z-index: 2060;
}
.modal-open .tooltip {
z-index: 2080;
}
.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000000;
}
.modal-backdrop.fade {
opacity: 0;
}
.modal-backdrop,
.modal-backdrop.fade.in {
opacity: 0.8;
filter: alpha(opacity=80);
}
div.modal {
position: fixed;
top: 50%;
left: 50%;
z-index: 1050;
overflow: auto;
width: 80%;
margin: -250px 0 0 -40%;
background-color: #ffffff;
border: 1px solid #999;
border: 1px solid rgba(0,0,0,0.3);
*border: 1px solid #999;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
-moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
box-shadow: 0 3px 7px rgba(0,0,0,0.3);
-webkit-background-clip: padding-box;
-moz-background-clip: padding-box;
background-clip: padding-box;
}
div.modal.fade {
-webkit-transition: opacity .3s linear, top .3s ease-out;
-moz-transition: opacity .3s linear, top .3s ease-out;
-o-transition: opacity .3s linear, top .3s ease-out;
transition: opacity .3s linear, top .3s ease-out;
top: -25%;
}
div.modal.fade.in {
top: 50%;
}
.modal-header {
padding: 9px 15px;
border-bottom: 1px solid #eee;
}
.modal-header .close {
float: right;
margin-top: 2px;
}
.modal-body {
overflow-y: auto;
max-height: 400px;
padding: 15px;
}
.modal-form {
margin-bottom: 0;
}
.modal-footer {
padding: 14px 15px 15px;
margin-bottom: 0;
text-align: right;
background-color: #f5f5f5;
border-top: 1px solid #ddd;
-webkit-border-radius: 0 0 6px 6px;
-moz-border-radius: 0 0 6px 6px;
border-radius: 0 0 6px 6px;
-webkit-box-shadow: inset 0 1px 0 #ffffff;
-moz-box-shadow: inset 0 1px 0 #ffffff;
box-shadow: inset 0 1px 0 #ffffff;
*zoom: 1;
}
.modal-footer:before,
.modal-footer:after {
display: table;
content: "";
line-height: 0;
}
.modal-footer:after {
clear: both;
}
.modal-footer .btn + .btn {
margin-left: 5px;
margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
margin-left: -1px;
}
body.modal-open {
overflow: hidden;
-ms-overflow-style: none;
}
.modal-buttons {
padding: 15px 0px;
}
.modal-buttons button {
font-size: 1.2em;
line-height: 1.6em;
}
@font-face {
font-family: 'IcoMoon';
src: url('../../../../media/jui/fonts/IcoMoon.eot');
src: url('../../../../media/jui/fonts/IcoMoon.eot?#iefix') format('embedded-opentype'), url('../../../../media/jui/fonts/IcoMoon.woff') format('woff'), url('../../../../media/jui/fonts/IcoMoon.ttf') format('truetype'), url('../../../../media/jui/fonts/IcoMoon.svg#IcoMoon') format('svg');
font-weight: normal;
font-style: normal;
}
[data-icon]:before {
font-family: 'IcoMoon';
content: attr(data-icon);
speak: none;
}
[class^="icon-"],
[class*=" icon-"] {
display: inline-block;
width: 14px;
height: 14px;
margin-right: .25em;
line-height: 14px;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
font-family: 'IcoMoon';
font-style: normal;
speak: none;
}
[class^="icon-"].disabled,
[class*=" icon-"].disabled {
font-weight: normal;
}
.icon-joomla:before {
content: "\e200";
}
.icon-chevron-up:before,
.icon-uparrow:before,
.icon-arrow-up:before {
content: "\e005";
}
.icon-chevron-right:before,
.icon-rightarrow:before,
.icon-arrow-right:before {
content: "\e006";
}
.icon-chevron-down:before,
.icon-downarrow:before,
.icon-arrow-down:before {
content: "\e007";
}
.icon-chevron-left:before,
.icon-leftarrow:before,
.icon-arrow-left:before {
content: "\e008";
}
.icon-arrow-first:before {
content: "\e003";
}
.icon-arrow-last:before {
content: "\e004";
}
.icon-arrow-up-2:before {
content: "\e009";
}
.icon-arrow-right-2:before {
content: "\e00a";
}
.icon-arrow-down-2:before {
content: "\e00b";
}
.icon-arrow-left-2:before {
content: "\e00c";
}
.icon-arrow-up-3:before {
content: "\e00f";
}
.icon-arrow-right-3:before {
content: "\e010";
}
.icon-arrow-down-3:before {
content: "\e011";
}
.icon-arrow-left-3:before {
content: "\e012";
}
.icon-menu-2:before {
content: "\e00e";
}
.icon-arrow-up-4:before {
content: "\e201";
}
.icon-arrow-right-4:before {
content: "\e202";
}
.icon-arrow-down-4:before {
content: "\e203";
}
.icon-arrow-left-4:before {
content: "\e204";
}
.icon-share:before,
.icon-redo:before {
content: "\27";
}
.icon-undo:before {
content: "\28";
}
.icon-forward-2:before {
content: "\e205";
}
.icon-backward-2:before,
.icon-reply:before {
content: "\e206";
}
.icon-unblock:before,
.icon-refresh:before,
.icon-redo-2:before {
content: "\6c";
}
.icon-undo-2:before {
content: "\e207";
}
.icon-move:before {
content: "\7a";
}
.icon-expand:before {
content: "\66";
}
.icon-contract:before {
content: "\67";
}
.icon-expand-2:before {
content: "\68";
}
.icon-contract-2:before {
content: "\69";
}
.icon-play:before {
content: "\e208";
}
.icon-pause:before {
content: "\e209";
}
.icon-stop:before {
content: "\e210";
}
.icon-previous:before,
.icon-backward:before {
content: "\7c";
}
.icon-next:before,
.icon-forward:before {
content: "\7b";
}
.icon-first:before {
content: "\7d";
}
.icon-last:before {
content: "\e000";
}
.icon-play-circle:before {
content: "\e00d";
}
.icon-pause-circle:before {
content: "\e211";
}
.icon-stop-circle:before {
content: "\e212";
}
.icon-backward-circle:before {
content: "\e213";
}
.icon-forward-circle:before {
content: "\e214";
}
.icon-loop:before {
content: "\e001";
}
.icon-shuffle:before {
content: "\e002";
}
.icon-search:before {
content: "\53";
}
.icon-zoom-in:before {
content: "\64";
}
.icon-zoom-out:before {
content: "\65";
}
.icon-apply:before,
.icon-edit:before,
.icon-pencil:before {
content: "\2b";
}
.icon-pencil-2:before {
content: "\2c";
}
.icon-brush:before {
content: "\3b";
}
.icon-save-new:before,
.icon-plus-2:before {
content: "\5d";
}
.icon-minus-sign:before,
.icon-minus-2:before {
content: "\5e";
}
.icon-delete:before,
.icon-remove:before,
.icon-cancel-2:before {
content: "\49";
}
.icon-publish:before,
.icon-save:before,
.icon-ok:before,
.icon-checkmark:before {
content: "\47";
}
.icon-new:before,
.icon-plus:before {
content: "\2a";
}
.icon-plus-circle:before {
content: "\e215";
}
.icon-minus:before,
.icon-not-ok:before {
content: "\4b";
}
.icon-ban-circle:before,
.icon-minus-circle:before {
content: "\e216";
}
.icon-unpublish:before,
.icon-cancel:before {
content: "\4a";
}
.icon-cancel-circle:before {
content: "\e217";
}
.icon-checkmark-2:before {
content: "\e218";
}
.icon-checkmark-circle:before {
content: "\e219";
}
.icon-info:before {
content: "\e220";
}
.icon-info-2:before,
.icon-info-circle:before {
content: "\e221";
}
.icon-question:before,
.icon-question-sign:before,
.icon-help:before {
content: "\45";
}
.icon-question-2:before,
.icon-question-circle:before {
content: "\e222";
}
.icon-notification:before {
content: "\e223";
}
.icon-notification-2:before,
.icon-notification-circle:before {
content: "\e224";
}
.icon-pending:before,
.icon-warning:before {
content: "\48";
}
.icon-warning-2:before,
.icon-warning-circle:before {
content: "\e225";
}
.icon-checkbox-unchecked:before {
content: "\3d";
}
.icon-checkin:before,
.icon-checkbox:before,
.icon-checkbox-checked:before {
content: "\3e";
}
.icon-checkbox-partial:before {
content: "\3f";
}
.icon-square:before {
content: "\e226";
}
.icon-radio-unchecked:before {
content: "\e227";
}
.icon-radio-checked:before,
.icon-generic:before {
content: "\e228";
}
.icon-circle:before {
content: "\e229";
}
.icon-signup:before {
content: "\e230";
}
.icon-grid:before,
.icon-grid-view:before {
content: "\58";
}
.icon-grid-2:before,
.icon-grid-view-2:before {
content: "\59";
}
.icon-menu:before {
content: "\5a";
}
.icon-list:before,
.icon-list-view:before {
content: "\31";
}
.icon-list-2:before {
content: "\e231";
}
.icon-menu-3:before {
content: "\e232";
}
.icon-folder-open:before,
.icon-folder:before {
content: "\2d";
}
.icon-folder-close:before,
.icon-folder-2:before {
content: "\2e";
}
.icon-folder-plus:before {
content: "\e234";
}
.icon-folder-minus:before {
content: "\e235";
}
.icon-folder-3:before {
content: "\e236";
}
.icon-folder-plus-2:before {
content: "\e237";
}
.icon-folder-remove:before {
content: "\e238";
}
.icon-file:before {
content: "\e016";
}
.icon-file-2:before {
content: "\e239";
}
.icon-file-add:before,
.icon-file-plus:before {
content: "\29";
}
.icon-file-minus:before {
content: "\e017";
}
.icon-file-check:before {
content: "\e240";
}
.icon-file-remove:before {
content: "\e241";
}
.icon-save-copy:before,
.icon-copy:before {
content: "\e018";
}
.icon-stack:before {
content: "\e242";
}
.icon-tree:before {
content: "\e243";
}
.icon-tree-2:before {
content: "\e244";
}
.icon-paragraph-left:before {
content: "\e246";
}
.icon-paragraph-center:before {
content: "\e247";
}
.icon-paragraph-right:before {
content: "\e248";
}
.icon-paragraph-justify:before {
content: "\e249";
}
.icon-screen:before {
content: "\e01c";
}
.icon-tablet:before {
content: "\e01d";
}
.icon-mobile:before {
content: "\e01e";
}
.icon-box-add:before {
content: "\51";
}
.icon-box-remove:before {
content: "\52";
}
.icon-download:before {
content: "\e021";
}
.icon-upload:before {
content: "\e022";
}
.icon-home:before {
content: "\21";
}
.icon-home-2:before {
content: "\e250";
}
.icon-out-2:before,
.icon-new-tab:before {
content: "\e024";
}
.icon-out-3:before,
.icon-new-tab-2:before {
content: "\e251";
}
.icon-link:before {
content: "\e252";
}
.icon-picture:before,
.icon-image:before {
content: "\2f";
}
.icon-pictures:before,
.icon-images:before {
content: "\30";
}
.icon-palette:before,
.icon-color-palette:before {
content: "\e014";
}
.icon-camera:before {
content: "\55";
}
.icon-camera-2:before,
.icon-video:before {
content: "\e015";
}
.icon-play-2:before,
.icon-video-2:before,
.icon-youtube:before {
content: "\56";
}
.icon-music:before {
content: "\57";
}
.icon-user:before {
content: "\22";
}
.icon-users:before {
content: "\e01f";
}
.icon-vcard:before {
content: "\6d";
}
.icon-address:before {
content: "\70";
}
.icon-share-alt:before,
.icon-out:before {
content: "\26";
}
.icon-enter:before {
content: "\e257";
}
.icon-exit:before {
content: "\e258";
}
.icon-comment:before,
.icon-comments:before {
content: "\24";
}
.icon-comments-2:before {
content: "\25";
}
.icon-quote:before,
.icon-quotes-left:before {
content: "\60";
}
.icon-quote-2:before,
.icon-quotes-right:before {
content: "\61";
}
.icon-quote-3:before,
.icon-bubble-quote:before {
content: "\e259";
}
.icon-phone:before {
content: "\e260";
}
.icon-phone-2:before {
content: "\e261";
}
.icon-envelope:before,
.icon-mail:before {
content: "\4d";
}
.icon-envelope-opened:before,
.icon-mail-2:before {
content: "\4e";
}
.icon-unarchive:before,
.icon-drawer:before {
content: "\4f";
}
.icon-archive:before,
.icon-drawer-2:before {
content: "\50";
}
.icon-briefcase:before {
content: "\e020";
}
.icon-tag:before {
content: "\e262";
}
.icon-tag-2:before {
content: "\e263";
}
.icon-tags:before {
content: "\e264";
}
.icon-tags-2:before {
content: "\e265";
}
.icon-options:before,
.icon-cog:before {
content: "\38";
}
.icon-cogs:before {
content: "\37";
}
.icon-screwdriver:before,
.icon-tools:before {
content: "\36";
}
.icon-wrench:before {
content: "\3a";
}
.icon-equalizer:before {
content: "\39";
}
.icon-dashboard:before {
content: "\78";
}
.icon-switch:before {
content: "\e266";
}
.icon-filter:before {
content: "\54";
}
.icon-purge:before,
.icon-trash:before {
content: "\4c";
}
.icon-checkedout:before,
.icon-lock:before,
.icon-locked:before {
content: "\23";
}
.icon-unlock:before {
content: "\e267";
}
.icon-key:before {
content: "\5f";
}
.icon-support:before {
content: "\46";
}
.icon-database:before {
content: "\62";
}
.icon-scissors:before {
content: "\e268";
}
.icon-health:before {
content: "\6a";
}
.icon-wand:before {
content: "\6b";
}
.icon-eye-open:before,
.icon-eye:before {
content: "\3c";
}
.icon-eye-close:before,
.icon-eye-blocked:before,
.icon-eye-2:before {
content: "\e269";
}
.icon-clock:before {
content: "\6e";
}
.icon-compass:before {
content: "\6f";
}
.icon-broadcast:before,
.icon-connection:before,
.icon-wifi:before {
content: "\e01b";
}
.icon-book:before {
content: "\e271";
}
.icon-lightning:before,
.icon-flash:before {
content: "\79";
}
.icon-print:before,
.icon-printer:before {
content: "\e013";
}
.icon-feed:before {
content: "\71";
}
.icon-calendar:before {
content: "\43";
}
.icon-calendar-2:before {
content: "\44";
}
.icon-calendar-3:before {
content: "\e273";
}
.icon-pie:before {
content: "\77";
}
.icon-bars:before {
content: "\76";
}
.icon-chart:before {
content: "\75";
}
.icon-power-cord:before {
content: "\32";
}
.icon-cube:before {
content: "\33";
}
.icon-puzzle:before {
content: "\34";
}
.icon-attachment:before,
.icon-paperclip:before,
.icon-flag-2:before {
content: "\72";
}
.icon-lamp:before {
content: "\74";
}
.icon-pin:before,
.icon-pushpin:before {
content: "\73";
}
.icon-location:before {
content: "\63";
}
.icon-shield:before {
content: "\e274";
}
.icon-flag:before {
content: "\35";
}
.icon-flag-3:before {
content: "\e275";
}
.icon-bookmark:before {
content: "\e023";
}
.icon-bookmark-2:before {
content: "\e276";
}
.icon-heart:before {
content: "\e277";
}
.icon-heart-2:before {
content: "\e278";
}
.icon-thumbs-up:before {
content: "\5b";
}
.icon-thumbs-down:before {
content: "\5c";
}
.icon-unfeatured:before,
.icon-asterisk:before,
.icon-star-empty:before {
content: "\40";
}
.icon-star-2:before {
content: "\41";
}
.icon-featured:before,
.icon-default:before,
.icon-star:before {
content: "\42";
}
.icon-smiley:before,
.icon-smiley-happy:before {
content: "\e279";
}
.icon-smiley-2:before,
.icon-smiley-happy-2:before {
content: "\e280";
}
.icon-smiley-sad:before {
content: "\e281";
}
.icon-smiley-sad-2:before {
content: "\e282";
}
.icon-smiley-neutral:before {
content: "\e283";
}
.icon-smiley-neutral-2:before {
content: "\e284";
}
.icon-cart:before {
content: "\e019";
}
.icon-basket:before {
content: "\e01a";
}
.icon-credit:before {
content: "\e286";
}
.icon-credit-2:before {
content: "\e287";
}
.icon-expired:before {
content: "\4b";
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
background: transparent;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
del {
text-decoration: line-through;
}
html {
overflow-y: scroll;
height: 100%;
}
body {
margin: 0;
padding: 0;
font-size: 62.5%;
line-height: 1.5em;
height: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body,
td,
th,
span,
a {
font-family: Arial, Helvetica, sans-serif;
}
html,
body {
height: 100%;
}
a,
img {
padding: 0;
margin: 0;
}
img {
border: 0 none;
}
form {
margin: 0;
padding: 0;
}
ul {
padding: 0;
margin: 0;
}
h1 {
margin: 0;
padding-bottom: 8px;
font-size: 1.4em;
font-weight: bold;
line-height: 2em;
}
h2 {
padding-top: .83em;
padding-bottom: .83em;
}
h3 {
font-size: 1.4em;
}
a:link {
color: #054993;
text-decoration: none;
}
a:visited {
color: #054993;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:focus {
text-decoration: underline;
}
iframe {
border: 0;
}
.enabled {
color: #005800;
font-weight: bold;
}
.disabled {
color: #a20000;
font-weight: bold;
}
p.error {
color: #a20000;
font-weight: bold;
}
.warning {
color: #a20000;
font-weight: bold;
}
.nowarning {
color: #2c2c2c;
font-weight: bold;
}
.success {
color: #005800;
font-weight: bold;
}
.allow {
color: #005800;
}
span.writable {
color: #005800;
}
.deny {
color: #a20000;
}
span.unwritable {
color: #a20000;
}
.none {
color: #aaaaaa;
}
.pointer {
cursor: pointer;
}
.nowrap {
white-space: nowrap;
}
p.nowarning,
p.warning {
margin: 10px;
}
#minwidth,
#minwidth-body {
min-width: 980px;
}
#containerwrap {
position: relative;
}
#header {
position: relative;
}
#header h1.title {
font-size: 1.5em;
font-weight: normal;
line-height: 25px;
margin: 0;
padding: 0 0 0 120px;
}
#footer {
padding: 10px 20px;
}
#footer .copyright {
margin: 0 0 0 0;
text-align: center;
}
#footer p {
font-size: 1.2em;
}
#nav .no-nav {
line-height: 2em;
}
#content {
margin: 5px 20px 20px 20px;
}
.cpanel-page div#element-box {
padding: 15px;
}
#module-status {
float: right;
position: relative;
top: -48px;
}
#module-status div.btn-group {
display: block;
float: left;
padding: 4px 10px 0 10px;
font-size: 1.2em;
}
#module-status div.divider {
display: none;
}
#module-status .unread-messages a {
font-weight: bold;
}
.title-ua {
position: relative;
width: 60%;
}
.enabled,
.disabled,
p.error,
.warning,
.nowarning,
.success {
font-weight: bold;
}
.pointer {
cursor: pointer;
}
.nowrap {
white-space: nowrap;
}
span.note {
display: block;
padding: 5px;
}
div.checkin-tick {
text-indent: -9999px;
}
.ol-textfont {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.2em;
}
.ol-captionfont {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.2em;
font-weight: bold;
}
.ol-captionfont a {
text-decoration: none;
}
div.subheader .padding {
padding: 0;
}
div.pagetitle {
padding: 0 0 5px 5px;
margin: 0;
background-repeat: no-repeat;
background-position: left 50%;
line-height: 54px;
width: 100%;
margin-top: -20px;
height: 60px;
}
.tabs-left > .nav-tabs {
float: left;
margin-right: 19px;
border-right: 1px solid #DDD;
}
tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
border-bottom: 0;
}
.tab-content {
overflow: visible;
}
.tabs-left .tab-content {
overflow: auto;
}
.nav-tabs > li > span {
display: block;
margin-right: 2px;
padding-right: 12px;
padding-left: 12px;
padding-top: 8px;
padding-bottom: 8px;
line-height: 18px;
border: 1px solid transparent;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.btn-micro {
padding: 1px 4px;
font-size: 10px;
line-height: 8px;
}
.tip-wrap {
max-width: 200px;
padding: 3px 8px;
color: #ffffff;
text-align: center;
text-decoration: none;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
z-index: 100;
}
.pagetitle h2 {
padding: 0 0 0 50px;
font-size: 1.3em;
font-weight: bold;
line-height: 48px;
font-style: italic;
}
div.configuration {
font-size: 1.2em;
font-weight: bold;
line-height: 2em;
padding-left: 30px;
margin-left: 10px;
}
div.toolbar-box h3 {
height: 0;
overflow: hidden;
position: absolute;
padding: 0;
margin: 0;
}
.btn-toolbar {
margin-bottom: 3px;
margin-top: 14px;
}
div.btn-toolbar,
div.toolbar-list {
float: left;
text-align: left;
padding: 0;
}
div.toolbar-list li {
padding: 5px 1px 5px 4px;
text-align: center;
height: 52px;
list-style: none;
float: left;
}
div.toolbar-list li.spacer {
width: 10px;
}
div.toolbar-list li.divider {
width: 10px;
margin-right: 10px;
}
div.toolbar-list span {
float: none;
width: 32px;
height: 32px;
margin: 0 auto;
display: block;
}
div.toolbar-list a {
display: block;
float: left;
white-space: nowrap;
padding: 1px 5px;
cursor: pointer;
font-weight: bold;
}
div.btn-toolbar div.btn-group button {
display: block;
float: left;
white-space: nowrap;
padding: 1px 5px;
cursor: pointer;
text-align: center;
}
div.btn-toolbar button:hover,
div.btn-toolbar button:focus,
div.toolbar-list a:hover,
div.toolbar-list a:focus {
text-decoration: none;
}
td#mm_pane {
width: 90%;
}
input#mm_subject {
width: 200px;
}
textarea#mm_message {
width: 100%;
}
textarea {
resize: both;
}
textarea.vert {
resize: vertical;
}
textarea.noResize {
resize: none;
}
.pane-sliders {
margin: 0;
position: relative;
}
.pane-sliders .title {
margin: 0;
padding: 2px;
cursor: pointer;
}
.pane-sliders .panel {
margin-bottom: 3px;
}
.pane-sliders .adminlist td {
border: 0 none;
}
h3.pane-toggler-down a:focus,
h3.pane-toggler a:focus {
outline: none;
}
.pane-toggler span {
padding-left: 20px;
}
.pane-toggler-down span {
padding-left: 20px;
}
.pane-slider.pane-hide {
display: none;
}
div#position-icon.pane-sliders div.pane-down div.quickicon-wrapper {
margin: 5px 0 5px 0;
}
div#position-icon.pane-sliders div.pane-down .quickicon-wrapper .icon {
padding: 5px 0 5px 10px;
margin: 0;
}
dl.tabs {
float: left;
margin: 10px 0 -1px 0;
z-index: 50;
}
dl.tabs dt {
float: left;
padding: 4px 10px;
margin-left: 3px;
}
dl.tabs dt.open {
z-index: 100;
}
div.current {
clear: both;
padding: 10px 10px;
}
div.current dd {
padding: 0;
margin: 0;
}
dl#content-pane.tabs {
margin: 1px 0 0 0;
}
div.current label,
div.current span.faux-label {
display: block;
min-width: 150px;
float: left;
clear: left;
margin-top: 8px;
}
div.current fieldset.radio {
float: left;
}
div.current fieldset.radio input {
clear: none;
min-width: 15px;
float: left;
margin: 3px 0 0 2px;
}
div.current fieldset.radio label {
clear: none;
min-width: 45px;
float: left;
margin: 3px 0 0 2px;
}
div.current fieldset.checkboxes {
float: left;
clear: right;
}
div.current fieldset.checkboxes input {
clear: left;
min-width: 15px;
float: left;
margin: 3px 0 0 2px;
}
div.current fieldset.checkboxes label {
clear: right;
min-width: 45px;
margin: 3px 0 0 2px;
}
div.current input,
div.current span.faux-input,
div.current textarea,
div.current select {
clear: none;
float: left;
margin: 3px 0 0 2px;
}
div.current select {
margin-bottom: 15px;
}
div.current table#acl-config th.acl-groups {
text-align: left;
}
div.current table#filter-config th.acl-groups {
text-align: left;
}
div.current table#filter-config select {
margin-bottom: 0;
}
div#menu-assignment {
clear: left;
}
div#menu-assignment ul.menu-links {
float: left;
width: 49%;
}
div#menu-assignment ul.menu-links label {
clear: none;
float: left;
margin: 3px 0 0 2px;
}
div#menu-assignment ul.menu-links input {
clear: left;
float: left;
}
button.jform-rightbtn {
float: right;
margin-right: 0;
}
p.tab-description {
font-size: 1.091em;
margin-left: 0;
margin-top: 5px;
}
#login-page input,
#login-page select {
float: right;
clear: none;
}
#login-page .login {
margin: 0 auto;
width: 575px;
margin-bottom: 100px;
}
#login-page .pagetitle h2 {
margin: -70px 0 30px 0;
font-size: 2em;
padding: 0;
}
#login-page p {
margin: 0;
padding: 0;
margin-bottom: 1em;
font-size: 1.2em;
}
#login-page #header {
margin-bottom: 100px;
}
#login-page .login-inst {
float: left;
width: 35%;
}
#login-page .login-box {
float: right;
width: 63%;
}
#login-page #lock {
width: 150px;
height: 137px;
}
#login-page #element-box.login {
padding: 20px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
#login-page .button {
text-align: right;
}
#login-page .login-text {
text-align: left;
width: 40%;
float: left;
}
#form-login {
float: right;
padding: 1.1em;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
#form-login fieldset {
border: none;
}
#form-login label {
display: block;
float: left;
clear: left;
width: 100px;
text-align: right;
padding: 4px;
color: #2c2c2c;
font-weight: bold;
font-size: 1.4em;
margin-bottom: 15px;
}
#form-login div.button1 div.next {
float: left;
}
#form-login div.button1 a {
height: 2.2em;
line-height: 2.2em;
font-size: 1.5em;
cursor: default;
padding: 0 15px 0 15px;
}
.login-submit {
border: 0;
padding: 0;
margin: 0;
width: 0;
height: 0;
}
#cpanel div.icon,
.cpanel div.icon {
text-align: center;
margin-right: 5px;
float: left;
margin-bottom: 5px;
}
#cpanel div.icon a,
.cpanel div.icon a {
display: block;
float: left;
height: auto;
min-height: 97px;
width: 108px;
color: #2c2c2c;
vertical-align: middle;
text-decoration: none;
font-weight: bold;
}
#cpanel img,
.cpanel img {
padding: 10px;
margin: 0 auto;
}
#cpanel span,
.cpanel span {
display: block;
text-align: center;
padding: 0 0 5px;
}
div.cpanel-icons {
width: 54%;
float: left;
}
div.cpanel-component {
width: 45%;
float: right;
}
div.col {
float: left;
}
div.options-section.col {
float: right;
}
div.col1 {
float: left;
width: 45%;
}
div.col2 {
float: right;
width: 45%;
}
div.width-1 {
width: 1%;
}
div.width-3 {
width: 3%;
}
div.width-5 {
width: 5%;
}
div.width-10 {
width: 10%;
}
div.width-20 {
width: 20%;
}
div.width-30 {
width: 30%;
}
div.width-35 {
width: 35%;
}
div.width-40 {
width: 40%;
}
div.width-45 {
width: 45%;
}
div.width-50 {
width: 50%;
}
div.width-55 {
width: 55%;
}
div.width-60 {
width: 60%;
}
div.width-65 {
width: 65%;
}
div.width-70 {
width: 70%;
}
div.width-80 {
width: 80%;
}
div.width-100 {
width: 100%;
}
.clrlft {
clear: left;
}
.clrrt {
clear: right;
}
.fltlft {
float: left;
}
.fltrt {
float: right;
}
.fltnone {
float: none;
}
div.main-section {
width: 60%;
}
div.options-section {
width: 38%;
margin: 10px 10px 10px 0;
}
div.width-40.fltrt {
width: 38%;
margin: 10px 10px 10px 0;
}
div.rules-section {
width: 98%;
margin: 10px;
}
fieldset {
margin: 2px 10px 2px 10px;
padding: 5px;
text-align: left;
}
legend {
font-size: 1.3em;
font-weight: bold;
padding-bottom: 5px;
}
fieldset p {
margin: 10px 0;
font-size: 1.2em;
}
fieldset ol,
ol#property-values,
fieldset ul,
ul#property-values {
margin: 0;
padding: 0;
}
fieldset li,
ol#property-values li,
ul#property-values li {
list-style: none;
margin: 0;
padding: 5px;
}
fieldset.adminform fieldset.radio,
fieldset.panelform fieldset.radio,
fieldset.adminform-legacy fieldset.radio {
border: 0;
float: left;
padding: 0;
margin: 0 0 5px 0;
clear: right;
}
fieldset.adminform fieldset.radio label,
fieldset.panelform fieldset.radio label,
fieldset.adminform fieldset.radio span.faux-label,
fieldset.panelform fieldset.radio span.faux-label {
min-width: 40px;
float: left;
clear: none;
}
fieldset.adminform fieldset.checkboxes,
fieldset.panelform fieldset.checkboxes,
fieldset.adminform-legacy fieldset.checkboxes {
border: 0;
float: left;
padding: 0;
margin: 0 0 5px 0;
clear: right;
}
fieldset.adminform fieldset.checkboxes input[type="checkbox"],
fieldset.panelform fieldset.checkboxes input[type="checkbox"] {
float: left;
clear: left;
}
fieldset.adminform fieldset.checkboxes label,
fieldset.panelform fieldset.checkboxes label,
fieldset.adminform fieldset.checkboxes span.faux-label,
fieldset.panelform fieldset.checkboxes span.faux-label {
clear: right;
}
div.current span.spacer > span.before,
fieldset.adminform span.spacer > span.before,
fieldset.panelform span.spacer > span.before {
clear: both;
overflow: hidden;
height: 0;
display: block;
}
fieldset.panelform-legacy label,
fieldset.adminform-legacy label,
fieldset.panelform-legacy span.faux-label,
fieldset.adminform-legacy span.faux-label {
min-width: 150px;
float: left;
}
fieldset.panelform-legacy label.radiobtn-jno,
fieldset.panelform-legacy label.radiobtn-jyes,
fieldset.panelform-legacy label.radiobtn-show,
fieldset.panelform-legacy label.radiobtn-hide,
fieldset.panelform-legacy label.radiobtn-off,
fieldset.panelform-legacy label.radiobtn-on {
min-width: 40px !important;
clear: none !important;
}
#jform_plugdesc-lbl,
#jform_description-lbl {
font-weight: bold;
clear: both;
margin-top: 15px;
}
p.jform_desc {
clear: left;
}
div#jform_ordering {
font-size: 1.091em;
margin-top: 3px;
}
fieldset ul.checklist {
margin-left: 27px;
}
fieldset ul.checklist input,
fieldset ul.checklist label {
float: none;
}
fieldset ul.checklist input:focus {
outline: thin dotted #333333;
}
fieldset#filter-bar {
margin: 0;
padding: 5px 10px 5px 10px;
float: left;
width: 98%;
}
fieldset#filter-bar ol,
fieldset#filter-bar ul {
list-style: none;
margin: 0;
padding: 5px 0 0;
}
fieldset#filter-bar ol li,
fieldset#filter-bar ul li {
float: left;
padding: 0 5px 0 0;
}
fieldset#filter-bar ol li fieldset,
fieldset#filter-bar ul li fieldset {
margin: 0;
padding: 0;
}
fieldset#filter-bar .filter-search {
float: left;
padding-bottom: 3px;
}
fieldset#filter-bar .filter-select {
float: right;
}
fieldset#filter-bar input#search {
width: 10em;
}
.invalid {
font-weight: bold;
}
input.readonly,
span.faux-input {
border: 0;
}
.star {
color: #cc0000;
font-size: 1.2em;
}
input,
select,
span.faux-input {
font-size: 1.2em;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
span.readonly {
float: left;
font-size: 1.2em;
line-height: 2em;
}
div.readonly {
font-size: 1.2em;
line-height: 2em;
}
div.extdescript {
margin-left: 10px;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
font-family: Arial, Helvetica, sans-serif;
padding: 1px 6px;
font-size: 1.2em;
line-height: 1.5em;
}
textarea {
font-size: 1.4em;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
input.button {
cursor: pointer;
}
label {
font-weight: bold;
font-size: 1.1em;
}
span.faux-label {
font-weight: bold;
font-size: 1.1em;
}
label.selectlabel {
position: absolute;
left: -1000em;
}
.paramrules {
padding: 10px;
}
span.gi {
font-weight: bold;
margin-right: 5px;
}
span.gtr {
visibility: hidden;
margin-right: 5px;
}
table.admintable td {
padding: 3px;
font-size: 1em;
}
table.admintable td.key,
table.admintable td.paramlist_key {
text-align: right;
width: 140px;
font-weight: bold;
font-size: 1em;
}
table.admintable td.key label,
table.admintable td.paramlist_key label {
font-size: 1em;
}
table.admintable td.paramlist_value label {
font-size: 1em;
}
table.admintable input,
table.admintable span.faux-input,
table.admintable select {
font-size: 1em;
}
table.paramlist td.paramlist_description {
text-align: left;
width: 170px;
font-weight: normal;
}
table.admintable td.key.vtop {
vertical-align: top;
}
fieldset.adminform {
margin: 0 10px 10px 10px;
overflow: hidden;
}
.adminformlist .btn.modal {
float: left;
margin-top: 7px;
}
ul.adminformlist,
ul.adminformlist li,
dl.adminformlist,
dl.adminformlist li {
margin: 0;
padding: 0;
list-style: none;
}
ul.adminformlist pre {
font-size: 1.3em;
}
ul.adminformlist .button2-left,
ul.adminformlist .button2-left {
margin-top: 5px;
}
table.adminform {
width: 100%;
border-collapse: collapse;
margin: 8px 0 10px 0;
margin-bottom: 15px;
}
table.adminform.nospace {
margin-bottom: 0;
}
table.adminform th {
font-size: 1.4em;
padding: 6px 2px 4px 4px;
text-align: left;
height: 25px;
}
table.adminform td {
padding: 3px;
text-align: left;
}
table.adminform td#filter-bar {
text-align: left;
}
table.adminform td.helpMenu {
text-align: right;
}
table.adminform tr {
padding-left: 10px;
padding-right: 10px;
}
td.center,
th.center {
text-align: center;
}
th.width-1 {
width: 1%;
}
th.width-3 {
width: 3%;
}
th.width-5 {
width: 5%;
}
th.width-10 {
width: 10%;
}
th.width-12 {
width: 12%;
}
th.width-15 {
width: 15%;
}
th.width-20 {
width: 20%;
}
th.width-25 {
width: 25%;
}
th.width-30 {
width: 30%;
}
th.width-40 {
width: 40%;
}
th.row-number-col {
width: 3%;
}
th.checkmark-col {
width: 1%;
}
th.state-col {
width: 5%;
}
th.ordering-col {
width: 10%;
}
th.ordering-col a {
display: block;
float: left;
margin-left: 3px;
}
th.ordering-col a img {
margin-left: 4px;
margin-right: 4px;
}
.categories th.ordering-col input,
.categories td.order input {
font-size: 1em;
}
th.category-col {
width: 5%;
}
th.access-col {
width: 10%;
}
.categories th.access-col {
width: 5%;
}
th.hits-col {
width: 5%;
}
th.id-col {
width: 3%;
}
th.featured-col {
width: 5%;
}
th.created-by-col {
width: 15%;
}
th.date-col {
width: 5%;
}
th.language-col {
width: 5%;
}
th.home-col {
width: 5%;
}
table.adminlist {
width: 100%;
float: left;
}
table.adminlist td,
table.adminlist th {
padding: 4px;
font-size: 1.2em;
}
table.adminlist thead th {
text-align: center;
}
table.adminlist thead a:hover {
text-decoration: none;
}
table.adminlist thead th img {
vertical-align: middle;
}
table.adminlist tbody th {
font-weight: bold;
}
table.adminlist tr {
padding-left: 30px;
padding-right: 30px;
}
table.adminlist tbody tr {
text-align: left;
}
table.adminlist tbody tr td,
table.adminlist tbody tr th {
height: 25px;
}
table.adminlist tfoot tr {
text-align: center;
}
table.adminlist tfoot td,
table.adminlist tfoot th {
text-align: center;
}
table.adminlist td.order {
text-align: center;
white-space: nowrap;
}
table.adminlist td.order span {
float: left;
width: 20px;
text-align: center;
}
table.adminlist td.order input {
text-align: center;
width: 3em;
font-size: 100%;
}
#media-tree_tree ul {
list-style: none outside none;
margin: 0 10px;
}
table.adminlist td.indent-4 {
padding-left: 4px;
}
table.adminlist td.indent-19 {
padding-left: 19px;
}
table.adminlist td.indent-34 {
padding-left: 34px;
}
table.adminlist td.indent-49 {
padding-left: 49px;
}
table.adminlist td.indent-64 {
padding-left: 64px;
}
table.adminlist td.indent-79 {
padding-left: 79px;
}
table.adminlist td.indent-94 {
padding-left: 94px;
}
table.adminlist td.indent-109 {
padding-left: 109px;
}
table.adminlist td.indent-124 {
padding-left: 124px;
}
table.adminlist td.indent-139 {
padding-left: 139px;
}
table.adminlist tr td.btns a {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
padding: 3px 20px;
}
table.adminlist tr td.btns a:hover,
table.adminlist tr td.btns a:active,
table.adminlist tr td.btns a:focus {
text-decoration: none;
}
table.adminlist td li {
list-style: inside;
}
ul#new-modules-list {
margin-left: 50px;
font-size: 1.4em;
line-height: 1.5em;
}
.clr {
clear: both;
overflow: hidden;
height: 0;
}
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.menu-module-list {
list-style-position: inside;
padding-left: 10px;
margin-left: 5px;
}
.container {
clear: both;
text-decoration: none;
}
* html .container {
display: inline-block;
}
table.noshow {
width: 100%;
border-collapse: collapse;
padding: 0;
margin: 0;
}
table.noshow tr {
vertical-align: top;
}
table.noshow fieldset {
margin: 15px 7px 7px 7px;
}
a.saveorder {
width: 16px;
height: 16px;
display: block;
overflow: hidden;
float: right;
margin-right: 8px;
}
#editor-xtd-buttons {
padding: 5px;
}
button {
font-family: Arial, Helvetica, sans-serif;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
margin-right: 3px;
margin-left: 3px;
}
.invalid {
font-weight: bold;
}
.button1,
.button1 div {
height: 1%;
float: right;
}
.button1 {
white-space: nowrap;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.button1 a {
display: block;
height: 2.2em;
float: left;
line-height: 2.2em;
font-size: 1.2em;
font-weight: bold;
cursor: default;
padding: 0 6px 0 6px;
}
.button1 a:hover,
.button1 a:focus {
text-decoration: none;
}
.button2-left,
.button2-right {
float: left;
line-height: 1.5em;
font-size: 1.2em;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.button2-left.smallsub,
.button2-right.smallsub {
line-height: 1.2em;
font-size: .9em;
}
.button2-left a,
.button2-right a,
.button2-left span,
.button2-right span {
display: block;
float: left;
cursor: default;
}
.button2-left span,
.button2-right span {
cursor: default;
}
.button2-left .page a,
.button2-right .page a,
.button2-left .page span,
.button2-right .page span,
.button2-left .blank a,
.button2-right .blank a,
.button2-left .blank span,
.button2-right .blank span {
padding: 0 6px;
}
.page span,
.blank span {
font-weight: bold;
}
.button2-left a:hover,
.button2-right a:hover,
.button2-left a:focus,
.button2-right a:focus {
text-decoration: none;
}
.button2-left a,
.button2-left span {
padding: 0 24px 0 6px;
}
.button2-right a,
.button2-right span {
padding: 0 6px 0 24px;
}
.button2-left {
float: left;
margin-left: 5px;
}
.button2-right {
float: left;
margin-left: 5px;
}
div.containerpg {
position: relative;
left: 50%;
float: left;
clear: left;
}
div.pagination {
position: relative;
left: -50%;
margin: 0 auto;
padding: .5em;
}
.pagination div.limit {
float: left;
margin: 0 10px;
font-size: 1.2em;
height: 1.8em;
line-height: 1.8em;
}
.pagination div.limit label {
font-size: 100%;
height: 1.8em;
line-height: 1.8em;
}
.pagination div.limit select {
font-size: 100%;
}
.pagination button {
font-size: 100%;
height: 2.0em;
line-height: 1.8em;
margin-right: 20px;
}
div.pagination .button2-right,
div.pagination .button2-left {
font-size: 1.2em;
height: 1.6em;
line-height: 1.6em;
}
table.adminlist .pagination {
display: table;
padding: 0;
margin: 0 auto;
font-size: .8em;
}
table.adminlist .pagination button {
font-size: 1.2em;
height: 1.6em;
line-height: 1.5em;
margin-right: 20px;
}
div.toggle-editor {
margin-top: 9px;
}
.tip {
float: left;
padding: 5px;
max-width: 400px;
z-index: 50;
}
.tip-title {
padding: 0;
margin: 0;
font-size: 120%;
margin-top: -15px;
padding-top: 15px;
padding-bottom: 5px;
}
.tip-text {
font-size: 100%;
text-align: left;
margin: 0;
}
a img.calendar {
width: 16px;
height: 16px;
margin-left: 3px;
cursor: pointer;
vertical-align: middle;
}
a.jgrid:hover {
text-decoration: none;
}
.jgrid span.state {
display: inline-block;
height: 16px;
width: 16px;
}
.jgrid span.text {
display: none;
}
div.message {
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 1.2em;
padding: 3px;
margin-bottom: 10px;
font-weight: bold;
}
.helpIndex {
border: 0;
width: 100%;
height: 100%;
padding: 0;
overflow: auto;
}
.helpFrame {
width: 100%;
height: 800px;
padding: 0 5px 0 10px;
}
#treecellhelp {
width: 25%;
display: block;
position: relative;
float: left;
margin: 0;
padding: 2px;
overflow: hidden;
}
#datacellhelp {
width: 73%;
display: block;
float: left;
margin: 0;
padding: 2px 0 0 0;
}
.outline {
padding: 2px;
}
h2.modal-title {
margin-left: 15px;
margin-bottom: 0;
margin-top: 5px;
font-size: 1.8em;
padding-bottom: .5em;
}
ul.menu_types {
padding: 0 0 0 15px;
width: 95%;
margin: 0;
}
ul.menu_types li,
dl.menu_type dd ul li {
width: 240px;
list-style: none;
display: block;
float: left;
margin-right: 10px;
}
ul.menu_types li {
width: 47%;
}
dl.menu_type {
width: 240px;
margin: 0;
padding: 0;
}
dl.menu_type dt {
font-weight: bold;
font-size: 1.5em;
float: left;
margin: 13px 0 5px 0;
width: 240px;
}
dl.menu_type dd {
clear: left;
margin: 0;
}
dl.menu_type dd a {
font-size: 1.2em;
}
dl.menu_type dd ul li {
margin: 0;
}
ul#new-modules-list {
padding: 5px 0 0 15px;
width: 95%;
margin: 0;
list-style: none;
}
ul#new-modules-list li {
list-style: none;
display: block;
float: left;
margin: 0 20px 0 0;
width: 47%;
}
ul#new-modules-list li a {
font-size: 1em;
line-height: 1.5em;
}
body.contentpane #filter-bar {
font-size: 80%;
}
body.contentpane input,
body.contentpane select {
font-size: 120%;
}
#filter-bar input,
#filter-bar select,
#filter-bar button {
font-size: 110%;
}
#skiplinkholder a,
#skiplinkholder a:link,
#skiplinkholder a:visited {
display: block;
width: 99%;
position: absolute;
top: 0;
left: -200%;
z-index: 2;
}
#skiplinkholder a:focus,
#skiplinkholder a:active {
left: 0;
top: 0;
z-index: 100;
}
#skiplinkholder p {
margin: 0;
}
#skiptargetholder {
position: absolute;
left: -200%;
}
#skiplinkholder a,
#skiplinkholder a:link,
#skiplinkholder a:visited {
text-decoration: underline;
padding: 5px;
font-size: 1.3em;
font-weight: bold;
padding-left: 20px;
padding-right: 20px;
}
.body-overlayed a,
.body-overlayed input,
.body-overlayed button {
visibility: hidden;
}
.body-overlayed #sbox-window a,
.body-overlayed #sbox-window input,
.body-overlayed #sbox-window button {
visibility: visible;
}
.element-hidden,
.hide {
display: none;
}
.hidebtn {
border: 0 !important;
padding: 0 !important;
margin: 0;
width: 0;
height: 0;
}
.element-invisible,
.hidelabeltxt {
height: 0;
overflow: hidden;
position: absolute;
padding: 0;
margin: 0;
}
legend.element-invisible {
position: absolute !important;
margin: 0;
padding: 0;
border: 0;
margin-left: -10000px;
font-size: 1px;
height: 0;
}
fieldset.panelform {
overflow: hidden;
clear: both;
}
fieldset.adminform label,
fieldset.panelform label,
fieldset.adminform span.faux-label,
fieldset.panelform span.faux-label {
line-height: 2em;
clear: left;
min-width: 12em;
float: left;
margin-left: 10px;
margin-right: 5px;
}
fieldset.adminform.long label,
fieldset.panelform.long label,
fieldset.adminform.long span.faux-label,
fieldset.panelform.long span.faux-label {
min-width: 18em;
}
fieldset.adminform fieldset.radio label,
fieldset.panelform fieldset.radio label,
fieldset.adminform fieldset.radio span.faux-label,
fieldset.panelform fieldset.radio span.faux-label {
margin-left: 0;
}
fieldset.adminform input,
fieldset.adminform span.faux-input,
fieldset.adminform textarea,
fieldset.adminform select,
fieldset.adminform img,
fieldset.adminform button,
fieldset.panelform input,
fieldset.panelform span.faux-input,
fieldset.panelform textarea,
fieldset.panelform select,
fieldset.panelform img,
fieldset.panelform button {
float: left;
margin: 5px 5px 5px 0;
width: auto;
}
fieldset.batch {
margin: 20px 10px 10px 10px;
padding: 10px;
}
fieldset.batch label {
margin: 5px;
min-width: 40px;
}
fieldset.batch button {
margin: 3px;
}
fieldset#batch-choose-action {
clear: left;
border: 0 none;
}
fieldset.batch label {
float: left;
clear: none;
}
fieldset label#batch-choose-action-lbl {
clear: left;
margin-top: 15px;
}
label#batch-language-lbl,
label#batch-user-lbl {
clear: left;
margin-right: 10px;
margin-top: 15px;
}
select#batch-language-id,
select#batch-user-id {
margin-top: 15px;
}
select#batch-category-id,
select#batch-position-id,
select#batch-menu-id {
margin-right: 30px;
}
fieldset.batch select,
fieldset.batch input,
fieldset.batch img,
fieldset.batch button {
float: left;
}
label#batch-access-lbl,
label#batch-client-lbl {
margin-right: 10px;
}
div#jform_ordering {
font-size: 1.091em;
margin-top: 3px;
}
#jform_impmade,
#jform_clicks {
width: 30px;
}
fieldset.panelform label#jform-imp {
min-width: 3em;
font-size: 1.091em;
}
fieldset.adminform input#jform_clickurl {
width: 20em;
}
a.move_up {
display: inline-block;
height: 16px;
text-indent: -1000em;
width: 16px;
}
span.move_up {
display: inline-block;
height: 16px;
width: 16px;
}
a.move_down {
display: inline-block;
height: 16px;
text-indent: -1000em;
width: 16px;
}
span.move_down {
display: inline-block;
height: 16px;
width: 16px;
}
a.grid_false {
display: inline-block;
height: 16px;
text-indent: -1000em;
width: 16px;
}
a.grid_true {
display: inline-block;
height: 16px;
text-indent: -1000em;
width: 16px;
}
a.grid_trash {
display: inline-block;
height: 16px;
text-indent: -1000em;
width: 16px;
}
div.acl-options {
width: 100%;
}
table.aclsummary-table,
table.aclmodify-table {
border-collapse: collapse;
width: 100%;
font-size: 1.091em;
}
td.col1 {
font-size: 1.091em;
text-align: left;
padding: 4px;
}
table.aclsummary-table caption,
table.aclmodify-table caption {
display: none;
}
table.aclsummary-table th.col1 {
width: 25%;
}
table.aclsummary-table th.col2,
table.aclsummary-table th.col3,
table.aclsummary-table th.col4,
table.aclsummary-table th.col5,
table.aclsummary-table th.col6 {
width: 15%;
vertical-align: bottom;
text-align: center;
}
span.icon-16-unset,
span.icon-16-allowed,
span.icon-16-denied,
span.icon-16-locked {
padding-left: 18px;
}
label.icon-16-allow,
label.icon-16-deny,
a.icon-16-allow,
a.icon-16-deny,
a.icon-16-allowinactive,
a.icon-16-denyinactive {
display: block;
height: 16px;
width: 16px;
margin: 0 auto;
}
label.icon-16-allow {
text-indent: -9999em;
position: relative;
left: 40%;
}
label.icon-16-deny {
text-indent: -9999em;
position: relative;
left: 40%;
}
table.aclmodify-table th.col2,
table.aclmodify-table th.col3,
table.aclmodify-table th.col4 {
width: 20%;
vertical-align: bottom;
text-align: center;
}
table.aclmodify-table select {
margin: 1px;
}
table.aclsummary-table td label,
table.aclmodify-table td label {
min-width: 20px;
}
ul.acllegend {
list-style: none;
font-size: 1.091em;
padding-bottom: 10px;
}
ul.acllegend li {
display: block;
float: left;
padding-right: 20px;
margin: 15px 0 15px 10px;
}
ul.acllegend li.acl-allowed {
padding-left: 20px;
padding-right: 10px;
}
ul.acllegend li.acl-denied {
padding-left: 20px;
padding-right: 20px;
}
ul.acllegend li.acl-editgroups {
padding-right: 10px;
}
ul.acllegend li.acl-resetbtn {
padding-right: 0;
}
li.acl-editgroups,
li.acl-resetbtn {
display: block;
float: left;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
li.acl-editgroups a,
li.acl-resetbtn a {
padding: 6px;
cursor: default;
}
li.acl-editgroups a:hover,
li.acl-resetbtn a:hover,
li.acl-editgroups a:focus,
li.acl-resetbtn a:focus {
text-decoration: none;
cursor: default;
}
li.acl-editgroups:hover,
li.acl-resetbtn:hover,
li.acl-editgroups:focus,
li.acl-resetbtn:focus {
text-decoration: none;
cursor: default;
}
table#acl-config {
width: 100%;
margin-top: 15px;
}
table#acl-config th,
table#acl-config td {
height: 2em;
background: #f9fade;
text-align: center;
vertical-align: middle;
}
table#acl-config th.acl-groups {
padding-left: 8px;
font-weight: bold;
text-align: left;
}
table#acl-config th.acl-groups span.gi {
margin-right: 2px;
}
table#acl-config td {
width: 9em;
}
table#acl-config td select {
float: none;
}
.acl-action {
font-size: 1.091em;
margin: auto 0;
}
.acl-groups {
font-size: 1.091em;
font-weight: normal;
}
label#jform_rules-lbl {
float: none;
white-space: nowrap;
display: none;
visibility: hidden;
}
label#jform_filters-lbl {
float: none;
white-space: nowrap;
display: none;
visibility: hidden;
}
ul.config-option-list,
ul.config-option-list li {
margin: 0;
padding: 0;
list-style: none;
}
ul.config-option-list fieldset {
margin: 0;
padding-left: 0;
padding-right: 0;
}
#permissions-sliders {
margin-top: 15px;
}
#permissions-sliders ul#rules,
#permissions-sliders ul#rules ul {
margin: 0 !important;
padding: 0 !important;
list-style-type: none;
}
#permissions-sliders ul#rules li {
margin: 0;
padding: 0;
}
#permissions-sliders ul#rules table.group-rules {
border-collapse: collapse;
margin: 5px;
width: 100%;
}
#permissions-sliders ul#rules table.group-rules td {
padding: 4px;
vertical-align: middle;
text-align: left;
overflow: hidden;
}
#permissions-sliders ul#rules table.group-rules th {
font-size: 1.2em;
overflow: hidden;
font-weight: bold;
}
#permissions-sliders .panel {
margin-bottom: 3px;
margin-left: 0;
border: 0;
}
#permissions-sliders p.rule-desc {
font-size: 1.1em;
}
#permissions-sliders div.rule-notes {
font-size: 1.1em;
}
ul#rules table.group-rules td label {
margin: 0 !important;
line-height: 1.1em;
}
ul#rules table.group-rules td span {
font-size: 1.1em;
padding-bottom: 4px;
}
ul#rules table.group-rules td span span {
font-size: 100%;
}
table.group-rules td select {
margin: 0 !important;
}
#permissions-sliders ul#rules .mypanel {
padding: 0;
line-height: 1.3em;
}
#permissions-sliders .mypanel table.group-rules caption {
font-size: 1.3em;
}
#permissions-sliders ul#rules {
padding: 5px;
}
#permissions-sliders ul#rules table.group-rules th {
text-align: left;
padding: 4px;
}
#permissions-sliders ul#rules table.group-rules td label {
min-width: 1em;
}
#permissions-sliders .pane-toggler span {
padding-left: 20px;
}
#permissions-sliders .pane-toggler-down span {
padding-left: 20px;
}
#permissions-sliders .pane-toggler-down span.level,
#permissions-sliders .pane-toggler span.level {
padding: 0;
}
.swatch {
text-align: center;
padding: 0 15px 0 15px;
}
dl.tabs dt h3 {
padding: 0;
font-size: 100%;
}
ul.helpmenu li {
float: right;
margin: 10px;
padding: 0;
list-style-type: none;
font-weight: bold;
}
#menu {
position: relative;
z-index: 100;
padding: 0;
margin: 0;
width: 100%;
list-style: none;
font-size: 1.2em;
font-weight: bold;
}
#menu ul {
padding: 0;
margin: 0;
list-style: none;
font-size: 100%;
}
#menu ul li.separator {
margin-bottom: 1em;
}
#menu a {
padding: 0.35em 2.5em 0.35em 2em;
vertical-align: middle;
display: block;
text-decoration: none;
font-size: 100%;
}
#menu li {
float: left;
font-size: 100%;
}
#menu li a {
white-space: nowrap;
}
#menu li li a {
margin-bottom: 1px;
margin-top: 1px;
width: 10em;
}
#menu li.disabled a:hover,
#menu li.disabled a:focus,
#menu li.disabled a {
cursor: default;
}
#menu li ul {
position: absolute;
width: 16em;
margin-left: -1000em;
}
#menu li li {
border: none;
width: 16em;
}
#menu li ul ul {
margin: -2.3em 0 0 -1000em;
}
#menu li:hover ul ul,
#menu li.sfhover ul ul {
margin-left: -1000em;
}
#menu li:hover ul,
#menu li.sfhover ul {
margin-left: 0;
}
#menu li li:hover ul,
#menu li li.sfhover ul {
margin-left: 16em;
}
[class^="menu-"],
[class*=" menu-"] {
background-position: 3px 50% !important;
}
.menu-archive {
background-image: url(../images/menu/icon-16-archive.png);
}
.menu-article {
background-image: url(../images/menu/icon-16-article.png);
}
.menu-banners {
background-image: url(../images/menu/icon-16-banner.png);
}
.menu-banners-clients {
background-image: url(../images/menu/icon-16-banner-client.png);
}
.menu-banners-tracks {
background-image: url(../images/menu/icon-16-banner-tracks.png);
}
.menu-banners-cat {
background-image: url(../images/menu/icon-16-banner-categories.png);
}
.menu-category {
background-image: url(../images/menu/icon-16-category.png);
}
.menu-checkin {
background-image: url(../images/menu/icon-16-checkin.png);
}
.menu-clear {
background-image: url(../images/menu/icon-16-clear.png);
}
.menu-component {
background-image: url(../images/menu/icon-16-component.png);
}
.menu-config {
background-image: url(../images/menu/icon-16-config.png);
}
.menu-contact {
background-image: url(../images/menu/icon-16-contacts.png);
}
.menu-contact-cat {
background-image: url(../images/menu/icon-16-contacts-categories.png);
}
.menu-content {
background-image: url(../images/menu/icon-16-content.png);
}
.menu-cpanel {
background-image: url(../images/menu/icon-16-cpanel.png);
}
.menu-default {
background-image: url(../images/menu/icon-16-default.png);
}
.menu-featured {
background-image: url(../images/menu/icon-16-featured.png);
}
.menu-groups {
background-image: url(../images/menu/icon-16-groups.png);
}
.menu-help {
background-image: url(../images/menu/icon-16-help.png);
}
.menu-help-this {
background-image: url(../images/menu/icon-16-help-this.png);
}
.menu-help-forum {
background-image: url(../images/menu/icon-16-help-forum.png);
}
.menu-help-docs {
background-image: url(../images/menu/icon-16-help-docs.png);
}
.menu-help-jed {
background-image: url(../images/menu/icon-16-help-jed.png);
}
.menu-help-jrd {
background-image: url(../images/menu/icon-16-help-jrd.png);
}
.menu-help-community {
background-image: url(../images/menu/icon-16-help-community.png);
}
.menu-help-security {
background-image: url(../images/menu/icon-16-help-security.png);
}
.menu-help-dev {
background-image: url(../images/menu/icon-16-help-dev.png);
}
.menu-help-shop {
background-image: url(../images/menu/icon-16-help-shop.png);
}
.menu-info {
background-image: url(../images/menu/icon-16-info.png);
}
.menu-install {
background-image: url(../images/menu/icon-16-install.png);
}
.menu-joomlaupdate {
background-image: url(../images/menu/icon-16-install.png);
}
.menu-language {
background-image: url(../images/menu/icon-16-language.png);
}
.menu-levels {
background-image: url(../images/menu/icon-16-levels.png);
}
.menu-logout {
background-image: url(../images/menu/icon-16-logout.png);
}
.menu-maintenance {
background-image: url(../images/menu/icon-16-maintenance.png);
}
.menu-massmail {
background-image: url(../images/menu/icon-16-massmail.png);
}
.menu-media {
background-image: url(../images/menu/icon-16-media.png);
}
.menu-menu {
background-image: url(../images/menu/icon-16-menu.png);
}
.menu-menumgr {
background-image: url(../images/menu/icon-16-menumgr.png);
}
.menu-messages {
background-image: url(../images/menu/icon-16-messaging.png);
}
.menu-messages-add {
background-image: url(../images/menu/icon-16-new-privatemessage.png);
}
.menu-messages-read {
background-image: url(../images/menu/icon-16-messages.png);
}
.menu-module {
background-image: url(../images/menu/icon-16-module.png);
}
.menu-newarticle {
background-image: url(../images/menu/icon-16-newarticle.png);
}
.menu-newcategory {
background-image: url(../images/menu/icon-16-newcategory.png);
}
.menu-newgroup {
background-image: url(../images/menu/icon-16-newgroup.png);
}
.menu-newlevel {
background-image: url(../images/menu/icon-16-newlevel.png);
}
.menu-newuser {
background-image: url(../images/menu/icon-16-newuser.png);
}
.menu-plugin {
background-image: url(../images/menu/icon-16-plugin.png);
}
.menu-profile {
background-image: url(../images/menu/icon-16-user.png);
}
.menu-purge {
background-image: url(../images/menu/icon-16-purge.png);
}
.menu-readmess {
background-image: url(../images/menu/icon-16-readmess.png);
}
.menu-section {
background-image: url(../images/menu/icon-16-section.png);
}
.menu-static {
background-image: url(../images/menu/icon-16-static.png);
}
.menu-stats {
background-image: url(../images/menu/icon-16-stats.png);
}
.menu-themes {
background-image: url(../images/menu/icon-16-themes.png);
}
.menu-trash {
background-image: url(../images/menu/icon-16-trash.png);
}
.menu-user {
background-image: url(../images/menu/icon-16-user.png);
}
.menu-user-note {
background-image: url(../images/menu/icon-16-user-note.png);
}
.menu-delete {
background-image: url(../images/menu/icon-16-delete.png);
}
.menu-help-trans {
background-image: url(../images/menu/icon-16-help-trans.png);
}
.menu-newsfeeds {
background-image: url(../images/menu/icon-16-newsfeeds.png);
}
.menu-newsfeeds-cat {
background-image: url(../images/menu/icon-16-newsfeeds-cat.png);
}
.menu-redirect {
background-image: url(../images/menu/icon-16-redirect.png);
}
.menu-search {
background-image: url(../images/menu/icon-16-search.png);
}
.menu-finder {
background-image: url(../images/menu/icon-16-search.png);
}
.menu-weblinks {
background-image: url(../images/menu/icon-16-links.png);
}
.menu-weblinks-cat {
background-image: url(../images/menu/icon-16-links-cat.png);
}
.menu-tags {
background-image: url(../images/menu/icon-16-tags.png);
}
.menu-postinstall {
background-image: url(../images/menu/icon-16-generic.png);
}
.icon-32-cog {
background-image: url(../images/toolbar/icon-32-cog.png);
}
#menu li a:focus+ul {
margin-left: 0;
}
#menu li li a:focus+ul {
margin-left: 1016em;
}
#menu li li a:focus {
margin-left: 1000em;
width: 10em;
}
#menu li li li a:focus {
margin-left: 2016em;
width: 10em;
}
#menu li:hover a:focus,
#menu li.sfhover a.sffocus {
margin-left: 0;
}
#menu li li:hover a:focus+ul,
#menu li li.sfhover a.sffocus+ul {
margin-left: 16em;
}
#sidebar {
float: left;
margin: 15px 5px;
}
#submenu {
list-style: none;
padding: 0;
margin: 0;
padding-bottom: 2.5em;
line-height: 2em;
}
#submenu ul,
#submenu li {
display: inline;
list-style-type: none;
margin: 0;
padding: 0;
}
#submenu li,
#submenu span.nolink {
float: left;
font-weight: bold;
margin-right: 8px;
padding: 2px 10px 2px 10px;
text-decoration: none;
cursor: pointer;
-moz-border-radius-topright: 3px;
-moz-border-radius-topleft: 3px;
-webkit-border-top-right-radius: 3px;
-webkit-border-top-left-radius: 3px;
border-top-right-radius: 3px;
border-top-left-radius: 3px;
}
#submenu span.nolink {
color: #999;
}
#submenu li.active,
#submenu span.nolink.active {
cursor: default;
}
#submenu li.active a,
#submenu span.nolink.active,
#submenu li a:hover,
#submenu li a:focus {
text-decoration: none;
}
.red {
font-weight: bold;
color: #c00;
}
.pre_message {
font-size: 1.3em;
}
span.update-badge {
background-image: -moz-linear-gradient(center bottom,#FF0000 41%,#FC7E7E 79%);
background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.41,#ff0000),color-stop(0.79,#fc7e7e));
border: 2px solid white;
border-radius: 1.5em 1.5em 1.5em 1.5em;
color: white;
display: block;
float: left;
font-size: 1.2em;
font-weight: bold;
height: 1.2em;
left: 60px;
min-width: 1em;
padding: 0 0.1em 0;
position: relative;
top: -88px;
}
.unotes ul,
.unotes ol {
list-style: none;
list-style-position: inside;
padding-left: 0;
padding-right: 0;
}
.unotes div.utitle {
padding: 10px;
float: left;
font-size: 1.2em;
line-height: 1.2em;
}
.unotes h4 {
margin-top: 0;
margin-bottom: 0;
font-size: 1.3em;
}
.unotes .ubody {
padding-left: 10px;
padding-right: 10px;
font-size: 1.2em;
line-height: 1.5em;
}
.unotes p {
padding-bottom: 10px;
}
div#database-sliders {
margin: 10px;
}
fieldset.uploadform {
margin-top: 10px;
margin-bottom: 10px;
}
fieldset.uploadform .control-group,
fieldset.uploadform .form-actions {
display: inline-block;
}
#installer-database,
#installer-discover,
#installer-update,
#installer-warnings {
margin-top: 10px;
}
#installer-database #sidebar {
float: none;
}
#installer-database p.warning {
padding-left: 20px;
}
#installer-database p.nowarning {
padding-left: 20px;
}
.joomlaupdate_spinner {
float: left;
margin-right: 15px;
}
.btn-group {
position: relative;
display: inline-block;
}
.btn-group + .btn-group {
margin-left: 5px;
}
.btn-group > .btn {
position: relative;
float: left;
margin-left: -1px;
}
.icon-48-cpanel {
height: 50px;
width: 50%;
}
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #eee;
border: 1px solid rgba(0,0,0,0.05);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
}
.well blockquote {
border-color: #ddd;
border-color: rgba(0,0,0,0.15);
}
.well-large {
padding: 24px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
}
.well-small {
padding: 9px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.list-striped,
.row-striped {
list-style: none;
line-height: 18px;
text-align: left;
vertical-align: middle;
border-top: 1px solid #dddddd;
margin-left: 0;
font-size: 1.2em;
padding: 9px;
}
.list-striped li,
.list-striped dd,
.row-striped .row,
.row-striped .row-fluid {
border-bottom: 1px solid #dddddd;
padding: 8px;
}
.list-striped li:nth-child(odd),
.list-striped dd:nth-child(odd),
.row-striped .row:nth-child(odd),
.row-striped .row-fluid:nth-child(odd) {
background-color: #f9f9f9;
}
.list-striped li:hover,
.list-striped dd:hover,
.row-striped .row:hover,
.row-striped .row-fluid:hover {
background-color: #f5f5f5;
}
.row-striped .row-fluid {
width: 97%;
}
.row-striped .row-fluid [class*="span"] {
min-height: 10px;
}
.alert {
padding: 8px 35px 8px 14px;
margin-bottom: 18px;
text-shadow: 0 1px 0 rgba(255,255,255,0.5);
background-color: #fcf8e3;
border: 1px solid #fbeed5;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color: #c09853;
font-size: 120%;
}
.alert-heading {
color: inherit;
}
.alert .close {
position: relative;
right: -30px;
top: -5px;
line-height: 18px;
float: right;
font-size: 20px;
font-weight: bold;
}
.alert-success {
background-color: #dff0d8;
border-color: #d6e9c6;
color: #468847;
}
.alert-danger,
.alert-error {
background-color: #f2dede;
border-color: #eed3d7;
color: #b94a48;
}
.alert-info {
background-color: #d9edf7;
border-color: #bce8f1;
color: #3a87ad;
}
.alert-block {
padding-top: 14px;
padding-bottom: 14px;
}
.alert-block > p,
.alert-block > ul {
margin-bottom: 0;
}
.alert-block p + p {
margin-top: 5px;
}
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active {
z-index: 2;
}
.btn-group > .btn {
position: relative;
float: left;
margin-left: -1px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
table {
max-width: 100%;
background-color: transparent;
border-collapse: collapse;
border-spacing: 0;
}
.table {
width: 100%;
margin-bottom: 18px;
}
.tab-content > .tab-pane,
.pill-content > .pill-pane {
display: none;
}
.tab-content > .active,
.pill-content > .active {
display: block;
}
.tabs-below > .nav-tabs {
border-top: 1px solid #ddd;
}
#status .btn-toolbar,
#status p {
margin: 0px;
}
.navbar .btn-group {
margin: 0;
padding: 5px 5px 6px;
}
.media .btn {
margin: 10px 20px;
}
.thumbnails > li {
list-style: none outside none;
float: left;
margin-bottom: 18px;
margin-left: 20px;
}
#mediamanager-form {
margin: 10px;
}
.is-tagbox {
float: left;
}
.item-associations {
margin: 0;
}
.item-associations li {
list-style: none;
display: inline-block;
margin: 0 0 3px 0;
}
.item-associations li a,
table.adminlist .item-associations li a {
color: #ffffff;
}
.hidden {
display: none;
visibility: hidden;
}
.tooltip {
position: absolute;
z-index: 1030;
display: block;
visibility: visible;
font-size: 11px;
line-height: 1.4;
opacity: 0;
filter: alpha(opacity=0);
}
.tooltip.in {
opacity: 0.8;
filter: alpha(opacity=80);
}
.tooltip.top {
margin-top: -3px;
padding: 5px 0;
}
.tooltip.right {
margin-left: 3px;
padding: 0 5px;
}
.tooltip.bottom {
margin-top: 3px;
padding: 5px 0;
}
.tooltip.left {
margin-left: -3px;
padding: 0 5px;
}
.tooltip-inner {
max-width: 200px;
padding: 8px;
color: #ffffff;
text-align: center;
text-decoration: none;
background-color: #000000;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #000000;
}
.tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-width: 5px 5px 5px 0;
border-right-color: #000000;
}
.tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-width: 5px 0 5px 5px;
border-left-color: #000000;
}
.tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000000;
}
.tooltip {
max-width: 400px;
}
.tooltip-inner {
max-width: none;
text-align: left;
text-shadow: none;
}
th .tooltip-inner {
font-weight: normal;
}
.tooltip.hasimage {
opacity: 1;
}
fieldset.panelform .tooltip img {
float: none;
margin: 0;
}
div.toggle-editor {
float: right;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.module-edit {
display: inline-block;
}
.break-word {
word-break: break-all;
word-wrap: break-word;
}
.muted {
color: #999;
}
|
src/dSFMT/html/d_s_f_m_t_8h.html | jtalbot/fungi | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>dSFMT: dSFMT.h File Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.5 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>dSFMT.h File Reference</h1>double precision SIMD oriented Fast Mersenne Twister(dSFMT) pseudorandom number generator based on IEEE 754 format. <a href="#_details">More...</a>
<p>
<code>#include <stdio.h></code><br>
<code>#include <assert.h></code><br>
<code>#include <inttypes.h></code><br>
<p>
<a href="d_s_f_m_t_8h-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Data Structures</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">union </td><td class="memItemRight" valign="bottom"><a class="el" href="union_w128___t.html">W128_T</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">128-bit data structure <a href="union_w128___t.html#_details">More...</a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">struct </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_d_s_f_m_t___t.html">DSFMT_T</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">the 128-bit internal state array <a href="struct_d_s_f_m_t___t.html#_details">More...</a><br></td></tr>
<tr><td colspan="2"><br><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#eda2790c35e4e205219e3c0ef1a2dd0a">DSFMT_MEXP</a> 19937</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#3b6595773bfd02df5481e6a459071a1c">DSFMT_N</a> ((DSFMT_MEXP - 128) / 104 + 1)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">DSFMT generator has an internal state array of 128-bit integers, and N is its size. <a href="#3b6595773bfd02df5481e6a459071a1c"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#a0bbbd372d361b7fe3ea3ec2013c9097">DSFMT_N32</a> (DSFMT_N * 4)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">N32 is the size of internal state array when regarded as an array of 32-bit integers. <a href="#a0bbbd372d361b7fe3ea3ec2013c9097"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#36560990b64532b75e95bf5b683599dc">DSFMT_N64</a> (DSFMT_N * 2)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">N64 is the size of internal state array when regarded as an array of 64-bit integers. <a href="#36560990b64532b75e95bf5b683599dc"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#00d24c7231be28dbaf71f5408f30e44c">inline</a></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#c582131d7a7c8ee57e73180d1714f9d5">PRIu64</a> "llu"</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#ba38357387a474f439428dee1984fc5a">PRIx64</a> "llx"</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#014ce50c36f4de34281551e4da3d5195">UINT64_C</a>(v) (v ## ULL)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#7490eb8287e4754e4e30153135f496e9">DSFMT_PRE_INLINE</a> inline static</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">#define </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#5842d43aa58fb6f026a8fdc02cb15455">DSFMT_PST_INLINE</a></td></tr>
<tr><td colspan="2"><br><h2>Typedefs</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">typedef union <a class="el" href="union_w128___t.html">W128_T</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#b1ee414cba9ca0f33a3716e7a92c2b79">w128_t</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">128-bit data type <a href="#b1ee414cba9ca0f33a3716e7a92c2b79"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">typedef struct <a class="el" href="struct_d_s_f_m_t___t.html">DSFMT_T</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#7e8239b4bedf4e53d5168d21848ab7af">dsfmt_t</a></td></tr>
<tr><td colspan="2"><br><h2>Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#fccb1e4d75cea7ffe3b45cba53d1e5e0">dsfmt_gen_rand_all</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function fills the internal state array with double precision floating point pseudorandom numbers of the IEEE 754 format. <a href="#fccb1e4d75cea7ffe3b45cba53d1e5e0"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#6ad6f12b9a47ea89ceab693b1eec5079">dsfmt_fill_array_open_close</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt, double array[], int size)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates double precision floating point pseudorandom numbers which distribute in the range (0, 1] to the specified array[] by one call. <a href="#6ad6f12b9a47ea89ceab693b1eec5079"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#243fb9ed1b61233f3dba4ab15c541eb0">dsfmt_fill_array_close_open</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt, double array[], int size)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates double precision floating point pseudorandom numbers which distribute in the range [0, 1) to the specified array[] by one call. <a href="#243fb9ed1b61233f3dba4ab15c541eb0"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#eed310e17f9f652c1b0ec86298c834c1">dsfmt_fill_array_open_open</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt, double array[], int size)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates double precision floating point pseudorandom numbers which distribute in the range (0, 1) to the specified array[] by one call. <a href="#eed310e17f9f652c1b0ec86298c834c1"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#beef257039f3b95b7475bbecdb521b89">dsfmt_fill_array_close1_open2</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt, double array[], int size)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates double precision floating point pseudorandom numbers which distribute in the range [1, 2) to the specified array[] by one call. <a href="#beef257039f3b95b7475bbecdb521b89"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#2fa6a84095a280a4e1556415f3d4f259">dsfmt_chk_init_gen_rand</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt, uint32_t seed, int mexp)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function initializes the internal state array with a 32-bit integer seed. <a href="#2fa6a84095a280a4e1556415f3d4f259"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#91cef405a85910d4e56b4a1d10fb89f1">dsfmt_chk_init_by_array</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt, uint32_t init_key[], int key_length, int mexp)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function initializes the internal state array, with an array of 32-bit integers used as the seeds. <a href="#91cef405a85910d4e56b4a1d10fb89f1"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#f181eeb77513e5a399dd2c585cfaa055">dsfmt_get_idstring</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function returns the identification string. <a href="#f181eeb77513e5a399dd2c585cfaa055"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#f49cc1703b4cc1d0bffbd895917c303a">dsfmt_get_min_array_size</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function returns the minimum size of array used for <b>fill_array</b> functions. <a href="#f49cc1703b4cc1d0bffbd895917c303a"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE uint32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#49fc44ce077ee57594b8102eb04145d9">dsfmt_genrand_uint32</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates and returns unsigned 32-bit integer. <a href="#49fc44ce077ee57594b8102eb04145d9"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE double </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#e9bb29b63c46e57725dffa776cf930e7">dsfmt_genrand_close1_open2</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates and returns double precision pseudorandom number which distributes uniformly in the range [1, 2). <a href="#e9bb29b63c46e57725dffa776cf930e7"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE double </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#989a29c7d5616755721ee41f0d1c3982">dsfmt_genrand_close_open</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates and returns double precision pseudorandom number which distributes uniformly in the range [0, 1). <a href="#989a29c7d5616755721ee41f0d1c3982"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE double </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#c8916cdece1e0ed671077ba869aae509">dsfmt_genrand_open_close</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates and returns double precision pseudorandom number which distributes uniformly in the range (0, 1]. <a href="#c8916cdece1e0ed671077ba869aae509"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE double </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#147a0a05c969a4cb5d92ce3963b839c2">dsfmt_genrand_open_open</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates and returns double precision pseudorandom number which distributes uniformly in the range (0, 1). <a href="#147a0a05c969a4cb5d92ce3963b839c2"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE uint32_t </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#de87b39b59a4f8c2e09c5ad25a53b515">dsfmt_gv_genrand_uint32</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates and returns unsigned 32-bit integer. <a href="#de87b39b59a4f8c2e09c5ad25a53b515"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE double </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#f298572e9f2449e59ddf486977006621">dsfmt_gv_genrand_close1_open2</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates and returns double precision pseudorandom number which distributes uniformly in the range [1, 2). <a href="#f298572e9f2449e59ddf486977006621"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE double </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#e57b11ef3fdcf04e84fc0298166aab82">dsfmt_gv_genrand_close_open</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates and returns double precision pseudorandom number which distributes uniformly in the range [0, 1). <a href="#e57b11ef3fdcf04e84fc0298166aab82"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE double </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#fcdb7f3f26ca2d4a8f4e3854209fd4dd">dsfmt_gv_genrand_open_close</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates and returns double precision pseudorandom number which distributes uniformly in the range (0, 1]. <a href="#fcdb7f3f26ca2d4a8f4e3854209fd4dd"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE double </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#f6dbcef408462da1f40edd1a1ea5dcd3">dsfmt_gv_genrand_open_open</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates and returns double precision pseudorandom number which distributes uniformly in the range (0, 1). <a href="#f6dbcef408462da1f40edd1a1ea5dcd3"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#92deacd8f90f332a130ab5a6fdae8348">dsfmt_gv_fill_array_open_close</a> (double array[], int size)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates double precision floating point pseudorandom numbers which distribute in the range (0, 1] to the specified array[] by one call. <a href="#92deacd8f90f332a130ab5a6fdae8348"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#27e4b624752149e0450056a317d09214">dsfmt_gv_fill_array_close_open</a> (double array[], int size)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates double precision floating point pseudorandom numbers which distribute in the range [0, 1) to the specified array[] by one call. <a href="#27e4b624752149e0450056a317d09214"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#871323d18c3525787f63fcf071c4787d">dsfmt_gv_fill_array_open_open</a> (double array[], int size)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates double precision floating point pseudorandom numbers which distribute in the range (0, 1) to the specified array[] by one call. <a href="#871323d18c3525787f63fcf071c4787d"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#e0ed5a2ba6eb6f21fa591a54020af3ac">dsfmt_gv_fill_array_close1_open2</a> (double array[], int size)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function generates double precision floating point pseudorandom numbers which distribute in the range [1, 2) to the specified array[] by one call. <a href="#e0ed5a2ba6eb6f21fa591a54020af3ac"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#74e3849c0ae0929d57c9c9ac52d58cc8">dsfmt_gv_init_gen_rand</a> (uint32_t seed)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function initializes the internal state array with a 32-bit integer seed. <a href="#74e3849c0ae0929d57c9c9ac52d58cc8"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#4f989ee92f5e4c8f71570dbb9d19e838">dsfmt_gv_init_by_array</a> (uint32_t init_key[], int key_length)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function initializes the internal state array, with an array of 32-bit integers used as the seeds. <a href="#4f989ee92f5e4c8f71570dbb9d19e838"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#8df497c74e469b5f42e8a22d93124d41">dsfmt_init_gen_rand</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt, uint32_t seed)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function initializes the internal state array with a 32-bit integer seed. <a href="#8df497c74e469b5f42e8a22d93124d41"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#0914ba62e9a46b6a1f04f27caa83ba87">dsfmt_init_by_array</a> (<a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> *dsfmt, uint32_t init_key[], int key_length)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function initializes the internal state array, with an array of 32-bit integers used as the seeds. <a href="#0914ba62e9a46b6a1f04f27caa83ba87"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE const char * </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#2792d3dd76b6ae051d60830b676622ba">get_idstring</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#f181eeb77513e5a399dd2c585cfaa055" title="This function returns the identification string.">dsfmt_get_idstring()</a>. <a href="#2792d3dd76b6ae051d60830b676622ba"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE int </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#75ebedeed1c3d5e8576c53e5ce215fea">get_min_array_size</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#f49cc1703b4cc1d0bffbd895917c303a" title="This function returns the minimum size of array used for fill_array functions.">dsfmt_get_min_array_size()</a>. <a href="#75ebedeed1c3d5e8576c53e5ce215fea"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#985425dba38a16554d3f2a9ee3a41e1b">init_gen_rand</a> (uint32_t seed)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#74e3849c0ae0929d57c9c9ac52d58cc8" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_gv_init_gen_rand()</a>. <a href="#985425dba38a16554d3f2a9ee3a41e1b"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#5f12cfe61e34b29a9c4f88f097712205">init_by_array</a> (uint32_t init_key[], int key_length)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#4f989ee92f5e4c8f71570dbb9d19e838" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_gv_init_by_array()</a>. <a href="#5f12cfe61e34b29a9c4f88f097712205"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE double </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#01bce92db767a0f976b56f88f8f89515">genrand_close1_open2</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#f298572e9f2449e59ddf486977006621" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_gv_genrand_close1_open2()</a>. <a href="#01bce92db767a0f976b56f88f8f89515"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE double </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#188b24295a56aa56f823c7dfb0615971">genrand_close_open</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#e57b11ef3fdcf04e84fc0298166aab82" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_gv_genrand_close_open()</a>. <a href="#188b24295a56aa56f823c7dfb0615971"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE double </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#b24d54ba54b0249c02200a7f3232b342">genrand_open_close</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#fcdb7f3f26ca2d4a8f4e3854209fd4dd" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_gv_genrand_open_close()</a>. <a href="#b24d54ba54b0249c02200a7f3232b342"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE double </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#902ef40cb5e9e3caad2cfb478224c071">genrand_open_open</a> (void)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#f6dbcef408462da1f40edd1a1ea5dcd3" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_gv_genrand_open_open()</a>. <a href="#902ef40cb5e9e3caad2cfb478224c071"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#4d6c1e2049214ae128c1f9226ad683b9">fill_array_open_close</a> (double array[], int size)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function is juset the same as <a class="el" href="d_s_f_m_t_8h.html#92deacd8f90f332a130ab5a6fdae8348" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_open_close()</a>. <a href="#4d6c1e2049214ae128c1f9226ad683b9"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#5a6dd5166f4dcc137bce8f1aeea758a5">fill_array_close_open</a> (double array[], int size)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function is juset the same as <a class="el" href="d_s_f_m_t_8h.html#27e4b624752149e0450056a317d09214" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close_open()</a>. <a href="#5a6dd5166f4dcc137bce8f1aeea758a5"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#deaef304a7f9f262588bdbcf780feb42">fill_array_open_open</a> (double array[], int size)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function is juset the same as <a class="el" href="d_s_f_m_t_8h.html#871323d18c3525787f63fcf071c4787d" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_open_open()</a>. <a href="#deaef304a7f9f262588bdbcf780feb42"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">DSFMT_PRE_INLINE void </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#98e1c0307c01044eb8d1c5136b59af9d">fill_array_close1_open2</a> (double array[], int size)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This function is juset the same as <a class="el" href="d_s_f_m_t_8h.html#e0ed5a2ba6eb6f21fa591a54020af3ac" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close1_open2()</a>. <a href="#98e1c0307c01044eb8d1c5136b59af9d"></a><br></td></tr>
<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#dfee3c4c3505ddcfc334251f94968737">dsfmt_global_data</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">dsfmt internal state vector <a href="#dfee3c4c3505ddcfc334251f94968737"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const int </td><td class="memItemRight" valign="bottom"><a class="el" href="d_s_f_m_t_8h.html#b5bb9876d117b3cdf8143c701a3f8cdf">dsfmt_global_mexp</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">dsfmt mexp for check <a href="#b5bb9876d117b3cdf8143c701a3f8cdf"></a><br></td></tr>
</table>
<hr><a name="_details"></a><h2>Detailed Description</h2>
double precision SIMD oriented Fast Mersenne Twister(dSFMT) pseudorandom number generator based on IEEE 754 format.
<p>
<dl class="author" compact><dt><b>Author:</b></dt><dd>Mutsuo Saito (Hiroshima University) <p>
Makoto Matsumoto (Hiroshima University)</dd></dl>
Copyright (C) 2007, 2008 Mutsuo Saito, Makoto Matsumoto and Hiroshima University. All rights reserved.<p>
The new BSD License is applied to this software. see LICENSE.txt<p>
<dl class="note" compact><dt><b>Note:</b></dt><dd>We assume that your system has inttypes.h. If your system doesn't have inttypes.h, you have to typedef uint32_t and uint64_t, and you have to define PRIu64 and PRIx64 in this file as follows: <div class="fragment"><pre class="fragment">
typedef unsigned int uint32_t
typedef unsigned long long uint64_t
#define PRIu64 "llu"
#define PRIx64 "llx"
</pre></div> uint32_t must be exactly 32-bit unsigned integer type (no more, no less), and uint64_t must be exactly 64-bit unsigned integer type. PRIu64 and PRIx64 are used for printf function to print 64-bit unsigned int and 64-bit unsigned int in hexadecimal format. </dd></dl>
<hr><h2>Define Documentation</h2>
<a class="anchor" name="eda2790c35e4e205219e3c0ef1a2dd0a"></a><!-- doxytag: member="dSFMT.h::DSFMT_MEXP" ref="eda2790c35e4e205219e3c0ef1a2dd0a" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define DSFMT_MEXP 19937 </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00458">dsfmt_init_by_array()</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00437">dsfmt_init_gen_rand()</a>.</p>
</div>
</div><p>
<a class="anchor" name="3b6595773bfd02df5481e6a459071a1c"></a><!-- doxytag: member="dSFMT.h::DSFMT_N" ref="3b6595773bfd02df5481e6a459071a1c" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define DSFMT_N ((DSFMT_MEXP - 128) / 104 + 1) </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
DSFMT generator has an internal state array of 128-bit integers, and N is its size.
<p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8c-source.html#l00656">dsfmt_chk_init_by_array()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00625">dsfmt_chk_init_gen_rand()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00509">dsfmt_gen_rand_all()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00281">gen_rand_array_c0o1()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00243">gen_rand_array_c1o2()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00367">gen_rand_array_o0c1()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00324">gen_rand_array_o0o1()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00428">initial_mask()</a>, and <a class="el" href="d_s_f_m_t_8c-source.html#l00442">period_certification()</a>.</p>
</div>
</div><p>
<a class="anchor" name="a0bbbd372d361b7fe3ea3ec2013c9097"></a><!-- doxytag: member="dSFMT.h::DSFMT_N32" ref="a0bbbd372d361b7fe3ea3ec2013c9097" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define DSFMT_N32 (DSFMT_N * 4) </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
N32 is the size of internal state array when regarded as an array of 32-bit integers.
<p>
</div>
</div><p>
<a class="anchor" name="36560990b64532b75e95bf5b683599dc"></a><!-- doxytag: member="dSFMT.h::DSFMT_N64" ref="36560990b64532b75e95bf5b683599dc" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define DSFMT_N64 (DSFMT_N * 2) </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
N64 is the size of internal state array when regarded as an array of 64-bit integers.
<p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8c-source.html#l00656">dsfmt_chk_init_by_array()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00625">dsfmt_chk_init_gen_rand()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00555">dsfmt_fill_array_close1_open2()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00591">dsfmt_fill_array_close_open()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00573">dsfmt_fill_array_open_close()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00609">dsfmt_fill_array_open_open()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00253">dsfmt_genrand_close1_open2()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00341">dsfmt_genrand_open_open()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00232">dsfmt_genrand_uint32()</a>, and <a class="el" href="d_s_f_m_t_8c-source.html#l00500">dsfmt_get_min_array_size()</a>.</p>
</div>
</div><p>
<a class="anchor" name="7490eb8287e4754e4e30153135f496e9"></a><!-- doxytag: member="dSFMT.h::DSFMT_PRE_INLINE" ref="7490eb8287e4754e4e30153135f496e9" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define DSFMT_PRE_INLINE inline static </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="5842d43aa58fb6f026a8fdc02cb15455"></a><!-- doxytag: member="dSFMT.h::DSFMT_PST_INLINE" ref="5842d43aa58fb6f026a8fdc02cb15455" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define DSFMT_PST_INLINE </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="00d24c7231be28dbaf71f5408f30e44c"></a><!-- doxytag: member="dSFMT.h::inline" ref="00d24c7231be28dbaf71f5408f30e44c" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define inline </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="c582131d7a7c8ee57e73180d1714f9d5"></a><!-- doxytag: member="dSFMT.h::PRIu64" ref="c582131d7a7c8ee57e73180d1714f9d5" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define PRIu64 "llu" </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="ba38357387a474f439428dee1984fc5a"></a><!-- doxytag: member="dSFMT.h::PRIx64" ref="ba38357387a474f439428dee1984fc5a" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define PRIx64 "llx" </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="014ce50c36f4de34281551e4da3d5195"></a><!-- doxytag: member="dSFMT.h::UINT64_C" ref="014ce50c36f4de34281551e4da3d5195" args="(v)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">#define UINT64_C </td>
<td>(</td>
<td class="paramtype">v </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> (v ## ULL)</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<hr><h2>Typedef Documentation</h2>
<a class="anchor" name="7e8239b4bedf4e53d5168d21848ab7af"></a><!-- doxytag: member="dSFMT.h::dsfmt_t" ref="7e8239b4bedf4e53d5168d21848ab7af" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef struct <a class="el" href="struct_d_s_f_m_t___t.html">DSFMT_T</a> <a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="b1ee414cba9ca0f33a3716e7a92c2b79"></a><!-- doxytag: member="dSFMT.h::w128_t" ref="b1ee414cba9ca0f33a3716e7a92c2b79" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef union <a class="el" href="union_w128___t.html">W128_T</a> <a class="el" href="union_w128___t.html">w128_t</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
128-bit data type
<p>
</div>
</div><p>
<hr><h2>Function Documentation</h2>
<a class="anchor" name="91cef405a85910d4e56b4a1d10fb89f1"></a><!-- doxytag: member="dSFMT.h::dsfmt_chk_init_by_array" ref="91cef405a85910d4e56b4a1d10fb89f1" args="(dsfmt_t *dsfmt, uint32_t init_key[], int key_length, int mexp)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void dsfmt_chk_init_by_array </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">uint32_t </td>
<td class="paramname"> <em>init_key</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>key_length</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>mexp</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function initializes the internal state array, with an array of 32-bit integers used as the seeds.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt state vector. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>init_key</em> </td><td>the array of 32-bit integers, used as a seed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>key_length</em> </td><td>the length of init_key. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>mexp</em> </td><td>caller's mersenne expornent </td></tr>
</table>
</dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00022">dsfmt_mexp</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00051">DSFMT_N</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00057">DSFMT_N64</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00164">DSFMT_T::idx</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00064">idxof()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00409">ini_func1()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00419">ini_func2()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00428">initial_mask()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00442">period_certification()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00163">DSFMT_T::status</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00153">W128_T::u32</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00458">dsfmt_init_by_array()</a>.</p>
</div>
</div><p>
<a class="anchor" name="2fa6a84095a280a4e1556415f3d4f259"></a><!-- doxytag: member="dSFMT.h::dsfmt_chk_init_gen_rand" ref="2fa6a84095a280a4e1556415f3d4f259" args="(dsfmt_t *dsfmt, uint32_t seed, int mexp)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void dsfmt_chk_init_gen_rand </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">uint32_t </td>
<td class="paramname"> <em>seed</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>mexp</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function initializes the internal state array with a 32-bit integer seed.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt state vector. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>seed</em> </td><td>a 32-bit integer used as the seed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>mexp</em> </td><td>caller's mersenne expornent </td></tr>
</table>
</dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00022">dsfmt_mexp</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00051">DSFMT_N</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00057">DSFMT_N64</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00164">DSFMT_T::idx</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00064">idxof()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00428">initial_mask()</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00442">period_certification()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00163">DSFMT_T::status</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00153">W128_T::u32</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00437">dsfmt_init_gen_rand()</a>.</p>
</div>
</div><p>
<a class="anchor" name="beef257039f3b95b7475bbecdb521b89"></a><!-- doxytag: member="dSFMT.h::dsfmt_fill_array_close1_open2" ref="beef257039f3b95b7475bbecdb521b89" args="(dsfmt_t *dsfmt, double array[], int size)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void dsfmt_fill_array_close1_open2 </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"> <em>array</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>size</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates double precision floating point pseudorandom numbers which distribute in the range [1, 2) to the specified array[] by one call.
<p>
The number of pseudorandom numbers is specified by the argument <b>size</b>, which must be at least (SFMT_MEXP / 128) * 2 and a multiple of two. The function <a class="el" href="d_s_f_m_t_8h.html#75ebedeed1c3d5e8576c53e5ce215fea" title="This function is just the same as dsfmt_get_min_array_size().">get_min_array_size()</a> returns this minimum size. The generation by this function is much faster than the following fill_array_xxx functions.<p>
For initialization, <a class="el" href="d_s_f_m_t_8h.html#985425dba38a16554d3f2a9ee3a41e1b" title="This function is just the same as dsfmt_gv_init_gen_rand().">init_gen_rand()</a> or <a class="el" href="d_s_f_m_t_8h.html#5f12cfe61e34b29a9c4f88f097712205" title="This function is just the same as dsfmt_gv_init_by_array().">init_by_array()</a> must be called before the first call of this function. This function can not be used after calling genrand_xxx functions, without initialization.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt state vector. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>array</em> </td><td>an array where pseudorandom numbers are filled by this function. The pointer to the array must be "aligned" (namely, must be a multiple of 16) in the SIMD version, since it refers to the address of a 128-bit integer. In the standard C version, the pointer is arbitrary.</td></tr>
<tr><td valign="top"></td><td valign="top"><em>size</em> </td><td>the number of 64-bit pseudorandom integers to be generated. size must be a multiple of 2, and greater than or equal to (SFMT_MEXP / 128) * 2.</td></tr>
</table>
</dl>
<dl class="note" compact><dt><b>Note:</b></dt><dd><b>memalign</b> or <b>posix_memalign</b> is available to get aligned memory. Mac OSX doesn't have these functions, but <b>malloc</b> of OSX returns the pointer to the aligned memory block. </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00057">DSFMT_N64</a>, and <a class="el" href="d_s_f_m_t_8c-source.html#l00243">gen_rand_array_c1o2()</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00379">dsfmt_gv_fill_array_close1_open2()</a>.</p>
</div>
</div><p>
<a class="anchor" name="243fb9ed1b61233f3dba4ab15c541eb0"></a><!-- doxytag: member="dSFMT.h::dsfmt_fill_array_close_open" ref="243fb9ed1b61233f3dba4ab15c541eb0" args="(dsfmt_t *dsfmt, double array[], int size)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void dsfmt_fill_array_close_open </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"> <em>array</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>size</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates double precision floating point pseudorandom numbers which distribute in the range [0, 1) to the specified array[] by one call.
<p>
This function is the same as <a class="el" href="d_s_f_m_t_8h.html#98e1c0307c01044eb8d1c5136b59af9d" title="This function is juset the same as dsfmt_gv_fill_array_close1_open2().">fill_array_close1_open2()</a> except the distribution range.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>array</em> </td><td>an array where pseudorandom numbers are filled by this function. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt state vector. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>size</em> </td><td>the number of pseudorandom numbers to be generated. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#98e1c0307c01044eb8d1c5136b59af9d" title="This function is juset the same as dsfmt_gv_fill_array_close1_open2().">fill_array_close1_open2()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00057">DSFMT_N64</a>, and <a class="el" href="d_s_f_m_t_8c-source.html#l00281">gen_rand_array_c0o1()</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00411">dsfmt_gv_fill_array_close_open()</a>.</p>
</div>
</div><p>
<a class="anchor" name="6ad6f12b9a47ea89ceab693b1eec5079"></a><!-- doxytag: member="dSFMT.h::dsfmt_fill_array_open_close" ref="6ad6f12b9a47ea89ceab693b1eec5079" args="(dsfmt_t *dsfmt, double array[], int size)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void dsfmt_fill_array_open_close </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"> <em>array</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>size</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates double precision floating point pseudorandom numbers which distribute in the range (0, 1] to the specified array[] by one call.
<p>
This function is the same as <a class="el" href="d_s_f_m_t_8h.html#98e1c0307c01044eb8d1c5136b59af9d" title="This function is juset the same as dsfmt_gv_fill_array_close1_open2().">fill_array_close1_open2()</a> except the distribution range.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt state vector. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>array</em> </td><td>an array where pseudorandom numbers are filled by this function. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>size</em> </td><td>the number of pseudorandom numbers to be generated. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#98e1c0307c01044eb8d1c5136b59af9d" title="This function is juset the same as dsfmt_gv_fill_array_close1_open2().">fill_array_close1_open2()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00057">DSFMT_N64</a>, and <a class="el" href="d_s_f_m_t_8c-source.html#l00367">gen_rand_array_o0c1()</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00395">dsfmt_gv_fill_array_open_close()</a>.</p>
</div>
</div><p>
<a class="anchor" name="eed310e17f9f652c1b0ec86298c834c1"></a><!-- doxytag: member="dSFMT.h::dsfmt_fill_array_open_open" ref="eed310e17f9f652c1b0ec86298c834c1" args="(dsfmt_t *dsfmt, double array[], int size)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void dsfmt_fill_array_open_open </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"> <em>array</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>size</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates double precision floating point pseudorandom numbers which distribute in the range (0, 1) to the specified array[] by one call.
<p>
This function is the same as <a class="el" href="d_s_f_m_t_8h.html#98e1c0307c01044eb8d1c5136b59af9d" title="This function is juset the same as dsfmt_gv_fill_array_close1_open2().">fill_array_close1_open2()</a> except the distribution range.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt state vector. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>array</em> </td><td>an array where pseudorandom numbers are filled by this function. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>size</em> </td><td>the number of pseudorandom numbers to be generated. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#98e1c0307c01044eb8d1c5136b59af9d" title="This function is juset the same as dsfmt_gv_fill_array_close1_open2().">fill_array_close1_open2()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00057">DSFMT_N64</a>, and <a class="el" href="d_s_f_m_t_8c-source.html#l00324">gen_rand_array_o0o1()</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00427">dsfmt_gv_fill_array_open_open()</a>.</p>
</div>
</div><p>
<a class="anchor" name="fccb1e4d75cea7ffe3b45cba53d1e5e0"></a><!-- doxytag: member="dSFMT.h::dsfmt_gen_rand_all" ref="fccb1e4d75cea7ffe3b45cba53d1e5e0" args="(dsfmt_t *dsfmt)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void dsfmt_gen_rand_all </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function fills the internal state array with double precision floating point pseudorandom numbers of the IEEE 754 format.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt state vector. </td></tr>
</table>
</dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00153">do_recursion()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00051">DSFMT_N</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00163">DSFMT_T::status</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00253">dsfmt_genrand_close1_open2()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00341">dsfmt_genrand_open_open()</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00232">dsfmt_genrand_uint32()</a>.</p>
</div>
</div><p>
<a class="anchor" name="e9bb29b63c46e57725dffa776cf930e7"></a><!-- doxytag: member="dSFMT.h::dsfmt_genrand_close1_open2" ref="e9bb29b63c46e57725dffa776cf930e7" args="(dsfmt_t *dsfmt)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static double dsfmt_genrand_close1_open2 </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates and returns double precision pseudorandom number which distributes uniformly in the range [1, 2).
<p>
This is the primitive and faster than generating numbers in other ranges. <a class="el" href="d_s_f_m_t_8h.html#8df497c74e469b5f42e8a22d93124d41" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_init_gen_rand()</a> or <a class="el" href="d_s_f_m_t_8h.html#0914ba62e9a46b6a1f04f27caa83ba87" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_init_by_array()</a> must be called before this function. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt internal state date </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point pseudorandom number </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00154">W128_T::d</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00509">dsfmt_gen_rand_all()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00057">DSFMT_N64</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00164">DSFMT_T::idx</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00163">DSFMT_T::status</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00295">dsfmt_genrand_close_open()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00318">dsfmt_genrand_open_close()</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00283">dsfmt_gv_genrand_close1_open2()</a>.</p>
</div>
</div><p>
<a class="anchor" name="989a29c7d5616755721ee41f0d1c3982"></a><!-- doxytag: member="dSFMT.h::dsfmt_genrand_close_open" ref="989a29c7d5616755721ee41f0d1c3982" args="(dsfmt_t *dsfmt)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static double dsfmt_genrand_close_open </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates and returns double precision pseudorandom number which distributes uniformly in the range [0, 1).
<p>
<a class="el" href="d_s_f_m_t_8h.html#8df497c74e469b5f42e8a22d93124d41" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_init_gen_rand()</a> or <a class="el" href="d_s_f_m_t_8h.html#0914ba62e9a46b6a1f04f27caa83ba87" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_init_by_array()</a> must be called before this function. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt internal state date </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point pseudorandom number </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00253">dsfmt_genrand_close1_open2()</a>.</p>
</div>
</div><p>
<a class="anchor" name="c8916cdece1e0ed671077ba869aae509"></a><!-- doxytag: member="dSFMT.h::dsfmt_genrand_open_close" ref="c8916cdece1e0ed671077ba869aae509" args="(dsfmt_t *dsfmt)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static double dsfmt_genrand_open_close </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates and returns double precision pseudorandom number which distributes uniformly in the range (0, 1].
<p>
<a class="el" href="d_s_f_m_t_8h.html#8df497c74e469b5f42e8a22d93124d41" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_init_gen_rand()</a> or <a class="el" href="d_s_f_m_t_8h.html#0914ba62e9a46b6a1f04f27caa83ba87" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_init_by_array()</a> must be called before this function. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt internal state date </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point pseudorandom number </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00253">dsfmt_genrand_close1_open2()</a>.</p>
</div>
</div><p>
<a class="anchor" name="147a0a05c969a4cb5d92ce3963b839c2"></a><!-- doxytag: member="dSFMT.h::dsfmt_genrand_open_open" ref="147a0a05c969a4cb5d92ce3963b839c2" args="(dsfmt_t *dsfmt)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static double dsfmt_genrand_open_open </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates and returns double precision pseudorandom number which distributes uniformly in the range (0, 1).
<p>
<a class="el" href="d_s_f_m_t_8h.html#8df497c74e469b5f42e8a22d93124d41" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_init_gen_rand()</a> or <a class="el" href="d_s_f_m_t_8h.html#0914ba62e9a46b6a1f04f27caa83ba87" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_init_by_array()</a> must be called before this function. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt internal state date </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point pseudorandom number </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00154">W128_T::d</a>, <a class="el" href="d_s_f_m_t_8c-source.html#l00509">dsfmt_gen_rand_all()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00057">DSFMT_N64</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00164">DSFMT_T::idx</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00163">DSFMT_T::status</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00364">dsfmt_gv_genrand_open_open()</a>.</p>
</div>
</div><p>
<a class="anchor" name="49fc44ce077ee57594b8102eb04145d9"></a><!-- doxytag: member="dSFMT.h::dsfmt_genrand_uint32" ref="49fc44ce077ee57594b8102eb04145d9" args="(dsfmt_t *dsfmt)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static uint32_t dsfmt_genrand_uint32 </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates and returns unsigned 32-bit integer.
<p>
This is slower than SFMT, only for convenience usage. <a class="el" href="d_s_f_m_t_8h.html#8df497c74e469b5f42e8a22d93124d41" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_init_gen_rand()</a> or <a class="el" href="d_s_f_m_t_8h.html#0914ba62e9a46b6a1f04f27caa83ba87" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_init_by_array()</a> must be called before this function. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt internal state date </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point pseudorandom number </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00509">dsfmt_gen_rand_all()</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00057">DSFMT_N64</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00272">dsfmt_gv_genrand_uint32()</a>.</p>
</div>
</div><p>
<a class="anchor" name="f181eeb77513e5a399dd2c585cfaa055"></a><!-- doxytag: member="dSFMT.h::dsfmt_get_idstring" ref="f181eeb77513e5a399dd2c585cfaa055" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const char* dsfmt_get_idstring </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function returns the identification string.
<p>
The string shows the Mersenne exponent, and all parameters of this generator. <dl class="return" compact><dt><b>Returns:</b></dt><dd>id string. </dd></dl>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00499">get_idstring()</a>.</p>
</div>
</div><p>
<a class="anchor" name="f49cc1703b4cc1d0bffbd895917c303a"></a><!-- doxytag: member="dSFMT.h::dsfmt_get_min_array_size" ref="f49cc1703b4cc1d0bffbd895917c303a" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int dsfmt_get_min_array_size </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function returns the minimum size of array used for <b>fill_array</b> functions.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>minimum size of array used for fill_array functions. </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00057">DSFMT_N64</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00508">get_min_array_size()</a>.</p>
</div>
</div><p>
<a class="anchor" name="e0ed5a2ba6eb6f21fa591a54020af3ac"></a><!-- doxytag: member="dSFMT.h::dsfmt_gv_fill_array_close1_open2" ref="e0ed5a2ba6eb6f21fa591a54020af3ac" args="(double array[], int size)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void dsfmt_gv_fill_array_close1_open2 </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"> <em>array</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>size</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates double precision floating point pseudorandom numbers which distribute in the range [1, 2) to the specified array[] by one call.
<p>
This function is the same as <a class="el" href="d_s_f_m_t_8h.html#beef257039f3b95b7475bbecdb521b89" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_fill_array_close1_open2()</a> except that this function uses <b>global</b> variables. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>array</em> </td><td>an array where pseudorandom numbers are filled by this function. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>size</em> </td><td>the number of pseudorandom numbers to be generated. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#beef257039f3b95b7475bbecdb521b89" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_fill_array_close1_open2()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00555">dsfmt_fill_array_close1_open2()</a>, and <a class="el" href="d_s_f_m_t_8c-source.html#l00020">dsfmt_global_data</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00618">fill_array_close1_open2()</a>.</p>
</div>
</div><p>
<a class="anchor" name="27e4b624752149e0450056a317d09214"></a><!-- doxytag: member="dSFMT.h::dsfmt_gv_fill_array_close_open" ref="27e4b624752149e0450056a317d09214" args="(double array[], int size)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void dsfmt_gv_fill_array_close_open </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"> <em>array</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>size</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates double precision floating point pseudorandom numbers which distribute in the range [0, 1) to the specified array[] by one call.
<p>
This function is the same as <a class="el" href="d_s_f_m_t_8h.html#e0ed5a2ba6eb6f21fa591a54020af3ac" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close1_open2()</a> except the distribution range. This function uses <b>global</b> variables. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>array</em> </td><td>an array where pseudorandom numbers are filled by this function. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>size</em> </td><td>the number of pseudorandom numbers to be generated. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#beef257039f3b95b7475bbecdb521b89" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_fill_array_close1_open2()</a> <p>
<a class="el" href="d_s_f_m_t_8h.html#e0ed5a2ba6eb6f21fa591a54020af3ac" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close1_open2()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00591">dsfmt_fill_array_close_open()</a>, and <a class="el" href="d_s_f_m_t_8c-source.html#l00020">dsfmt_global_data</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00593">fill_array_close_open()</a>.</p>
</div>
</div><p>
<a class="anchor" name="92deacd8f90f332a130ab5a6fdae8348"></a><!-- doxytag: member="dSFMT.h::dsfmt_gv_fill_array_open_close" ref="92deacd8f90f332a130ab5a6fdae8348" args="(double array[], int size)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void dsfmt_gv_fill_array_open_close </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"> <em>array</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>size</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates double precision floating point pseudorandom numbers which distribute in the range (0, 1] to the specified array[] by one call.
<p>
This function is the same as <a class="el" href="d_s_f_m_t_8h.html#e0ed5a2ba6eb6f21fa591a54020af3ac" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close1_open2()</a> except the distribution range. This function uses <b>global</b> variables. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>array</em> </td><td>an array where pseudorandom numbers are filled by this function. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>size</em> </td><td>the number of pseudorandom numbers to be generated. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#beef257039f3b95b7475bbecdb521b89" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_fill_array_close1_open2()</a> and <p>
<a class="el" href="d_s_f_m_t_8h.html#e0ed5a2ba6eb6f21fa591a54020af3ac" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close1_open2()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00573">dsfmt_fill_array_open_close()</a>, and <a class="el" href="d_s_f_m_t_8c-source.html#l00020">dsfmt_global_data</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00580">fill_array_open_close()</a>.</p>
</div>
</div><p>
<a class="anchor" name="871323d18c3525787f63fcf071c4787d"></a><!-- doxytag: member="dSFMT.h::dsfmt_gv_fill_array_open_open" ref="871323d18c3525787f63fcf071c4787d" args="(double array[], int size)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void dsfmt_gv_fill_array_open_open </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"> <em>array</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>size</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates double precision floating point pseudorandom numbers which distribute in the range (0, 1) to the specified array[] by one call.
<p>
This function is the same as <a class="el" href="d_s_f_m_t_8h.html#e0ed5a2ba6eb6f21fa591a54020af3ac" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close1_open2()</a> except the distribution range. This function uses <b>global</b> variables. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>array</em> </td><td>an array where pseudorandom numbers are filled by this function. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>size</em> </td><td>the number of pseudorandom numbers to be generated. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#beef257039f3b95b7475bbecdb521b89" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_fill_array_close1_open2()</a> <p>
<a class="el" href="d_s_f_m_t_8h.html#e0ed5a2ba6eb6f21fa591a54020af3ac" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close1_open2()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00609">dsfmt_fill_array_open_open()</a>, and <a class="el" href="d_s_f_m_t_8c-source.html#l00020">dsfmt_global_data</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00606">fill_array_open_open()</a>.</p>
</div>
</div><p>
<a class="anchor" name="f298572e9f2449e59ddf486977006621"></a><!-- doxytag: member="dSFMT.h::dsfmt_gv_genrand_close1_open2" ref="f298572e9f2449e59ddf486977006621" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static double dsfmt_gv_genrand_close1_open2 </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates and returns double precision pseudorandom number which distributes uniformly in the range [1, 2).
<p>
<a class="el" href="d_s_f_m_t_8h.html#74e3849c0ae0929d57c9c9ac52d58cc8" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_gv_init_gen_rand()</a> or <a class="el" href="d_s_f_m_t_8h.html#4f989ee92f5e4c8f71570dbb9d19e838" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_gv_init_by_array()</a> must be called before this function. This function uses <b>global</b> variables. <dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point pseudorandom number </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00253">dsfmt_genrand_close1_open2()</a>, and <a class="el" href="d_s_f_m_t_8c-source.html#l00020">dsfmt_global_data</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00306">dsfmt_gv_genrand_close_open()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00329">dsfmt_gv_genrand_open_close()</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00537">genrand_close1_open2()</a>.</p>
</div>
</div><p>
<a class="anchor" name="e57b11ef3fdcf04e84fc0298166aab82"></a><!-- doxytag: member="dSFMT.h::dsfmt_gv_genrand_close_open" ref="e57b11ef3fdcf04e84fc0298166aab82" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static double dsfmt_gv_genrand_close_open </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates and returns double precision pseudorandom number which distributes uniformly in the range [0, 1).
<p>
<a class="el" href="d_s_f_m_t_8h.html#74e3849c0ae0929d57c9c9ac52d58cc8" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_gv_init_gen_rand()</a> or <a class="el" href="d_s_f_m_t_8h.html#4f989ee92f5e4c8f71570dbb9d19e838" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_gv_init_by_array()</a> must be called before this function. This function uses <b>global</b> variables. <dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point pseudorandom number </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00283">dsfmt_gv_genrand_close1_open2()</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00547">genrand_close_open()</a>.</p>
</div>
</div><p>
<a class="anchor" name="fcdb7f3f26ca2d4a8f4e3854209fd4dd"></a><!-- doxytag: member="dSFMT.h::dsfmt_gv_genrand_open_close" ref="fcdb7f3f26ca2d4a8f4e3854209fd4dd" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static double dsfmt_gv_genrand_open_close </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates and returns double precision pseudorandom number which distributes uniformly in the range (0, 1].
<p>
<a class="el" href="d_s_f_m_t_8h.html#74e3849c0ae0929d57c9c9ac52d58cc8" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_gv_init_gen_rand()</a> or <a class="el" href="d_s_f_m_t_8h.html#4f989ee92f5e4c8f71570dbb9d19e838" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_gv_init_by_array()</a> must be called before this function. This function uses <b>global</b> variables. <dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point pseudorandom number </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00283">dsfmt_gv_genrand_close1_open2()</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00557">genrand_open_close()</a>.</p>
</div>
</div><p>
<a class="anchor" name="f6dbcef408462da1f40edd1a1ea5dcd3"></a><!-- doxytag: member="dSFMT.h::dsfmt_gv_genrand_open_open" ref="f6dbcef408462da1f40edd1a1ea5dcd3" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static double dsfmt_gv_genrand_open_open </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates and returns double precision pseudorandom number which distributes uniformly in the range (0, 1).
<p>
<a class="el" href="d_s_f_m_t_8h.html#74e3849c0ae0929d57c9c9ac52d58cc8" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_gv_init_gen_rand()</a> or <a class="el" href="d_s_f_m_t_8h.html#4f989ee92f5e4c8f71570dbb9d19e838" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_gv_init_by_array()</a> must be called before this function. This function uses <b>global</b> variables. <dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point pseudorandom number </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00341">dsfmt_genrand_open_open()</a>, and <a class="el" href="d_s_f_m_t_8c-source.html#l00020">dsfmt_global_data</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00567">genrand_open_open()</a>.</p>
</div>
</div><p>
<a class="anchor" name="de87b39b59a4f8c2e09c5ad25a53b515"></a><!-- doxytag: member="dSFMT.h::dsfmt_gv_genrand_uint32" ref="de87b39b59a4f8c2e09c5ad25a53b515" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static uint32_t dsfmt_gv_genrand_uint32 </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function generates and returns unsigned 32-bit integer.
<p>
This is slower than SFMT, only for convenience usage. <a class="el" href="d_s_f_m_t_8h.html#74e3849c0ae0929d57c9c9ac52d58cc8" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_gv_init_gen_rand()</a> or <a class="el" href="d_s_f_m_t_8h.html#4f989ee92f5e4c8f71570dbb9d19e838" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_gv_init_by_array()</a> must be called before this function. This function uses <b>global</b> variables. <dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point pseudorandom number </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00232">dsfmt_genrand_uint32()</a>, and <a class="el" href="d_s_f_m_t_8c-source.html#l00020">dsfmt_global_data</a>.</p>
</div>
</div><p>
<a class="anchor" name="4f989ee92f5e4c8f71570dbb9d19e838"></a><!-- doxytag: member="dSFMT.h::dsfmt_gv_init_by_array" ref="4f989ee92f5e4c8f71570dbb9d19e838" args="(uint32_t init_key[], int key_length)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void dsfmt_gv_init_by_array </td>
<td>(</td>
<td class="paramtype">uint32_t </td>
<td class="paramname"> <em>init_key</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>key_length</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function initializes the internal state array, with an array of 32-bit integers used as the seeds.
<p>
This function uses <b>global</b> variables. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>init_key</em> </td><td>the array of 32-bit integers, used as a seed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>key_length</em> </td><td>the length of init_key. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#0914ba62e9a46b6a1f04f27caa83ba87" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_init_by_array()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00020">dsfmt_global_data</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00458">dsfmt_init_by_array()</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00527">init_by_array()</a>.</p>
</div>
</div><p>
<a class="anchor" name="74e3849c0ae0929d57c9c9ac52d58cc8"></a><!-- doxytag: member="dSFMT.h::dsfmt_gv_init_gen_rand" ref="74e3849c0ae0929d57c9c9ac52d58cc8" args="(uint32_t seed)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void dsfmt_gv_init_gen_rand </td>
<td>(</td>
<td class="paramtype">uint32_t </td>
<td class="paramname"> <em>seed</em> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function initializes the internal state array with a 32-bit integer seed.
<p>
This function uses <b>global</b> variables. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>seed</em> </td><td>a 32-bit integer used as the seed. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#8df497c74e469b5f42e8a22d93124d41" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_init_gen_rand()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00020">dsfmt_global_data</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00437">dsfmt_init_gen_rand()</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00517">init_gen_rand()</a>.</p>
</div>
</div><p>
<a class="anchor" name="0914ba62e9a46b6a1f04f27caa83ba87"></a><!-- doxytag: member="dSFMT.h::dsfmt_init_by_array" ref="0914ba62e9a46b6a1f04f27caa83ba87" args="(dsfmt_t *dsfmt, uint32_t init_key[], int key_length)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void dsfmt_init_by_array </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">uint32_t </td>
<td class="paramname"> <em>init_key</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>key_length</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function initializes the internal state array, with an array of 32-bit integers used as the seeds.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt state vector </td></tr>
<tr><td valign="top"></td><td valign="top"><em>init_key</em> </td><td>the array of 32-bit integers, used as a seed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>key_length</em> </td><td>the length of init_key. </td></tr>
</table>
</dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00656">dsfmt_chk_init_by_array()</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00041">DSFMT_MEXP</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00471">dsfmt_gv_init_by_array()</a>.</p>
</div>
</div><p>
<a class="anchor" name="8df497c74e469b5f42e8a22d93124d41"></a><!-- doxytag: member="dSFMT.h::dsfmt_init_gen_rand" ref="8df497c74e469b5f42e8a22d93124d41" args="(dsfmt_t *dsfmt, uint32_t seed)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void dsfmt_init_gen_rand </td>
<td>(</td>
<td class="paramtype"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> * </td>
<td class="paramname"> <em>dsfmt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">uint32_t </td>
<td class="paramname"> <em>seed</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function initializes the internal state array with a 32-bit integer seed.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>dsfmt</em> </td><td>dsfmt state vector. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>seed</em> </td><td>a 32-bit integer used as the seed. </td></tr>
</table>
</dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00625">dsfmt_chk_init_gen_rand()</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00041">DSFMT_MEXP</a>.</p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00447">dsfmt_gv_init_gen_rand()</a>.</p>
</div>
</div><p>
<a class="anchor" name="98e1c0307c01044eb8d1c5136b59af9d"></a><!-- doxytag: member="dSFMT.h::fill_array_close1_open2" ref="98e1c0307c01044eb8d1c5136b59af9d" args="(double array[], int size)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void fill_array_close1_open2 </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"> <em>array</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>size</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function is juset the same as <a class="el" href="d_s_f_m_t_8h.html#e0ed5a2ba6eb6f21fa591a54020af3ac" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close1_open2()</a>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>array</em> </td><td>an array where pseudorandom numbers are filled by this function. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>size</em> </td><td>the number of pseudorandom numbers to be generated. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#beef257039f3b95b7475bbecdb521b89" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_fill_array_close1_open2()</a>, <p>
<a class="el" href="d_s_f_m_t_8h.html#e0ed5a2ba6eb6f21fa591a54020af3ac" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close1_open2()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00379">dsfmt_gv_fill_array_close1_open2()</a>.</p>
</div>
</div><p>
<a class="anchor" name="5a6dd5166f4dcc137bce8f1aeea758a5"></a><!-- doxytag: member="dSFMT.h::fill_array_close_open" ref="5a6dd5166f4dcc137bce8f1aeea758a5" args="(double array[], int size)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void fill_array_close_open </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"> <em>array</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>size</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function is juset the same as <a class="el" href="d_s_f_m_t_8h.html#27e4b624752149e0450056a317d09214" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close_open()</a>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>array</em> </td><td>an array where pseudorandom numbers are filled by this function. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>size</em> </td><td>the number of pseudorandom numbers to be generated. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#27e4b624752149e0450056a317d09214" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close_open()</a>, <p>
<a class="el" href="d_s_f_m_t_8h.html#beef257039f3b95b7475bbecdb521b89" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_fill_array_close1_open2()</a>, <p>
<a class="el" href="d_s_f_m_t_8h.html#e0ed5a2ba6eb6f21fa591a54020af3ac" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close1_open2()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00411">dsfmt_gv_fill_array_close_open()</a>.</p>
</div>
</div><p>
<a class="anchor" name="4d6c1e2049214ae128c1f9226ad683b9"></a><!-- doxytag: member="dSFMT.h::fill_array_open_close" ref="4d6c1e2049214ae128c1f9226ad683b9" args="(double array[], int size)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void fill_array_open_close </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"> <em>array</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>size</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function is juset the same as <a class="el" href="d_s_f_m_t_8h.html#92deacd8f90f332a130ab5a6fdae8348" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_open_close()</a>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>array</em> </td><td>an array where pseudorandom numbers are filled by this function. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>size</em> </td><td>the number of pseudorandom numbers to be generated. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#92deacd8f90f332a130ab5a6fdae8348" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_open_close()</a>, <p>
<a class="el" href="d_s_f_m_t_8h.html#beef257039f3b95b7475bbecdb521b89" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_fill_array_close1_open2()</a>, <p>
<a class="el" href="d_s_f_m_t_8h.html#e0ed5a2ba6eb6f21fa591a54020af3ac" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close1_open2()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00395">dsfmt_gv_fill_array_open_close()</a>.</p>
</div>
</div><p>
<a class="anchor" name="deaef304a7f9f262588bdbcf780feb42"></a><!-- doxytag: member="dSFMT.h::fill_array_open_open" ref="deaef304a7f9f262588bdbcf780feb42" args="(double array[], int size)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void fill_array_open_open </td>
<td>(</td>
<td class="paramtype">double </td>
<td class="paramname"> <em>array</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>size</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function is juset the same as <a class="el" href="d_s_f_m_t_8h.html#871323d18c3525787f63fcf071c4787d" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_open_open()</a>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>array</em> </td><td>an array where pseudorandom numbers are filled by this function. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>size</em> </td><td>the number of pseudorandom numbers to be generated. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#871323d18c3525787f63fcf071c4787d" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_open_open()</a>, <p>
<a class="el" href="d_s_f_m_t_8h.html#beef257039f3b95b7475bbecdb521b89" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_fill_array_close1_open2()</a>, <p>
<a class="el" href="d_s_f_m_t_8h.html#e0ed5a2ba6eb6f21fa591a54020af3ac" title="This function generates double precision floating point pseudorandom numbers which...">dsfmt_gv_fill_array_close1_open2()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00427">dsfmt_gv_fill_array_open_open()</a>.</p>
</div>
</div><p>
<a class="anchor" name="01bce92db767a0f976b56f88f8f89515"></a><!-- doxytag: member="dSFMT.h::genrand_close1_open2" ref="01bce92db767a0f976b56f88f8f89515" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static double genrand_close1_open2 </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#f298572e9f2449e59ddf486977006621" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_gv_genrand_close1_open2()</a>.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point number. see also </dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#e9bb29b63c46e57725dffa776cf930e7" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_genrand_close1_open2()</a> <p>
<a class="el" href="d_s_f_m_t_8h.html#f298572e9f2449e59ddf486977006621" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_gv_genrand_close1_open2()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00283">dsfmt_gv_genrand_close1_open2()</a>.</p>
</div>
</div><p>
<a class="anchor" name="188b24295a56aa56f823c7dfb0615971"></a><!-- doxytag: member="dSFMT.h::genrand_close_open" ref="188b24295a56aa56f823c7dfb0615971" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static double genrand_close_open </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#e57b11ef3fdcf04e84fc0298166aab82" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_gv_genrand_close_open()</a>.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point number. see also </dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#989a29c7d5616755721ee41f0d1c3982" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_genrand_close_open()</a> <p>
<a class="el" href="d_s_f_m_t_8h.html#e57b11ef3fdcf04e84fc0298166aab82" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_gv_genrand_close_open()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00306">dsfmt_gv_genrand_close_open()</a>.</p>
</div>
</div><p>
<a class="anchor" name="b24d54ba54b0249c02200a7f3232b342"></a><!-- doxytag: member="dSFMT.h::genrand_open_close" ref="b24d54ba54b0249c02200a7f3232b342" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static double genrand_open_close </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#fcdb7f3f26ca2d4a8f4e3854209fd4dd" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_gv_genrand_open_close()</a>.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point number. see also </dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#c8916cdece1e0ed671077ba869aae509" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_genrand_open_close()</a> <p>
<a class="el" href="d_s_f_m_t_8h.html#fcdb7f3f26ca2d4a8f4e3854209fd4dd" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_gv_genrand_open_close()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00329">dsfmt_gv_genrand_open_close()</a>.</p>
</div>
</div><p>
<a class="anchor" name="902ef40cb5e9e3caad2cfb478224c071"></a><!-- doxytag: member="dSFMT.h::genrand_open_open" ref="902ef40cb5e9e3caad2cfb478224c071" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static double genrand_open_open </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#f6dbcef408462da1f40edd1a1ea5dcd3" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_gv_genrand_open_open()</a>.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>double precision floating point number. see also </dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#147a0a05c969a4cb5d92ce3963b839c2" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_genrand_open_open()</a> <p>
<a class="el" href="d_s_f_m_t_8h.html#f6dbcef408462da1f40edd1a1ea5dcd3" title="This function generates and returns double precision pseudorandom number which distributes...">dsfmt_gv_genrand_open_open()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00364">dsfmt_gv_genrand_open_open()</a>.</p>
</div>
</div><p>
<a class="anchor" name="2792d3dd76b6ae051d60830b676622ba"></a><!-- doxytag: member="dSFMT.h::get_idstring" ref="2792d3dd76b6ae051d60830b676622ba" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static const char * get_idstring </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#f181eeb77513e5a399dd2c585cfaa055" title="This function returns the identification string.">dsfmt_get_idstring()</a>.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>id string. see also </dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#f181eeb77513e5a399dd2c585cfaa055" title="This function returns the identification string.">dsfmt_get_idstring()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00491">dsfmt_get_idstring()</a>.</p>
</div>
</div><p>
<a class="anchor" name="75ebedeed1c3d5e8576c53e5ce215fea"></a><!-- doxytag: member="dSFMT.h::get_min_array_size" ref="75ebedeed1c3d5e8576c53e5ce215fea" args="(void)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static int get_min_array_size </td>
<td>(</td>
<td class="paramtype">void </td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#f49cc1703b4cc1d0bffbd895917c303a" title="This function returns the minimum size of array used for fill_array functions.">dsfmt_get_min_array_size()</a>.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>minimum size of array used for fill_array functions. see also </dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#f49cc1703b4cc1d0bffbd895917c303a" title="This function returns the minimum size of array used for fill_array functions.">dsfmt_get_min_array_size()</a> </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8c-source.html#l00500">dsfmt_get_min_array_size()</a>.</p>
</div>
</div><p>
<a class="anchor" name="5f12cfe61e34b29a9c4f88f097712205"></a><!-- doxytag: member="dSFMT.h::init_by_array" ref="5f12cfe61e34b29a9c4f88f097712205" args="(uint32_t init_key[], int key_length)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void init_by_array </td>
<td>(</td>
<td class="paramtype">uint32_t </td>
<td class="paramname"> <em>init_key</em>[], </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>key_length</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#4f989ee92f5e4c8f71570dbb9d19e838" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_gv_init_by_array()</a>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>init_key</em> </td><td>the array of 32-bit integers, used as a seed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>key_length</em> </td><td>the length of init_key. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#4f989ee92f5e4c8f71570dbb9d19e838" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_gv_init_by_array()</a>, <p>
<a class="el" href="d_s_f_m_t_8h.html#0914ba62e9a46b6a1f04f27caa83ba87" title="This function initializes the internal state array, with an array of 32-bit integers...">dsfmt_init_by_array()</a>. </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00471">dsfmt_gv_init_by_array()</a>.</p>
</div>
</div><p>
<a class="anchor" name="985425dba38a16554d3f2a9ee3a41e1b"></a><!-- doxytag: member="dSFMT.h::init_gen_rand" ref="985425dba38a16554d3f2a9ee3a41e1b" args="(uint32_t seed)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">static void init_gen_rand </td>
<td>(</td>
<td class="paramtype">uint32_t </td>
<td class="paramname"> <em>seed</em> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This function is just the same as <a class="el" href="d_s_f_m_t_8h.html#74e3849c0ae0929d57c9c9ac52d58cc8" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_gv_init_gen_rand()</a>.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>seed</em> </td><td>a 32-bit integer used as the seed. see also </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="d_s_f_m_t_8h.html#74e3849c0ae0929d57c9c9ac52d58cc8" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_gv_init_gen_rand()</a>, <p>
<a class="el" href="d_s_f_m_t_8h.html#8df497c74e469b5f42e8a22d93124d41" title="This function initializes the internal state array with a 32-bit integer seed.">dsfmt_init_gen_rand()</a>. </dd></dl>
<p>References <a class="el" href="d_s_f_m_t_8h-source.html#l00447">dsfmt_gv_init_gen_rand()</a>.</p>
</div>
</div><p>
<hr><h2>Variable Documentation</h2>
<a class="anchor" name="dfee3c4c3505ddcfc334251f94968737"></a><!-- doxytag: member="dSFMT.h::dsfmt_global_data" ref="dfee3c4c3505ddcfc334251f94968737" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_d_s_f_m_t___t.html">dsfmt_t</a> <a class="el" href="d_s_f_m_t_8c.html#dfee3c4c3505ddcfc334251f94968737">dsfmt_global_data</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
dsfmt internal state vector
<p>
<p>Referenced by <a class="el" href="d_s_f_m_t_8h-source.html#l00379">dsfmt_gv_fill_array_close1_open2()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00411">dsfmt_gv_fill_array_close_open()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00395">dsfmt_gv_fill_array_open_close()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00427">dsfmt_gv_fill_array_open_open()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00283">dsfmt_gv_genrand_close1_open2()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00364">dsfmt_gv_genrand_open_open()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00272">dsfmt_gv_genrand_uint32()</a>, <a class="el" href="d_s_f_m_t_8h-source.html#l00471">dsfmt_gv_init_by_array()</a>, and <a class="el" href="d_s_f_m_t_8h-source.html#l00447">dsfmt_gv_init_gen_rand()</a>.</p>
</div>
</div><p>
<a class="anchor" name="b5bb9876d117b3cdf8143c701a3f8cdf"></a><!-- doxytag: member="dSFMT.h::dsfmt_global_mexp" ref="b5bb9876d117b3cdf8143c701a3f8cdf" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const int <a class="el" href="d_s_f_m_t_8h.html#b5bb9876d117b3cdf8143c701a3f8cdf">dsfmt_global_mexp</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
dsfmt mexp for check
<p>
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Sat Apr 18 11:08:43 2009 for dSFMT by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.5 </small></address>
</body>
</html>
|
js_tests/tests.html | guettli/django | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Django JavaScript Tests</title>
<link rel="stylesheet" href="./qunit/qunit.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture">
</div>
<script type="text/html" id="result-table">
<table id="result_list">
<tr>
<th>
<input type="checkbox" id="action-toggle">
</th>
</tr>
<tr>
<td class="action-checkbox">
<input class="action-select" type="checkbox" value="618">
</td>
</tr>
</table>
</script>
<script type="text/html" id="tabular-formset">
<input id="id_first-TOTAL_FORMS" value="1">
<input id="id_first-MAX_NUM_FORMS" value="">
<table class="inline">
<tr id="first-0" class="form-row">
<td class="field-test_field">
<input id="id_first-test_field">
</td>
</tr>
<tr id="first-empty" class="empty-row">
<td class="field-test_field">
<input id="id_first-test_field">
</td>
</tr>
</table>
</script>
<script src="./qunit/qunit.js"></script>
<script src="./qunit/blanket.js" data-cover-flags="branchTracking"></script>
<script src='../django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js'></script>
<script src='../django/contrib/admin/static/admin/js/jquery.init.js'></script>
<script src='./admin/jsi18n-mocks.test.js'></script>
<script src='../django/contrib/admin/static/admin/js/core.js' data-cover></script>
<script src='./admin/core.test.js'></script>
<script src='../django/contrib/admin/static/admin/js/timeparse.js' data-cover></script>
<script src='./admin/timeparse.test.js'></script>
<script src='../django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js' data-cover></script>
<script src='./admin/RelatedObjectLookups.test.js'></script>
<script src='./admin/DateTimeShortcuts.test.js'></script>
<script src='../django/contrib/admin/static/admin/js/calendar.js' data-cover></script>
<script src='../django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js' data-cover></script>
<script src='../django/contrib/admin/static/admin/js/actions.js' data-cover></script>
<script src='./admin/actions.test.js'></script>
<script src='../django/contrib/admin/static/admin/js/SelectBox.js' data-cover></script>
<script src='./admin/SelectBox.test.js'></script>
<script src='../django/contrib/admin/static/admin/js/SelectFilter2.js' data-cover></script>
<script src='./admin/SelectFilter2.test.js'></script>
<script src='../django/contrib/admin/static/admin/js/inlines.js' data-cover></script>
<script src='./admin/inlines.test.js'></script>
<script src='../django/contrib/admin/static/admin/js/actions.js' data-cover></script>
<script src='../django/contrib/admin/static/admin/js/collapse.js' data-cover></script>
<script src='../django/contrib/admin/static/admin/js/prepopulate.js' data-cover></script>
<script src='../django/contrib/admin/static/admin/js/urlify.js' data-cover></script>
<div id="id_point_map">
<textarea id="id_point" name="point"
class="vSerializedField required" style="display:none;"
rows="10" cols="150">POINT (7.8177 47.397)</textarea>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/openlayers/2.13.1/OpenLayers.js'></script>
<script src='../django/contrib/gis/static/gis/js/OLMapWidget.js' data-cover></script>
<script src='./gis/mapwidget.test.js'></script>
<script>
if (location.href.match(/(\?|&)gruntReport($|&|=)/)) {
blanket.options("reporter", "qunit/grunt-reporter.js");
}
</script>
</body>
</html>
|
third_party/blink/web_tests/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr.html | scheib/chromium | <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="resources/SVGTestCase.js"></script>
<script src="../../resources/js-test.js"></script>
<script src="../../paint/invalidation/resources/text-based-repaint.js"></script>
</head>
<body onload="runRepaintTest()">
<h1>SVG 1.1 dynamic update tests</h1>
<p id="description"></p>
<div id="console"></div>
<script src="script-tests/SVGRadialGradientElement-dom-r-attr.js"></script>
</body>
</html>
|
www/wp-content/themes/twentyseventeen/assets/css/ie9.css | wplib/wplib-box | /*
Theme Name: Twenty Seventeen
Description: IE9 specific styles.
*/
.has-header-image.twentyseventeen-front-page .custom-header,
.has-header-video.twentyseventeen-front-page .custom-header,
.has-header-image.home.blog .custom-header,
.has-header-video.home.blog .custom-header {
height: 300px;
}
.has-header-image .custom-header-media img,
.has-header-video .custom-header-media video,
.has-header-video .custom-header-media iframe {
min-width: 100%;
}
@media screen and (min-width: 30em) {
.has-header-image.twentyseventeen-front-page .custom-header,
.has-header-video.twentyseventeen-front-page .custom-header,
.has-header-image.home.blog .custom-header,
.has-header-video.home.blog .custom-header,
.twentyseventeen-front-page.has-header-image .custom-header-media,
.home.blog.has-header-image .custom-header-media,
.panel-image {
height: 700px;
}
}
@media screen and (min-width: 48em) {
.has-header-image.twentyseventeen-front-page .custom-header,
.has-header-video.twentyseventeen-front-page .custom-header,
.has-header-image.home.blog .custom-header,
.has-header-video.home.blog .custom-header,
.twentyseventeen-front-page.has-header-image .custom-header-media,
.home.blog.has-header-image .custom-header-media,
.panel-image {
height: 1000px;
}
}
|
www/static/bootstrap337/cyborg/bootstrap.css | atopon/bootswatch-plus | @import url("https://fonts.googleapis.com/css?family=Roboto:400,700");
/*!
* bootswatch v3.3.7
* Homepage: http://bootswatch.com
* Copyright 2012-2016 Thomas Park
* Licensed under MIT
* Based on Bootstrap
*/
/*!
* Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden],
template {
display: none;
}
a {
background-color: transparent;
}
a:active,
a:hover {
outline: 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
mark {
background: #ff0;
color: #000;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 1em 40px;
}
hr {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
pre {
overflow: auto;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0;
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
input {
line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"] {
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
legend {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
.navbar {
display: none;
}
.btn > .caret,
.dropup > .btn > .caret {
border-top-color: #000 !important;
}
.label {
border: 1px solid #000;
}
.table {
border-collapse: collapse !important;
}
.table td,
.table th {
background-color: #fff !important;
}
.table-bordered th,
.table-bordered td {
border: 1px solid #ddd !important;
}
}
@font-face {
font-family: 'Glyphicons Halflings';
src: url('../fonts/glyphicons-halflings-regular.eot');
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
content: "\002a";
}
.glyphicon-plus:before {
content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
content: "\20ac";
}
.glyphicon-minus:before {
content: "\2212";
}
.glyphicon-cloud:before {
content: "\2601";
}
.glyphicon-envelope:before {
content: "\2709";
}
.glyphicon-pencil:before {
content: "\270f";
}
.glyphicon-glass:before {
content: "\e001";
}
.glyphicon-music:before {
content: "\e002";
}
.glyphicon-search:before {
content: "\e003";
}
.glyphicon-heart:before {
content: "\e005";
}
.glyphicon-star:before {
content: "\e006";
}
.glyphicon-star-empty:before {
content: "\e007";
}
.glyphicon-user:before {
content: "\e008";
}
.glyphicon-film:before {
content: "\e009";
}
.glyphicon-th-large:before {
content: "\e010";
}
.glyphicon-th:before {
content: "\e011";
}
.glyphicon-th-list:before {
content: "\e012";
}
.glyphicon-ok:before {
content: "\e013";
}
.glyphicon-remove:before {
content: "\e014";
}
.glyphicon-zoom-in:before {
content: "\e015";
}
.glyphicon-zoom-out:before {
content: "\e016";
}
.glyphicon-off:before {
content: "\e017";
}
.glyphicon-signal:before {
content: "\e018";
}
.glyphicon-cog:before {
content: "\e019";
}
.glyphicon-trash:before {
content: "\e020";
}
.glyphicon-home:before {
content: "\e021";
}
.glyphicon-file:before {
content: "\e022";
}
.glyphicon-time:before {
content: "\e023";
}
.glyphicon-road:before {
content: "\e024";
}
.glyphicon-download-alt:before {
content: "\e025";
}
.glyphicon-download:before {
content: "\e026";
}
.glyphicon-upload:before {
content: "\e027";
}
.glyphicon-inbox:before {
content: "\e028";
}
.glyphicon-play-circle:before {
content: "\e029";
}
.glyphicon-repeat:before {
content: "\e030";
}
.glyphicon-refresh:before {
content: "\e031";
}
.glyphicon-list-alt:before {
content: "\e032";
}
.glyphicon-lock:before {
content: "\e033";
}
.glyphicon-flag:before {
content: "\e034";
}
.glyphicon-headphones:before {
content: "\e035";
}
.glyphicon-volume-off:before {
content: "\e036";
}
.glyphicon-volume-down:before {
content: "\e037";
}
.glyphicon-volume-up:before {
content: "\e038";
}
.glyphicon-qrcode:before {
content: "\e039";
}
.glyphicon-barcode:before {
content: "\e040";
}
.glyphicon-tag:before {
content: "\e041";
}
.glyphicon-tags:before {
content: "\e042";
}
.glyphicon-book:before {
content: "\e043";
}
.glyphicon-bookmark:before {
content: "\e044";
}
.glyphicon-print:before {
content: "\e045";
}
.glyphicon-camera:before {
content: "\e046";
}
.glyphicon-font:before {
content: "\e047";
}
.glyphicon-bold:before {
content: "\e048";
}
.glyphicon-italic:before {
content: "\e049";
}
.glyphicon-text-height:before {
content: "\e050";
}
.glyphicon-text-width:before {
content: "\e051";
}
.glyphicon-align-left:before {
content: "\e052";
}
.glyphicon-align-center:before {
content: "\e053";
}
.glyphicon-align-right:before {
content: "\e054";
}
.glyphicon-align-justify:before {
content: "\e055";
}
.glyphicon-list:before {
content: "\e056";
}
.glyphicon-indent-left:before {
content: "\e057";
}
.glyphicon-indent-right:before {
content: "\e058";
}
.glyphicon-facetime-video:before {
content: "\e059";
}
.glyphicon-picture:before {
content: "\e060";
}
.glyphicon-map-marker:before {
content: "\e062";
}
.glyphicon-adjust:before {
content: "\e063";
}
.glyphicon-tint:before {
content: "\e064";
}
.glyphicon-edit:before {
content: "\e065";
}
.glyphicon-share:before {
content: "\e066";
}
.glyphicon-check:before {
content: "\e067";
}
.glyphicon-move:before {
content: "\e068";
}
.glyphicon-step-backward:before {
content: "\e069";
}
.glyphicon-fast-backward:before {
content: "\e070";
}
.glyphicon-backward:before {
content: "\e071";
}
.glyphicon-play:before {
content: "\e072";
}
.glyphicon-pause:before {
content: "\e073";
}
.glyphicon-stop:before {
content: "\e074";
}
.glyphicon-forward:before {
content: "\e075";
}
.glyphicon-fast-forward:before {
content: "\e076";
}
.glyphicon-step-forward:before {
content: "\e077";
}
.glyphicon-eject:before {
content: "\e078";
}
.glyphicon-chevron-left:before {
content: "\e079";
}
.glyphicon-chevron-right:before {
content: "\e080";
}
.glyphicon-plus-sign:before {
content: "\e081";
}
.glyphicon-minus-sign:before {
content: "\e082";
}
.glyphicon-remove-sign:before {
content: "\e083";
}
.glyphicon-ok-sign:before {
content: "\e084";
}
.glyphicon-question-sign:before {
content: "\e085";
}
.glyphicon-info-sign:before {
content: "\e086";
}
.glyphicon-screenshot:before {
content: "\e087";
}
.glyphicon-remove-circle:before {
content: "\e088";
}
.glyphicon-ok-circle:before {
content: "\e089";
}
.glyphicon-ban-circle:before {
content: "\e090";
}
.glyphicon-arrow-left:before {
content: "\e091";
}
.glyphicon-arrow-right:before {
content: "\e092";
}
.glyphicon-arrow-up:before {
content: "\e093";
}
.glyphicon-arrow-down:before {
content: "\e094";
}
.glyphicon-share-alt:before {
content: "\e095";
}
.glyphicon-resize-full:before {
content: "\e096";
}
.glyphicon-resize-small:before {
content: "\e097";
}
.glyphicon-exclamation-sign:before {
content: "\e101";
}
.glyphicon-gift:before {
content: "\e102";
}
.glyphicon-leaf:before {
content: "\e103";
}
.glyphicon-fire:before {
content: "\e104";
}
.glyphicon-eye-open:before {
content: "\e105";
}
.glyphicon-eye-close:before {
content: "\e106";
}
.glyphicon-warning-sign:before {
content: "\e107";
}
.glyphicon-plane:before {
content: "\e108";
}
.glyphicon-calendar:before {
content: "\e109";
}
.glyphicon-random:before {
content: "\e110";
}
.glyphicon-comment:before {
content: "\e111";
}
.glyphicon-magnet:before {
content: "\e112";
}
.glyphicon-chevron-up:before {
content: "\e113";
}
.glyphicon-chevron-down:before {
content: "\e114";
}
.glyphicon-retweet:before {
content: "\e115";
}
.glyphicon-shopping-cart:before {
content: "\e116";
}
.glyphicon-folder-close:before {
content: "\e117";
}
.glyphicon-folder-open:before {
content: "\e118";
}
.glyphicon-resize-vertical:before {
content: "\e119";
}
.glyphicon-resize-horizontal:before {
content: "\e120";
}
.glyphicon-hdd:before {
content: "\e121";
}
.glyphicon-bullhorn:before {
content: "\e122";
}
.glyphicon-bell:before {
content: "\e123";
}
.glyphicon-certificate:before {
content: "\e124";
}
.glyphicon-thumbs-up:before {
content: "\e125";
}
.glyphicon-thumbs-down:before {
content: "\e126";
}
.glyphicon-hand-right:before {
content: "\e127";
}
.glyphicon-hand-left:before {
content: "\e128";
}
.glyphicon-hand-up:before {
content: "\e129";
}
.glyphicon-hand-down:before {
content: "\e130";
}
.glyphicon-circle-arrow-right:before {
content: "\e131";
}
.glyphicon-circle-arrow-left:before {
content: "\e132";
}
.glyphicon-circle-arrow-up:before {
content: "\e133";
}
.glyphicon-circle-arrow-down:before {
content: "\e134";
}
.glyphicon-globe:before {
content: "\e135";
}
.glyphicon-wrench:before {
content: "\e136";
}
.glyphicon-tasks:before {
content: "\e137";
}
.glyphicon-filter:before {
content: "\e138";
}
.glyphicon-briefcase:before {
content: "\e139";
}
.glyphicon-fullscreen:before {
content: "\e140";
}
.glyphicon-dashboard:before {
content: "\e141";
}
.glyphicon-paperclip:before {
content: "\e142";
}
.glyphicon-heart-empty:before {
content: "\e143";
}
.glyphicon-link:before {
content: "\e144";
}
.glyphicon-phone:before {
content: "\e145";
}
.glyphicon-pushpin:before {
content: "\e146";
}
.glyphicon-usd:before {
content: "\e148";
}
.glyphicon-gbp:before {
content: "\e149";
}
.glyphicon-sort:before {
content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
content: "\e152";
}
.glyphicon-sort-by-order:before {
content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
content: "\e154";
}
.glyphicon-sort-by-attributes:before {
content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
content: "\e156";
}
.glyphicon-unchecked:before {
content: "\e157";
}
.glyphicon-expand:before {
content: "\e158";
}
.glyphicon-collapse-down:before {
content: "\e159";
}
.glyphicon-collapse-up:before {
content: "\e160";
}
.glyphicon-log-in:before {
content: "\e161";
}
.glyphicon-flash:before {
content: "\e162";
}
.glyphicon-log-out:before {
content: "\e163";
}
.glyphicon-new-window:before {
content: "\e164";
}
.glyphicon-record:before {
content: "\e165";
}
.glyphicon-save:before {
content: "\e166";
}
.glyphicon-open:before {
content: "\e167";
}
.glyphicon-saved:before {
content: "\e168";
}
.glyphicon-import:before {
content: "\e169";
}
.glyphicon-export:before {
content: "\e170";
}
.glyphicon-send:before {
content: "\e171";
}
.glyphicon-floppy-disk:before {
content: "\e172";
}
.glyphicon-floppy-saved:before {
content: "\e173";
}
.glyphicon-floppy-remove:before {
content: "\e174";
}
.glyphicon-floppy-save:before {
content: "\e175";
}
.glyphicon-floppy-open:before {
content: "\e176";
}
.glyphicon-credit-card:before {
content: "\e177";
}
.glyphicon-transfer:before {
content: "\e178";
}
.glyphicon-cutlery:before {
content: "\e179";
}
.glyphicon-header:before {
content: "\e180";
}
.glyphicon-compressed:before {
content: "\e181";
}
.glyphicon-earphone:before {
content: "\e182";
}
.glyphicon-phone-alt:before {
content: "\e183";
}
.glyphicon-tower:before {
content: "\e184";
}
.glyphicon-stats:before {
content: "\e185";
}
.glyphicon-sd-video:before {
content: "\e186";
}
.glyphicon-hd-video:before {
content: "\e187";
}
.glyphicon-subtitles:before {
content: "\e188";
}
.glyphicon-sound-stereo:before {
content: "\e189";
}
.glyphicon-sound-dolby:before {
content: "\e190";
}
.glyphicon-sound-5-1:before {
content: "\e191";
}
.glyphicon-sound-6-1:before {
content: "\e192";
}
.glyphicon-sound-7-1:before {
content: "\e193";
}
.glyphicon-copyright-mark:before {
content: "\e194";
}
.glyphicon-registration-mark:before {
content: "\e195";
}
.glyphicon-cloud-download:before {
content: "\e197";
}
.glyphicon-cloud-upload:before {
content: "\e198";
}
.glyphicon-tree-conifer:before {
content: "\e199";
}
.glyphicon-tree-deciduous:before {
content: "\e200";
}
.glyphicon-cd:before {
content: "\e201";
}
.glyphicon-save-file:before {
content: "\e202";
}
.glyphicon-open-file:before {
content: "\e203";
}
.glyphicon-level-up:before {
content: "\e204";
}
.glyphicon-copy:before {
content: "\e205";
}
.glyphicon-paste:before {
content: "\e206";
}
.glyphicon-alert:before {
content: "\e209";
}
.glyphicon-equalizer:before {
content: "\e210";
}
.glyphicon-king:before {
content: "\e211";
}
.glyphicon-queen:before {
content: "\e212";
}
.glyphicon-pawn:before {
content: "\e213";
}
.glyphicon-bishop:before {
content: "\e214";
}
.glyphicon-knight:before {
content: "\e215";
}
.glyphicon-baby-formula:before {
content: "\e216";
}
.glyphicon-tent:before {
content: "\26fa";
}
.glyphicon-blackboard:before {
content: "\e218";
}
.glyphicon-bed:before {
content: "\e219";
}
.glyphicon-apple:before {
content: "\f8ff";
}
.glyphicon-erase:before {
content: "\e221";
}
.glyphicon-hourglass:before {
content: "\231b";
}
.glyphicon-lamp:before {
content: "\e223";
}
.glyphicon-duplicate:before {
content: "\e224";
}
.glyphicon-piggy-bank:before {
content: "\e225";
}
.glyphicon-scissors:before {
content: "\e226";
}
.glyphicon-bitcoin:before {
content: "\e227";
}
.glyphicon-btc:before {
content: "\e227";
}
.glyphicon-xbt:before {
content: "\e227";
}
.glyphicon-yen:before {
content: "\00a5";
}
.glyphicon-jpy:before {
content: "\00a5";
}
.glyphicon-ruble:before {
content: "\20bd";
}
.glyphicon-rub:before {
content: "\20bd";
}
.glyphicon-scale:before {
content: "\e230";
}
.glyphicon-ice-lolly:before {
content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
content: "\e232";
}
.glyphicon-education:before {
content: "\e233";
}
.glyphicon-option-horizontal:before {
content: "\e234";
}
.glyphicon-option-vertical:before {
content: "\e235";
}
.glyphicon-menu-hamburger:before {
content: "\e236";
}
.glyphicon-modal-window:before {
content: "\e237";
}
.glyphicon-oil:before {
content: "\e238";
}
.glyphicon-grain:before {
content: "\e239";
}
.glyphicon-sunglasses:before {
content: "\e240";
}
.glyphicon-text-size:before {
content: "\e241";
}
.glyphicon-text-color:before {
content: "\e242";
}
.glyphicon-text-background:before {
content: "\e243";
}
.glyphicon-object-align-top:before {
content: "\e244";
}
.glyphicon-object-align-bottom:before {
content: "\e245";
}
.glyphicon-object-align-horizontal:before {
content: "\e246";
}
.glyphicon-object-align-left:before {
content: "\e247";
}
.glyphicon-object-align-vertical:before {
content: "\e248";
}
.glyphicon-object-align-right:before {
content: "\e249";
}
.glyphicon-triangle-right:before {
content: "\e250";
}
.glyphicon-triangle-left:before {
content: "\e251";
}
.glyphicon-triangle-bottom:before {
content: "\e252";
}
.glyphicon-triangle-top:before {
content: "\e253";
}
.glyphicon-console:before {
content: "\e254";
}
.glyphicon-superscript:before {
content: "\e255";
}
.glyphicon-subscript:before {
content: "\e256";
}
.glyphicon-menu-left:before {
content: "\e257";
}
.glyphicon-menu-right:before {
content: "\e258";
}
.glyphicon-menu-down:before {
content: "\e259";
}
.glyphicon-menu-up:before {
content: "\e260";
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
font-size: 10px;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #888888;
background-color: #060606;
}
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
a {
color: #2a9fd6;
text-decoration: none;
}
a:hover,
a:focus {
color: #2a9fd6;
text-decoration: underline;
}
a:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
figure {
margin: 0;
}
img {
vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
max-width: 100%;
height: auto;
}
.img-rounded {
border-radius: 6px;
}
.img-thumbnail {
padding: 4px;
line-height: 1.42857143;
background-color: #282828;
border: 1px solid #282828;
border-radius: 4px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
display: inline-block;
max-width: 100%;
height: auto;
}
.img-circle {
border-radius: 50%;
}
hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #282828;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
[role="button"] {
cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 500;
line-height: 1.1;
color: #ffffff;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
font-weight: normal;
line-height: 1;
color: #888888;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
margin-top: 20px;
margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
margin-top: 10px;
margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
font-size: 75%;
}
h1,
.h1 {
font-size: 56px;
}
h2,
.h2 {
font-size: 45px;
}
h3,
.h3 {
font-size: 34px;
}
h4,
.h4 {
font-size: 24px;
}
h5,
.h5 {
font-size: 20px;
}
h6,
.h6 {
font-size: 16px;
}
p {
margin: 0 0 10px;
}
.lead {
margin-bottom: 20px;
font-size: 16px;
font-weight: 300;
line-height: 1.4;
}
@media (min-width: 768px) {
.lead {
font-size: 21px;
}
}
small,
.small {
font-size: 85%;
}
mark,
.mark {
background-color: #ff8800;
padding: .2em;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-justify {
text-align: justify;
}
.text-nowrap {
white-space: nowrap;
}
.text-lowercase {
text-transform: lowercase;
}
.text-uppercase {
text-transform: uppercase;
}
.text-capitalize {
text-transform: capitalize;
}
.text-muted {
color: #888888;
}
.text-primary {
color: #2a9fd6;
}
a.text-primary:hover,
a.text-primary:focus {
color: #2180ac;
}
.text-success {
color: #ffffff;
}
a.text-success:hover,
a.text-success:focus {
color: #e6e6e6;
}
.text-info {
color: #ffffff;
}
a.text-info:hover,
a.text-info:focus {
color: #e6e6e6;
}
.text-warning {
color: #ffffff;
}
a.text-warning:hover,
a.text-warning:focus {
color: #e6e6e6;
}
.text-danger {
color: #ffffff;
}
a.text-danger:hover,
a.text-danger:focus {
color: #e6e6e6;
}
.bg-primary {
color: #fff;
background-color: #2a9fd6;
}
a.bg-primary:hover,
a.bg-primary:focus {
background-color: #2180ac;
}
.bg-success {
background-color: #77b300;
}
a.bg-success:hover,
a.bg-success:focus {
background-color: #558000;
}
.bg-info {
background-color: #9933cc;
}
a.bg-info:hover,
a.bg-info:focus {
background-color: #7a29a3;
}
.bg-warning {
background-color: #ff8800;
}
a.bg-warning:hover,
a.bg-warning:focus {
background-color: #cc6d00;
}
.bg-danger {
background-color: #cc0000;
}
a.bg-danger:hover,
a.bg-danger:focus {
background-color: #990000;
}
.page-header {
padding-bottom: 9px;
margin: 40px 0 20px;
border-bottom: 1px solid #282828;
}
ul,
ol {
margin-top: 0;
margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
margin-bottom: 0;
}
.list-unstyled {
padding-left: 0;
list-style: none;
}
.list-inline {
padding-left: 0;
list-style: none;
margin-left: -5px;
}
.list-inline > li {
display: inline-block;
padding-left: 5px;
padding-right: 5px;
}
dl {
margin-top: 0;
margin-bottom: 20px;
}
dt,
dd {
line-height: 1.42857143;
}
dt {
font-weight: bold;
}
dd {
margin-left: 0;
}
@media (min-width: 768px) {
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.dl-horizontal dd {
margin-left: 180px;
}
}
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #888888;
}
.initialism {
font-size: 90%;
text-transform: uppercase;
}
blockquote {
padding: 10px 20px;
margin: 0 0 20px;
font-size: 17.5px;
border-left: 5px solid #282828;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
display: block;
font-size: 80%;
line-height: 1.42857143;
color: #555555;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
border-right: 5px solid #282828;
border-left: 0;
text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
content: '\00A0 \2014';
}
address {
margin-bottom: 20px;
font-style: normal;
line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 4px;
}
kbd {
padding: 2px 4px;
font-size: 90%;
color: #ffffff;
background-color: #333333;
border-radius: 3px;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
padding: 0;
font-size: 100%;
font-weight: bold;
-webkit-box-shadow: none;
box-shadow: none;
}
pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 1.42857143;
word-break: break-all;
word-wrap: break-word;
color: #282828;
background-color: #f5f5f5;
border: 1px solid #cccccc;
border-radius: 4px;
}
pre code {
padding: 0;
font-size: inherit;
color: inherit;
white-space: pre-wrap;
background-color: transparent;
border-radius: 0;
}
.pre-scrollable {
max-height: 340px;
overflow-y: scroll;
}
.container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
.container-fluid {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
.row {
margin-left: -15px;
margin-right: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
float: left;
}
.col-xs-12 {
width: 100%;
}
.col-xs-11 {
width: 91.66666667%;
}
.col-xs-10 {
width: 83.33333333%;
}
.col-xs-9 {
width: 75%;
}
.col-xs-8 {
width: 66.66666667%;
}
.col-xs-7 {
width: 58.33333333%;
}
.col-xs-6 {
width: 50%;
}
.col-xs-5 {
width: 41.66666667%;
}
.col-xs-4 {
width: 33.33333333%;
}
.col-xs-3 {
width: 25%;
}
.col-xs-2 {
width: 16.66666667%;
}
.col-xs-1 {
width: 8.33333333%;
}
.col-xs-pull-12 {
right: 100%;
}
.col-xs-pull-11 {
right: 91.66666667%;
}
.col-xs-pull-10 {
right: 83.33333333%;
}
.col-xs-pull-9 {
right: 75%;
}
.col-xs-pull-8 {
right: 66.66666667%;
}
.col-xs-pull-7 {
right: 58.33333333%;
}
.col-xs-pull-6 {
right: 50%;
}
.col-xs-pull-5 {
right: 41.66666667%;
}
.col-xs-pull-4 {
right: 33.33333333%;
}
.col-xs-pull-3 {
right: 25%;
}
.col-xs-pull-2 {
right: 16.66666667%;
}
.col-xs-pull-1 {
right: 8.33333333%;
}
.col-xs-pull-0 {
right: auto;
}
.col-xs-push-12 {
left: 100%;
}
.col-xs-push-11 {
left: 91.66666667%;
}
.col-xs-push-10 {
left: 83.33333333%;
}
.col-xs-push-9 {
left: 75%;
}
.col-xs-push-8 {
left: 66.66666667%;
}
.col-xs-push-7 {
left: 58.33333333%;
}
.col-xs-push-6 {
left: 50%;
}
.col-xs-push-5 {
left: 41.66666667%;
}
.col-xs-push-4 {
left: 33.33333333%;
}
.col-xs-push-3 {
left: 25%;
}
.col-xs-push-2 {
left: 16.66666667%;
}
.col-xs-push-1 {
left: 8.33333333%;
}
.col-xs-push-0 {
left: auto;
}
.col-xs-offset-12 {
margin-left: 100%;
}
.col-xs-offset-11 {
margin-left: 91.66666667%;
}
.col-xs-offset-10 {
margin-left: 83.33333333%;
}
.col-xs-offset-9 {
margin-left: 75%;
}
.col-xs-offset-8 {
margin-left: 66.66666667%;
}
.col-xs-offset-7 {
margin-left: 58.33333333%;
}
.col-xs-offset-6 {
margin-left: 50%;
}
.col-xs-offset-5 {
margin-left: 41.66666667%;
}
.col-xs-offset-4 {
margin-left: 33.33333333%;
}
.col-xs-offset-3 {
margin-left: 25%;
}
.col-xs-offset-2 {
margin-left: 16.66666667%;
}
.col-xs-offset-1 {
margin-left: 8.33333333%;
}
.col-xs-offset-0 {
margin-left: 0%;
}
@media (min-width: 768px) {
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
float: left;
}
.col-sm-12 {
width: 100%;
}
.col-sm-11 {
width: 91.66666667%;
}
.col-sm-10 {
width: 83.33333333%;
}
.col-sm-9 {
width: 75%;
}
.col-sm-8 {
width: 66.66666667%;
}
.col-sm-7 {
width: 58.33333333%;
}
.col-sm-6 {
width: 50%;
}
.col-sm-5 {
width: 41.66666667%;
}
.col-sm-4 {
width: 33.33333333%;
}
.col-sm-3 {
width: 25%;
}
.col-sm-2 {
width: 16.66666667%;
}
.col-sm-1 {
width: 8.33333333%;
}
.col-sm-pull-12 {
right: 100%;
}
.col-sm-pull-11 {
right: 91.66666667%;
}
.col-sm-pull-10 {
right: 83.33333333%;
}
.col-sm-pull-9 {
right: 75%;
}
.col-sm-pull-8 {
right: 66.66666667%;
}
.col-sm-pull-7 {
right: 58.33333333%;
}
.col-sm-pull-6 {
right: 50%;
}
.col-sm-pull-5 {
right: 41.66666667%;
}
.col-sm-pull-4 {
right: 33.33333333%;
}
.col-sm-pull-3 {
right: 25%;
}
.col-sm-pull-2 {
right: 16.66666667%;
}
.col-sm-pull-1 {
right: 8.33333333%;
}
.col-sm-pull-0 {
right: auto;
}
.col-sm-push-12 {
left: 100%;
}
.col-sm-push-11 {
left: 91.66666667%;
}
.col-sm-push-10 {
left: 83.33333333%;
}
.col-sm-push-9 {
left: 75%;
}
.col-sm-push-8 {
left: 66.66666667%;
}
.col-sm-push-7 {
left: 58.33333333%;
}
.col-sm-push-6 {
left: 50%;
}
.col-sm-push-5 {
left: 41.66666667%;
}
.col-sm-push-4 {
left: 33.33333333%;
}
.col-sm-push-3 {
left: 25%;
}
.col-sm-push-2 {
left: 16.66666667%;
}
.col-sm-push-1 {
left: 8.33333333%;
}
.col-sm-push-0 {
left: auto;
}
.col-sm-offset-12 {
margin-left: 100%;
}
.col-sm-offset-11 {
margin-left: 91.66666667%;
}
.col-sm-offset-10 {
margin-left: 83.33333333%;
}
.col-sm-offset-9 {
margin-left: 75%;
}
.col-sm-offset-8 {
margin-left: 66.66666667%;
}
.col-sm-offset-7 {
margin-left: 58.33333333%;
}
.col-sm-offset-6 {
margin-left: 50%;
}
.col-sm-offset-5 {
margin-left: 41.66666667%;
}
.col-sm-offset-4 {
margin-left: 33.33333333%;
}
.col-sm-offset-3 {
margin-left: 25%;
}
.col-sm-offset-2 {
margin-left: 16.66666667%;
}
.col-sm-offset-1 {
margin-left: 8.33333333%;
}
.col-sm-offset-0 {
margin-left: 0%;
}
}
@media (min-width: 992px) {
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
float: left;
}
.col-md-12 {
width: 100%;
}
.col-md-11 {
width: 91.66666667%;
}
.col-md-10 {
width: 83.33333333%;
}
.col-md-9 {
width: 75%;
}
.col-md-8 {
width: 66.66666667%;
}
.col-md-7 {
width: 58.33333333%;
}
.col-md-6 {
width: 50%;
}
.col-md-5 {
width: 41.66666667%;
}
.col-md-4 {
width: 33.33333333%;
}
.col-md-3 {
width: 25%;
}
.col-md-2 {
width: 16.66666667%;
}
.col-md-1 {
width: 8.33333333%;
}
.col-md-pull-12 {
right: 100%;
}
.col-md-pull-11 {
right: 91.66666667%;
}
.col-md-pull-10 {
right: 83.33333333%;
}
.col-md-pull-9 {
right: 75%;
}
.col-md-pull-8 {
right: 66.66666667%;
}
.col-md-pull-7 {
right: 58.33333333%;
}
.col-md-pull-6 {
right: 50%;
}
.col-md-pull-5 {
right: 41.66666667%;
}
.col-md-pull-4 {
right: 33.33333333%;
}
.col-md-pull-3 {
right: 25%;
}
.col-md-pull-2 {
right: 16.66666667%;
}
.col-md-pull-1 {
right: 8.33333333%;
}
.col-md-pull-0 {
right: auto;
}
.col-md-push-12 {
left: 100%;
}
.col-md-push-11 {
left: 91.66666667%;
}
.col-md-push-10 {
left: 83.33333333%;
}
.col-md-push-9 {
left: 75%;
}
.col-md-push-8 {
left: 66.66666667%;
}
.col-md-push-7 {
left: 58.33333333%;
}
.col-md-push-6 {
left: 50%;
}
.col-md-push-5 {
left: 41.66666667%;
}
.col-md-push-4 {
left: 33.33333333%;
}
.col-md-push-3 {
left: 25%;
}
.col-md-push-2 {
left: 16.66666667%;
}
.col-md-push-1 {
left: 8.33333333%;
}
.col-md-push-0 {
left: auto;
}
.col-md-offset-12 {
margin-left: 100%;
}
.col-md-offset-11 {
margin-left: 91.66666667%;
}
.col-md-offset-10 {
margin-left: 83.33333333%;
}
.col-md-offset-9 {
margin-left: 75%;
}
.col-md-offset-8 {
margin-left: 66.66666667%;
}
.col-md-offset-7 {
margin-left: 58.33333333%;
}
.col-md-offset-6 {
margin-left: 50%;
}
.col-md-offset-5 {
margin-left: 41.66666667%;
}
.col-md-offset-4 {
margin-left: 33.33333333%;
}
.col-md-offset-3 {
margin-left: 25%;
}
.col-md-offset-2 {
margin-left: 16.66666667%;
}
.col-md-offset-1 {
margin-left: 8.33333333%;
}
.col-md-offset-0 {
margin-left: 0%;
}
}
@media (min-width: 1200px) {
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
float: left;
}
.col-lg-12 {
width: 100%;
}
.col-lg-11 {
width: 91.66666667%;
}
.col-lg-10 {
width: 83.33333333%;
}
.col-lg-9 {
width: 75%;
}
.col-lg-8 {
width: 66.66666667%;
}
.col-lg-7 {
width: 58.33333333%;
}
.col-lg-6 {
width: 50%;
}
.col-lg-5 {
width: 41.66666667%;
}
.col-lg-4 {
width: 33.33333333%;
}
.col-lg-3 {
width: 25%;
}
.col-lg-2 {
width: 16.66666667%;
}
.col-lg-1 {
width: 8.33333333%;
}
.col-lg-pull-12 {
right: 100%;
}
.col-lg-pull-11 {
right: 91.66666667%;
}
.col-lg-pull-10 {
right: 83.33333333%;
}
.col-lg-pull-9 {
right: 75%;
}
.col-lg-pull-8 {
right: 66.66666667%;
}
.col-lg-pull-7 {
right: 58.33333333%;
}
.col-lg-pull-6 {
right: 50%;
}
.col-lg-pull-5 {
right: 41.66666667%;
}
.col-lg-pull-4 {
right: 33.33333333%;
}
.col-lg-pull-3 {
right: 25%;
}
.col-lg-pull-2 {
right: 16.66666667%;
}
.col-lg-pull-1 {
right: 8.33333333%;
}
.col-lg-pull-0 {
right: auto;
}
.col-lg-push-12 {
left: 100%;
}
.col-lg-push-11 {
left: 91.66666667%;
}
.col-lg-push-10 {
left: 83.33333333%;
}
.col-lg-push-9 {
left: 75%;
}
.col-lg-push-8 {
left: 66.66666667%;
}
.col-lg-push-7 {
left: 58.33333333%;
}
.col-lg-push-6 {
left: 50%;
}
.col-lg-push-5 {
left: 41.66666667%;
}
.col-lg-push-4 {
left: 33.33333333%;
}
.col-lg-push-3 {
left: 25%;
}
.col-lg-push-2 {
left: 16.66666667%;
}
.col-lg-push-1 {
left: 8.33333333%;
}
.col-lg-push-0 {
left: auto;
}
.col-lg-offset-12 {
margin-left: 100%;
}
.col-lg-offset-11 {
margin-left: 91.66666667%;
}
.col-lg-offset-10 {
margin-left: 83.33333333%;
}
.col-lg-offset-9 {
margin-left: 75%;
}
.col-lg-offset-8 {
margin-left: 66.66666667%;
}
.col-lg-offset-7 {
margin-left: 58.33333333%;
}
.col-lg-offset-6 {
margin-left: 50%;
}
.col-lg-offset-5 {
margin-left: 41.66666667%;
}
.col-lg-offset-4 {
margin-left: 33.33333333%;
}
.col-lg-offset-3 {
margin-left: 25%;
}
.col-lg-offset-2 {
margin-left: 16.66666667%;
}
.col-lg-offset-1 {
margin-left: 8.33333333%;
}
.col-lg-offset-0 {
margin-left: 0%;
}
}
table {
background-color: #181818;
}
caption {
padding-top: 8px;
padding-bottom: 8px;
color: #888888;
text-align: left;
}
th {
text-align: left;
}
.table {
width: 100%;
max-width: 100%;
margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
padding: 8px;
line-height: 1.42857143;
vertical-align: top;
border-top: 1px solid #282828;
}
.table > thead > tr > th {
vertical-align: bottom;
border-bottom: 2px solid #282828;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
border-top: 0;
}
.table > tbody + tbody {
border-top: 2px solid #282828;
}
.table .table {
background-color: #060606;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
padding: 5px;
}
.table-bordered {
border: 1px solid #282828;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
border: 1px solid #282828;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
background-color: #080808;
}
.table-hover > tbody > tr:hover {
background-color: #282828;
}
table col[class*="col-"] {
position: static;
float: none;
display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
position: static;
float: none;
display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
background-color: #282828;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
background-color: #1b1b1b;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
background-color: #77b300;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
background-color: #669a00;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
background-color: #9933cc;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
background-color: #8a2eb8;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
background-color: #ff8800;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
background-color: #e67a00;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
background-color: #cc0000;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
background-color: #b30000;
}
.table-responsive {
overflow-x: auto;
min-height: 0.01%;
}
@media screen and (max-width: 767px) {
.table-responsive {
width: 100%;
margin-bottom: 15px;
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid #282828;
}
.table-responsive > .table {
margin-bottom: 0;
}
.table-responsive > .table > thead > tr > th,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > td {
white-space: nowrap;
}
.table-responsive > .table-bordered {
border: 0;
}
.table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0;
}
.table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0;
}
.table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
border-bottom: 0;
}
}
fieldset {
padding: 0;
margin: 0;
border: 0;
min-width: 0;
}
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 20px;
font-size: 21px;
line-height: inherit;
color: #888888;
border: 0;
border-bottom: 1px solid #282828;
}
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
input[type="search"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9;
line-height: normal;
}
input[type="file"] {
display: block;
}
input[type="range"] {
display: block;
width: 100%;
}
select[multiple],
select[size] {
height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
output {
display: block;
padding-top: 9px;
font-size: 14px;
line-height: 1.42857143;
color: #888888;
}
.form-control {
display: block;
width: 100%;
height: 38px;
padding: 8px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #888888;
background-color: #ffffff;
background-image: none;
border: 1px solid #282828;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
color: #888888;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #888888;
}
.form-control::-webkit-input-placeholder {
color: #888888;
}
.form-control::-ms-expand {
border: 0;
background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: #adafae;
opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
cursor: not-allowed;
}
textarea.form-control {
height: auto;
}
input[type="search"] {
-webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
line-height: 38px;
}
input[type="date"].input-sm,
input[type="time"].input-sm,
input[type="datetime-local"].input-sm,
input[type="month"].input-sm,
.input-group-sm input[type="date"],
.input-group-sm input[type="time"],
.input-group-sm input[type="datetime-local"],
.input-group-sm input[type="month"] {
line-height: 30px;
}
input[type="date"].input-lg,
input[type="time"].input-lg,
input[type="datetime-local"].input-lg,
input[type="month"].input-lg,
.input-group-lg input[type="date"],
.input-group-lg input[type="time"],
.input-group-lg input[type="datetime-local"],
.input-group-lg input[type="month"] {
line-height: 54px;
}
}
.form-group {
margin-bottom: 15px;
}
.radio,
.checkbox {
position: relative;
display: block;
margin-top: 10px;
margin-bottom: 10px;
}
.radio label,
.checkbox label {
min-height: 20px;
padding-left: 20px;
margin-bottom: 0;
font-weight: normal;
cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
position: absolute;
margin-left: -20px;
margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
position: relative;
display: inline-block;
padding-left: 20px;
margin-bottom: 0;
vertical-align: middle;
font-weight: normal;
cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
margin-top: 0;
margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
cursor: not-allowed;
}
.form-control-static {
padding-top: 9px;
padding-bottom: 9px;
margin-bottom: 0;
min-height: 34px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
padding-left: 0;
padding-right: 0;
}
.input-sm {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
select.input-sm {
height: 30px;
line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
height: auto;
}
.form-group-sm .form-control {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.form-group-sm select.form-control {
height: 30px;
line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
height: auto;
}
.form-group-sm .form-control-static {
height: 30px;
min-height: 32px;
padding: 6px 10px;
font-size: 12px;
line-height: 1.5;
}
.input-lg {
height: 54px;
padding: 14px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
select.input-lg {
height: 54px;
line-height: 54px;
}
textarea.input-lg,
select[multiple].input-lg {
height: auto;
}
.form-group-lg .form-control {
height: 54px;
padding: 14px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
.form-group-lg select.form-control {
height: 54px;
line-height: 54px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
height: auto;
}
.form-group-lg .form-control-static {
height: 54px;
min-height: 38px;
padding: 15px 16px;
font-size: 18px;
line-height: 1.3333333;
}
.has-feedback {
position: relative;
}
.has-feedback .form-control {
padding-right: 47.5px;
}
.form-control-feedback {
position: absolute;
top: 0;
right: 0;
z-index: 2;
display: block;
width: 38px;
height: 38px;
line-height: 38px;
text-align: center;
pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
width: 54px;
height: 54px;
line-height: 54px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
width: 30px;
height: 30px;
line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
color: #ffffff;
}
.has-success .form-control {
border-color: #ffffff;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
border-color: #e6e6e6;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
}
.has-success .input-group-addon {
color: #ffffff;
border-color: #ffffff;
background-color: #77b300;
}
.has-success .form-control-feedback {
color: #ffffff;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
color: #ffffff;
}
.has-warning .form-control {
border-color: #ffffff;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
border-color: #e6e6e6;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
}
.has-warning .input-group-addon {
color: #ffffff;
border-color: #ffffff;
background-color: #ff8800;
}
.has-warning .form-control-feedback {
color: #ffffff;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
color: #ffffff;
}
.has-error .form-control {
border-color: #ffffff;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
border-color: #e6e6e6;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffffff;
}
.has-error .input-group-addon {
color: #ffffff;
border-color: #ffffff;
background-color: #cc0000;
}
.has-error .form-control-feedback {
color: #ffffff;
}
.has-feedback label ~ .form-control-feedback {
top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
top: 0;
}
.help-block {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #c8c8c8;
}
@media (min-width: 768px) {
.form-inline .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.form-inline .form-control-static {
display: inline-block;
}
.form-inline .input-group {
display: inline-table;
vertical-align: middle;
}
.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
width: auto;
}
.form-inline .input-group > .form-control {
width: 100%;
}
.form-inline .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio,
.form-inline .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio label,
.form-inline .checkbox label {
padding-left: 0;
}
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.form-inline .has-feedback .form-control-feedback {
top: 0;
}
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
margin-top: 0;
margin-bottom: 0;
padding-top: 9px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
min-height: 29px;
}
.form-horizontal .form-group {
margin-left: -15px;
margin-right: -15px;
}
@media (min-width: 768px) {
.form-horizontal .control-label {
text-align: right;
margin-bottom: 0;
padding-top: 9px;
}
}
.form-horizontal .has-feedback .form-control-feedback {
right: 15px;
}
@media (min-width: 768px) {
.form-horizontal .form-group-lg .control-label {
padding-top: 15px;
font-size: 18px;
}
}
@media (min-width: 768px) {
.form-horizontal .form-group-sm .control-label {
padding-top: 6px;
font-size: 12px;
}
}
.btn {
display: inline-block;
margin-bottom: 0;
font-weight: normal;
text-align: center;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 8px 12px;
font-size: 14px;
line-height: 1.42857143;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
color: #ffffff;
text-decoration: none;
}
.btn:active,
.btn.active {
outline: 0;
background-image: none;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
cursor: not-allowed;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
pointer-events: none;
}
.btn-default {
color: #ffffff;
background-color: #424242;
border-color: #424242;
}
.btn-default:focus,
.btn-default.focus {
color: #ffffff;
background-color: #282828;
border-color: #020202;
}
.btn-default:hover {
color: #ffffff;
background-color: #282828;
border-color: #232323;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
color: #ffffff;
background-color: #282828;
border-color: #232323;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
color: #ffffff;
background-color: #161616;
border-color: #020202;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
background-color: #424242;
border-color: #424242;
}
.btn-default .badge {
color: #424242;
background-color: #ffffff;
}
.btn-primary {
color: #ffffff;
background-color: #2a9fd6;
border-color: #2a9fd6;
}
.btn-primary:focus,
.btn-primary.focus {
color: #ffffff;
background-color: #2180ac;
border-color: #15506c;
}
.btn-primary:hover {
color: #ffffff;
background-color: #2180ac;
border-color: #1f79a3;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
color: #ffffff;
background-color: #2180ac;
border-color: #1f79a3;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
color: #ffffff;
background-color: #1b698e;
border-color: #15506c;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
background-color: #2a9fd6;
border-color: #2a9fd6;
}
.btn-primary .badge {
color: #2a9fd6;
background-color: #ffffff;
}
.btn-success {
color: #ffffff;
background-color: #77b300;
border-color: #77b300;
}
.btn-success:focus,
.btn-success.focus {
color: #ffffff;
background-color: #558000;
border-color: #223300;
}
.btn-success:hover {
color: #ffffff;
background-color: #558000;
border-color: #4e7600;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
color: #ffffff;
background-color: #558000;
border-color: #4e7600;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
color: #ffffff;
background-color: #3d5c00;
border-color: #223300;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
background-color: #77b300;
border-color: #77b300;
}
.btn-success .badge {
color: #77b300;
background-color: #ffffff;
}
.btn-info {
color: #ffffff;
background-color: #9933cc;
border-color: #9933cc;
}
.btn-info:focus,
.btn-info.focus {
color: #ffffff;
background-color: #7a29a3;
border-color: #4c1966;
}
.btn-info:hover {
color: #ffffff;
background-color: #7a29a3;
border-color: #74279b;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
color: #ffffff;
background-color: #7a29a3;
border-color: #74279b;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
color: #ffffff;
background-color: #652287;
border-color: #4c1966;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
background-color: #9933cc;
border-color: #9933cc;
}
.btn-info .badge {
color: #9933cc;
background-color: #ffffff;
}
.btn-warning {
color: #ffffff;
background-color: #ff8800;
border-color: #ff8800;
}
.btn-warning:focus,
.btn-warning.focus {
color: #ffffff;
background-color: #cc6d00;
border-color: #804400;
}
.btn-warning:hover {
color: #ffffff;
background-color: #cc6d00;
border-color: #c26700;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
color: #ffffff;
background-color: #cc6d00;
border-color: #c26700;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
color: #ffffff;
background-color: #a85a00;
border-color: #804400;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
background-color: #ff8800;
border-color: #ff8800;
}
.btn-warning .badge {
color: #ff8800;
background-color: #ffffff;
}
.btn-danger {
color: #ffffff;
background-color: #cc0000;
border-color: #cc0000;
}
.btn-danger:focus,
.btn-danger.focus {
color: #ffffff;
background-color: #990000;
border-color: #4d0000;
}
.btn-danger:hover {
color: #ffffff;
background-color: #990000;
border-color: #8f0000;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
color: #ffffff;
background-color: #990000;
border-color: #8f0000;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
color: #ffffff;
background-color: #750000;
border-color: #4d0000;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
background-color: #cc0000;
border-color: #cc0000;
}
.btn-danger .badge {
color: #cc0000;
background-color: #ffffff;
}
.btn-link {
color: #2a9fd6;
font-weight: normal;
border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
background-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
color: #2a9fd6;
text-decoration: underline;
background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
color: #888888;
text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
padding: 14px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
padding: 1px 5px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.btn-block {
display: block;
width: 100%;
}
.btn-block + .btn-block {
margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
width: 100%;
}
.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
.fade.in {
opacity: 1;
}
.collapse {
display: none;
}
.collapse.in {
display: block;
}
tr.collapse.in {
display: table-row;
}
tbody.collapse.in {
display: table-row-group;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition-property: height, visibility;
-o-transition-property: height, visibility;
transition-property: height, visibility;
-webkit-transition-duration: 0.35s;
-o-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
-o-transition-timing-function: ease;
transition-timing-function: ease;
}
.caret {
display: inline-block;
width: 0;
height: 0;
margin-left: 2px;
vertical-align: middle;
border-top: 4px dashed;
border-top: 4px solid \9;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
}
.dropup,
.dropdown {
position: relative;
}
.dropdown-toggle:focus {
outline: 0;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
list-style: none;
font-size: 14px;
text-align: left;
background-color: #222222;
border: 1px solid #444444;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 4px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
-webkit-background-clip: padding-box;
background-clip: padding-box;
}
.dropdown-menu.pull-right {
right: 0;
left: auto;
}
.dropdown-menu .divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: rgba(255, 255, 255, 0.1);
}
.dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #ffffff;
white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
text-decoration: none;
color: #ffffff;
background-color: #2a9fd6;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
color: #ffffff;
text-decoration: none;
outline: 0;
background-color: #2a9fd6;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
color: #888888;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
text-decoration: none;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
cursor: not-allowed;
}
.open > .dropdown-menu {
display: block;
}
.open > a {
outline: 0;
}
.dropdown-menu-right {
left: auto;
right: 0;
}
.dropdown-menu-left {
left: 0;
right: auto;
}
.dropdown-header {
display: block;
padding: 3px 20px;
font-size: 12px;
line-height: 1.42857143;
color: #888888;
white-space: nowrap;
}
.dropdown-backdrop {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 990;
}
.pull-right > .dropdown-menu {
right: 0;
left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
border-top: 0;
border-bottom: 4px dashed;
border-bottom: 4px solid \9;
content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
top: auto;
bottom: 100%;
margin-bottom: 2px;
}
@media (min-width: 768px) {
.navbar-right .dropdown-menu {
left: auto;
right: 0;
}
.navbar-right .dropdown-menu-left {
left: 0;
right: auto;
}
}
.btn-group,
.btn-group-vertical {
position: relative;
display: inline-block;
vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
margin-left: -1px;
}
.btn-toolbar {
margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
border-radius: 0;
}
.btn-group > .btn:first-child {
margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.btn-group > .btn-group {
float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
padding-left: 8px;
padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
padding-left: 12px;
padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
-webkit-box-shadow: none;
box-shadow: none;
}
.btn .caret {
margin-left: 0;
}
.btn-lg .caret {
border-width: 5px 5px 0;
border-bottom-width: 0;
}
.dropup .btn-lg .caret {
border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
display: block;
float: none;
width: 100%;
max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
margin-top: -1px;
margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
border-top-right-radius: 4px;
border-top-left-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
border-top-right-radius: 0;
border-top-left-radius: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.btn-group-justified {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
float: none;
display: table-cell;
width: 1%;
}
.btn-group-justified > .btn-group .btn {
width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none;
}
.input-group {
position: relative;
display: table;
border-collapse: separate;
}
.input-group[class*="col-"] {
float: none;
padding-left: 0;
padding-right: 0;
}
.input-group .form-control {
position: relative;
z-index: 2;
float: left;
width: 100%;
margin-bottom: 0;
}
.input-group .form-control:focus {
z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
height: 54px;
padding: 14px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
height: 54px;
line-height: 54px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
height: 30px;
line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
border-radius: 0;
}
.input-group-addon,
.input-group-btn {
width: 1%;
white-space: nowrap;
vertical-align: middle;
}
.input-group-addon {
padding: 8px 12px;
font-size: 14px;
font-weight: normal;
line-height: 1;
color: #888888;
text-align: center;
background-color: #424242;
border: 1px solid #282828;
border-radius: 4px;
}
.input-group-addon.input-sm {
padding: 5px 10px;
font-size: 12px;
border-radius: 3px;
}
.input-group-addon.input-lg {
padding: 14px 16px;
font-size: 18px;
border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.input-group-addon:first-child {
border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.input-group-addon:last-child {
border-left: 0;
}
.input-group-btn {
position: relative;
font-size: 0;
white-space: nowrap;
}
.input-group-btn > .btn {
position: relative;
}
.input-group-btn > .btn + .btn {
margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
z-index: 2;
margin-left: -1px;
}
.nav {
margin-bottom: 0;
padding-left: 0;
list-style: none;
}
.nav > li {
position: relative;
display: block;
}
.nav > li > a {
position: relative;
display: block;
padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
text-decoration: none;
background-color: #222222;
}
.nav > li.disabled > a {
color: #888888;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
color: #888888;
text-decoration: none;
background-color: transparent;
cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
background-color: #222222;
border-color: #2a9fd6;
}
.nav .nav-divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.nav > li > a > img {
max-width: none;
}
.nav-tabs {
border-bottom: 1px solid #282828;
}
.nav-tabs > li {
float: left;
margin-bottom: -1px;
}
.nav-tabs > li > a {
margin-right: 2px;
line-height: 1.42857143;
border: 1px solid transparent;
border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
border-color: transparent transparent #282828;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
color: #ffffff;
background-color: #2a9fd6;
border: 1px solid #282828;
border-bottom-color: transparent;
cursor: default;
}
.nav-tabs.nav-justified {
width: 100%;
border-bottom: 0;
}
.nav-tabs.nav-justified > li {
float: none;
}
.nav-tabs.nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-tabs.nav-justified > li > a {
margin-bottom: 0;
}
}
.nav-tabs.nav-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #dddddd;
}
@media (min-width: 768px) {
.nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #dddddd;
border-radius: 4px 4px 0 0;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border-bottom-color: #060606;
}
}
.nav-pills > li {
float: left;
}
.nav-pills > li > a {
border-radius: 4px;
}
.nav-pills > li + li {
margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
color: #ffffff;
background-color: #2a9fd6;
}
.nav-stacked > li {
float: none;
}
.nav-stacked > li + li {
margin-top: 2px;
margin-left: 0;
}
.nav-justified {
width: 100%;
}
.nav-justified > li {
float: none;
}
.nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-justified > li > a {
margin-bottom: 0;
}
}
.nav-tabs-justified {
border-bottom: 0;
}
.nav-tabs-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border: 1px solid #dddddd;
}
@media (min-width: 768px) {
.nav-tabs-justified > li > a {
border-bottom: 1px solid #dddddd;
border-radius: 4px 4px 0 0;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border-bottom-color: #060606;
}
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 20px;
border: 1px solid transparent;
}
@media (min-width: 768px) {
.navbar {
border-radius: 4px;
}
}
@media (min-width: 768px) {
.navbar-header {
float: left;
}
}
.navbar-collapse {
overflow-x: visible;
padding-right: 15px;
padding-left: 15px;
border-top: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
overflow-y: auto;
}
@media (min-width: 768px) {
.navbar-collapse {
width: auto;
border-top: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
}
.navbar-collapse.in {
overflow-y: visible;
}
.navbar-fixed-top .navbar-collapse,
.navbar-static-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
padding-left: 0;
padding-right: 0;
}
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 200px;
}
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0;
}
}
.navbar-static-top {
z-index: 1000;
border-width: 0 0 1px;
}
@media (min-width: 768px) {
.navbar-static-top {
border-radius: 0;
}
}
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
}
@media (min-width: 768px) {
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0;
}
.navbar-brand {
float: left;
padding: 15px 15px;
font-size: 18px;
line-height: 20px;
height: 50px;
}
.navbar-brand:hover,
.navbar-brand:focus {
text-decoration: none;
}
.navbar-brand > img {
display: block;
}
@media (min-width: 768px) {
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
margin-left: -15px;
}
}
.navbar-toggle {
position: relative;
float: right;
margin-right: 15px;
padding: 9px 10px;
margin-top: 8px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.navbar-toggle:focus {
outline: 0;
}
.navbar-toggle .icon-bar {
display: block;
width: 22px;
height: 2px;
border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px;
}
@media (min-width: 768px) {
.navbar-toggle {
display: none;
}
}
.navbar-nav {
margin: 7.5px -15px;
}
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 20px;
}
@media (max-width: 767px) {
.navbar-nav .open .dropdown-menu {
position: static;
float: none;
width: auto;
margin-top: 0;
background-color: transparent;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px;
}
.navbar-nav .open .dropdown-menu > li > a {
line-height: 20px;
}
.navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-nav .open .dropdown-menu > li > a:focus {
background-image: none;
}
}
@media (min-width: 768px) {
.navbar-nav {
float: left;
margin: 0;
}
.navbar-nav > li {
float: left;
}
.navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px;
}
}
.navbar-form {
margin-left: -15px;
margin-right: -15px;
padding: 10px 15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
margin-top: 6px;
margin-bottom: 6px;
}
@media (min-width: 768px) {
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.navbar-form .form-control-static {
display: inline-block;
}
.navbar-form .input-group {
display: inline-table;
vertical-align: middle;
}
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
width: auto;
}
.navbar-form .input-group > .form-control {
width: 100%;
}
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio,
.navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio label,
.navbar-form .checkbox label {
padding-left: 0;
}
.navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.navbar-form .has-feedback .form-control-feedback {
top: 0;
}
}
@media (max-width: 767px) {
.navbar-form .form-group {
margin-bottom: 5px;
}
.navbar-form .form-group:last-child {
margin-bottom: 0;
}
}
@media (min-width: 768px) {
.navbar-form {
width: auto;
border: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
}
.navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
margin-bottom: 0;
border-top-right-radius: 4px;
border-top-left-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.navbar-btn {
margin-top: 6px;
margin-bottom: 6px;
}
.navbar-btn.btn-sm {
margin-top: 10px;
margin-bottom: 10px;
}
.navbar-btn.btn-xs {
margin-top: 14px;
margin-bottom: 14px;
}
.navbar-text {
margin-top: 15px;
margin-bottom: 15px;
}
@media (min-width: 768px) {
.navbar-text {
float: left;
margin-left: 15px;
margin-right: 15px;
}
}
@media (min-width: 768px) {
.navbar-left {
float: left !important;
}
.navbar-right {
float: right !important;
margin-right: -15px;
}
.navbar-right ~ .navbar-right {
margin-right: 0;
}
}
.navbar-default {
background-color: #060606;
border-color: #282828;
}
.navbar-default .navbar-brand {
color: #ffffff;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #ffffff;
background-color: transparent;
}
.navbar-default .navbar-text {
color: #888888;
}
.navbar-default .navbar-nav > li > a {
color: #888888;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #ffffff;
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #ffffff;
background-color: transparent;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
color: #888888;
background-color: transparent;
}
.navbar-default .navbar-toggle {
border-color: #282828;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #282828;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #cccccc;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #282828;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
background-color: transparent;
color: #ffffff;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #888888;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #ffffff;
background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #ffffff;
background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #888888;
background-color: transparent;
}
}
.navbar-default .navbar-link {
color: #888888;
}
.navbar-default .navbar-link:hover {
color: #ffffff;
}
.navbar-default .btn-link {
color: #888888;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
color: #ffffff;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
color: #888888;
}
.navbar-inverse {
background-color: #222222;
border-color: #080808;
}
.navbar-inverse .navbar-brand {
color: #ffffff;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
color: #ffffff;
background-color: transparent;
}
.navbar-inverse .navbar-text {
color: #888888;
}
.navbar-inverse .navbar-nav > li > a {
color: #888888;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
color: #ffffff;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
color: #ffffff;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
color: #aaaaaa;
background-color: transparent;
}
.navbar-inverse .navbar-toggle {
border-color: #333333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
background-color: #333333;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #ffffff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
background-color: transparent;
color: #ffffff;
}
@media (max-width: 767px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #888888;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #ffffff;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #ffffff;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #aaaaaa;
background-color: transparent;
}
}
.navbar-inverse .navbar-link {
color: #888888;
}
.navbar-inverse .navbar-link:hover {
color: #ffffff;
}
.navbar-inverse .btn-link {
color: #888888;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
color: #ffffff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #aaaaaa;
}
.breadcrumb {
padding: 8px 15px;
margin-bottom: 20px;
list-style: none;
background-color: #222222;
border-radius: 4px;
}
.breadcrumb > li {
display: inline-block;
}
.breadcrumb > li + li:before {
content: "/\00a0";
padding: 0 5px;
color: #ffffff;
}
.breadcrumb > .active {
color: #888888;
}
.pagination {
display: inline-block;
padding-left: 0;
margin: 20px 0;
border-radius: 4px;
}
.pagination > li {
display: inline;
}
.pagination > li > a,
.pagination > li > span {
position: relative;
float: left;
padding: 8px 12px;
line-height: 1.42857143;
text-decoration: none;
color: #ffffff;
background-color: #222222;
border: 1px solid #282828;
margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
margin-left: 0;
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
z-index: 2;
color: #ffffff;
background-color: #2a9fd6;
border-color: transparent;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
z-index: 3;
color: #ffffff;
background-color: #2a9fd6;
border-color: transparent;
cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: #888888;
background-color: #222222;
border-color: #282828;
cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
padding: 14px 16px;
font-size: 18px;
line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
border-bottom-left-radius: 6px;
border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
border-bottom-right-radius: 6px;
border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
border-bottom-left-radius: 3px;
border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
}
.pager {
padding-left: 0;
margin: 20px 0;
list-style: none;
text-align: center;
}
.pager li {
display: inline;
}
.pager li > a,
.pager li > span {
display: inline-block;
padding: 5px 14px;
background-color: #222222;
border: 1px solid #282828;
border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
text-decoration: none;
background-color: #2a9fd6;
}
.pager .next > a,
.pager .next > span {
float: right;
}
.pager .previous > a,
.pager .previous > span {
float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
color: #888888;
background-color: #222222;
cursor: not-allowed;
}
.label {
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: bold;
line-height: 1;
color: #ffffff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
}
a.label:hover,
a.label:focus {
color: #ffffff;
text-decoration: none;
cursor: pointer;
}
.label:empty {
display: none;
}
.btn .label {
position: relative;
top: -1px;
}
.label-default {
background-color: #424242;
}
.label-default[href]:hover,
.label-default[href]:focus {
background-color: #282828;
}
.label-primary {
background-color: #2a9fd6;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
background-color: #2180ac;
}
.label-success {
background-color: #77b300;
}
.label-success[href]:hover,
.label-success[href]:focus {
background-color: #558000;
}
.label-info {
background-color: #9933cc;
}
.label-info[href]:hover,
.label-info[href]:focus {
background-color: #7a29a3;
}
.label-warning {
background-color: #ff8800;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
background-color: #cc6d00;
}
.label-danger {
background-color: #cc0000;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
background-color: #990000;
}
.badge {
display: inline-block;
min-width: 10px;
padding: 3px 7px;
font-size: 12px;
font-weight: bold;
color: #ffffff;
line-height: 1;
vertical-align: middle;
white-space: nowrap;
text-align: center;
background-color: #2a9fd6;
border-radius: 10px;
}
.badge:empty {
display: none;
}
.btn .badge {
position: relative;
top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
top: 0;
padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
color: #ffffff;
text-decoration: none;
cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
color: #2a9fd6;
background-color: #ffffff;
}
.list-group-item > .badge {
float: right;
}
.list-group-item > .badge + .badge {
margin-right: 5px;
}
.nav-pills > li > a > .badge {
margin-left: 3px;
}
.jumbotron {
padding-top: 30px;
padding-bottom: 30px;
margin-bottom: 30px;
color: inherit;
background-color: #151515;
}
.jumbotron h1,
.jumbotron .h1 {
color: inherit;
}
.jumbotron p {
margin-bottom: 15px;
font-size: 21px;
font-weight: 200;
}
.jumbotron > hr {
border-top-color: #000000;
}
.container .jumbotron,
.container-fluid .jumbotron {
border-radius: 6px;
padding-left: 15px;
padding-right: 15px;
}
.jumbotron .container {
max-width: 100%;
}
@media screen and (min-width: 768px) {
.jumbotron {
padding-top: 48px;
padding-bottom: 48px;
}
.container .jumbotron,
.container-fluid .jumbotron {
padding-left: 60px;
padding-right: 60px;
}
.jumbotron h1,
.jumbotron .h1 {
font-size: 63px;
}
}
.thumbnail {
display: block;
padding: 4px;
margin-bottom: 20px;
line-height: 1.42857143;
background-color: #282828;
border: 1px solid #282828;
border-radius: 4px;
-webkit-transition: border 0.2s ease-in-out;
-o-transition: border 0.2s ease-in-out;
transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
margin-left: auto;
margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
border-color: #2a9fd6;
}
.thumbnail .caption {
padding: 9px;
color: #888888;
}
.alert {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
.alert h4 {
margin-top: 0;
color: inherit;
}
.alert .alert-link {
font-weight: bold;
}
.alert > p,
.alert > ul {
margin-bottom: 0;
}
.alert > p + p {
margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
position: relative;
top: -2px;
right: -21px;
color: inherit;
}
.alert-success {
background-color: #77b300;
border-color: #809a00;
color: #ffffff;
}
.alert-success hr {
border-top-color: #6a8000;
}
.alert-success .alert-link {
color: #e6e6e6;
}
.alert-info {
background-color: #9933cc;
border-color: #6e2caf;
color: #ffffff;
}
.alert-info hr {
border-top-color: #61279b;
}
.alert-info .alert-link {
color: #e6e6e6;
}
.alert-warning {
background-color: #ff8800;
border-color: #f05800;
color: #ffffff;
}
.alert-warning hr {
border-top-color: #d64f00;
}
.alert-warning .alert-link {
color: #e6e6e6;
}
.alert-danger {
background-color: #cc0000;
border-color: #bd001f;
color: #ffffff;
}
.alert-danger hr {
border-top-color: #a3001b;
}
.alert-danger .alert-link {
color: #e6e6e6;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@-o-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
.progress {
overflow: hidden;
height: 20px;
margin-bottom: 20px;
background-color: #222222;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
float: left;
width: 0%;
height: 100%;
font-size: 12px;
line-height: 20px;
color: #ffffff;
text-align: center;
background-color: #2a9fd6;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-transition: width 0.6s ease;
-o-transition: width 0.6s ease;
transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-webkit-background-size: 40px 40px;
background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
background-color: #77b300;
}
.progress-striped .progress-bar-success {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
background-color: #9933cc;
}
.progress-striped .progress-bar-info {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
background-color: #ff8800;
}
.progress-striped .progress-bar-warning {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
background-color: #cc0000;
}
.progress-striped .progress-bar-danger {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media {
margin-top: 15px;
}
.media:first-child {
margin-top: 0;
}
.media,
.media-body {
zoom: 1;
overflow: hidden;
}
.media-body {
width: 10000px;
}
.media-object {
display: block;
}
.media-object.img-thumbnail {
max-width: none;
}
.media-right,
.media > .pull-right {
padding-left: 10px;
}
.media-left,
.media > .pull-left {
padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
display: table-cell;
vertical-align: top;
}
.media-middle {
vertical-align: middle;
}
.media-bottom {
vertical-align: bottom;
}
.media-heading {
margin-top: 0;
margin-bottom: 5px;
}
.media-list {
padding-left: 0;
list-style: none;
}
.list-group {
margin-bottom: 20px;
padding-left: 0;
}
.list-group-item {
position: relative;
display: block;
padding: 10px 15px;
margin-bottom: -1px;
background-color: #222222;
border: 1px solid #282828;
}
.list-group-item:first-child {
border-top-right-radius: 4px;
border-top-left-radius: 4px;
}
.list-group-item:last-child {
margin-bottom: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
a.list-group-item,
button.list-group-item {
color: #888888;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
color: #ffffff;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
text-decoration: none;
color: #888888;
background-color: #484848;
}
button.list-group-item {
width: 100%;
text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
background-color: #adafae;
color: #888888;
cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
color: #888888;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
z-index: 2;
color: #ffffff;
background-color: #2a9fd6;
border-color: #2a9fd6;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
color: #d5ecf7;
}
.list-group-item-success {
color: #ffffff;
background-color: #77b300;
}
a.list-group-item-success,
button.list-group-item-success {
color: #ffffff;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
color: #ffffff;
background-color: #669a00;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
color: #fff;
background-color: #ffffff;
border-color: #ffffff;
}
.list-group-item-info {
color: #ffffff;
background-color: #9933cc;
}
a.list-group-item-info,
button.list-group-item-info {
color: #ffffff;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
color: #ffffff;
background-color: #8a2eb8;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
color: #fff;
background-color: #ffffff;
border-color: #ffffff;
}
.list-group-item-warning {
color: #ffffff;
background-color: #ff8800;
}
a.list-group-item-warning,
button.list-group-item-warning {
color: #ffffff;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
color: #ffffff;
background-color: #e67a00;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
color: #fff;
background-color: #ffffff;
border-color: #ffffff;
}
.list-group-item-danger {
color: #ffffff;
background-color: #cc0000;
}
a.list-group-item-danger,
button.list-group-item-danger {
color: #ffffff;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
color: #ffffff;
background-color: #b30000;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
color: #fff;
background-color: #ffffff;
border-color: #ffffff;
}
.list-group-item-heading {
margin-top: 0;
margin-bottom: 5px;
}
.list-group-item-text {
margin-bottom: 0;
line-height: 1.3;
}
.panel {
margin-bottom: 20px;
background-color: #222222;
border: 1px solid transparent;
border-radius: 4px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
padding: 15px;
}
.panel-heading {
padding: 10px 15px;
border-bottom: 1px solid transparent;
border-top-right-radius: 3px;
border-top-left-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
color: inherit;
}
.panel-title {
margin-top: 0;
margin-bottom: 0;
font-size: 16px;
color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
color: inherit;
}
.panel-footer {
padding: 10px 15px;
background-color: #3c3c3c;
border-top: 1px solid #282828;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
border-width: 1px 0;
border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
border-top: 0;
border-top-right-radius: 3px;
border-top-left-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
border-bottom: 0;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
border-top-width: 0;
}
.list-group + .panel-footer {
border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
padding-left: 15px;
padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
border-top-right-radius: 3px;
border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
border-top: 1px solid #282828;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
border-bottom: 0;
}
.panel > .table-responsive {
border: 0;
margin-bottom: 0;
}
.panel-group {
margin-bottom: 20px;
}
.panel-group .panel {
margin-bottom: 0;
border-radius: 4px;
}
.panel-group .panel + .panel {
margin-top: 5px;
}
.panel-group .panel-heading {
border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
border-top: 1px solid #282828;
}
.panel-group .panel-footer {
border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
border-bottom: 1px solid #282828;
}
.panel-default {
border-color: #282828;
}
.panel-default > .panel-heading {
color: #888888;
background-color: #3c3c3c;
border-color: #282828;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #282828;
}
.panel-default > .panel-heading .badge {
color: #3c3c3c;
background-color: #888888;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #282828;
}
.panel-primary {
border-color: #2a9fd6;
}
.panel-primary > .panel-heading {
color: #ffffff;
background-color: #2a9fd6;
border-color: #2a9fd6;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #2a9fd6;
}
.panel-primary > .panel-heading .badge {
color: #2a9fd6;
background-color: #ffffff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #2a9fd6;
}
.panel-success {
border-color: #809a00;
}
.panel-success > .panel-heading {
color: #ffffff;
background-color: #77b300;
border-color: #809a00;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #809a00;
}
.panel-success > .panel-heading .badge {
color: #77b300;
background-color: #ffffff;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #809a00;
}
.panel-info {
border-color: #6e2caf;
}
.panel-info > .panel-heading {
color: #ffffff;
background-color: #9933cc;
border-color: #6e2caf;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #6e2caf;
}
.panel-info > .panel-heading .badge {
color: #9933cc;
background-color: #ffffff;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #6e2caf;
}
.panel-warning {
border-color: #f05800;
}
.panel-warning > .panel-heading {
color: #ffffff;
background-color: #ff8800;
border-color: #f05800;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #f05800;
}
.panel-warning > .panel-heading .badge {
color: #ff8800;
background-color: #ffffff;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #f05800;
}
.panel-danger {
border-color: #bd001f;
}
.panel-danger > .panel-heading {
color: #ffffff;
background-color: #cc0000;
border-color: #bd001f;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #bd001f;
}
.panel-danger > .panel-heading .badge {
color: #cc0000;
background-color: #ffffff;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #bd001f;
}
.embed-responsive {
position: relative;
display: block;
height: 0;
padding: 0;
overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
position: absolute;
top: 0;
left: 0;
bottom: 0;
height: 100%;
width: 100%;
border: 0;
}
.embed-responsive-16by9 {
padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
padding-bottom: 75%;
}
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #151515;
border: 1px solid #030303;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
border-color: #ddd;
border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
padding: 24px;
border-radius: 6px;
}
.well-sm {
padding: 9px;
border-radius: 3px;
}
.close {
float: right;
font-size: 21px;
font-weight: bold;
line-height: 1;
color: #000000;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.2;
filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
color: #000000;
text-decoration: none;
cursor: pointer;
opacity: 0.5;
filter: alpha(opacity=50);
}
button.close {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
}
.modal-open {
overflow: hidden;
}
.modal {
display: none;
overflow: hidden;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
-webkit-overflow-scrolling: touch;
outline: 0;
}
.modal.fade .modal-dialog {
-webkit-transform: translate(0, -25%);
-ms-transform: translate(0, -25%);
-o-transform: translate(0, -25%);
transform: translate(0, -25%);
-webkit-transition: -webkit-transform 0.3s ease-out;
-o-transition: -o-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}
.modal-dialog {
position: relative;
width: auto;
margin: 10px;
}
.modal-content {
position: relative;
background-color: #202020;
border: 1px solid #999999;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
-webkit-background-clip: padding-box;
background-clip: padding-box;
outline: 0;
}
.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000000;
}
.modal-backdrop.fade {
opacity: 0;
filter: alpha(opacity=0);
}
.modal-backdrop.in {
opacity: 0.5;
filter: alpha(opacity=50);
}
.modal-header {
padding: 15px;
border-bottom: 1px solid #282828;
}
.modal-header .close {
margin-top: -2px;
}
.modal-title {
margin: 0;
line-height: 1.42857143;
}
.modal-body {
position: relative;
padding: 20px;
}
.modal-footer {
padding: 20px;
text-align: right;
border-top: 1px solid #282828;
}
.modal-footer .btn + .btn {
margin-left: 5px;
margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
margin-left: 0;
}
.modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll;
}
@media (min-width: 768px) {
.modal-dialog {
width: 600px;
margin: 30px auto;
}
.modal-content {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.modal-sm {
width: 300px;
}
}
@media (min-width: 992px) {
.modal-lg {
width: 900px;
}
}
.tooltip {
position: absolute;
z-index: 1070;
display: block;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
letter-spacing: normal;
line-break: auto;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
white-space: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
font-size: 12px;
opacity: 0;
filter: alpha(opacity=0);
}
.tooltip.in {
opacity: 0.9;
filter: alpha(opacity=90);
}
.tooltip.top {
margin-top: -3px;
padding: 5px 0;
}
.tooltip.right {
margin-left: 3px;
padding: 0 5px;
}
.tooltip.bottom {
margin-top: 3px;
padding: 5px 0;
}
.tooltip.left {
margin-left: -3px;
padding: 0 5px;
}
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #ffffff;
text-align: center;
background-color: #2c2c2c;
border-radius: 4px;
}
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #2c2c2c;
}
.tooltip.top-left .tooltip-arrow {
bottom: 0;
right: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #2c2c2c;
}
.tooltip.top-right .tooltip-arrow {
bottom: 0;
left: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #2c2c2c;
}
.tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-width: 5px 5px 5px 0;
border-right-color: #2c2c2c;
}
.tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-width: 5px 0 5px 5px;
border-left-color: #2c2c2c;
}
.tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-width: 0 5px 5px;
border-bottom-color: #2c2c2c;
}
.tooltip.bottom-left .tooltip-arrow {
top: 0;
right: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #2c2c2c;
}
.tooltip.bottom-right .tooltip-arrow {
top: 0;
left: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #2c2c2c;
}
.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1060;
display: none;
max-width: 276px;
padding: 1px;
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
letter-spacing: normal;
line-break: auto;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
white-space: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
font-size: 14px;
background-color: #2c2c2c;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #2c2c2c;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
margin-top: -10px;
}
.popover.right {
margin-left: 10px;
}
.popover.bottom {
margin-top: 10px;
}
.popover.left {
margin-left: -10px;
}
.popover-title {
margin: 0;
padding: 8px 14px;
font-size: 14px;
background-color: #252525;
border-bottom: 1px solid #181818;
border-radius: 5px 5px 0 0;
}
.popover-content {
padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.popover > .arrow {
border-width: 11px;
}
.popover > .arrow:after {
border-width: 10px;
content: "";
}
.popover.top > .arrow {
left: 50%;
margin-left: -11px;
border-bottom-width: 0;
border-top-color: #2c2c2c;
border-top-color: rgba(0, 0, 0, 0.2);
bottom: -11px;
}
.popover.top > .arrow:after {
content: " ";
bottom: 1px;
margin-left: -10px;
border-bottom-width: 0;
border-top-color: #2c2c2c;
}
.popover.right > .arrow {
top: 50%;
left: -11px;
margin-top: -11px;
border-left-width: 0;
border-right-color: #2c2c2c;
border-right-color: rgba(0, 0, 0, 0.2);
}
.popover.right > .arrow:after {
content: " ";
left: 1px;
bottom: -10px;
border-left-width: 0;
border-right-color: #2c2c2c;
}
.popover.bottom > .arrow {
left: 50%;
margin-left: -11px;
border-top-width: 0;
border-bottom-color: #2c2c2c;
border-bottom-color: rgba(0, 0, 0, 0.2);
top: -11px;
}
.popover.bottom > .arrow:after {
content: " ";
top: 1px;
margin-left: -10px;
border-top-width: 0;
border-bottom-color: #2c2c2c;
}
.popover.left > .arrow {
top: 50%;
right: -11px;
margin-top: -11px;
border-right-width: 0;
border-left-color: #2c2c2c;
border-left-color: rgba(0, 0, 0, 0.2);
}
.popover.left > .arrow:after {
content: " ";
right: 1px;
border-right-width: 0;
border-left-color: #2c2c2c;
bottom: -10px;
}
.carousel {
position: relative;
}
.carousel-inner {
position: relative;
overflow: hidden;
width: 100%;
}
.carousel-inner > .item {
display: none;
position: relative;
-webkit-transition: 0.6s ease-in-out left;
-o-transition: 0.6s ease-in-out left;
transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-inner > .item {
-webkit-transition: -webkit-transform 0.6s ease-in-out;
-o-transition: -o-transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000px;
perspective: 1000px;
}
.carousel-inner > .item.next,
.carousel-inner > .item.active.right {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
left: 0;
}
.carousel-inner > .item.prev,
.carousel-inner > .item.active.left {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
left: 0;
}
.carousel-inner > .item.next.left,
.carousel-inner > .item.prev.right,
.carousel-inner > .item.active {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
left: 0;
}
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
display: block;
}
.carousel-inner > .active {
left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
position: absolute;
top: 0;
width: 100%;
}
.carousel-inner > .next {
left: 100%;
}
.carousel-inner > .prev {
left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
left: 0;
}
.carousel-inner > .active.left {
left: -100%;
}
.carousel-inner > .active.right {
left: 100%;
}
.carousel-control {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 15%;
opacity: 0.5;
filter: alpha(opacity=50);
font-size: 20px;
color: #ffffff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
background-color: rgba(0, 0, 0, 0);
}
.carousel-control.left {
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
left: auto;
right: 0;
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
outline: 0;
color: #ffffff;
text-decoration: none;
opacity: 0.9;
filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
position: absolute;
top: 50%;
margin-top: -10px;
z-index: 5;
display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
left: 50%;
margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
right: 50%;
margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 20px;
height: 20px;
line-height: 1;
font-family: serif;
}
.carousel-control .icon-prev:before {
content: '\2039';
}
.carousel-control .icon-next:before {
content: '\203a';
}
.carousel-indicators {
position: absolute;
bottom: 10px;
left: 50%;
z-index: 15;
width: 60%;
margin-left: -30%;
padding-left: 0;
list-style: none;
text-align: center;
}
.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
border: 1px solid #ffffff;
border-radius: 10px;
cursor: pointer;
background-color: #000 \9;
background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
margin: 0;
width: 12px;
height: 12px;
background-color: #ffffff;
}
.carousel-caption {
position: absolute;
left: 15%;
right: 15%;
bottom: 20px;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #ffffff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
text-shadow: none;
}
@media screen and (min-width: 768px) {
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 30px;
height: 30px;
margin-top: -10px;
font-size: 30px;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
margin-left: -10px;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
margin-right: -10px;
}
.carousel-caption {
left: 20%;
right: 20%;
padding-bottom: 30px;
}
.carousel-indicators {
bottom: 20px;
}
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
content: " ";
display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
clear: both;
}
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
.hide {
display: none !important;
}
.show {
display: block !important;
}
.invisible {
visibility: hidden;
}
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.hidden {
display: none !important;
}
.affix {
position: fixed;
}
@-ms-viewport {
width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
display: none !important;
}
@media (max-width: 767px) {
.visible-xs {
display: block !important;
}
table.visible-xs {
display: table !important;
}
tr.visible-xs {
display: table-row !important;
}
th.visible-xs,
td.visible-xs {
display: table-cell !important;
}
}
@media (max-width: 767px) {
.visible-xs-block {
display: block !important;
}
}
@media (max-width: 767px) {
.visible-xs-inline {
display: inline !important;
}
}
@media (max-width: 767px) {
.visible-xs-inline-block {
display: inline-block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm {
display: block !important;
}
table.visible-sm {
display: table !important;
}
tr.visible-sm {
display: table-row !important;
}
th.visible-sm,
td.visible-sm {
display: table-cell !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-block {
display: block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline {
display: inline !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline-block {
display: inline-block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md {
display: block !important;
}
table.visible-md {
display: table !important;
}
tr.visible-md {
display: table-row !important;
}
th.visible-md,
td.visible-md {
display: table-cell !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-block {
display: block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline {
display: inline !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline-block {
display: inline-block !important;
}
}
@media (min-width: 1200px) {
.visible-lg {
display: block !important;
}
table.visible-lg {
display: table !important;
}
tr.visible-lg {
display: table-row !important;
}
th.visible-lg,
td.visible-lg {
display: table-cell !important;
}
}
@media (min-width: 1200px) {
.visible-lg-block {
display: block !important;
}
}
@media (min-width: 1200px) {
.visible-lg-inline {
display: inline !important;
}
}
@media (min-width: 1200px) {
.visible-lg-inline-block {
display: inline-block !important;
}
}
@media (max-width: 767px) {
.hidden-xs {
display: none !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.hidden-sm {
display: none !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.hidden-md {
display: none !important;
}
}
@media (min-width: 1200px) {
.hidden-lg {
display: none !important;
}
}
.visible-print {
display: none !important;
}
@media print {
.visible-print {
display: block !important;
}
table.visible-print {
display: table !important;
}
tr.visible-print {
display: table-row !important;
}
th.visible-print,
td.visible-print {
display: table-cell !important;
}
}
.visible-print-block {
display: none !important;
}
@media print {
.visible-print-block {
display: block !important;
}
}
.visible-print-inline {
display: none !important;
}
@media print {
.visible-print-inline {
display: inline !important;
}
}
.visible-print-inline-block {
display: none !important;
}
@media print {
.visible-print-inline-block {
display: inline-block !important;
}
}
@media print {
.hidden-print {
display: none !important;
}
}
.text-primary,
.text-primary:hover {
color: #2a9fd6;
}
.text-success,
.text-success:hover {
color: #77b300;
}
.text-danger,
.text-danger:hover {
color: #cc0000;
}
.text-warning,
.text-warning:hover {
color: #ff8800;
}
.text-info,
.text-info:hover {
color: #9933cc;
}
.bg-success,
.bg-info,
.bg-warning,
.bg-danger {
color: #fff;
}
table,
.table {
color: #fff;
}
table a:not(.btn),
.table a:not(.btn) {
color: #fff;
text-decoration: underline;
}
table .dropdown-menu a,
.table .dropdown-menu a {
text-decoration: none;
}
table .text-muted,
.table .text-muted {
color: #888888;
}
.table-responsive > .table {
background-color: #181818;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label,
.has-warning .form-control-feedback {
color: #ff8800;
}
.has-warning .form-control,
.has-warning .form-control:focus,
.has-warning .input-group-addon {
border-color: #ff8800;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label,
.has-error .form-control-feedback {
color: #cc0000;
}
.has-error .form-control,
.has-error .form-control:focus,
.has-error .input-group-addon {
border-color: #cc0000;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label,
.has-success .form-control-feedback {
color: #77b300;
}
.has-success .form-control,
.has-success .form-control:focus,
.has-success .input-group-addon {
border-color: #77b300;
}
legend {
color: #fff;
}
.nav-tabs a,
.nav-pills a,
.breadcrumb a,
.pager a {
color: #fff;
}
.alert .alert-link,
.alert a {
color: #ffffff;
text-decoration: underline;
}
.alert .close {
text-decoration: none;
}
.close {
color: #fff;
text-decoration: none;
opacity: 0.4;
}
.close:hover,
.close:focus {
color: #fff;
opacity: 1;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
border-color: #282828;
}
a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
border-color: #282828;
}
a.list-group-item-success.active {
background-color: #77b300;
}
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus {
background-color: #669a00;
}
a.list-group-item-warning.active {
background-color: #ff8800;
}
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
background-color: #e67a00;
}
a.list-group-item-danger.active {
background-color: #cc0000;
}
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
background-color: #b30000;
}
.jumbotron h1,
.jumbotron h2,
.jumbotron h3,
.jumbotron h4,
.jumbotron h5,
.jumbotron h6 {
color: #fff;
}
|
web/bower_components/google-apis/index.html | bengoodger/lemonaid | <!doctype html>
<!-- Copyright (c) 2014 Google Inc. All rights reserved. -->
<html>
<head>
<script src="../webcomponentsjs/webcomponents.min.js"></script>
<link rel="import" href="../core-component-page/core-component-page.html">
</head>
<body unresolved>
<core-component-page
moduleName="google-apis"
sources='["google-client-api.html", "google-jsapi.html", "google-maps-api.html", "google-plusone-api.html", "google-realtime-api.html", "google-youtube-api.html"]'>
</core-component-page>
</body>
</html>
|
www/ckeditor/_samples/output_html.html | tmatt95/cinyWeb | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>HTML Compliant Output — CKEditor Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<script type="text/javascript" src="../ckeditor.js"></script>
<script src="sample.js" type="text/javascript"></script>
<link href="sample.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="samples">
CKEditor Sample — Producing HTML Compliant Output
</h1>
<div class="description">
<p>
This sample shows how to configure CKEditor to output valid
<a class="samples" href="http://www.w3.org/TR/html401/">HTML 4.01</a> code.
Traditional HTML elements like <code><b></code>,
<code><i></code>, and <code><font></code> are used in place of
<code><strong></code>, <code><em></code>, and CSS styles.
</p>
<p>
To add a CKEditor instance outputting legacy HTML 4.01 code, load the editor using a standard
JavaScript call, and define CKEditor features to use the HTML compliant elements and attributes.
</p>
<p>
A snippet of the configuration code can be seen below; check the source of this page for
full definition:
</p>
<pre class="samples">CKEDITOR.replace( '<em>textarea_id</em>',
{
coreStyles_bold : { element : 'b' },
coreStyles_italic : { element : 'i' },
fontSize_style :
{
element : 'font',
attributes : { 'size' : '#(size)' }
}
// More definitions follow.
});</pre>
</div>
<!-- This <div> holds alert messages to be display in the sample page. -->
<div id="alerts">
<noscript>
<p>
<strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript
support, like yours, you should still see the contents (HTML data) and you should
be able to edit it normally, without a rich editor interface.
</p>
</noscript>
</div>
<form action="sample_posteddata.php" method="post">
<p>
<label for="editor1">
Editor 1:</label>
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <b>sample text</b>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'editor1',
{
/*
* Style sheet for the contents
*/
contentsCss : 'body {color:#000; background-color#:FFF;}',
/*
* Simple HTML5 doctype
*/
docType : '<!DOCTYPE HTML>',
/*
* Core styles.
*/
coreStyles_bold : { element : 'b' },
coreStyles_italic : { element : 'i' },
coreStyles_underline : { element : 'u'},
coreStyles_strike : { element : 'strike' },
/*
* Font face
*/
// Define the way font elements will be applied to the document. The "font"
// element will be used.
font_style :
{
element : 'font',
attributes : { 'face' : '#(family)' }
},
/*
* Font sizes.
*/
fontSize_sizes : 'xx-small/1;x-small/2;small/3;medium/4;large/5;x-large/6;xx-large/7',
fontSize_style :
{
element : 'font',
attributes : { 'size' : '#(size)' }
} ,
/*
* Font colors.
*/
colorButton_enableMore : true,
colorButton_foreStyle :
{
element : 'font',
attributes : { 'color' : '#(color)' }
},
colorButton_backStyle :
{
element : 'font',
styles : { 'background-color' : '#(color)' }
},
/*
* Styles combo.
*/
stylesSet :
[
{ name : 'Computer Code', element : 'code' },
{ name : 'Keyboard Phrase', element : 'kbd' },
{ name : 'Sample Text', element : 'samp' },
{ name : 'Variable', element : 'var' },
{ name : 'Deleted Text', element : 'del' },
{ name : 'Inserted Text', element : 'ins' },
{ name : 'Cited Work', element : 'cite' },
{ name : 'Inline Quotation', element : 'q' }
],
on : { 'instanceReady' : configureHtmlOutput }
});
/*
* Adjust the behavior of the dataProcessor to avoid styles
* and make it look like FCKeditor HTML output.
*/
function configureHtmlOutput( ev )
{
var editor = ev.editor,
dataProcessor = editor.dataProcessor,
htmlFilter = dataProcessor && dataProcessor.htmlFilter;
// Out self closing tags the HTML4 way, like <br>.
dataProcessor.writer.selfClosingEnd = '>';
// Make output formatting behave similar to FCKeditor
var dtd = CKEDITOR.dtd;
for ( var e in CKEDITOR.tools.extend( {}, dtd.$nonBodyContent, dtd.$block, dtd.$listItem, dtd.$tableContent ) )
{
dataProcessor.writer.setRules( e,
{
indent : true,
breakBeforeOpen : true,
breakAfterOpen : false,
breakBeforeClose : !dtd[ e ][ '#' ],
breakAfterClose : true
});
}
// Output properties as attributes, not styles.
htmlFilter.addRules(
{
elements :
{
$ : function( element )
{
// Output dimensions of images as width and height
if ( element.name == 'img' )
{
var style = element.attributes.style;
if ( style )
{
// Get the width from the style.
var match = /(?:^|\s)width\s*:\s*(\d+)px/i.exec( style ),
width = match && match[1];
// Get the height from the style.
match = /(?:^|\s)height\s*:\s*(\d+)px/i.exec( style );
var height = match && match[1];
if ( width )
{
element.attributes.style = element.attributes.style.replace( /(?:^|\s)width\s*:\s*(\d+)px;?/i , '' );
element.attributes.width = width;
}
if ( height )
{
element.attributes.style = element.attributes.style.replace( /(?:^|\s)height\s*:\s*(\d+)px;?/i , '' );
element.attributes.height = height;
}
}
}
// Output alignment of paragraphs using align
if ( element.name == 'p' )
{
style = element.attributes.style;
if ( style )
{
// Get the align from the style.
match = /(?:^|\s)text-align\s*:\s*(\w*);/i.exec( style );
var align = match && match[1];
if ( align )
{
element.attributes.style = element.attributes.style.replace( /(?:^|\s)text-align\s*:\s*(\w*);?/i , '' );
element.attributes.align = align;
}
}
}
if ( !element.attributes.style )
delete element.attributes.style;
return element;
}
},
attributes :
{
style : function( value, element )
{
// Return #RGB for background and border colors
return convertRGBToHex( value );
}
}
} );
}
/**
* Convert a CSS rgb(R, G, B) color back to #RRGGBB format.
* @param Css style string (can include more than one color
* @return Converted css style.
*/
function convertRGBToHex( cssStyle )
{
return cssStyle.replace( /(?:rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\))/gi, function( match, red, green, blue )
{
red = parseInt( red, 10 ).toString( 16 );
green = parseInt( green, 10 ).toString( 16 );
blue = parseInt( blue, 10 ).toString( 16 );
var color = [red, green, blue] ;
// Add padding zeros if the hex value is less than 0x10.
for ( var i = 0 ; i < color.length ; i++ )
color[i] = String( '0' + color[i] ).slice( -2 ) ;
return '#' + color.join( '' ) ;
});
}
//]]>
</script>
</p>
<p>
<input type="submit" value="Submit" />
</p>
</form>
<div id="footer">
<hr />
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2011, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
|
templates/1/css/pic/index.html | TTsWeb/U-232-V4 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Nosey Cunt !</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body,td,th {
color: white;
font-family: arial;
}
body {
background-color: #000000;
}
.style1 {font-size: 16px}
.style2 {color: white}
-->
</style></head>
<body>
<div align="center">
<p class="style1">Your-Site</p>
<p class="style1"><img src="http://yoursite.com/warn.jpg" width="128" height="128"></p>
<p class="style1 style2">Fuck off Nosey You Shouldnt Be Looking Here</p>
</div>
</body>
</html>
|
bedrock/foundation/templates/foundation/annualreport/2015/includes/header.html | ericawright/bedrock | <header class="c-banner">
<div class="mzp-l-content">
<div class="c-banner-content">
<div class="c-header-container">
<h1><span>{{ _('State of Mozilla') }}</span></h1>
</div>
</div>{#--/.c-banner-content--#}
</div>{#--/.mzp-l-content--#}
</header>
|
vendor/packages/gdata/pydocs/gdata.Crypto.PublicKey.RSA.html | mzdaniel/oh-mainline |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><title>Python: module gdata.Crypto.PublicKey.RSA</title>
</head><body bgcolor="#f0f0f8">
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
<tr bgcolor="#7799ee">
<td valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="gdata.html"><font color="#ffffff">gdata</font></a>.<a href="gdata.Crypto.html"><font color="#ffffff">Crypto</font></a>.<a href="gdata.Crypto.PublicKey.html"><font color="#ffffff">PublicKey</font></a>.RSA</strong></big></big></font></td
><td align=right valign=bottom
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/afshar/working/gdata-python-client/src/gdata/Crypto/PublicKey/RSA.py">/home/afshar/working/gdata-python-client/src/gdata/Crypto/PublicKey/RSA.py</a></font></td></tr></table>
<p><tt># RSA.py : RSA encryption/decryption<br>
#<br>
# Part of the Python Cryptography Toolkit<br>
#<br>
# Distribute and use freely; there are no restrictions on further<br>
# dissemination and usage except those imposed by the laws of your<br>
# country of residence. This software is provided "as is" without<br>
# warranty of fitness for use or suitability for any purpose, express<br>
# or implied. Use at your own risk or not at all.<br>
#</tt></p>
<p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#aa55cc">
<td colspan=3 valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Modules</strong></big></font></td></tr>
<tr><td bgcolor="#aa55cc"><tt> </tt></td><td> </td>
<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="Crypto.PublicKey._fastmath.html">Crypto.PublicKey._fastmath</a><br>
</td><td width="25%" valign=top><a href="Crypto.Util.number.html">Crypto.Util.number</a><br>
</td><td width="25%" valign=top><a href="Crypto.PublicKey.pubkey.html">Crypto.PublicKey.pubkey</a><br>
</td><td width="25%" valign=top></td></tr></table></td></tr></table><p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ee77aa">
<td colspan=3 valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Classes</strong></big></font></td></tr>
<tr><td bgcolor="#ee77aa"><tt> </tt></td><td> </td>
<td width="100%"><dl>
<dt><font face="helvetica, arial"><a href="Crypto.PublicKey.pubkey.html#pubkey">Crypto.PublicKey.pubkey.pubkey</a>
</font></dt><dd>
<dl>
<dt><font face="helvetica, arial"><a href="gdata.Crypto.PublicKey.RSA.html#RSAobj">RSAobj</a>
</font></dt><dt><font face="helvetica, arial"><a href="gdata.Crypto.PublicKey.RSA.html#RSAobj">RSAobj</a>
</font></dt><dt><font face="helvetica, arial"><a href="gdata.Crypto.PublicKey.RSA.html#RSAobj_c">RSAobj_c</a>
</font></dt></dl>
</dd>
<dt><font face="helvetica, arial"><a href="exceptions.html#Exception">exceptions.Exception</a>(<a href="exceptions.html#BaseException">exceptions.BaseException</a>)
</font></dt><dd>
<dl>
<dt><font face="helvetica, arial">_fastmath.error
</font></dt></dl>
</dd>
</dl>
<p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="RSAobj">class <strong>RSAobj</strong></a>(<a href="Crypto.PublicKey.pubkey.html#pubkey">Crypto.PublicKey.pubkey.pubkey</a>)</font></td></tr>
<tr><td bgcolor="#ffc8d8"><tt> </tt></td><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="RSAobj-can_blind"><strong>can_blind</strong></a>(self)</dt><dd><tt><a href="#RSAobj-can_blind">can_blind</a>() : bool<br>
Return a Boolean value recording whether this algorithm can<br>
blind data. (This does not imply that this<br>
particular key <a href="#object">object</a> has the private information required to<br>
to blind a message.)</tt></dd></dl>
<dl><dt><a name="RSAobj-has_private"><strong>has_private</strong></a>(self)</dt><dd><tt><a href="#RSAobj-has_private">has_private</a>() : bool<br>
Return a Boolean denoting whether the <a href="#object">object</a> contains<br>
private components.</tt></dd></dl>
<dl><dt><a name="RSAobj-publickey"><strong>publickey</strong></a>(self)</dt><dd><tt><a href="#RSAobj-publickey">publickey</a>(): <a href="#RSAobj">RSAobj</a><br>
Return a new key <a href="#object">object</a> containing only the public key information.</tt></dd></dl>
<dl><dt><a name="RSAobj-size"><strong>size</strong></a>(self)</dt><dd><tt><a href="#RSAobj-size">size</a>() : int<br>
Return the maximum number of bits that can be handled by this key.</tt></dd></dl>
<hr>
Data and other attributes defined here:<br>
<dl><dt><strong>keydata</strong> = ['n', 'e', 'd', 'p', 'q', 'u']</dl>
<hr>
Methods inherited from <a href="Crypto.PublicKey.pubkey.html#pubkey">Crypto.PublicKey.pubkey.pubkey</a>:<br>
<dl><dt><a name="RSAobj-__eq__"><strong>__eq__</strong></a>(self, other)</dt><dd><tt><a href="#RSAobj-__eq__">__eq__</a>(other): 0, 1<br>
Compare us to other for equality.</tt></dd></dl>
<dl><dt><a name="RSAobj-__getstate__"><strong>__getstate__</strong></a>(self)</dt><dd><tt>To keep key objects platform-independent, the key data is<br>
converted to standard Python long integers before being<br>
written out. It will then be reconverted as necessary on<br>
restoration.</tt></dd></dl>
<dl><dt><a name="RSAobj-__init__"><strong>__init__</strong></a>(self)</dt></dl>
<dl><dt><a name="RSAobj-__setstate__"><strong>__setstate__</strong></a>(self, d)</dt><dd><tt>On unpickling a key <a href="#object">object</a>, the key data is converted to the big<br>
number representation being used, whether that is Python long<br>
integers, MPZ objects, or whatever.</tt></dd></dl>
<dl><dt><a name="RSAobj-blind"><strong>blind</strong></a>(self, M, B)</dt><dd><tt><a href="#RSAobj-blind">blind</a>(M : string|long, B : string|long) : string|long<br>
Blind message M using blinding factor B.</tt></dd></dl>
<dl><dt><a name="RSAobj-can_encrypt"><strong>can_encrypt</strong></a>(self)</dt><dd><tt><a href="#RSAobj-can_encrypt">can_encrypt</a>() : bool<br>
Return a Boolean value recording whether this algorithm can<br>
encrypt data. (This does not imply that this<br>
particular key <a href="#object">object</a> has the private information required to<br>
to decrypt a message.)</tt></dd></dl>
<dl><dt><a name="RSAobj-can_sign"><strong>can_sign</strong></a>(self)</dt><dd><tt><a href="#RSAobj-can_sign">can_sign</a>() : bool<br>
Return a Boolean value recording whether this algorithm can<br>
generate signatures. (This does not imply that this<br>
particular key <a href="#object">object</a> has the private information required to<br>
to generate a signature.)</tt></dd></dl>
<dl><dt><a name="RSAobj-decrypt"><strong>decrypt</strong></a>(self, ciphertext)</dt><dd><tt><a href="#RSAobj-decrypt">decrypt</a>(ciphertext:tuple|string|long): string<br>
Decrypt 'ciphertext' using this key.</tt></dd></dl>
<dl><dt><a name="RSAobj-encrypt"><strong>encrypt</strong></a>(self, plaintext, K)</dt><dd><tt><a href="#RSAobj-encrypt">encrypt</a>(plaintext:string|long, K:string|long) : tuple<br>
Encrypt the string or integer plaintext. K is a random<br>
parameter required by some algorithms.</tt></dd></dl>
<dl><dt><a name="RSAobj-sign"><strong>sign</strong></a>(self, M, K)</dt><dd><tt><a href="#RSAobj-sign">sign</a>(M : string|long, K:string|long) : tuple<br>
Return a tuple containing the signature for the message M.<br>
K is a random parameter required by some algorithms.</tt></dd></dl>
<dl><dt><a name="RSAobj-unblind"><strong>unblind</strong></a>(self, M, B)</dt><dd><tt><a href="#RSAobj-unblind">unblind</a>(M : string|long, B : string|long) : string|long<br>
Unblind message M using blinding factor B.</tt></dd></dl>
<dl><dt><a name="RSAobj-validate"><strong>validate</strong></a>(self, M, signature)</dt><dd><tt># alias to compensate for the old <a href="#RSAobj-validate">validate</a>() name</tt></dd></dl>
<dl><dt><a name="RSAobj-verify"><strong>verify</strong></a>(self, M, signature)</dt><dd><tt><a href="#RSAobj-verify">verify</a>(M:string|long, signature:tuple) : bool<br>
Verify that the signature is valid for the message M;<br>
returns true if the signature checks out.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="RSAobj_c">class <strong>RSAobj_c</strong></a>(<a href="Crypto.PublicKey.pubkey.html#pubkey">Crypto.PublicKey.pubkey.pubkey</a>)</font></td></tr>
<tr><td bgcolor="#ffc8d8"><tt> </tt></td><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="RSAobj_c-__getattr__"><strong>__getattr__</strong></a>(self, attr)</dt></dl>
<dl><dt><a name="RSAobj_c-__getstate__"><strong>__getstate__</strong></a>(self)</dt></dl>
<dl><dt><a name="RSAobj_c-__init__"><strong>__init__</strong></a>(self, key)</dt></dl>
<dl><dt><a name="RSAobj_c-__setstate__"><strong>__setstate__</strong></a>(self, state)</dt></dl>
<dl><dt><a name="RSAobj_c-can_blind"><strong>can_blind</strong></a>(self)</dt></dl>
<dl><dt><a name="RSAobj_c-has_private"><strong>has_private</strong></a>(self)</dt></dl>
<dl><dt><a name="RSAobj_c-publickey"><strong>publickey</strong></a>(self)</dt></dl>
<dl><dt><a name="RSAobj_c-size"><strong>size</strong></a>(self)</dt></dl>
<hr>
Data and other attributes defined here:<br>
<dl><dt><strong>keydata</strong> = ['n', 'e', 'd', 'p', 'q', 'u']</dl>
<hr>
Methods inherited from <a href="Crypto.PublicKey.pubkey.html#pubkey">Crypto.PublicKey.pubkey.pubkey</a>:<br>
<dl><dt><a name="RSAobj_c-__eq__"><strong>__eq__</strong></a>(self, other)</dt><dd><tt><a href="#RSAobj_c-__eq__">__eq__</a>(other): 0, 1<br>
Compare us to other for equality.</tt></dd></dl>
<dl><dt><a name="RSAobj_c-blind"><strong>blind</strong></a>(self, M, B)</dt><dd><tt><a href="#RSAobj_c-blind">blind</a>(M : string|long, B : string|long) : string|long<br>
Blind message M using blinding factor B.</tt></dd></dl>
<dl><dt><a name="RSAobj_c-can_encrypt"><strong>can_encrypt</strong></a>(self)</dt><dd><tt><a href="#RSAobj_c-can_encrypt">can_encrypt</a>() : bool<br>
Return a Boolean value recording whether this algorithm can<br>
encrypt data. (This does not imply that this<br>
particular key <a href="#object">object</a> has the private information required to<br>
to decrypt a message.)</tt></dd></dl>
<dl><dt><a name="RSAobj_c-can_sign"><strong>can_sign</strong></a>(self)</dt><dd><tt><a href="#RSAobj_c-can_sign">can_sign</a>() : bool<br>
Return a Boolean value recording whether this algorithm can<br>
generate signatures. (This does not imply that this<br>
particular key <a href="#object">object</a> has the private information required to<br>
to generate a signature.)</tt></dd></dl>
<dl><dt><a name="RSAobj_c-decrypt"><strong>decrypt</strong></a>(self, ciphertext)</dt><dd><tt><a href="#RSAobj_c-decrypt">decrypt</a>(ciphertext:tuple|string|long): string<br>
Decrypt 'ciphertext' using this key.</tt></dd></dl>
<dl><dt><a name="RSAobj_c-encrypt"><strong>encrypt</strong></a>(self, plaintext, K)</dt><dd><tt><a href="#RSAobj_c-encrypt">encrypt</a>(plaintext:string|long, K:string|long) : tuple<br>
Encrypt the string or integer plaintext. K is a random<br>
parameter required by some algorithms.</tt></dd></dl>
<dl><dt><a name="RSAobj_c-sign"><strong>sign</strong></a>(self, M, K)</dt><dd><tt><a href="#RSAobj_c-sign">sign</a>(M : string|long, K:string|long) : tuple<br>
Return a tuple containing the signature for the message M.<br>
K is a random parameter required by some algorithms.</tt></dd></dl>
<dl><dt><a name="RSAobj_c-unblind"><strong>unblind</strong></a>(self, M, B)</dt><dd><tt><a href="#RSAobj_c-unblind">unblind</a>(M : string|long, B : string|long) : string|long<br>
Unblind message M using blinding factor B.</tt></dd></dl>
<dl><dt><a name="RSAobj_c-validate"><strong>validate</strong></a>(self, M, signature)</dt><dd><tt># alias to compensate for the old <a href="#RSAobj_c-validate">validate</a>() name</tt></dd></dl>
<dl><dt><a name="RSAobj_c-verify"><strong>verify</strong></a>(self, M, signature)</dt><dd><tt><a href="#RSAobj_c-verify">verify</a>(M:string|long, signature:tuple) : bool<br>
Verify that the signature is valid for the message M;<br>
returns true if the signature checks out.</tt></dd></dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><a name="error">class <strong>error</strong></a>(<a href="exceptions.html#Exception">exceptions.Exception</a>)</font></td></tr>
<tr><td bgcolor="#ffc8d8"><tt> </tt></td><td> </td>
<td width="100%"><dl><dt>Method resolution order:</dt>
<dd>error</dd>
<dd><a href="exceptions.html#Exception">exceptions.Exception</a></dd>
<dd><a href="exceptions.html#BaseException">exceptions.BaseException</a></dd>
<dd><a href="__builtin__.html#object">__builtin__.object</a></dd>
</dl>
<hr>
Data descriptors defined here:<br>
<dl><dt><strong>__weakref__</strong></dt>
<dd><tt>list of weak references to the object (if defined)</tt></dd>
</dl>
<hr>
Methods inherited from <a href="exceptions.html#Exception">exceptions.Exception</a>:<br>
<dl><dt><a name="error-__init__"><strong>__init__</strong></a>(...)</dt><dd><tt>x.<a href="#error-__init__">__init__</a>(...) initializes x; see x.__class__.__doc__ for signature</tt></dd></dl>
<hr>
Data and other attributes inherited from <a href="exceptions.html#Exception">exceptions.Exception</a>:<br>
<dl><dt><strong>__new__</strong> = <built-in method __new__ of type object><dd><tt>T.<a href="#error-__new__">__new__</a>(S, ...) -> a new <a href="#object">object</a> with type S, a subtype of T</tt></dl>
<hr>
Methods inherited from <a href="exceptions.html#BaseException">exceptions.BaseException</a>:<br>
<dl><dt><a name="error-__delattr__"><strong>__delattr__</strong></a>(...)</dt><dd><tt>x.<a href="#error-__delattr__">__delattr__</a>('name') <==> del x.name</tt></dd></dl>
<dl><dt><a name="error-__getattribute__"><strong>__getattribute__</strong></a>(...)</dt><dd><tt>x.<a href="#error-__getattribute__">__getattribute__</a>('name') <==> x.name</tt></dd></dl>
<dl><dt><a name="error-__getitem__"><strong>__getitem__</strong></a>(...)</dt><dd><tt>x.<a href="#error-__getitem__">__getitem__</a>(y) <==> x[y]</tt></dd></dl>
<dl><dt><a name="error-__getslice__"><strong>__getslice__</strong></a>(...)</dt><dd><tt>x.<a href="#error-__getslice__">__getslice__</a>(i, j) <==> x[i:j]<br>
<br>
Use of negative indices is not supported.</tt></dd></dl>
<dl><dt><a name="error-__reduce__"><strong>__reduce__</strong></a>(...)</dt></dl>
<dl><dt><a name="error-__repr__"><strong>__repr__</strong></a>(...)</dt><dd><tt>x.<a href="#error-__repr__">__repr__</a>() <==> repr(x)</tt></dd></dl>
<dl><dt><a name="error-__setattr__"><strong>__setattr__</strong></a>(...)</dt><dd><tt>x.<a href="#error-__setattr__">__setattr__</a>('name', value) <==> x.name = value</tt></dd></dl>
<dl><dt><a name="error-__setstate__"><strong>__setstate__</strong></a>(...)</dt></dl>
<dl><dt><a name="error-__str__"><strong>__str__</strong></a>(...)</dt><dd><tt>x.<a href="#error-__str__">__str__</a>() <==> str(x)</tt></dd></dl>
<dl><dt><a name="error-__unicode__"><strong>__unicode__</strong></a>(...)</dt></dl>
<hr>
Data descriptors inherited from <a href="exceptions.html#BaseException">exceptions.BaseException</a>:<br>
<dl><dt><strong>__dict__</strong></dt>
</dl>
<dl><dt><strong>args</strong></dt>
</dl>
<dl><dt><strong>message</strong></dt>
</dl>
</td></tr></table> <p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#ffc8d8">
<td colspan=3 valign=bottom> <br>
<font color="#000000" face="helvetica, arial"><strong>object</strong> = <a name="object">class RSAobj</a>(<a href="Crypto.PublicKey.pubkey.html#pubkey">Crypto.PublicKey.pubkey.pubkey</a>)</font></td></tr>
<tr><td bgcolor="#ffc8d8"><tt> </tt></td><td> </td>
<td width="100%">Methods defined here:<br>
<dl><dt><a name="RSAobj-can_blind"><strong>can_blind</strong></a>(self)</dt><dd><tt><a href="#object-can_blind">can_blind</a>() : bool<br>
Return a Boolean value recording whether this algorithm can<br>
blind data. (This does not imply that this<br>
particular key <a href="#object">object</a> has the private information required to<br>
to blind a message.)</tt></dd></dl>
<dl><dt><a name="RSAobj-has_private"><strong>has_private</strong></a>(self)</dt><dd><tt><a href="#object-has_private">has_private</a>() : bool<br>
Return a Boolean denoting whether the <a href="#object">object</a> contains<br>
private components.</tt></dd></dl>
<dl><dt><a name="RSAobj-publickey"><strong>publickey</strong></a>(self)</dt><dd><tt><a href="#object-publickey">publickey</a>(): <a href="#RSAobj">RSAobj</a><br>
Return a new key <a href="#object">object</a> containing only the public key information.</tt></dd></dl>
<dl><dt><a name="RSAobj-size"><strong>size</strong></a>(self)</dt><dd><tt><a href="#object-size">size</a>() : int<br>
Return the maximum number of bits that can be handled by this key.</tt></dd></dl>
<hr>
Data and other attributes defined here:<br>
<dl><dt><strong>keydata</strong> = ['n', 'e', 'd', 'p', 'q', 'u']</dl>
<hr>
Methods inherited from <a href="Crypto.PublicKey.pubkey.html#pubkey">Crypto.PublicKey.pubkey.pubkey</a>:<br>
<dl><dt><a name="RSAobj-__eq__"><strong>__eq__</strong></a>(self, other)</dt><dd><tt><a href="#object-__eq__">__eq__</a>(other): 0, 1<br>
Compare us to other for equality.</tt></dd></dl>
<dl><dt><a name="RSAobj-__getstate__"><strong>__getstate__</strong></a>(self)</dt><dd><tt>To keep key objects platform-independent, the key data is<br>
converted to standard Python long integers before being<br>
written out. It will then be reconverted as necessary on<br>
restoration.</tt></dd></dl>
<dl><dt><a name="RSAobj-__init__"><strong>__init__</strong></a>(self)</dt></dl>
<dl><dt><a name="RSAobj-__setstate__"><strong>__setstate__</strong></a>(self, d)</dt><dd><tt>On unpickling a key <a href="#object">object</a>, the key data is converted to the big<br>
number representation being used, whether that is Python long<br>
integers, MPZ objects, or whatever.</tt></dd></dl>
<dl><dt><a name="RSAobj-blind"><strong>blind</strong></a>(self, M, B)</dt><dd><tt><a href="#object-blind">blind</a>(M : string|long, B : string|long) : string|long<br>
Blind message M using blinding factor B.</tt></dd></dl>
<dl><dt><a name="RSAobj-can_encrypt"><strong>can_encrypt</strong></a>(self)</dt><dd><tt><a href="#object-can_encrypt">can_encrypt</a>() : bool<br>
Return a Boolean value recording whether this algorithm can<br>
encrypt data. (This does not imply that this<br>
particular key <a href="#object">object</a> has the private information required to<br>
to decrypt a message.)</tt></dd></dl>
<dl><dt><a name="RSAobj-can_sign"><strong>can_sign</strong></a>(self)</dt><dd><tt><a href="#object-can_sign">can_sign</a>() : bool<br>
Return a Boolean value recording whether this algorithm can<br>
generate signatures. (This does not imply that this<br>
particular key <a href="#object">object</a> has the private information required to<br>
to generate a signature.)</tt></dd></dl>
<dl><dt><a name="RSAobj-decrypt"><strong>decrypt</strong></a>(self, ciphertext)</dt><dd><tt><a href="#object-decrypt">decrypt</a>(ciphertext:tuple|string|long): string<br>
Decrypt 'ciphertext' using this key.</tt></dd></dl>
<dl><dt><a name="RSAobj-encrypt"><strong>encrypt</strong></a>(self, plaintext, K)</dt><dd><tt><a href="#object-encrypt">encrypt</a>(plaintext:string|long, K:string|long) : tuple<br>
Encrypt the string or integer plaintext. K is a random<br>
parameter required by some algorithms.</tt></dd></dl>
<dl><dt><a name="RSAobj-sign"><strong>sign</strong></a>(self, M, K)</dt><dd><tt><a href="#object-sign">sign</a>(M : string|long, K:string|long) : tuple<br>
Return a tuple containing the signature for the message M.<br>
K is a random parameter required by some algorithms.</tt></dd></dl>
<dl><dt><a name="RSAobj-unblind"><strong>unblind</strong></a>(self, M, B)</dt><dd><tt><a href="#object-unblind">unblind</a>(M : string|long, B : string|long) : string|long<br>
Unblind message M using blinding factor B.</tt></dd></dl>
<dl><dt><a name="RSAobj-validate"><strong>validate</strong></a>(self, M, signature)</dt><dd><tt># alias to compensate for the old <a href="#object-validate">validate</a>() name</tt></dd></dl>
<dl><dt><a name="RSAobj-verify"><strong>verify</strong></a>(self, M, signature)</dt><dd><tt><a href="#object-verify">verify</a>(M:string|long, signature:tuple) : bool<br>
Verify that the signature is valid for the message M;<br>
returns true if the signature checks out.</tt></dd></dl>
</td></tr></table></td></tr></table><p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#eeaa77">
<td colspan=3 valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Functions</strong></big></font></td></tr>
<tr><td bgcolor="#eeaa77"><tt> </tt></td><td> </td>
<td width="100%"><dl><dt><a name="-construct"><strong>construct</strong></a> = construct_c(tuple)</dt></dl>
<dl><dt><a name="-construct_c"><strong>construct_c</strong></a>(tuple)</dt></dl>
<dl><dt><a name="-construct_py"><strong>construct_py</strong></a> = construct(tuple)</dt><dd><tt><a href="#-construct">construct</a>(tuple:(long,) : <a href="#RSAobj">RSAobj</a><br>
Construct an RSA <a href="#object">object</a> from a 2-, 3-, 5-, or 6-tuple of numbers.</tt></dd></dl>
<dl><dt><a name="-generate"><strong>generate</strong></a> = generate_c(bits, randfunc, progress_func<font color="#909090">=None</font>)</dt></dl>
<dl><dt><a name="-generate_c"><strong>generate_c</strong></a>(bits, randfunc, progress_func<font color="#909090">=None</font>)</dt></dl>
<dl><dt><a name="-generate_py"><strong>generate_py</strong></a> = generate(bits, randfunc, progress_func<font color="#909090">=None</font>)</dt><dd><tt><a href="#-generate">generate</a>(bits:int, randfunc:callable, progress_func:callable)<br>
<br>
Generate an RSA key of length 'bits', using 'randfunc' to get<br>
random data and 'progress_func', if present, to display<br>
the progress of the key generation.</tt></dd></dl>
</td></tr></table><p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#55aa55">
<td colspan=3 valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Data</strong></big></font></td></tr>
<tr><td bgcolor="#55aa55"><tt> </tt></td><td> </td>
<td width="100%"><strong>__revision__</strong> = '$Id: RSA.py,v 1.20 2004/05/06 12:52:54 akuchling Exp $'</td></tr></table>
</body></html> |
airmozilla/base/templates/flatpages/default.html | chirilo/airmozilla | {% extends 'main/main_base.html' %}
{% block page_title %}
{{ flatpage.title }} | Air Mozilla
{% endblock %}
{% block banner %}
{% include 'main/_banner_small.html' %}
{% endblock %}
{% block content_main %}
<article class="post type-post status-publish format-standard hentry no-author no-comments">
<header class="entry-header">
<h1 class="entry-title">
{{ flatpage.title }}
</h1>
</header>
<div class="entry-content">
{{ flatpage.content|safe }}
</div>
</article>
{% endblock %}
|
ajax/libs/semantic-ui/1.11.2/components/shape.css | neveldo/cdnjs | /*!
* # Semantic UI 1.11.2 - 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
*******************************/
|
packages/rocketchat-livechat/app/client/views/livechatWindow.html | xasx/Rocket.Chat | <template name="livechatWindow">
{{#if livechatStarted}}
{{#if showWidget}}
<div class="livechat-room {{#if popoutActive}}popout{{/if}}">
<div class="title" style="background-color:{{color}}; color: {{fontColor}}">
<div class="toolbar">
{{#unless popoutActive}}
{{#if isOpened}}
<svg class="minimize" title="Minimize" viewBox="0 0 448 448" xmlns="http://www.w3.org/2000/svg">
<path d="M448 328v48c0 22-18 40-40 40h-368c-22 0-40-18-40-40v-48c0-22 18-40 40-40h368c22 0 40 18 40 40z"></path>
</svg>
{{else}}
<svg class="maximize" title="Maximize" viewBox="0 0 448 448" xmlns="http://www.w3.org/2000/svg">
<path d="M64 352h320v-192h-320v192zM448 72v304c0 22-18 40-40 40h-368c-22 0-40-18-40-40v-304c0-22 18-40 40-40h368c22 0 40 18 40 40z"></path>
</svg>
{{/if}}
{{/unless}}
{{#if soundActive}}
<svg class="sound" title="Toggle notification sound" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg">
<path d="M912 1696q0-16-16-16-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5q16 0 16-16zm816-288q0 52-38 90t-90 38h-448q0 106-75 181t-181 75-181-75-75-181h-448q-52 0-90-38t-38-90q50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 190 28 307 158.5t117 282.5q0 139 19.5 260t50 206 74.5 158.5 85 119.5 91 88z" />
</svg>
{{else}}
<svg class="sound" title="Toggle notification sound" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg">
<path d="M1430 852q61 356 298 556 0 52-38 90t-90 38h-448q0 106-75 181t-181 75-180.5-74.5-75.5-180.5zm-534 860q16 0 16-16t-16-16q-59 0-101.5-42.5t-42.5-101.5q0-16-16-16t-16 16q0 73 51.5 124.5t124.5 51.5zm1002-1600q8 10 7.5 23.5t-10.5 22.5l-1872 1622q-10 8-23.5 7t-21.5-11l-84-96q-8-10-7.5-23.5t10.5-21.5l186-161q-19-32-19-66 50-42 91-88t85-119.5 74.5-158.5 50-206 19.5-260q0-152 117-282.5t307-158.5q-8-19-8-39 0-40 28-68t68-28 68 28 28 68q0 20-8 39 124 18 219 82.5t148 157.5l418-363q10-8 23.5-7t21.5 11z" />
</svg>
{{/if}}
{{#unless popoutActive}}
<svg class="popout" aria-label="{{_ "Open in a new window"}}" viewBox="0 0 448 448" xmlns="http://www.w3.org/2000/svg">
<path d="M320 232v-120c0-8.75-7.25-16-16-16h-120c-6.5 0-12.25 4-14.75 9.75-2.5 6-1.25 13 3.5 17.5l36 36-133.5 133.5c-6.25 6.25-6.25 16.25 0 22.5l25.5 25.5c6.25 6.25 16.25 6.25 22.5 0l133.5-133.5 36 36c3 3.25 7 4.75 11.25 4.75 2 0 4.25-0.5 6.25-1.25 5.75-2.5 9.75-8.25 9.75-14.75zM384 104v240c0 39.75-32.25 72-72 72h-240c-39.75 0-72-32.25-72-72v-240c0-39.75 32.25-72 72-72h240c39.75 0 72 32.25 72 72z"></path>
</svg>
{{/unless}}
</div>
<h1>{{title}}</h1>
</div>
{{#if livechatOnline}}
{{#if showRegisterForm}}
{{> register}}
{{else}}
{{> messages}}
{{#if showSwitchDepartmentForm}}
{{> switchDepartment}}
{{/if}}
{{/if}}
{{else}}
<div class="offline">
{{> offlineForm (offlineData)}}
</div>
{{/if}}
{{> poweredBy }}
</div>
{{/if}}
{{/if}}
{{#if videoCalling}}
{{> videoCall}}
{{/if}}
</template>
|
docs/org/cloudbus/cloudsim/provisioners/package-tree.html | sgstyjy/migration_test | <!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_09) on Thu May 02 19:56:12 YAKT 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>org.cloudbus.cloudsim.provisioners Class Hierarchy (cloudsim 3.0.3 API)</title>
<meta name="date" content="2013-05-02">
<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="org.cloudbus.cloudsim.provisioners Class Hierarchy (cloudsim 3.0.3 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</li>
<li>Use</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="../../../../org/cloudbus/cloudsim/power/models/package-tree.html">Prev</a></li>
<li><a href="../../../../org/cloudbus/cloudsim/util/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/cloudbus/cloudsim/provisioners/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 org.cloudbus.cloudsim.provisioners</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.<a href="http://download.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="strong">Object</span></a>
<ul>
<li type="circle">org.cloudbus.cloudsim.provisioners.<a href="../../../../org/cloudbus/cloudsim/provisioners/BwProvisioner.html" title="class in org.cloudbus.cloudsim.provisioners"><span class="strong">BwProvisioner</span></a>
<ul>
<li type="circle">org.cloudbus.cloudsim.provisioners.<a href="../../../../org/cloudbus/cloudsim/provisioners/BwProvisionerSimple.html" title="class in org.cloudbus.cloudsim.provisioners"><span class="strong">BwProvisionerSimple</span></a></li>
</ul>
</li>
<li type="circle">org.cloudbus.cloudsim.provisioners.<a href="../../../../org/cloudbus/cloudsim/provisioners/PeProvisioner.html" title="class in org.cloudbus.cloudsim.provisioners"><span class="strong">PeProvisioner</span></a>
<ul>
<li type="circle">org.cloudbus.cloudsim.provisioners.<a href="../../../../org/cloudbus/cloudsim/provisioners/PeProvisionerSimple.html" title="class in org.cloudbus.cloudsim.provisioners"><span class="strong">PeProvisionerSimple</span></a></li>
</ul>
</li>
<li type="circle">org.cloudbus.cloudsim.provisioners.<a href="../../../../org/cloudbus/cloudsim/provisioners/RamProvisioner.html" title="class in org.cloudbus.cloudsim.provisioners"><span class="strong">RamProvisioner</span></a>
<ul>
<li type="circle">org.cloudbus.cloudsim.provisioners.<a href="../../../../org/cloudbus/cloudsim/provisioners/RamProvisionerSimple.html" title="class in org.cloudbus.cloudsim.provisioners"><span class="strong">RamProvisionerSimple</span></a></li>
</ul>
</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>Use</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="../../../../org/cloudbus/cloudsim/power/models/package-tree.html">Prev</a></li>
<li><a href="../../../../org/cloudbus/cloudsim/util/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/cloudbus/cloudsim/provisioners/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 ======= -->
<p class="legalCopy"><small>Copyright © 2013 <a href="http://cloudbus.org/">The Cloud Computing and Distributed Systems (CLOUDS) Laboratory, The University of Melbourne</a>. All Rights Reserved.</small></p>
</body>
</html>
|
tests/dom_tests/dom_tests.html | hhsue/vimium | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style type="text/css">
body {
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
width: 800px;
margin: 0px auto;
}
#output-div {
white-space: pre-wrap;
background-color: #eee;
font-family: monospace;
margin: 0 0 50px 0;
border-style: dashed;
border-width: 1px 1px 0 1px;
border-color: #999;
}
.errorPosition {
color: #f33;
font-weight: bold;
}
.output-section {
padding: 10px 15px 10px 15px;
border-bottom: dashed 1px #999;
}
</style>
<link rel="stylesheet" type="text/css" href="../../content_scripts/vimium.css" />
<script type="text/javascript" src="bind.js"></script>
<script type="text/javascript" src="chrome.js"></script>
<script type="text/javascript" src="../../lib/utils.js"></script>
<script type="text/javascript" src="../../lib/keyboard_utils.js"></script>
<script type="text/javascript" src="../../lib/dom_utils.js"></script>
<script type="text/javascript" src="../../lib/rect.js"></script>
<script type="text/javascript" src="../../lib/handler_stack.js"></script>
<script type="text/javascript" src="../../lib/clipboard.js"></script>
<script type="text/javascript" src="../../lib/settings.js"></script>
<script type="text/javascript" src="../../lib/find_mode_history.js"></script>
<script type="text/javascript" src="../../content_scripts/ui_component.js"></script>
<script type="text/javascript" src="../../content_scripts/link_hints.js"></script>
<script type="text/javascript" src="../../content_scripts/vomnibar.js"></script>
<script type="text/javascript" src="../../content_scripts/scroller.js"></script>
<script type="text/javascript" src="../../content_scripts/mode.js"></script>
<script type="text/javascript" src="../../content_scripts/mode_passkeys.js"></script>
<script type="text/javascript" src="../../content_scripts/mode_insert.js"></script>
<script type="text/javascript" src="../../content_scripts/mode_find.js"></script>
<script type="text/javascript" src="../../content_scripts/mode_visual_edit.js"></script>
<script type="text/javascript" src="../../content_scripts/hud.js"></script>
<script type="text/javascript" src="../../content_scripts/vimium_frontend.js"></script>
<script type="text/javascript" src="../shoulda.js/shoulda.js"></script>
<script type="text/javascript" src="dom_tests.js"></script>
<script type="text/javascript" src="dom_utils_test.js"></script>
<script type="text/javascript" src="vomnibar_test.js"></script>
<script type="text/javascript" src="test_runner.js"></script>
</head>
<body>
<!-- should always be the first element on the page -->
<div id="test-div"></div>
<h1>Vimium Tests</h1>
<div id="output-div"></div>
</body>
</html>
|
thirdparty/gnupg-2.0.22/doc/texi.css | TextusData/Mover | /* The gnupg.org standard stylesheet. */
@import url(/share/site.css);
|
wts/tests/serviceworkers/service-worker-state-redundant.https.html | crosswalk-project/web-testing-service | <!DOCTYPE html>
<!--
Copyright (c) 2015 Intel Corporation.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of works must retain the original copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the original copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this work without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
<meta charset="utf-8">
<meta name="timeout" content="long">
<title>ServiceWorker.state - redundant</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="author" title="Chunyan Wang" href="mailto:chunyanx.wang@intel.com">
<link rel="help" href="https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#service-worker-state">
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="w3c/service-workers/resources/test-helpers.js"></script>
<div id="log"></div>
<script>
async_test(function(t) {
var scope = "resources/"
var scriptURL = "resources/install-error-worker.js";
return service_worker_unregister_and_register(t, scriptURL, scope)
.then(function(registration) {
return new Promise(function(resolve) {
var serviceWorker = registration.installing;
serviceWorker.onstatechange = function(evt) {
assert_equals(serviceWorker.state, "redundant", "serviceWorker.state");
resolve();
};
});
})
.then(function() {
return service_worker_unregister_and_done(t, scope);
})
.catch(unreached_rejection(t));
}, "Check that the ServiceWorker.state is redundant if a service worker install failure.");
promise_test(function(t) {
var scope = "resources/"
var scriptURL = "resources/empty-worker.js";
var script1 = "resources/postmessage-worker.js";
var registration;
var serviceWorker;
return service_worker_unregister_and_register(t, scriptURL, scope)
.then(function(r) {
registration = r;
return wait_for_state(t, registration.installing, "activated");
})
.then(function(state) {
serviceWorker = registration.active;
return navigator.serviceWorker.register(script1, {scope: scope});
})
.then(function(r1) {
return wait_for_state(t, r1.installing, "activated");
})
.then(function(state1) {
assert_equals(serviceWorker.state, "redundant", "serviceWorker.state");
return service_worker_unregister_and_done(t, scope);
});
}, "Check that the ServiceWorker.state is redundant if a new service worker is replacing the current service worker.");
</script>
|
wts/tests/webgl/webglrenderingcontext_linkProgram_exists.html | haoxli/web-testing-service | <!DOCTYPE html>
<!--
Copyright (c) 2012 Intel Corporation.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of works must retain the original copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the original copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this work without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
Cao, Jun <junx.cao@intel.com>
-->
<html>
<head>
<title>WebGL Test: webglrenderingcontext_linkProgram_exists</title>
<link rel="author" title="Intel" href="http://www.intel.com" />
<link rel="help" href="https://www.khronos.org/registry/webgl/specs/1.0/" />
<meta name="flags" content="" />
<meta name="assert" content="Check if WebGLRenderingContext.linkProgram exists"/>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/webgl.js"></script>
</head>
<body>
<div id="log"></div>
<canvas id="canvas" width="200" height="100" style="border:1px solid #c3c3c3;">
Your browser does not support the canvas element.
</canvas>
<script>
getwebgl();
webgl_property_exists(webgl, 'linkProgram');
</script>
</body>
</html>
|
recipes/resources/openlayers/examples/regular-polygons.html | fedesanchez/suite-3.1 | <html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>OpenLayers Regular Polygon Example</title>
<link rel="stylesheet" href="../theme/default/style.css" type="text/css" />
<link rel="stylesheet" href="style.css" type="text/css" />
<style type="text/css">
p {
width: 512px;
}
#config {
margin-top: 1em;
width: 512px;
position: relative;
height: 8em;
}
#controls {
padding-left: 2em;
margin-left: 0;
width: 12em;
}
#controls li {
padding-top: 0.5em;
list-style: none;
}
#options {
font-size: 1em;
top: 0;
margin-left: 15em;
position: absolute;
}
</style>
<script src="../lib/OpenLayers.js"></script>
<script type="text/javascript">
var map, polygonControl;
OpenLayers.Util.onImageLoadErrorColor = "transparent";
function init(){
map = new OpenLayers.Map('map');
var wmsLayer = new OpenLayers.Layer.WMS( "OpenLayers WMS",
"http://labs.metacarta.com/wms/vmap0?", {layers: 'basic'});
var polygonLayer = new OpenLayers.Layer.Vector("Polygon Layer");
map.addLayers([wmsLayer, polygonLayer]);
map.addControl(new OpenLayers.Control.LayerSwitcher());
map.addControl(new OpenLayers.Control.MousePosition());
polyOptions = {sides: 4};
polygonControl = new OpenLayers.Control.DrawFeature(polygonLayer,
OpenLayers.Handler.RegularPolygon,
{handlerOptions: polyOptions});
map.addControl(polygonControl);
map.setCenter(new OpenLayers.LonLat(0, 0), 3);
document.getElementById('noneToggle').checked = true;
document.getElementById('irregularToggle').checked = false;
}
function setOptions(options) {
polygonControl.handler.setOptions(options);
}
function setSize(fraction) {
var radius = fraction * map.getExtent().getHeight();
polygonControl.handler.setOptions({radius: radius,
angle: 0});
}
</script>
</head>
<body onload="init()">
<h2 id="title">OpenLayers Regular Polygon Example</h2>
<p id="shortdesc">
Shows how to use the RegularPolygon handler to draw features with
different numbers of sides.
</p>
<div id="map" class="smallmap"></div>
<div id="config">
<ul id="controls"><b>Map Controls</b>
<li>
<input type="radio" name="type"
value="none" id="noneToggle"
onclick="polygonControl.deactivate()"
checked="checked" />
<label for="noneToggle">navigate</label>
</li>
<li>
<input type="radio" name="type"
value="polygon" id="polygonToggle"
onclick="polygonControl.activate()" />
<label for="polygonToggle">draw polygon</label>
</li>
</ul>
<table id="options">
<tbody>
<tr>
<th>Draw Option</th>
<th>Value</th>
</tr>
<tr>
<td>
shape
</td>
<td>
<select name="sides"
onchange="setOptions({sides: parseInt(this.value)})">
<option value="3">triangle</option>
<option value="4" selected="selected">square</option>
<option value="5">pentagon</option>
<option value="6">hexagon</option>
<option value="40">circle</option>
</select>
</td>
</tr>
<tr>
<td>
snap angle
</td>
<td>
<select name="angle"
onchange="setOptions({snapAngle: parseFloat(this.value)})">
<option value="" selected="selected">no snap</option>
<option value="15">15°</option>
<option value="45">45°</option>
<option value="90">90°</option>
</select>
</td>
</tr>
<tr>
<td>
size
</td>
<td>
<select name="size"
onchange="setSize(parseFloat(this.value))">
<option value="" selected="selected">variable</option>
<option value="0.1">small</option>
<option value="0.2">medium</option>
<option value="0.4">large</option>
</select>
</td>
</tr>
<tr>
<td>
irregular
</td>
<td>
<input id="irregularToggle" name="irregular"
type="checkbox"
onchange="setOptions({irregular: this.checked})") />
</td>
</tr>
</tbody>
</table>
</div>
<p>
Regular polygons can be drawn by pointing a DrawFeature control to the
RegularPolygon handler class. The options above demonstrate how the
handler can be configured. Note if you are in angle snapping mode (if
the snap angle is non-null) and you hold down the <b>Shift</b> key, you
will toggle to non-snapping mode.
</p>
<p>
The <i>irregular</i> option allows drawing of irregular polygons. With this option, the fixed radius option is ignored.
</body>
</html>
|
bedrock/mozorg/templates/mozorg/mpl/2.0/permissive-code-into-mpl.html | glogiotatidis/bedrock | {# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/. -#}
{% extends "mozorg/base-resp.html" %}
{% block page_title %}{{ _('Permissive-Code-into-MPL Developer Guidelines') }}{% endblock %}
{% block page_desc %}{{ _('Copying Permissively-Licensed Code into an MPL 2 File: Guidelines
for Developers') }}{% endblock %}
{% block page_css %}
{% stylesheet 'mpl' %}
{% endblock %}
{% block content %}
<div id="main-content">
<h1>Copying permissively-Licensed Code into an MPL 2 File: Guidelines for Developers</h1>
<section>
<p>This document explains what to do when you want to copy a piece of code which is licensed under the BSD, MIT, Apache License 2 or another standard permissive open source licence into an existing Mozilla project file which is licensed under the <a href="{{ url('mozorg.mpl.2.0.index') }}">MPL 2</a>.</p>
<p>This document is specifically about copying code between files with different licenses which are already part of our codebase. Imports of new third party codebases (e.g. new libraries) is a different matter; such imports need to be checked over by the licensing team.</p>
<p>If you need to copy code the other way - MPL 2 code into a permissively-licensed file - then consult the <a href="mailto:licensing@mozilla.org">licensing team</a>.</p>
<p>To copy permissively-licensed code into an MPL 2 file, you have three options - Avoid, Relicense and Boilerplate.</p>
<h2>1. Avoid</h2>
<p>If it does not involve serious contortions in your code structure, try and avoid doing the copying at all. It is simpler, and increases reuse, if each file only has a single licence. Consider putting the code in a separate file, including it and calling its functions using whatever language facilities are available to you.</p>
<h2>2. Relicense</h2>
<p>If that is not possible, then you should investigate whether the code can be relicensed. This is not legally required to use the code, but makes the legal situation simpler (as we will see). This should only be attempted without the help of the licensing team in simple circumstances, where it's obvious who all the contributors to the code are and it's a small number. E.g. incorporating code from a one-man project on Github which is BSD-licensed, or code from a Gaia file written by a couple of developers which is Apache-licensed. If the situation is more complicated than this, involving the licensing team at an early stage will increase your chances of success, and of not irritating the developers of the code in question.</p>
<p>If the people concerned are all Mozilla employees and wrote the code on company time, then the copyright to the code is owned by the Mozilla Foundation. In this case, for small code sections, Mozilla is happy for such a relicensing to occur. If some contributors to the piece of code in question are not employees, you would need to ask permission of all such contributors, something like this:</p>
<pre>
Dear X,
Thank you for writing the most excellent Project Y. I would like to use some
portions of it (patch attached) in Mozilla's project Z. For licensing
simplicity we would prefer to use the code under the terms of the Mozilla
Public License[0], which is the standard licence for Z, rather than licence Q,
which you use. I believe you are the copyright holder, and so am I asking your
permission to do this. (There would be no need to change anything in your
project.) Would that be OK?
Thanks,
J. Random Hacker
[0] https://www.mozilla.org/MPL/2.0/
</pre>
<p>The difficulty with this route is that it makes it harder to be certain we can legally send fixes we make to their code back upstream, which is why option 1) is preferred.</p>
<p>In rare circumstances, it might be that it's possible to relicense the MPLed code instead, particularly if it only forms a small part of the resultant combined file. Consult the licensing team if you want to investigate this route.</p>
<h2>3. Boilerplate</h2>
<p>If the copyright holders refuse permission, or if the situation is too complex for it to be possible or worth the time to even seek permission, and if the license is definitely MPL2-compatible, you should do the following. (MPL2-compatible licenses include MIT, ISC, Apache 2, 2-clause BSD and 3-clause BSD - ask if you aren't sure.)</p>
<p>For every file which will contain some of the permissively-licensed code, change the MPL 2 header to have the following form (with, of course, the appropriate comment character(s):</p>
<pre>
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following copyright and
* permission notice:
*
* [Full copy of permissively-licensed copyright and permissions notice,
* indented two additional spaces]
*/
</pre>
<p>So that's the standard MPL 2 header, then the extra sentence "This file incorporates...", then the other boilerplate, indented 2 spaces. For example, for the Apache License 2.0:</p>
<pre>
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following copyright and
* permission notice:
*
* Copyright 2013 Joe Bloggs
*
* 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.
*/
</pre>
<p>As you can see, the additional boilerplate makes this solution sub-optimal - and even more so if a file contains code under two or more permissive licences. And copying code <i>out</i> of such a file gets extremely complicated. This is why it is suggested that the other two routes are investigated first.</p>
<p>As always, if you have questions, contact the <a href="mailto:licensing@mozilla.org">licensing team</a>.</p>
</section>
</div>
{% endblock %}
|
web/ui/templates/rules.html | dsymonds/prometheus | {{define "head"}}<!-- nix -->{{end}}
{{define "content"}}
<div class="container-fluid">
<h2 id="rules">Rules</h2>
<pre>{{range .Rules}}{{.HTMLSnippet pathPrefix}}<br/>{{end}}</pre>
</div>
{{end}}
|
third_party/blink/web_tests/virtual/text-antialias/font-features/font-variant-ligatures.html | chromium/chromium | <!DOCTYPE HTML>
<!-- Test case adapted from Mozilla tests for font-variant-subproperties available under
http://creativecommons.org/publicdomain/zero/1.0/
See discussion on https://bugzilla.mozilla.org/show_bug.cgi?id=1261445
-->
<html lang="en">
<head>
<title>font-variant-caps test</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="resources/gsubtest-features.js"></script>
<script type="text/javascript" src="resources/font-variant-features.js"></script>
<link rel="stylesheet" href="resources/font-variant-features.css" type="text/css"/>
</head>
<body>
<div id="content"></div>
<script type="text/javascript">
document.getElementById("content").appendChild(createFeatureTestTable(gPropertyData, "font-variant-ligatures", false, false));
</script>
</body>
</html>
|
venv/bin/libs/numeric/ublas/doc/html/classboost_1_1numeric_1_1ublas_1_1matrix__range-members.html | NixaSoftware/CVis | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>ublas: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.6.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>boost::numeric::ublas::matrix_range< M > Member List</h1>This is the complete list of members for <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>, including all inherited members.<table>
<tr bgcolor="#f0f0f0"><td><b>assign</b>(const matrix_expression< AE > &ae) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>assign_temporary</b>(matrix_range &mr) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>begin1</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>begin1</b>() (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>begin2</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>begin2</b>() (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>closure_type</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>complexity</b> (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__expression.html">boost::numeric::ublas::matrix_expression< matrix_range< M > ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__expression.html">boost::numeric::ublas::matrix_expression< matrix_range< M > ></a></td><td><code> [static]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>const_closure_type</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>const_reference</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>const_reverse_iterator1</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>const_reverse_iterator2</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>data</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>data</b>() (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>difference_type</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>end1</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>end1</b>() (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>end2</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>end2</b>() (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>expression_type</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__expression.html">boost::numeric::ublas::matrix_expression< matrix_range< M > ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__expression.html">boost::numeric::ublas::matrix_expression< matrix_range< M > ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>find1</b>(int rank, size_type i, size_type j) const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>find1</b>(int rank, size_type i, size_type j) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>find2</b>(int rank, size_type i, size_type j) const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>find2</b>(int rank, size_type i, size_type j) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>matrix_closure_type</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>matrix_range</b>(matrix_type &data, const range_type &r1, const range_type &r2) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>matrix_range</b>(const matrix_closure_type &data, const range_type &r1, const range_type &r2, int) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>matrix_type</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>minus_assign</b>(const matrix_expression< AE > &ae) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>operator()</b>(size_type i, size_type j) const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>operator()</b>(size_type i, size_type j) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>operator()</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__expression.html">boost::numeric::ublas::matrix_expression< matrix_range< M > ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__expression.html">boost::numeric::ublas::matrix_expression< matrix_range< M > ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>operator()</b>() (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__expression.html">boost::numeric::ublas::matrix_expression< matrix_range< M > ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__expression.html">boost::numeric::ublas::matrix_expression< matrix_range< M > ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>operator*=</b>(const AT &at) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>operator+=</b>(const matrix_expression< AE > &ae) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>operator-=</b>(const matrix_expression< AE > &ae) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>operator/=</b>(const AT &at) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>operator=</b>(const matrix_range &mr) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>operator=</b>(const matrix_expression< AE > &ae) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>operator==</b>(const matrix_range &mr) const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>orientation_category</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>plus_assign</b>(const matrix_expression< AE > &ae) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>project</b>(const range_type &r1, const range_type &r2) const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>range_type</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>rbegin1</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>rbegin1</b>() (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>rbegin2</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>rbegin2</b>() (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>reference</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>rend1</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>rend1</b>() (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>rend2</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>rend2</b>() (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>reverse_iterator1</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>reverse_iterator2</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>same_closure</b>(const matrix_range &mr) const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>size1</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>size2</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>size_type</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>start1</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>start2</b>() const (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>storage_category</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>swap</b>(matrix_range mr) (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>swap</b> (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td><code> [friend]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>type_category</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__expression.html">boost::numeric::ublas::matrix_expression< matrix_range< M > ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__expression.html">boost::numeric::ublas::matrix_expression< matrix_range< M > ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>ublas_expression</b>() (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1ublas__expression.html">boost::numeric::ublas::ublas_expression< matrix_range< M > ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1ublas__expression.html">boost::numeric::ublas::ublas_expression< matrix_range< M > ></a></td><td><code> [protected]</code></td></tr>
<tr bgcolor="#f0f0f0"><td><b>value_type</b> typedef (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1matrix__range.html">boost::numeric::ublas::matrix_range< M ></a></td><td></td></tr>
<tr bgcolor="#f0f0f0"><td><b>~ublas_expression</b>() (defined in <a class="el" href="classboost_1_1numeric_1_1ublas_1_1ublas__expression.html">boost::numeric::ublas::ublas_expression< matrix_range< M > ></a>)</td><td><a class="el" href="classboost_1_1numeric_1_1ublas_1_1ublas__expression.html">boost::numeric::ublas::ublas_expression< matrix_range< M > ></a></td><td><code> [protected]</code></td></tr>
</table></div>
<hr size="1"/><address style="text-align: right;"><small>Generated on Sun Jul 4 20:31:06 2010 for ublas by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address>
</body>
</html>
|
venv/lib/python2.7/site-packages/friendship/tests/templates/friendship/follow/remove.html | steventimberman/masterDebater | <form method="post">
{% csrf_token %}
<input type="hidden" name="followee_username" value="{{ followee_username }}" />
<input type="submit" value="remove {{ followee_username }} as a friend" />
</form>
|
releases/0.7.6/api/scala/io/gearpump/streaming/AppMasterToExecutor$$LaunchTasks.html | stanleyxu2005/gearpump.github.io | <!DOCTYPE html >
<html>
<head>
<title>LaunchTasks - io.gearpump.streaming.AppMasterToExecutor.LaunchTasks</title>
<meta name="description" content="LaunchTasks - io.gearpump.streaming.AppMasterToExecutor.LaunchTasks" />
<meta name="keywords" content="LaunchTasks io.gearpump.streaming.AppMasterToExecutor.LaunchTasks" />
<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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks';
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="type">
<div id="definition">
<img src="../../../lib/class_big.png" />
<p id="owner"><a href="../../package.html" class="extype" name="io">io</a>.<a href="../package.html" class="extype" name="io.gearpump">gearpump</a>.<a href="package.html" class="extype" name="io.gearpump.streaming">streaming</a>.<a href="AppMasterToExecutor$.html" class="extype" name="io.gearpump.streaming.AppMasterToExecutor">AppMasterToExecutor</a></p>
<h1>LaunchTasks</h1><h3><span class="morelinks"><div>Related Doc:
<a href="AppMasterToExecutor$.html" class="extype" name="io.gearpump.streaming.AppMasterToExecutor">package AppMasterToExecutor</a>
</div></span></h3><span class="permalink">
<a href="../../../index.html#io.gearpump.streaming.AppMasterToExecutor$$LaunchTasks" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</a>
</span>
</div>
<h4 id="signature" class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">case class</span>
</span>
<span class="symbol">
<span class="name">LaunchTasks</span><span class="params">(<span name="taskId">taskId: <span class="extype" name="scala.List">List</span>[<a href="task/TaskId.html" class="extype" name="io.gearpump.streaming.task.TaskId">TaskId</a>]</span>, <span name="dagVersion">dagVersion: <span class="extype" name="scala.Int">Int</span></span>, <span name="processorDescription">processorDescription: <a href="ProcessorDescription.html" class="extype" name="io.gearpump.streaming.ProcessorDescription">ProcessorDescription</a></span>, <span name="subscribers">subscribers: <span class="extype" name="scala.List">List</span>[<a href="task/Subscriber.html" class="extype" name="io.gearpump.streaming.task.Subscriber">Subscriber</a>]</span>)</span><span class="result"> extends <span class="extype" name="scala.Product">Product</span> with <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.Product">Product</span>, <span class="extype" name="scala.Equals">Equals</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.gearpump.streaming.AppMasterToExecutor.LaunchTasks"><span>LaunchTasks</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.Product"><span>Product</span></li><li class="in" name="scala.Equals"><span>Equals</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>
<a href="http://docs.scala-lang.org/overviews/scaladoc/usage.html#members" target="_blank">Learn more about member selection</a>
</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="constructors" class="members">
<h3>Instance Constructors</h3>
<ol><li name="io.gearpump.streaming.AppMasterToExecutor.LaunchTasks#<init>" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="<init>(taskId:List[io.gearpump.streaming.task.TaskId],dagVersion:Int,processorDescription:io.gearpump.streaming.ProcessorDescription,subscribers:List[io.gearpump.streaming.task.Subscriber]):io.gearpump.streaming.AppMasterToExecutor.LaunchTasks"></a>
<a id="<init>:LaunchTasks"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">new</span>
</span>
<span class="symbol">
<span class="name">LaunchTasks</span><span class="params">(<span name="taskId">taskId: <span class="extype" name="scala.List">List</span>[<a href="task/TaskId.html" class="extype" name="io.gearpump.streaming.task.TaskId">TaskId</a>]</span>, <span name="dagVersion">dagVersion: <span class="extype" name="scala.Int">Int</span></span>, <span name="processorDescription">processorDescription: <a href="ProcessorDescription.html" class="extype" name="io.gearpump.streaming.ProcessorDescription">ProcessorDescription</a></span>, <span name="subscribers">subscribers: <span class="extype" name="scala.List">List</span>[<a href="task/Subscriber.html" class="extype" name="io.gearpump.streaming.task.Subscriber">Subscriber</a>]</span>)</span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@<init>(taskId:List[io.gearpump.streaming.task.TaskId],dagVersion:Int,processorDescription:io.gearpump.streaming.ProcessorDescription,subscribers:List[io.gearpump.streaming.task.Subscriber]):io.gearpump.streaming.AppMasterToExecutor.LaunchTasks" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</a>
</span>
</li></ol>
</div>
<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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@!=(x$1:Any):Boolean" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@##():Int" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@==(x$1:Any):Boolean" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@asInstanceOf[T0]:T0" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@clone():Object" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</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="io.gearpump.streaming.AppMasterToExecutor.LaunchTasks#dagVersion" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="dagVersion:Int"></a>
<a id="dagVersion:Int"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">val</span>
</span>
<span class="symbol">
<span class="name">dagVersion</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@dagVersion:Int" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</a>
</span>
</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@eq(x$1:AnyRef):Boolean" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@finalize():Unit" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@getClass():Class[_]" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@isInstanceOf[T0]:Boolean" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@ne(x$1:AnyRef):Boolean" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@notify():Unit" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@notifyAll():Unit" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="io.gearpump.streaming.AppMasterToExecutor.LaunchTasks#processorDescription" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="processorDescription:io.gearpump.streaming.ProcessorDescription"></a>
<a id="processorDescription:ProcessorDescription"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">val</span>
</span>
<span class="symbol">
<span class="name">processorDescription</span><span class="result">: <a href="ProcessorDescription.html" class="extype" name="io.gearpump.streaming.ProcessorDescription">ProcessorDescription</a></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@processorDescription:io.gearpump.streaming.ProcessorDescription" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</a>
</span>
</li><li name="io.gearpump.streaming.AppMasterToExecutor.LaunchTasks#subscribers" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="subscribers:List[io.gearpump.streaming.task.Subscriber]"></a>
<a id="subscribers:List[Subscriber]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">val</span>
</span>
<span class="symbol">
<span class="name">subscribers</span><span class="result">: <span class="extype" name="scala.List">List</span>[<a href="task/Subscriber.html" class="extype" name="io.gearpump.streaming.task.Subscriber">Subscriber</a>]</span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@subscribers:List[io.gearpump.streaming.task.Subscriber]" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</a>
</span>
</li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="synchronized[T0](x$1:=>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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@synchronized[T0](x$1:=>T0):T0" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="io.gearpump.streaming.AppMasterToExecutor.LaunchTasks#taskId" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="taskId:List[io.gearpump.streaming.task.TaskId]"></a>
<a id="taskId:List[TaskId]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">val</span>
</span>
<span class="symbol">
<span class="name">taskId</span><span class="result">: <span class="extype" name="scala.List">List</span>[<a href="task/TaskId.html" class="extype" name="io.gearpump.streaming.task.TaskId">TaskId</a>]</span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@taskId:List[io.gearpump.streaming.task.TaskId]" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</a>
</span>
</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@wait():Unit" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@wait(x$1:Long,x$2:Int):Unit" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</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.gearpump.streaming.AppMasterToExecutor$$LaunchTasks@wait(x$1:Long):Unit" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" />
</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.Product">
<h3>Inherited from <span class="extype" name="scala.Product">Product</span></h3>
</div><div class="parent" name="scala.Equals">
<h3>Inherited from <span class="extype" name="scala.Equals">Equals</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> |
src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Styles/cloudmedia-edit-cloudvideopart.css | dcinzona/Orchard-Harvest-Website | html {
height: 100%;
}
body {
margin: 0;
padding: 0;
border: 0;
height: 100%;
}
.upload-direct,
.upload-proxied {
display: none;
}
.upload-direct .sync-upload-input,
.upload-proxied .sync-upload-input,
.upload-direct .async-upload-file-input,
.upload-proxied .async-upload-file-input {
display: block;
margin-bottom: 4px;
}
.upload-direct .selected-file-wrapper,
.upload-proxied .selected-file-wrapper,
.upload-direct .progress-bar,
.upload-proxied .progress-bar,
.upload-direct .progress-text,
.upload-proxied .progress-text,
.upload-direct .validation-text,
.upload-proxied .validation-text,
.upload-direct .cancel-upload,
.upload-proxied .cancel-upload {
display: none;
}
.upload-direct .selected-file-wrapper .filename-text,
.upload-proxied .selected-file-wrapper .filename-text {
color: #809f43;
}
.upload-direct .progress-bar,
.upload-proxied .progress-bar {
float: left;
margin-top: 4px;
margin-right: 10px;
}
.upload-direct .validation-text,
.upload-proxied .validation-text {
color: #d8551b;
}
.upload-direct .subtitle-label,
.upload-proxied .subtitle-label {
display: inline;
margin-right: 4px;
}
.warning:before {
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
display: inline-block;
text-decoration: inherit;
content: '\f06a';
font-size: 14px;
color: black;
padding-right: 5px;
}
.media-library-modal-window #layout-main {
height: auto;
padding: 0;
margin: 0;
}
.media-library-modal-window #header {
display: block;
background: none;
margin: 0;
}
.media-library-modal-window #page-title {
padding: 14px 0 0 20px;
}
.media-library-modal-window #local-navigation,
.media-library-modal-window #branding,
.media-library-modal-window #login {
display: none;
}
.blockMsg {
left: 0 !important;
}
.edit-item-sidebar {
margin-bottom: 30px;
}
.status {
display: none;
}
.status.preparing,
.status.cleanup {
padding-left: 23px;
background: url('../Images/Loader1.gif') no-repeat;
}
.status.uploaded {
color: #809f43;
}
/*# sourceMappingURL=cloudmedia-edit-cloudvideopart.css.map */ |
third_party/blink/web_tests/external/wpt/mixed-content/gen/top.http-rp/opt-in/xhr.https.html | chromium/chromium | <!DOCTYPE html>
<!-- DO NOT EDIT! Generated by `common/security-features/tools/generate.py --spec mixed-content/` -->
<html>
<head>
<meta charset="utf-8">
<meta name="timeout" content="long">
<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": "allowed",
"origin": "same-https",
"redirection": "keep-scheme",
"source_context_list": [],
"source_scheme": "https",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Mixed-Content: Expects allowed for xhr to same-https origin and keep-scheme redirection from https context."
},
{
"expectation": "allowed",
"origin": "same-https",
"redirection": "no-redirect",
"source_context_list": [],
"source_scheme": "https",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Mixed-Content: Expects allowed for xhr to same-https origin and no-redirect redirection from https context."
},
{
"expectation": "blocked",
"origin": "cross-http",
"redirection": "keep-scheme",
"source_context_list": [],
"source_scheme": "https",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Mixed-Content: Expects blocked for xhr to cross-http origin and keep-scheme redirection from https context."
},
{
"expectation": "blocked",
"origin": "cross-http",
"redirection": "no-redirect",
"source_context_list": [],
"source_scheme": "https",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Mixed-Content: Expects blocked for xhr to cross-http origin and no-redirect redirection from https context."
},
{
"expectation": "blocked",
"origin": "cross-http",
"redirection": "swap-scheme",
"source_context_list": [],
"source_scheme": "https",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Mixed-Content: Expects blocked for xhr to cross-http origin and swap-scheme redirection from https context."
},
{
"expectation": "blocked",
"origin": "cross-https",
"redirection": "swap-scheme",
"source_context_list": [],
"source_scheme": "https",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Mixed-Content: Expects blocked for xhr to cross-https origin and swap-scheme redirection from https context."
},
{
"expectation": "blocked",
"origin": "same-http",
"redirection": "keep-scheme",
"source_context_list": [],
"source_scheme": "https",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Mixed-Content: Expects blocked for xhr to same-http origin and keep-scheme redirection from https context."
},
{
"expectation": "blocked",
"origin": "same-http",
"redirection": "no-redirect",
"source_context_list": [],
"source_scheme": "https",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Mixed-Content: Expects blocked for xhr to same-http origin and no-redirect redirection from https context."
},
{
"expectation": "blocked",
"origin": "same-http",
"redirection": "swap-scheme",
"source_context_list": [],
"source_scheme": "https",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Mixed-Content: Expects blocked for xhr to same-http origin and swap-scheme redirection from https context."
},
{
"expectation": "blocked",
"origin": "same-https",
"redirection": "swap-scheme",
"source_context_list": [],
"source_scheme": "https",
"subresource": "xhr",
"subresource_policy_deliveries": [],
"test_description": "Mixed-Content: Expects blocked for xhr to same-https origin and swap-scheme redirection from https context."
}
],
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
|
tests/wpt/web-platform-tests/fetch/api/request/destination/fetch-destination-worker.https.html | Varentsov/servo | <!DOCTYPE html>
<title>Fetch destination tests for resources with no load event</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/get-host-info.sub.js"></script>
<script src="/service-workers/service-worker/resources/test-helpers.sub.js"></script>
<script>
let frame;
// Set up the service worker and the frame.
promise_test(t => {
const kScope = 'resources/dummy.html';
const kScript = 'resources/fetch-destination-worker-no-load-event.js';
return service_worker_unregister_and_register(t, kScript, kScope)
.then(registration => {
add_completion_callback(() => {
registration.unregister();
});
return wait_for_state(t, registration.installing, 'activated');
})
.then(() => {
return with_iframe(kScope);
})
.then(f => {
frame = f;
add_completion_callback(() => { f.remove(); });
});
}, 'Initialize global state');
var waitOnMessageFromSW = async t => {
await new Promise((resolve, reject) => {
frame.contentWindow.navigator.serviceWorker.onmessage = t.step_func(event => {
if (event.data == "PASS") {
resolve();
} else {
reject();
}
});
}).catch(() => {;
assert_unreached("Wrong destination.");
});
t.add_cleanup(() => { frame.contentWindow.navigator.serviceWorker.onmessage = null; });
}
// worker destination
/////////////////////
promise_test(async t => {
// We can use an html file as we don't really care about the worker successfully loading.
let worker = new frame.contentWindow.Worker("dummy.html?t=worker&dest=worker");
await waitOnMessageFromSW(t);
}, 'Worker fetches with a "worker" Request.destination');
</script>
|
third_party/blink/web_tests/external/wpt/css/css-flexbox/flex-shorthand-flex-basis-middle.html | scheib/chromium | <!DOCTYPE html>
<html>
<title>CSS Flexbox: flex shorthand with 'auto' or 'zero' percentage value</title>
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-property">
<link href="support/flexbox.css" rel="stylesheet">
<meta name="assert" content="This test ensures that setting '%0' or 'auto' to the flex-basis
in the middle of between 'flex-grow' and 'flex-shrink' properties whose value is '1' works properly.">
<style>
.flexbox {
width: 500px;
height: 100px;
background: green;
}
.flexbox > div {
width: 50px;
background: yellow;
}
</style>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<body onload="checkLayout('.flexbox')">
<div id=log></div>
<div class="flexbox">
<div data-expected-width="50" style="flex: 1 0% 1"></div>
<div data-expected-width="50" style="flex: 1 0% 1"></div>
<div data-expected-width="50" style="flex: 1 0% 1"></div>
</div>
<div class="flexbox">
<div data-expected-width="50" style="flex: 1 auto 1"></div>
<div data-expected-width="50" style="flex: 1 auto 1"></div>
<div data-expected-width="50" style="flex: 1 auto 1"></div>
</div>
</body>
</html> |
www/master/components/dashboard/views/listReplicationControllers.html | guoshimin/kubernetes | <div dashboard-header></div>
<div class="dashboard">
<div ng-controller="ListReplicationControllersCtrl" style="padding:25px;" class="list-pods">
<md-table headers="headers" content="content" sortable="sortable" filters="search" custom-class="custom" thumbs="thumbs" count="count"></md-table>
</div>
</div>
<div dashboard-footer></div>
|
src/deps/db/docs/api_reference/CXX/dbget_bt_minkey.html | mxrrow/zaicoin | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Db::get_bt_minkey()</title>
<link rel="stylesheet" href="apiReference.css" type="text/css" />
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
<link rel="start" href="index.html" title="Berkeley DB C++ API Reference" />
<link rel="up" href="db.html" title="Chapter 2. The Db Handle" />
<link rel="prev" href="dbget.html" title="Db::get()" />
<link rel="next" href="dbget_byteswapped.html" title="Db::get_byteswapped()" />
</head>
<body>
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr>
<th colspan="3" align="center">Db::get_bt_minkey()</th>
</tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="dbget.html">Prev</a> </td>
<th width="60%" align="center">Chapter 2.
The Db Handle
</th>
<td width="20%" align="right"> <a accesskey="n" href="dbget_byteswapped.html">Next</a></td>
</tr>
</table>
<hr />
</div>
<div class="sect1" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h2 class="title" style="clear: both"><a id="dbget_bt_minkey"></a>Db::get_bt_minkey()</h2>
</div>
</div>
</div>
<pre class="programlisting">#include <db_cxx.h>
int
Db::get_bt_minkey(u_int32_t *bt_minkeyp);</pre>
<p>
The <code class="methodname">Db::get_bt_minkey()</code> method returns the minimum number of key/data
pairs intended to be stored on any single Btree leaf page. This value can be set using the
<a class="xref" href="dbset_bt_minkey.html" title="Db::set_bt_minkey()">Db::set_bt_minkey()</a> method.
</p>
<p>
The <code class="methodname">Db::get_bt_minkey()</code> method may be called at any time during the
life of the application.
</p>
<p>
The <code class="methodname">Db::get_bt_minkey()</code> <span>
<span>
method either returns a non-zero error value or throws an
exception that encapsulates a non-zero error value on
failure, and returns 0 on success.
</span>
</span>
</p>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="id1635397"></a>Parameters</h3>
</div>
</div>
</div>
<div class="sect3" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h4 class="title"><a id="id1635406"></a>bt_minkeyp</h4>
</div>
</div>
</div>
<p>
The <code class="methodname">Db::get_bt_minkey()</code> method returns the minimum number of
key/data pairs intended to be stored on any single Btree leaf page in
<span class="bold"><strong>bt_minkeyp</strong></span>.
</p>
</div>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="id1635497"></a>Class</h3>
</div>
</div>
</div>
<p>
<a class="link" href="db.html" title="Chapter 2. The Db Handle">Db</a>
</p>
</div>
<div class="sect2" lang="en" xml:lang="en">
<div class="titlepage">
<div>
<div>
<h3 class="title"><a id="id1635387"></a>See Also</h3>
</div>
</div>
</div>
<p>
<a class="xref" href="db.html#dblist" title="Database and Related Methods">Database and Related Methods</a>,
<a class="xref" href="dbset_bt_minkey.html" title="Db::set_bt_minkey()">Db::set_bt_minkey()</a>
</p>
</div>
</div>
<div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="dbget.html">Prev</a> </td>
<td width="20%" align="center">
<a accesskey="u" href="db.html">Up</a>
</td>
<td width="40%" align="right"> <a accesskey="n" href="dbget_byteswapped.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top">Db::get() </td>
<td width="20%" align="center">
<a accesskey="h" href="index.html">Home</a>
</td>
<td width="40%" align="right" valign="top"> Db::get_byteswapped()</td>
</tr>
</table>
</div>
</body>
</html>
|
third_party/blink/web_tests/external/wpt/html/semantics/forms/the-input-element/input-stepup.html | scheib/chromium | <!DOCTYPE HTML>
<html>
<title>Forms</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<h3>input_stepUp</h3>
<input type='number' id='input_number'> <br/>
<input type="number" id="number_input" max="100" step="1" value="200">
<input type="date" id="date_input" max="2009-02-10" step="1" value="2010-02-10">
<input type="datetime-local" id="dtl_input" max="2009-02-10T20:13" step="1" value="2010-02-10T20:13">
<input type="month" id="month_input" max="2009-02" step="1" value="2010-02">
<input type="time" id="time_input" max="19:13" step="60" value="20:13">
<input type="week" id="week_input" max="2009-W02" step="1" value="2010-W02">
<script>
var input_number = document.getElementById("input_number");
input_number.max = "30";
input_number.step = "3";
input_number.value = "0";
input_number.stepUp(5);
if (typeof(input_number.stepUp) == "function") {
test(function() {
assert_equals(input_number.value, "15", "call of stepUp method is failed.");
});
} else {
test(function() {
assert_unreached("stepUp attribute is not exist.");
});
}
function testStepUpOverflow(id, value, type) {
test(function() {
var input = document.getElementById(id);
input.stepUp();
assert_equals(input.value, value, "value shouldn't change.");
}, "Calling stepUp() on input -" + type + "- where value > max should not modify value.");
}
testStepUpOverflow("number_input", "200", "number");
testStepUpOverflow("date_input", "2010-02-10", "date");
testStepUpOverflow("dtl_input", "2010-02-10T20:13", "datetime-local");
testStepUpOverflow("month_input", "2010-02", "month");
testStepUpOverflow("time_input", "20:13", "time");
testStepUpOverflow("week_input", "2010-W02", "week");
</script>
</html>
|
third_party/WebKit/LayoutTests/fast/repaint/text-append-dirty-lines.html | js0701/chromium-crosswalk | <head>
<script src="resources/text-based-repaint.js" type="text/javascript"></script>
<script>
function repaintTest()
{
document.getElementById("target").firstChild.appendData(".");
}
</script>
</head>
<body onload="runRepaintTest()">
<p>
Test for <i><a href="rdar://problem/6771547">rdar://problem/6771547</a> Appending to a LayoutText causes all its lines to be dirtied</i>.
</p>
<p id="target">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse placerat. Morbi tristique. Mauris eu lacus sed felis pellentesque cursus. Proin vitae nulla. Vivamus in ipsum. Etiam mi. Nam malesuada purus in sem. Sed eget elit vel erat laoreet feugiat. Phasellus mollis pulvinar mi. Etiam ut neque sed eros egestas laoreet. Vestibulum ullamcorper, nulla non feugiat molestie, mi lorem bibendum leo, ac gravida orci nunc nec nulla. Nunc nunc lorem, rhoncus et, rutrum ac, fermentum ut, tortor. Sed rhoncus. Quisque enim metus, luctus tincidunt, vestibulum eu, vestibulum eu, libero. Mauris sagittis aliquam nunc. Nullam pharetra molestie eros. Donec tempus purus ut ligula. Phasellus non nisl. Etiam eu mauris. Curabitur a velit</p>
</body>
|
ajax/libs/oojs-ui/0.18.3/oojs-ui-apex-icons-media.rtl.css | menuka94/cdnjs | /*!
* OOjs UI v0.18.3
* 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-01-04T00:22:45Z
*/
.oo-ui-icon-fullScreen {
background-image: url('themes/apex/images/icons/fullScreen.png');
background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/fullScreen.svg');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/fullScreen.svg');
background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/fullScreen.png');
}
.oo-ui-icon-image {
background-image: url('themes/apex/images/icons/image.png');
background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/image.svg');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/image.svg');
background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/image.png');
}
.oo-ui-icon-imageGallery {
background-image: url('themes/apex/images/icons/imageGallery-rtl.png');
background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/imageGallery-rtl.svg');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/apex/images/icons/imageGallery-rtl.svg');
background-image: -o-linear-gradient(transparent, transparent), url('themes/apex/images/icons/imageGallery-rtl.png');
}
|
testing/local-amp-chrome-extension/popup.html | lannka/amphtml | <!doctype html>
<html>
<head>
<title>AMP Proxy</title>
<style>
body {
overflow: hidden;
margin: 0px;
padding: 20px;
border-radius: 3px;
background: white;
width: 200px;
text-align: center;
}
p {
color: gray;
font-size: 12px;
}
.notice {
color: lightgray;
font-size: 10px;
}
#logo {
width: 100px;
}
#switch-wrapper {
display: flex;
align-items: center;
}
#left {
flex-basis: 100%;
text-align: right;
padding-right: 10px;
}
#right {
flex-basis: 100%;
text-align: left;
padding-left: 10px;
}
#switch-container {
display: inline-block;
width: 40px;
height: 22px;
flex-shrink: 0;
position: relative;
}
#switch-container input[type="checkbox"] {
display:none;
}
#switch {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #005af0;
-webkit-transition: .4s;
transition: .4s;
border-radius: 20px;
}
#switch:before {
position: absolute;
content: "";
height: 16px;
width: 16px;
left: 3px;
bottom: 3px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
border-radius: 50%;
}
input[type="checkbox"]:checked + #switch {
background-color: #005af0;
}
input[type="checkbox"]:focus + #switch {
box-shadow: 0 0 1px #005af0;
}
input:checked + #switch:before {
-webkit-transform: translateX(18px);
-ms-transform: translateX(18px);
transform: translateX(18px);
}
#base-url-holder, #switch-holder, .notice, .desc {
display: flex;
flex-direction: column;
margin-top: 24px;
}
#base-url {
border-radius: 4px;
padding: 8px;
border: 1px solid #d0d0d0;
color: #333;
width: 100%;
box-sizing: border-box;
}
.section-header {
margin-bottom: 16px;
text-align: left;
display: block;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
}
</style>
<script src="popup.js"></script>
</head>
<body>
<img id="logo" src="logo.svg" />
<p class="desc">Switch between using a local distribution of AMP HTML or the online
distribution hosted at https://cdn.ampproject.org/</p>
<div id="switch-holder">
<label class="section-header" for="enabled">Local AMP Serving</label>
<div id="switch-wrapper">
<span id="left">
Online CDN
</span>
<div id="switch-container">
<input type="checkbox" id="enabled">
<label id="switch" for="enabled"></label>
</div>
<span id="right">
Local AMP
</span>
</div>
</div>
<div id="base-url-holder">
<label for="base-url" class="section-header">Base URL</label>
<input id="base-url" type="url">
</div>
<span class="notice">
© Copyright 2017 The AMP HTML Authors. All Rights Reserved.
</span>
</body>
</html>
|
web/public/css/ie9.css | olimpotec/vendefacil | .navbar-inner {
filter: none;
}
.dark {
right: -17px;
}
.verticalChart .singleBar .bar .value span{
color: #3b3b41;
}
hr {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIwLjI1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2Y5ZjlmOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmOWY5ZjkiIHN0b3Atb3BhY2l0eT0iMC4yNSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.box-header {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNGY0ZjQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.btn3d:before {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIxJSIgc3RvcC1jb2xvcj0iI2ViZWFlOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.login-box {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjVmNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjE5JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijc3JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.sliderOverlay,
.progressBarOverlay {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIxJSIgc3RvcC1jb2xvcj0iI2ViZWFlOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.slider {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZmNmYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmYWZhZmEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.sliderVertical {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIxJSIgc3RvcC1jb2xvcj0iI2ViZWFlOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.sliderBlue .ui-slider-range, .progressBlue .ui-progressbar-value {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzY3YzJlZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyZmFiZTkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.sliderGreen .ui-slider-range, .progressGreen .ui-progressbar-value {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2JkZWE3NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiNmUzNzAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.sliderDarkGreen .ui-slider-range, .progressDarkGreen .ui-progressbar-value {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc4Y2Q1MSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1YWFkMzQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.sliderPink .ui-slider-range, .progressPink .ui-progressbar-value {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U4NGM4YSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlMjE2NjgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.sliderOrange .ui-slider-range, .progressOrange .ui-progressbar-value {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZhNjAzZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmYTU4MzMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.sliderLightOrange .ui-slider-range, .progressLightOrange .ui-progressbar-value {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZhYmIzZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNGE1MDYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.sliderRed .ui-slider-range, .progressRed .ui-progressbar-value {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmNTQ1NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZjAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.sliderYellow .ui-slider-range, .progressYellow .ui-progressbar-value {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VhZTg3NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlM2UyNzAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.progress {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZmNmYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmYWZhZmEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.progressSlim {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZjZmNmYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmYWZhZmEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
}
.quick-button,
.quick-button-small {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlZmVmZWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
} |
chrome/test/data/extensions/platform_apps/web_view/dom_storage_isolation/page.html | Chilledheart/chromium | <!-- Copyright (c) 2015 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1> Sample page used for DOM Storage Isolation tests. </h1>
<script src="message.js"></script>
<script src="message_titles.js"></script>
<script src="embedder.js"></script>
</body>
</html>
|
erpnext/templates/includes/announcement/announcement_row.html | manassolanki/erpnext | <div class="web-list-item blog-list-item">
<a href="/announcements?announcement={{doc.name}}">
<div class="row">
<a href="/announcements?announcement={{doc.name}}">
<div class="col-xs-12">
<h1>{{ doc.subject }}</h1>
<p class="post-description more">{{ doc.description }}</p>
<p class="post-by text-muted small">
<i>{{ doc.posted_by }}</i>
<i class="spacer-dot"></i> {{ frappe.format_date(doc.modified) }}
<i class="spacer-dot"></i> {{ doc.num_attachments }} attachments
</p>
</div>
</a>
</div>
</a>
</div>
<script type="text/javascript">
frappe.ready(function() {
var show_char = 150;
$('.more').each(function() {
var content = $(this).text();
if(content.length > show_char) {
var c = content.substr(0, show_char)
var h = content.substr(show_char, content.length - show_char);
html = c + ' ...'
$(this).html(html);
}
});
});
</script>
|
tests/wpt/mozilla/tests/mozilla/enabled_disabled_selectors.html | meh/servo | <!DOCTYPE html>
<html>
<head>
<title>Tests for :enabled and :disabled selectors</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<button id="button-1"></button>
<button id="button-2" disabled></button>
<input id="input-1"></input>
<input id="input-2" disabled></input>
<option id="option-1"></option>
<option id="option-2" disabled></option>
<select id="select-1"></select>
<select id="select-2" disabled></select>
<textarea id="textarea-1"></textarea>
<textarea id="textarea-2" disabled></textarea>
<optgroup disabled>
<option id="option-3"></option>
</optgroup>
<fieldset disabled>
<fieldset>
<button id="button-3"></button>
<input id="input-3"></input>
<select id="select-3"></select>
<textarea id="textarea-3"></textarea>
</fieldset>
</fieldset>
<fieldset disabled>
<legend>
<button id="button-4"></button>
<input id="input-4"></input>
<select id="select-4"></select>
<textarea id="textarea-4"></textarea>
</legend>
</fieldset>
<fieldset disabled>
<legend></legend>
<legend>
<button id="button-5"></button>
<input id="input-5"></input>
<select id="select-5"></select>
<textarea id="textarea-5"></textarea>
</legend>
</fieldset>
<script>
function check_selector(elem, selector, matches) {
assert_equals(elem.matches(selector), matches);
}
function check_disabled_selector(elem, disabled) {
check_selector(elem, ":disabled", disabled);
check_selector(elem, ":enabled", !disabled);
}
test(function() {
var list, i, elem;
// Examples of elements which are never :enabled or :disabled.
list = ['div', 'p', 'body', 'head', 'span'];
for(i = 0; i < list.length; i++) {
elem = document.createElement(list[i]);
check_selector(elem, ":enabled", false);
check_selector(elem, ":disabled", false);
}
// Anchor, Area and Link elements are no longer :enabled with an href.
list = ["a", "area", "link"];
for(i = 0; i < list.length; i++) {
elem = document.createElement(list[i]);
elem.setAttribute("href", "");
check_selector(elem, ":enabled", false);
check_selector(elem, ":disabled", false);
}
// These are :enabled (and not :disabled) by default.
list = ['button', 'input', 'select', 'textarea', 'optgroup', 'option', 'fieldset'];
for(i = 0; i < list.length; i++) {
elem = document.createElement(list[i]);
check_disabled_selector(elem, false);
}
}, "Simple initialization checks");
test(function() {
var elem = document.createElement('menuitem');
check_disabled_selector(elem, false);
}, "menuitem initial state");
test(function() {
var click_count = 0;
var click_event = new Event('click', {bubbles: true, cancelable: true});
var list, elem1, elem2, elem3, elem4, elem5;
function on_click(ev) { click_count++; }
list = ['button', 'input', 'option', 'select', 'textarea'];
for(i = 0; i < list.length; i++) {
click_count = 0;
elem1 = document.getElementById(list[i] + "-1");
assert_equals(elem1.disabled, false);
elem1.addEventListener('click', on_click);
elem1.dispatchEvent(click_event);
assert_equals(click_count, 1);
elem2 = document.getElementById(list[i] + "-2");
assert_equals(elem2.disabled, true);
// Only user-generated click events are prevented.
elem2.addEventListener('click', on_click);
elem2.dispatchEvent(click_event);
assert_equals(click_count, 2);
// This should look disabled, though - missing UA's CSS for :disabled?
elem3 = document.getElementById(list[i] + "-3");
assert_equals(elem3.disabled, false);
if (list[i] == 'option') { continue; }
elem4 = document.getElementById(list[i] + "-4");
assert_equals(elem4.disabled, false);
// This should look disabled, though - missing UA's CSS for :disabled?
elem5 = document.getElementById(list[i] + "-5");
assert_equals(elem5.disabled, false);
}
}, "Document elements tests")
test(function() {
var list = ['button', 'input', 'select', 'textarea'];
var fieldset = document.createElement("fieldset");
fieldset.disabled = true;
var div = document.createElement("div");
var elem;
for(i = 0; i < list.length; i++) {
elem = document.createElement(list[i]);
check_disabled_selector(elem, false);
div.appendChild(elem);
check_disabled_selector(elem, false);
fieldset.appendChild(div);
check_disabled_selector(elem, true);
document.body.appendChild(fieldset);
check_disabled_selector(elem, true);
document.body.removeChild(fieldset);
check_disabled_selector(elem, true);
fieldset.removeChild(div);
check_disabled_selector(elem, false);
div.removeChild(elem);
check_disabled_selector(elem, false);
}
}, "JS tests (Button, Input, Select, TextArea)");
test(function() {
var optgroup = document.createElement("optgroup");
optgroup.disabled = true;
var option = document.createElement("option");
check_disabled_selector(option, false);
optgroup.appendChild(option);
check_disabled_selector(option, true);
document.body.appendChild(optgroup);
check_disabled_selector(option, true);
document.body.removeChild(optgroup);
check_disabled_selector(option, true);
optgroup.removeChild(option);
check_disabled_selector(option, false);
}, "JS tests (Option)");
</script>
</body>
</html>
|
zeroclipboard/test/ZeroClipboard.js.html | kwidz/FileMine | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ZeroClipboard unit tests: ZeroClipboard (built)</title>
<link rel="stylesheet" href="../node_modules/qunitjs/qunit/qunit.css">
<script src="../node_modules/qunitjs/qunit/qunit.js"></script>
<script>
// Polyfill in future functionality: https://github.com/jquery/qunit/issues/490
if (!QUnit.assert.expect) {
QUnit.assert.expect = QUnit.expect;
}
// Require `expect` calls
QUnit.config.requireExpects = true;
// Prevent against Firefox/Firebug failing the global pollution check
var getInterface = null;
// Prevent against failing the global pollution check in all browsers other than IE
if (typeof window.ActiveXObject === "undefined") {
window.ActiveXObject = null;
}
// Prevent against Flash's ExternalInterface failing the global pollution check (seems to be only in IE < 11)
var __flash__arrayToXML = null,
__flash__argumentsToXML = null,
__flash__objectToXML = null,
__flash__escapeXML = null,
__flash__toXML = null,
__flash__addCallback = null,
__flash__removeCallback = null;
</script>
<script src="../ZeroClipboard.js"></script>
<script>
ZeroClipboard.config({
moviePath: "../ZeroClipboard.swf"
});
</script>
<script src="lib/jquery.js"></script>
<script src="ZeroClipboard.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture">
<p id="d_clip_container">
<button id="d_clip_button" class="my_clip_button" title="Click me to copy to clipboard." data-clipboard-text="Copy me!"><b>Copy To Clipboard...</b></button>
</p>
<p id="d_clip_container">
<button id="d_clip_button_no_title" class="my_clip_button" data-clipboard-text="Copy me!"><b>Copy To Clipboard...</b></button>
</p>
<p id="d_clip_container">
<button id="d_clip_button_no_text" class="my_clip_button"><b>Copy To Clipboard...</b></button>
</p>
<p id="d_clip_container">
<button id="d_clip_button_input_text" class="my_clip_button" data-clipboard-target="clipboard_text"><b>Copy To Clipboard...</b></button>
</p>
<p id="d_clip_container">
<button id="d_clip_button_textarea_text" class="my_clip_button" data-clipboard-target="clipboard_textarea"><b>Copy To Clipboard...</b></button>
</p>
<button id="d_clip_button_pre_text" class="my_clip_button" data-clipboard-target="clipboard_pre"><b>Copy To Clipboard...</b></button>
<input type="text" id="clipboard_text" value="Clipboard Text"/>
<textarea id="clipboard_textarea">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</textarea>
<pre id="clipboard_pre">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</pre>
</div>
</body>
</html> |
third_party/blink/web_tests/fast/css/inline-table-first-row-empty.html | chromium/chromium | <!DOCTYPE html>
<style>
body {
margin: 0;
padding: 0;
}
table {
border: 0;
border-spacing: 0;
display: inline-table;
}
span {
font: 20px Ahem;
line-height: 20px;
}
</style>
<script src="../../resources/check-layout.js"></script>
<span>
Text
<table data-total-y=16>
<tr></tr>
<tr><td>Text</td></tr>
</table>
Text
</span>
<p>crbug.com/452593: The baseline of an 'inline-table' is the baseline of the first row of the table.
You should see three black boxes and the middle one should be below the other two.</p>
<p id="test-output"></p>
<script>
checkLayout('table', document.getElementById("test-output"));
</script>
|
tests/wpt/webgl/tests/conformance2/textures/svg_image/tex-2d-rgb5_a1-rgba-unsigned_byte.html | danlrobertson/servo | <!--
Copyright (c) 2015 The Khronos Group Inc.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and/or associated documentation files (the
"Materials"), to deal in the Materials without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Materials, and to
permit persons to whom the Materials are furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Materials.
THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
-->
<!--
This file is auto-generated from py/tex_image_test_generator.py
DO NOT EDIT!
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../../../resources/js-test-style.css"/>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src="../../../js/js-test-pre.js"></script>
<script src="../../../js/webgl-test-utils.js"></script>
<script src="../../../js/tests/tex-image-and-sub-image-utils.js"></script>
<script src="../../../js/tests/tex-image-and-sub-image-2d-with-svg-image.js"></script>
</head>
<body>
<canvas id="example" width="32" height="32"></canvas>
<div id="description"></div>
<div id="console"></div>
<script>
"use strict";
function testPrologue(gl) {
return true;
}
generateTest("RGB5_A1", "RGBA", "UNSIGNED_BYTE", testPrologue, "../../../resources/", 2)();
</script>
</body>
</html>
|
tests/wpt/webgl/tests/conformance2/textures/canvas_sub_rectangle/tex-2d-r11f_g11f_b10f-rgb-half_float.html | UK992/servo | <!--
Copyright (c) 2015 The Khronos Group Inc.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and/or associated documentation files (the
"Materials"), to deal in the Materials without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Materials, and to
permit persons to whom the Materials are furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Materials.
THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
-->
<!--
This file is auto-generated from py/tex_image_test_generator.py
DO NOT EDIT!
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../../../resources/js-test-style.css"/>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src="../../../js/js-test-pre.js"></script>
<script src="../../../js/webgl-test-utils.js"></script>
<script src="../../../js/tests/tex-image-and-sub-image-utils.js"></script>
<script src="../../../js/tests/tex-image-and-sub-image-2d-with-canvas-sub-rectangle.js"></script>
</head>
<body>
<canvas id="example" width="32" height="32"></canvas>
<div id="description"></div>
<div id="console"></div>
<script>
"use strict";
function testPrologue(gl) {
return true;
}
generateTest("R11F_G11F_B10F", "RGB", "HALF_FLOAT", testPrologue, "../../../resources/", 2)();
</script>
</body>
</html>
|
third_party/WebKit/LayoutTests/editing/shadow/shadow-selection-not-exported.html | danakj/chromium | <!DOCTYPE html>
<html>
<pre id="console"></pre>
<p>This test ensures shadow root won't expose to JS layer.<p>
<div id='div1'>BEFORE</div>
<div id='container'>CONTAINER</div>
<div id='div4'>AFTER</di>
<script src="../editing.js"></script>
<script src="../../resources/js-test.js"></script>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var container = document.getElementById('container');
var shadowRoot = container.createShadowRoot();
var div2 = document.createElement('div');
div2.appendChild(document.createTextNode('IN SHADOW TREE 1'));
var div3 = document.createElement('div');
div3.appendChild(document.createTextNode('IN SHADOW TREE 2'));
shadowRoot.appendChild(div2);
shadowRoot.appendChild(div3);
function midX(element) {
return element.offsetLeft + element.offsetWidth / 2;
}
function midY(element) {
return element.offsetTop + element.offsetHeight / 2;
}
function assertNotInShadow(element) {
if (element == div2 || element == div2.firstChild)
return false;
if (element == div3 || element == div3.firstChild)
return false;
return true;
}
if (window.eventSender) {
// Try select from outside of a shadow subtree to inside of a shadow subtree.
eventSender.mouseMoveTo(midX(div1), midY(div1));
eventSender.mouseDown();
eventSender.mouseMoveTo(midX(div2), midY(div2));
eventSender.mouseUp();
var selection = window.getSelection();
shouldBe('assertNotInShadow(selection.anchorNode)', 'true');
shouldBe('assertNotInShadow(selection.focusNode)', 'true');
selection.removeAllRanges();
// Try select from inside of a shadow subtree to outside of a shadow subtree.
eventSender.mouseMoveTo(midX(div3), midY(div3));
eventSender.mouseDown();
eventSender.mouseMoveTo(midX(div4), midY(div4));
eventSender.mouseUp();
selection = window.getSelection();
shouldBe('assertNotInShadow(selection.anchorNode)', 'true');
shouldBe('assertNotInShadow(selection.focusNode)', 'true');
selection.removeAllRanges();
// Try select inside shadow subtrees.
eventSender.mouseMoveTo(midX(div2), midY(div2));
eventSender.mouseDown();
eventSender.mouseMoveTo(midX(div3), midY(div3));
eventSender.mouseUp();
selection = window.getSelection();
shouldBe('assertNotInShadow(selection.anchorNode)', 'true');
shouldBe('assertNotInShadow(selection.focusNode)', 'true');
selection.removeAllRanges();
}
var successfullyParsed = true;
</script>
</html>
|
www/lib/third-party/ngmap/testapp/overlay-remove.html | bennekrouf/ionic-starter-kit | <!DOCTYPE html>
<html ng-app="myApp">
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.5/angular.min.js"></script>
<script src="scripts/app.js"></script>
<!-- build:js scripts/ng-map.min.js -->
<script src="../app/scripts/app.js"></script>
<script src="../app/scripts/directives/map_controller.js"></script>
<script src="../app/scripts/directives/map.js"></script>
<script src="../app/scripts/directives/marker.js"></script>
<script src="../app/scripts/directives/shape.js"></script>
<script src="../app/scripts/services/geo_coder.js"></script>
<script src="../app/scripts/services/navigator_geolocation.js"></script>
<script src="../app/scripts/services/attr2_options.js"></script>
<!-- endbuild -->
<script>
var app = angular.module('myApp', ['ngMap']);
app.controller('GroundoverlayRemoveCtrl', function($scope) {
$scope.add = function() {
$scope.map.shapes.foo.setMap($scope.map);
}
$scope.remove = function() {
$scope.map.shapes.foo.setMap(null);
};
});
</script>
</head>
<body>
<style>
div[ng-controller] {
position: relative;
}
#panel {
position: absolute;
top: 5px;
left: 50%;
margin-left: -90px;
z-index: 5;
background-color: #fff;
padding: 5px;
border: 1px solid #999;
}
</style>
<div ng-controller="GroundoverlayRemoveCtrl">
<div id="panel">
<input ng-click="remove()" type=button value="Remove overlay">
<input ng-click="add()" type=button value="Restore overlay">
</div>
<map zoom="13" center="40.740, -74.18">
<shape name="image" id="foo"
url="https://www.lib.utexas.edu/maps/historical/newark_nj_1922.jpg"
bounds="[[40.712216, -74.22655], [40.773941, -74.12544]]">
</shape>
</map>
</div>
</body>
</html>
|
sites/all/modules/dialog/themes/seven/css/components/dialog.css | besja/econ | /**
* Presentational styles for Drupal dialogs.
*/
.ui-dialog {
background: transparent;
border: 0;
position: absolute;
z-index: 1260;
padding: 0;
}
@media all and (max-width: 48em) { /* 768px */
.ui-dialog {
min-width: 92%;
max-width: 92%;
}
}
.ui-dialog .ui-dialog-titlebar {
background: #6b6b6b;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
padding: 15px 49px 15px 15px;
}
.ui-dialog .ui-dialog-title {
font-size: 1.231em;
font-weight: 600;
margin: 0;
color: #ffffff;
-webkit-font-smoothing: antialiased;
}
.ui-dialog .ui-dialog-titlebar-close {
border: 0;
background: none;
right: 20px; /* LTR */
top: 20px;
margin: 0;
height: 16px;
width: 16px;
position: absolute;
}
[dir="rtl"] .ui-dialog .ui-dialog-titlebar-close {
right: auto;
left: 20px;
}
.ui-dialog .ui-icon.ui-icon-closethick {
background: url(../../../../misc/icons/ffffff/ex.svg) 0 0 no-repeat;
margin-top: -12px;
}
.ui-dialog .ui-widget-content.ui-dialog-content {
background: #ffffff;
overflow: auto;
padding: 1em;
}
.views-ui-dialog .ui-widget-content.ui-dialog-content {
padding: 0;
}
.ui-dialog .ui-widget-content.ui-dialog-buttonpane {
background: #f5f5f2;
/*border-top: 1px solid #bfbfbf;*/
margin: 0;
padding: 15px 20px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
margin: 0;
padding: 0;
float: none;
}
.ui-dialog .ui-dialog-buttonpane .ui-button-text-only .ui-button-text {
padding: 0;
}
.ui-dialog .ui-dialog-content {
position: static;
}
/* Form action buttons are moved in dialogs. Remove empty space. */
.ui-dialog .ui-dialog-content .form-actions {
padding: 0;
margin: 0;
}
.ui-dialog .ajax-progress-throbber {
/* Can't do center:50% middle: 50%, so approximate it for a typical window size. */
left: 49%; /* LTR */
position: fixed;
top: 48.5%;
z-index: 1000;
background-color: #232323;
background-image: url(../../../../misc/loading-small.gif);
background-position: center center;
background-repeat: no-repeat;
border-radius: 7px;
height: 24px;
opacity: 0.9;
padding: 4px;
width: 24px;
}
[dir="rtl"] .ui-dialog .ajax-progress-throbber {
left: auto;
right: 49%;
}
.ui-dialog .ajax-progress-throbber .throbber,
.ui-dialog .ajax-progress-throbber .message {
display: none;
}
|
www/admin/lib/dojo/dojox/mobile/themes/custom/EdgeToEdgeCategory-compat.css | marcbuils/WorkESB |
.mblEdgeToEdgeCategory {
background-image: url(compat/heading-bg.png);
}
|
third_party/WebKit/LayoutTests/editing/execCommand/5481523.html | XiaosongWei/chromium-crosswalk | <p>This tests for a hang when indenting a fully selected table twice. You should see a twice indented table, with four cells, below.</p>
<div id="div" contenteditable="true">
<table border="1">
<tr><td>One</td><td>Two</td></tr>
<tr><td>Three</td><td>Four</td></tr>
</table>
</div>
<script>
div = document.getElementById("div");
div.focus();
document.execCommand("SelectAll");
document.execCommand("Indent");
document.execCommand("Indent");
</script>
|
third_party/WebKit/LayoutTests/fast/css/list-item-pseudo-nocrash.html | axinging/chromium-crosswalk | <!DOCTYPE html>
<html>
<head>
<title>List-item + :after pseudo-class</title>
<style type="text/css">
#anchor {
display: block;
}
#anchor:hover {}
#anchor:after {
content: ".";
display: block;
}
span {
float: left;
}
</style>
<script type="application/javascript">
function run() {
if (!window.testRunner)
return;
window.testRunner.dumpAsText();
window.testRunner.waitUntilDone();
window.eventSender.mouseMoveTo(0, 0);
window.setTimeout(hover, 100);
}
function hover() {
var element = document.getElementById('text');
var x = element.offsetLeft + element.offsetWidth / 2;
var y = element.offsetTop + element.offsetHeight / 2;
window.eventSender.mouseMoveTo(x, y);
window.setTimeout(finalize, 100);
}
function finalize() {
window.testRunner.notifyDone();
}
window.addEventListener('load', run, false);
</script>
</head>
<body>
<p>This is a test for <a href="https://bugs.webkit.org/show_bug.cgi?id=30944">bug 30944</a>. Passes if it does not crash.</p>
<ul>
<li>
<a id="anchor" href="#"><span id="text">Hover me</span></a>
</li>
</ul>
</body>
</html>
|
test/three.js-master/examples/canvas_interactive_particles.html | perryuwang/perryuwang.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<title>three.js canvas - interactive particles</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
font-family: Monospace;
background-color: #f0f0f0;
margin: 0px;
overflow: hidden;
}
</style>
</head>
<body>
<script src="../build/three.js"></script>
<script src="js/renderers/Projector.js"></script>
<script src="js/renderers/CanvasRenderer.js"></script>
<script src="js/libs/stats.min.js"></script>
<script>
var container, stats;
var camera, scene, renderer;
var raycaster;
var mouse;
var PI2 = Math.PI * 2;
var programFill = function ( context ) {
context.beginPath();
context.arc( 0, 0, 0.5, 0, PI2, true );
context.fill();
};
var programStroke = function ( context ) {
context.lineWidth = 0.025;
context.beginPath();
context.arc( 0, 0, 0.5, 0, PI2, true );
context.stroke();
};
var INTERSECTED;
init();
animate();
function init() {
container = document.createElement( 'div' );
document.body.appendChild( container );
var info = document.createElement( 'div' );
info.style.position = 'absolute';
info.style.top = '10px';
info.style.width = '100%';
info.style.textAlign = 'center';
info.innerHTML = '<a href="http://threejs.org" target="_blank">three.js</a> canvas - interactive particles';
container.appendChild( info );
camera = new THREE.PerspectiveCamera( 70, window.innerWidth / window.innerHeight, 1, 10000 );
camera.position.set( 0, 300, 500 );
scene = new THREE.Scene();
for ( var i = 0; i < 100; i ++ ) {
var particle = new THREE.Sprite( new THREE.SpriteCanvasMaterial( { color: Math.random() * 0x808080 + 0x808080, program: programStroke } ) );
particle.position.x = Math.random() * 800 - 400;
particle.position.y = Math.random() * 800 - 400;
particle.position.z = Math.random() * 800 - 400;
particle.scale.x = particle.scale.y = Math.random() * 20 + 20;
scene.add( particle );
}
//
raycaster = new THREE.Raycaster();
mouse = new THREE.Vector2();
renderer = new THREE.CanvasRenderer();
renderer.setClearColor( 0xf0f0f0 );
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( window.innerWidth, window.innerHeight );
container.appendChild( renderer.domElement );
stats = new Stats();
container.appendChild( stats.dom );
document.addEventListener( 'mousemove', onDocumentMouseMove, false );
//
window.addEventListener( 'resize', onWindowResize, false );
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
}
function onDocumentMouseMove( event ) {
event.preventDefault();
mouse.x = ( event.clientX / window.innerWidth ) * 2 - 1;
mouse.y = - ( event.clientY / window.innerHeight ) * 2 + 1;
}
//
function animate() {
requestAnimationFrame( animate );
render();
stats.update();
}
var radius = 600;
var theta = 0;
function render() {
// rotate camera
theta += 0.1;
camera.position.x = radius * Math.sin( THREE.Math.degToRad( theta ) );
camera.position.y = radius * Math.sin( THREE.Math.degToRad( theta ) );
camera.position.z = radius * Math.cos( THREE.Math.degToRad( theta ) );
camera.lookAt( scene.position );
camera.updateMatrixWorld();
// find intersections
raycaster.setFromCamera( mouse, camera );
var intersects = raycaster.intersectObjects( scene.children );
if ( intersects.length > 0 ) {
if ( INTERSECTED != intersects[ 0 ].object ) {
if ( INTERSECTED ) INTERSECTED.material.program = programStroke;
INTERSECTED = intersects[ 0 ].object;
INTERSECTED.material.program = programFill;
}
} else {
if ( INTERSECTED ) INTERSECTED.material.program = programStroke;
INTERSECTED = null;
}
renderer.render( scene, camera );
}
</script>
</body>
</html>
|
third_party/blink/web_tests/external/wpt/css/css-align/content-distribution/parse-justify-content-005.html | chromium/chromium | <!DOCTYPE html>
<meta charset=utf-8>
<title>Content Distibution: justify-content - inherit value</title>
<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com" />
<link rel="help" href="https://drafts.csswg.org/css-align-3/#content-distribution" />
<link rel="help" href="https://drafts.csswg.org/css-align-3/#propdef-justify-content" />
<meta name="assert" content="Check bad cobinations of specified values."/>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/css-align/resources/alignment-parsing-utils.js"></script>
<div id="log"></div>
<script>
test(function() {
checkInheritValues("justifyContent", "justify-content", "end");
}, "Test the value 'inherit' overrides current value ('end')");
test(function() {
checkInheritValues("justifyContent", "justify-content", "safe left");
}, "Test the value 'inherit' overrides current value ('safe left')");
test(function() {
checkInheritValues("justifyContent", "justify-content", "unsafe center");
}, "Test the value 'inherit' overrides current value ('unsafe center')");
</script>
|
tests/wpt/web-platform-tests/css/vendor-imports/mozilla/mozilla-central-reftests/images3/object-fit-contain-svg-002i.html | shinglyu/servo | <!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
<meta charset="utf-8">
<title>CSS Test: 'object-fit: contain' on img element, with a SVG image and with various 'object-position' values</title>
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
<link rel="help" href="http://www.w3.org/TR/css3-images/#sizing">
<link rel="help" href="http://www.w3.org/TR/css3-images/#the-object-fit">
<link rel="help" href="http://www.w3.org/TR/css3-images/#the-object-position">
<link rel="match" href="object-fit-contain-svg-002-ref.html">
<style type="text/css">
img {
border: 1px dashed gray;
padding: 1px;
object-fit: contain;
float: left;
}
.bigWide {
width: 48px;
height: 32px;
}
.bigTall {
width: 32px;
height: 48px;
}
.small {
width: 8px;
height: 8px;
}
br { clear: both; }
.tr { object-position: top right }
.bl { object-position: bottom left }
.tl { object-position: top 25% left 25% }
.br { object-position: bottom 1px right 2px }
.tc { object-position: top 3px center }
.cr { object-position: center right 25% }
</style>
</head>
<body>
<!-- big/wide: -->
<img src="support/colors-8x16.svg" class="bigWide tr">
<img src="support/colors-8x16.svg" class="bigWide bl">
<img src="support/colors-8x16.svg" class="bigWide tl">
<img src="support/colors-8x16.svg" class="bigWide br">
<img src="support/colors-8x16.svg" class="bigWide tc">
<img src="support/colors-8x16.svg" class="bigWide cr">
<img src="support/colors-8x16.svg" class="bigWide">
<br>
<!-- big/tall: -->
<img src="support/colors-8x16.svg" class="bigTall tr">
<img src="support/colors-8x16.svg" class="bigTall bl">
<img src="support/colors-8x16.svg" class="bigTall tl">
<img src="support/colors-8x16.svg" class="bigTall br">
<img src="support/colors-8x16.svg" class="bigTall tc">
<img src="support/colors-8x16.svg" class="bigTall cr">
<img src="support/colors-8x16.svg" class="bigTall">
<br>
<!-- small: -->
<img src="support/colors-8x16.svg" class="small tr">
<img src="support/colors-8x16.svg" class="small bl">
<img src="support/colors-8x16.svg" class="small tl">
<img src="support/colors-8x16.svg" class="small br">
<img src="support/colors-8x16.svg" class="small tc">
<img src="support/colors-8x16.svg" class="small cr">
<img src="support/colors-8x16.svg" class="small">
<br>
</body>
</html>
|
test-resources/sap/m/demokit/tutorial/testing/16/webapp/test/integration/opaTests.qunit.html | openui5/packaged-sap.m | <!DOCTYPE html>
<html>
<head>
<title>Opa tests for Bulletin Board</title>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta charset="utf-8">
<script id="sap-ui-bootstrap"
src="../../../../../../../../../../resources/sap-ui-core.js"
data-sap-ui-resourceroots='{
"sap.ui.demo.bulletinboard.test": "../",
"sap.ui.demo.bulletinboard.app" : "../mockServer"
}'
data-sap-ui-frameOptions='deny'>
</script>
<script>
jQuery.sap.require("sap.ui.demo.bulletinboard.test.integration.AllJourneys");
</script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
</body>
</html>
|
src/main/drupal/sites/all/modules/ctools/ctools_ajax_sample/css/ctools-ajax-sample.css | ROLE/widget-store | div.ctools-sample-modal-content {
background:none;
border:0;
color:#000000;
margin:0;
padding:0;
text-align:left;
}
div.ctools-sample-modal-content .modal-scroll{
overflow:hidden;
overflow-y:auto;
}
div.ctools-sample-modal-content #popups-overlay {
background-color:transparent;
}
div.ctools-sample-modal-content #popups-loading {
width:248px;
position:absolute;
display:none;
opacity:1;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
z-index:99;
}
div.ctools-sample-modal-content #popups-loading span.popups-loading-message {
background:#FFF url(../images/loading-large.gif) no-repeat 8px center;
display:block;
color:#444444;
font-family:Arial;
font-size:22px;
font-weight:bold;
height:36px;
line-height:36px;
padding:0 40px;
}
div.ctools-sample-modal-content #popups-loading table,
div.ctools-sample-modal-content .popups-box table {
margin:0px;
}
div.ctools-sample-modal-content #popups-loading tbody,
div.ctools-sample-modal-content .popups-box tbody {
border:none;
}
div.ctools-sample-modal-content .popups-box tr {
background-color:transparent;
}
div.ctools-sample-modal-content td.popups-border {
background: url(../images/popups-border.png);
background-color:transparent;
}
div.ctools-sample-modal-content td.popups-tl,
div.ctools-sample-modal-content td.popups-tr,
div.ctools-sample-modal-content td.popups-bl,
div.ctools-sample-modal-content td.popups-br {
background-repeat: no-repeat;
height:10px;
padding:0px;
}
div.ctools-sample-modal-content td.popups-tl { background-position: 0px 0px; }
div.ctools-sample-modal-content td.popups-t,
div.ctools-sample-modal-content td.popups-b {
background-position: 0px -40px;
background-repeat: repeat-x;
height:10px;
}
div.ctools-sample-modal-content td.popups-tr { background-position: 0px -10px; }
div.ctools-sample-modal-content td.popups-cl,
div.ctools-sample-modal-content td.popups-cr {
background-position: -10px 0;
background-repeat: repeat-y;
width:10px;
}
div.ctools-sample-modal-content td.popups-cl,
div.ctools-sample-modal-content td.popups-cr,
div.ctools-sample-modal-content td.popups-c { padding:0; }
div.ctools-sample-modal-content td.popups-c { background:#fff; }
div.ctools-sample-modal-content td.popups-bl { background-position: 0px -20px; }
div.ctools-sample-modal-content td.popups-br { background-position: 0px -30px; }
div.ctools-sample-modal-content .popups-box,
div.ctools-sample-modal-content #popups-loading {
border: 0px solid #454545;
opacity:1;
overflow:hidden;
padding:0;
background-color:transparent;
}
div.ctools-sample-modal-content .popups-container {
overflow:hidden;
height:100%;
background-color:#fff;
}
div.ctools-sample-modal-content div.popups-title {
-moz-border-radius-topleft: 0px;
-webkit-border-radius-topleft: 0px;
margin-bottom:0px;
background-color:#ff7200;
border:1px solid #ce5c00;
padding:4px 10px 5px;
color:white;
font-size:1em;
font-weight:bold;
}
div.ctools-sample-modal-content .popups-body {
background-color:#fff;
padding:8px;
}
div.ctools-sample-modal-content .popups-box .popups-buttons,
div.ctools-sample-modal-content .popups-box .popups-footer {
background-color:#fff;
}
div.ctools-sample-modal-content .popups-title a.close {
color: #fff;
text-decoration:none;
}
div.ctools-sample-modal-content .popups-close {
font-size:120%;
float:right;
text-align:right;
}
div.ctools-sample-modal-content .modal-loading-wrapper {
width:220px;
height:19px;
margin:0 auto;
margin-top:2%;
}
div.ctools-sample-modal-content tbody{
border:none;
}
div.ctools-sample-modal-content .modal-content .modal-throbber-wrapper img {
margin-top: 100px;
}
|
themes/testing_themes/marinelli/files/search.css | giovannicanzio/formerita | /* $Id: search.css,v 1.5 2010/05/29 07:50:33 dries Exp $ */
.search-form {
margin-bottom: 1em;
}
.search-form input {
margin-top: 0;
margin-bottom: 0;
}
.search-results {
list-style: none;
}
.search-results p {
margin-top: 0;
}
.search-results .title {
font-size: 1.2em;
}
.search-results li {
margin-bottom: 1em;
}
.search-results .search-snippet-info {
padding-left: 1em; /* LTR */
}
.search-results .search-info {
font-size: 0.85em;
}
.search-advanced .criterion {
float: left; /* LTR */
margin-right: 2em; /* LTR */
}
.search-advanced .action {
float: left; /* LTR */
clear: left; /* LTR */
}
|
wp-content/themes/CMANEW/js/colorbox.css | MESH-Dev/CMANY-ACC | /*
ColorBox Core Style:
The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}
/*
User Style:
Change the following styles to modify the appearance of ColorBox. They are
ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#fff;}
#colorbox{}
#cboxTopLeft{width:25px; height:25px; background:url(images/border1.png) no-repeat 0 0;}
#cboxTopCenter{height:25px; background:url(images/border1.png) repeat-x 0 -50px;}
#cboxTopRight{width:25px; height:25px; background:url(images/border1.png) no-repeat -25px 0;}
#cboxBottomLeft{width:25px; height:25px; background:url(images/border1.png) no-repeat 0 -25px;}
#cboxBottomCenter{height:25px; background:url(images/border1.png) repeat-x 0 -75px;}
#cboxBottomRight{width:25px; height:25px; background:url(images/border1.png) no-repeat -25px -25px;}
#cboxMiddleLeft{width:25px; background:url(images/border2.png) repeat-y 0 0;}
#cboxMiddleRight{width:25px; background:url(images/border2.png) repeat-y -25px 0;}
#cboxContent{background:#fff; overflow:hidden;}
.cboxIframe{background:#fff;}
#cboxError{padding:50px; border:1px solid #ccc;}
#cboxLoadedContent{margin-bottom:20px;}
#cboxTitle{position:absolute; bottom:0px; left:0; text-align:center; width:100%; color:#999;}
#cboxCurrent{position:absolute; bottom:0px; left:100px; color:#999;}
#cboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
#cboxPrevious{position:absolute; bottom:0px; left:0; color:#444;}
#cboxNext{position:absolute; bottom:0px; left:63px; color:#444;}
#cboxLoadingOverlay{background:#fff url(images/loading.gif) no-repeat 5px 5px;}
#cboxClose{position:absolute; bottom:0; right:0; display:block; color:#444;}
/*
The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
when an alpha filter (opacity change) is set on the element or ancestor element. This style is not applied to or needed in IE9.
See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}
/*
The following provides PNG transparency support for IE6
Feel free to remove this and the /ie6/ directory if you have dropped IE6 support.
*/
.cboxIE6 #cboxTopLeft{background:url(images/ie6/borderTopLeft.png);}
.cboxIE6 #cboxTopCenter{background:url(images/ie6/borderTopCenter.png);}
.cboxIE6 #cboxTopRight{background:url(images/ie6/borderTopRight.png);}
.cboxIE6 #cboxBottomLeft{background:url(images/ie6/borderBottomLeft.png);}
.cboxIE6 #cboxBottomCenter{background:url(images/ie6/borderBottomCenter.png);}
.cboxIE6 #cboxBottomRight{background:url(images/ie6/borderBottomRight.png);}
.cboxIE6 #cboxMiddleLeft{background:url(images/ie6/borderMiddleLeft.png);}
.cboxIE6 #cboxMiddleRight{background:url(images/ie6/borderMiddleRight.png);}
.cboxIE6 #cboxTopLeft,
.cboxIE6 #cboxTopCenter,
.cboxIE6 #cboxTopRight,
.cboxIE6 #cboxBottomLeft,
.cboxIE6 #cboxBottomCenter,
.cboxIE6 #cboxBottomRight,
.cboxIE6 #cboxMiddleLeft,
.cboxIE6 #cboxMiddleRight {
_behavior: expression(this.src = this.src ? this.src : this.currentStyle.backgroundImage.split('"')[1], this.style.background = "none", this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" + this.src + ", sizingMethod='scale')");
}
|
web/three.js/examples/webgl_buffergeometry_points.html | ChainedLupine/ludum-dare-24-jam-entry | <!DOCTYPE html>
<html lang="en">
<head>
<title>three.js webgl - buffergeometry [particles]</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
color: #cccccc;
font-family:Monospace;
font-size:13px;
text-align:center;
background-color: #050505;
margin: 0px;
overflow: hidden;
}
#info {
position: absolute;
top: 0px; width: 100%;
padding: 5px;
}
a {
color: #0080ff;
}
</style>
</head>
<body>
<div id="container"></div>
<div id="info"><a href="http://threejs.org" target="_blank">three.js</a> webgl - buffergeometry - particles</div>
<script src="../build/three.min.js"></script>
<script src="js/Detector.js"></script>
<script src="js/libs/stats.min.js"></script>
<script>
if ( ! Detector.webgl ) Detector.addGetWebGLMessage();
var container, stats;
var camera, scene, renderer;
var mesh;
init();
animate();
function init() {
container = document.getElementById( 'container' );
//
camera = new THREE.PerspectiveCamera( 27, window.innerWidth / window.innerHeight, 5, 3500 );
camera.position.z = 2750;
scene = new THREE.Scene();
scene.fog = new THREE.Fog( 0x050505, 2000, 3500 );
//
var particles = 500000;
var geometry = new THREE.BufferGeometry();
var positions = new Float32Array( particles * 3 );
var colors = new Float32Array( particles * 3 );
var color = new THREE.Color();
var n = 1000, n2 = n / 2; // particles spread in the cube
for ( var i = 0; i < positions.length; i += 3 ) {
// positions
var x = Math.random() * n - n2;
var y = Math.random() * n - n2;
var z = Math.random() * n - n2;
positions[ i ] = x;
positions[ i + 1 ] = y;
positions[ i + 2 ] = z;
// colors
var vx = ( x / n ) + 0.5;
var vy = ( y / n ) + 0.5;
var vz = ( z / n ) + 0.5;
color.setRGB( vx, vy, vz );
colors[ i ] = color.r;
colors[ i + 1 ] = color.g;
colors[ i + 2 ] = color.b;
}
geometry.addAttribute( 'position', new THREE.BufferAttribute( positions, 3 ) );
geometry.addAttribute( 'color', new THREE.BufferAttribute( colors, 3 ) );
geometry.computeBoundingSphere();
//
var material = new THREE.PointsMaterial( { size: 15, vertexColors: THREE.VertexColors } );
particleSystem = new THREE.Points( geometry, material );
scene.add( particleSystem );
//
renderer = new THREE.WebGLRenderer( { antialias: false } );
renderer.setClearColor( scene.fog.color );
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( window.innerWidth, window.innerHeight );
container.appendChild( renderer.domElement );
//
stats = new Stats();
stats.domElement.style.position = 'absolute';
stats.domElement.style.top = '0px';
container.appendChild( stats.domElement );
//
window.addEventListener( 'resize', onWindowResize, false );
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
}
//
function animate() {
requestAnimationFrame( animate );
render();
stats.update();
}
function render() {
var time = Date.now() * 0.001;
particleSystem.rotation.x = time * 0.25;
particleSystem.rotation.y = time * 0.5;
renderer.render( scene, camera );
}
</script>
</body>
</html>
|
web/lib/lib/fullcalendar-1.5.3/demos/gcal.html | Laolingtong/VM | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<link rel='stylesheet' type='text/css' href='../fullcalendar/fullcalendar.css' />
<link rel='stylesheet' type='text/css' href='../fullcalendar/fullcalendar.print.css' media='print' />
<script type='text/javascript' src='../jquery/jquery-1.7.1.min.js'></script>
<script type='text/javascript' src='../jquery/jquery-ui-1.8.17.custom.min.js'></script>
<script type='text/javascript' src='../fullcalendar/fullcalendar.min.js'></script>
<script type='text/javascript' src='../fullcalendar/gcal.js'></script>
<script type='text/javascript'>
$(document).ready(function() {
$('#calendar').fullCalendar({
// US Holidays
events: 'http://www.google.com/calendar/feeds/usa__en%40holiday.calendar.google.com/public/basic',
eventClick: function(event) {
// opens events in a popup window
window.open(event.url, 'gcalevent', 'width=700,height=600');
return false;
},
loading: function(bool) {
if (bool) {
$('#loading').show();
}else{
$('#loading').hide();
}
}
});
});
</script>
<style type='text/css'>
body {
margin-top: 40px;
text-align: center;
font-size: 14px;
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
}
#loading {
position: absolute;
top: 5px;
right: 5px;
}
#calendar {
width: 900px;
margin: 0 auto;
}
</style>
</head>
<body>
<div id='loading' style='display:none'>loading...</div>
<div id='calendar'></div>
</body>
</html>
|
scala/scala-impl/resources/postfixTemplates/ScalaNotPostfixTemplate/description.html | triplequote/intellij-scala | <html>
<body>
Negates boolean expression.
</body>
</html>
|
war/closure-library-20120710-r2029/closure/goog/ui/tree/basenode_test.html | AppScale/appinventor | <!DOCTYPE html>
<html>
<!--
Copyright 2009 The Closure Library Authors. All Rights Reserved.
Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<!--
Author: arv@google.com (Erik Arvidsson)
-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Closure Unit Tests - goog.ui.tree.BaseNode</title>
<script src="../../base.js"></script>
<script>
goog.require('goog.dom');
goog.require('goog.dom.classes');
goog.require('goog.testing.jsunit');
goog.require('goog.ui.Component');
goog.require('goog.ui.tree.BaseNode');
goog.require('goog.ui.tree.BaseNode.EventType');
goog.require('goog.ui.tree.TreeControl');
goog.require('goog.ui.tree.TreeNode');
</script>
</head>
<body>
<script>
function testAdd() {
var node1 = new goog.ui.tree.TreeNode('node1');
var node2 = new goog.ui.tree.TreeNode('node2');
var node3 = new goog.ui.tree.TreeNode('node3');
var node4 = new goog.ui.tree.TreeNode('node4');
assertEquals('node2 added', node2, node1.add(node2));
assertEquals('node3 added', node3, node1.add(node3));
assertEquals('node4 added', node4, node1.add(node4, node3));
assertEquals('node1 has 3 children', 3, node1.getChildCount());
assertEquals('first child', node2, node1.getChildAt(0));
assertEquals('second child', node4, node1.getChildAt(1));
assertEquals('third child', node3, node1.getChildAt(2));
assertNull('node1 has no parent', node1.getParent());
assertEquals('the parent of node2 is node1', node1, node2.getParent());
assertEquals('node4 moved under node2', node4, node2.add(node4));
assertEquals('node1 has 2 children', 2, node1.getChildCount());
assertEquals('node2 has 1 child', 1, node2.getChildCount());
assertEquals('the child of node2 is node4', node4, node2.getChildAt(0));
assertEquals('the parent of node4 is node2', node2, node4.getParent());
}
function testExpandIconAfterAddChild() {
var tree = new goog.ui.tree.TreeControl('root');
var node1 = new goog.ui.tree.TreeNode('node1')
var node2 = new goog.ui.tree.TreeNode('node2')
tree.render(goog.dom.createDom('div'));
tree.addChild(node1);
node1.addChild(node2);
assertTrue('expand icon of node1 changed to L+', goog.dom.classes.has(
node1.getExpandIconElement(), 'goog-tree-expand-icon-lplus'));
node1.removeChild(node2);
assertFalse('expand icon of node1 changed back to L', goog.dom.classes.has(
node1.getExpandIconElement(), 'goog-tree-expand-icon-lplus'));
}
function testExpandEvents() {
var n = new goog.ui.tree.BaseNode('');
n.getTree = function() {};
var expanded = false;
n.setExpanded(expanded);
assertEquals(expanded, n.getExpanded());
var callCount = 0;
n.addEventListener(goog.ui.tree.BaseNode.EventType.BEFORE_EXPAND,
function(e) {
assertEquals(expanded, n.getExpanded());
callCount++;
});
n.addEventListener(goog.ui.tree.BaseNode.EventType.EXPAND,
function(e) {
assertEquals(!expanded, n.getExpanded());
callCount++;
});
n.setExpanded(!expanded);
assertEquals(2, callCount);
}
function testExpandEvents2() {
var n = new goog.ui.tree.BaseNode('');
n.getTree = function() {};
var expanded = true;
n.setExpanded(expanded);
assertEquals(expanded, n.getExpanded());
var callCount = 0;
n.addEventListener(goog.ui.tree.BaseNode.EventType.BEFORE_COLLAPSE,
function(e) {
assertEquals(expanded, n.getExpanded());
callCount++;
});
n.addEventListener(goog.ui.tree.BaseNode.EventType.COLLAPSE,
function(e) {
assertEquals(!expanded, n.getExpanded());
callCount++;
});
n.setExpanded(!expanded);
assertEquals(2, callCount);
}
function testExpandEventsPreventDefault() {
var n = new goog.ui.tree.BaseNode('');
n.getTree = function() {};
var expanded = true;
n.setExpanded(expanded);
assertEquals(expanded, n.getExpanded());
var callCount = 0;
n.addEventListener(goog.ui.tree.BaseNode.EventType.BEFORE_COLLAPSE,
function(e) {
assertEquals(expanded, n.getExpanded());
e.preventDefault();
callCount++;
});
n.addEventListener(goog.ui.tree.BaseNode.EventType.COLLAPSE,
function(e) {
fail('Should not fire COLLAPSE');
});
n.setExpanded(!expanded);
assertEquals(1, callCount);
}
function testExpandEventsPreventDefault2() {
var n = new goog.ui.tree.BaseNode('');
n.getTree = function() {};
var expanded = false;
n.setExpanded(expanded);
assertEquals(expanded, n.getExpanded());
var callCount = 0;
n.addEventListener(goog.ui.tree.BaseNode.EventType.BEFORE_EXPAND,
function(e) {
assertEquals(expanded, n.getExpanded());
e.preventDefault();
callCount++;
});
n.addEventListener(goog.ui.tree.BaseNode.EventType.EXPAND,
function(e) {
fail('Should not fire EXPAND');
});
n.setExpanded(!expanded);
assertEquals(1, callCount);
}
function testGetNextShownNode() {
var tree = new goog.ui.tree.TreeControl('tree');
assertNull('next node for unpopulated tree', tree.getNextShownNode());
var node1 = new goog.ui.tree.TreeNode('node1');
var node2 = new goog.ui.tree.TreeNode('node2');
var node3 = new goog.ui.tree.TreeNode('node3');
node1.add(node2);
node1.add(node3);
assertNull('next node for unexpanded node1', node1.getNextShownNode());
node1.expand();
assertEquals('next node for expanded node1', node2, node1.getNextShownNode());
assertEquals('next node for node2', node3, node2.getNextShownNode());
assertNull('next node for node3', node3.getNextShownNode());
tree.add(node1);
assertEquals('next node for populated tree', node1, tree.getNextShownNode());
assertNull('next node for node3 inside the tree', node3.getNextShownNode());
var component = new goog.ui.Component();
component.addChild(tree);
assertNull('next node for node3 inside the tree if the tree has parent',
node3.getNextShownNode());
}
function testInvisibleNodesInUnrenderedTree() {
var tree = new goog.ui.tree.TreeControl('tree');
var a = new goog.ui.tree.TreeNode('a');
var b = new goog.ui.tree.TreeNode('b');
tree.add(a);
a.add(b);
tree.render();
var textContent =
tree.getElement().textContent || tree.getElement().innerText;
assertContains('Node should be rendered.', 'tree', textContent);
assertContains('Node should be rendered.', 'a', textContent);
assertNotContains('Unexpanded node child should not be rendered.',
'b', textContent);
a.expand();
var textContent =
tree.getElement().textContent || tree.getElement().innerText;
assertContains('Node should be rendered.', 'tree', textContent);
assertContains('Node should be rendered.', 'a', textContent);
assertContains('Expanded node child should be rendered.', 'b', textContent);
tree.dispose();
}
function testInvisibleNodesInRenderedTree() {
var tree = new goog.ui.tree.TreeControl('tree');
tree.render();
var a = new goog.ui.tree.TreeNode('a');
var b = new goog.ui.tree.TreeNode('b');
tree.add(a);
a.add(b);
var textContent =
tree.getElement().textContent || tree.getElement().innerText;
assertContains('Node should be rendered.', 'tree', textContent);
assertContains('Node should be rendered.', 'a', textContent);
assertNotContains('Unexpanded node child should not be rendered.',
'b', textContent);
a.expand();
var textContent =
tree.getElement().textContent || tree.getElement().innerText;
assertContains('Node should be rendered.', 'tree', textContent);
assertContains('Node should be rendered.', 'a', textContent);
assertContains('Expanded node child should be rendered.', 'b', textContent);
tree.dispose();
}
</script>
</body>
</html>
|
www/ckeditor/_source/skins/kama/editor.css | tmatt95/cinyWeb | /*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
@import url("reset.css");
@import url("mainui.css");
@import url("panel.css");
@import url("toolbar.css");
@import url("menu.css");
@import url("richcombo.css");
@import url("elementspath.css");
@import url("icons.css");
@import url("presets.css");
/* Restore the container visibility */
html .cke_skin_kama
{
visibility: inherit;
}
html.cke_skin_kama_container
{
visibility: visible;
}
|
www/development-bundle/demos/datepicker/multiple-calendars.html | innervisiongroup/FoodlidaysWebApp | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Datepicker - Display multiple months</title>
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
<script src="../../jquery-1.8.3.js"></script>
<script src="../../ui/jquery.ui.core.js"></script>
<script src="../../ui/jquery.ui.widget.js"></script>
<script src="../../ui/jquery.ui.datepicker.js"></script>
<link rel="stylesheet" href="../demos.css">
<script>
$(function() {
$( "#datepicker" ).datepicker({
numberOfMonths: 3,
showButtonPanel: true
});
});
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker"></p>
<div class="demo-description">
<p>Set the <code>numberOfMonths</code> option to an integer of 2 or more to show multiple months in a single datepicker.</p>
</div>
</body>
</html>
|
external/chromium_org/chrome/browser/resources/extensions/chromeos/kiosk_apps.html | qtekfun/htcDesire820Kernel | <div id="kiosk-apps-page" class="page">
<div class="close-button"></div>
<h1 i18n-content="kioskOverlayTitle"></h1>
<div class="content-area">
<div class="option">
<list id="kiosk-app-list"></list>
<div id="kiosk-apps-error-banner">
<span class="kiosk-app-name"></span>
<span class="kiosk-app-status" i18n-content="invalidApp"></span>
</div>
<label for="kiosk-app-id-edit">
<span i18n-content="addKioskApp"></span>
</label>
<div id="kiosk-app-id-edit-row">
<input id="kiosk-app-id-edit" type="text"
i18n-values="placeholder:kioskAppIdEditHint">
<button id="kiosk-app-add" i18n-content="add"></button>
</div>
<div class="checkbox">
<span class="controlled-setting-with-label">
<input id="kiosk-disable-bailout-shortcut" type="checkbox">
<span>
<label for="kiosk-disable-bailout-shortcut"
i18n-content="kioskDiableBailoutShortcutLabel">
</label>
</span>
</span>
</div>
</div>
</div>
<div class="action-area">
<div class="button-strip">
<button id="kiosk-options-overlay-confirm" i18n-content="done">
</button>
</div>
</div>
<div id="kiosk-app-list-item-template" class="kiosk-app-list-item" hidden>
<div class="content">
<span class="kiosk-app-icon"></span>
<span class="kiosk-app-name"></span>
<span class="kiosk-app-status"></span>
</div>
<div class="space-filler"></div>
<button class="enable-auto-launch-button"
i18n-content="enableAutoLaunchButton">
</button>
<button class="disable-auto-launch-button"
i18n-content="disableAutoLaunchButton">
</button>
<button class="raw-button custom-appearance row-delete-button">
</button>
</div>
</div>
|
wp-content/themes/new_theme/js/libs/angular-1.4.1/docs/examples/example-example28/index-jquery.html | orYoffe/wordpress | <!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example28-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="oneTimeBidingExampleApp">
<div ng-controller="EventController">
<button ng-click="clickMe($event)">Click Me</button>
<p id="one-time-binding-example">One time binding: {{::name}}</p>
<p id="normal-binding-example">Normal binding: {{name}}</p>
</div>
</body>
</html> |
third_party/web_platform_tests/html/dom/elements/global-attributes/dir_auto-contained-textarea-R-ref.html | youtube/cobalt | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with textarea, then R</title>
<link rel="match" href="dir_auto-contained-textarea-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />
<link rel="help" href="https://html.spec.whatwg.org/multipage/#the-dir-attribute" />
<meta name="assert" content="
When dir='auto', the direction is set according to the first strong character
of descendant text while ignoring descendant textarea elements.
In this test, it is the Hebrew letter Alef, thus the direction must be
resolved as RTL." />
<style>
input, textarea {
font-size:1em;
}
body {
font-size:2em;
}
.test, .ref {
border: medium solid gray;
width: 400px;
margin: 20px;
}
.comments {
display: none;
}
</style>
</head>
<body>
<div class="instructions"><p>Test passes if the two boxes below look exactly the same.</p></div>
<div class="comments">
Key to entities used below:
א - The Hebrew letter Alef (strongly RTL).
ב - The Hebrew letter Bet (strongly RTL).
ג - The Hebrew letter Gimel (strongly RTL).
</div>
<div class="test">
<div dir="ltr">
<div dir="rtl"><textarea>DEF</textarea>אבגABC.</div>
</div>
<div dir="rtl">
<div dir="rtl"><textarea>DEF</textarea>אבגABC.</div>
</div>
</div>
<div class="ref">
<div dir="ltr">
<div dir="rtl"><textarea>DEF</textarea>אבגABC.</div>
</div>
<div dir="rtl">
<div dir="rtl"><textarea>DEF</textarea>אבגABC.</div>
</div>
</div>
</body>
</html>
|
ajax/libs/authy-forms.css/2.2/flags.authy.css | rlugojr/cdnjs | [class^="flag-"],
[class*="flag-"] {
background: url('images/flags.png') no-repeat;
}
.aflag {
width: 16px;
height: 11px;
display: inline-block;
}
.flag-af93 {background-position: -48px 0}
.flag-al213 {background-position: -160px -33px}
.flag-al355 {background-position: -96px 0}
.flag-an1264 {background-position: -80px 0}
.flag-an1268 {background-position: -64px 0}
.flag-an244 {background-position: -144px 0}
.flag-an376 {background-position: -16px 0}
.flag-ar297 {background-position: -224px 0}
.flag-ar374 {background-position: -112px 0}
.flag-ar54 {background-position: -160px 0}
.flag-au43 {background-position: -192px 0}
.flag-au61 {background-position: -208px 0}
.flag-az994 {background-position: -240px 0}
.flag-ba1242 {background-position: -208px -11px}
.flag-ba1246 {background-position: -16px -11px}
.flag-ba880 {background-position: -32px -11px}
.flag-ba973 {background-position: -96px -11px}
.flag-be1441 {background-position: -144px -11px}
.flag-be229 {background-position: -128px -11px}
.flag-be32 {background-position: -48px -11px}
.flag-be375 {background-position: -16px -22px}
.flag-be501 {background-position: -32px -22px}
.flag-bh975 {background-position: -224px -11px}
.flag-bo267 {background-position: 0 -22px}
.flag-bo387 {background-position: 0 -11px}
.flag-bo591 {background-position: -176px -11px}
.flag-br55 {background-position: -192px -11px}
.flag-br673 {background-position: -160px -11px}
.flag-bu226 {background-position: -64px -11px}
.flag-bu257 {background-position: -112px -11px}
.flag-bu359 {background-position: -80px -11px}
.flag-bv {background-position: -240px -11px}
.flag-ca1 {background-position: -48px -22px}
.flag-ca1345 {background-position: -192px -77px}
.flag-ca237 {background-position: -192px -22px}
.flag-ca238 {background-position: -16px -33px}
.flag-ca855 {background-position: -64px -77px}
.flag-catalonia {background-position: -64px -22px}
.flag-ce236 {background-position: -96px -22px}
.flag-ch235 {background-position: -112px -143px}
.flag-ch56 {background-position: -176px -22px}
.flag-ch86 {background-position: -208px -22px}
.flag-co2420 {background-position: -80px -22px}
.flag-co243 {background-position: -112px -22px}
.flag-co506 {background-position: -240px -22px}
.flag-co57 {background-position: -224px -22px}
.flag-co682 {background-position: -160px -22px}
.flag-cr385 {background-position: 0 -66px}
.flag-cu53 {background-position: 0 -33px}
.flag-cw {background-position: -32px -33px}
.flag-cy357 {background-position: -48px -33px}
.flag-cz420 {background-position: -64px -33px}
.flag-de45 {background-position: -112px -33px}
.flag-dj253 {background-position: -96px -33px}
.flag-do1767 {background-position: -128px -33px}
.flag-do1809 {background-position: -144px -33px}
.flag-do1829 {background-position: -144px -33px}
.flag-do1849 {background-position: -144px -33px}
.flag-ec593 {background-position: -176px -33px}
.flag-eg20 {background-position: -208px -33px}
.flag-eh {background-position: -224px -33px}
.flag-el503 {background-position: -32px -143px}
.flag-england {background-position: -240px -33px}
.flag-er {background-position: 0 -44px}
.flag-es372 {background-position: -192px -33px}
.flag-et251 {background-position: -32px -44px}
.flag-eu {background-position: -48px -44px}
.flag-fa298 {background-position: -128px -44px}
.flag-fa500 {background-position: -96px -44px}
.flag-fi358 {background-position: -64px -44px}
.flag-fi679 {background-position: -80px -44px}
.flag-fm {background-position: -112px -44px}
.flag-fr33 {background-position: -144px -44px}
.flag-fr594 {background-position: -224px -44px}
.flag-fr689 {background-position: -224px -110px}
.flag-ga220 {background-position: -48px -55px}
.flag-ga241 {background-position: -160px -44px}
.flag-ge49 {background-position: -80px -33px}
.flag-ge995 {background-position: -208px -44px}
.flag-gh233 {background-position: 0 -55px}
.flag-gi350 {background-position: -16px -55px}
.flag-gq {background-position: -96px -55px}
.flag-gr1473 {background-position: -192px -44px}
.flag-gr299 {background-position: -32px -55px}
.flag-gr30 {background-position: -112px -55px}
.flag-gs {background-position: -128px -55px}
.flag-gu224 {background-position: -64px -55px}
.flag-gu245 {background-position: -176px -55px}
.flag-gu44 {background-position: -240px -44px}
.flag-gu502 {background-position: -144px -55px}
.flag-gu590 {background-position: -80px -55px}
.flag-gu592 {background-position: -192px -55px}
.flag-gu671 {background-position: -160px -55px}
.flag-ha509 {background-position: -16px -66px}
.flag-hm {background-position: -224px -55px}
.flag-ho504 {background-position: -240px -55px}
.flag-ho852 {background-position: -208px -55px}
.flag-hu36 {background-position: -32px -66px}
.flag-ic {background-position: -48px -66px}
.flag-ic354 {background-position: -192px -66px}
.flag-in62 {background-position: -64px -66px}
.flag-in91 {background-position: -128px -66px}
.flag-io {background-position: -144px -66px}
.flag-ir353 {background-position: -80px -66px}
.flag-ir964 {background-position: -160px -66px}
.flag-ir98 {background-position: -176px -66px}
.flag-is44 {background-position: -112px -66px}
.flag-is972 {background-position: -96px -66px}
.flag-it39 {background-position: -208px -66px}
.flag-iv225 {background-position: -144px -22px}
.flag-ja1876 {background-position: -240px -66px}
.flag-ja81 {background-position: -16px -77px}
.flag-je44 {background-position: -224px -66px}
.flag-jo962 {background-position: 0 -77px}
.flag-ka7 {background-position: -208px -77px}
.flag-ke254 {background-position: -32px -77px}
.flag-ki {background-position: -80px -77px}
.flag-km {background-position: -96px -77px}
.flag-ko82 {background-position: -144px -77px}
.flag-ko850 {background-position: -128px -77px}
.flag-ku965 {background-position: -176px -77px}
.flag-kurdistan {background-position: -160px -77px}
.flag-ky996 {background-position: -48px -77px}
.flag-la371 {background-position: -112px -88px}
.flag-la856 {background-position: -224px -77px}
.flag-le266 {background-position: -64px -88px}
.flag-le961 {background-position: -240px -77px}
.flag-li218 {background-position: -128px -88px}
.flag-li231 {background-position: -48px -88px}
.flag-li370 {background-position: -80px -88px}
.flag-li423 {background-position: -16px -88px}
.flag-lu352 {background-position: -96px -88px}
.flag-ma222 {background-position: -96px -99px}
.flag-ma223 {background-position: 0 -99px}
.flag-ma230 {background-position: -144px -99px}
.flag-ma261 {background-position: -208px -88px}
.flag-ma265 {background-position: -176px -99px}
.flag-ma269 {background-position: -112px -165px}
.flag-ma356 {background-position: -128px -99px}
.flag-ma389 {background-position: -240px -88px}
.flag-ma596 {background-position: -80px -99px}
.flag-ma60 {background-position: -208px -99px}
.flag-ma853 {background-position: -48px -99px}
.flag-ma960 {background-position: -160px -99px}
.flag-me52 {background-position: -192px -99px}
.flag-mh {background-position: -224px -88px}
.flag-mo1664 {background-position: -112px -99px}
.flag-mo212 {background-position: -144px -88px}
.flag-mo258 {background-position: -224px -99px}
.flag-mo373 {background-position: -176px -88px}
.flag-mo377 {background-position: -160px -88px}
.flag-mo382 {background-position: -192px -88px}
.flag-mo976 {background-position: -32px -99px}
.flag-mp {background-position: -64px -99px}
.flag-my95 {background-position: -16px -99px}
.flag-na264 {background-position: -240px -99px}
.flag-na674 {background-position: -128px -110px}
.flag-ne31 {background-position: -80px -110px}
.flag-ne599 {background-position: -128px 0}
.flag-ne64 {background-position: -160px -110px}
.flag-ne687 {background-position: 0 -110px}
.flag-ne977 {background-position: -112px -110px}
.flag-nf {background-position: -32px -110px}
.flag-ni227 {background-position: -16px -110px}
.flag-ni234 {background-position: -48px -110px}
.flag-ni505 {background-position: -64px -110px}
.flag-no47 {background-position: -96px -110px}
.flag-nu {background-position: -144px -110px}
.flag-om968 {background-position: -176px -110px}
.flag-pa507 {background-position: -192px -110px}
.flag-pa595 {background-position: -144px -121px}
.flag-pa675 {background-position: -240px -110px}
.flag-pa92 {background-position: -16px -121px}
.flag-pa970 {background-position: -96px -121px}
.flag-pe51 {background-position: -208px -110px}
.flag-ph63 {background-position: 0 -121px}
.flag-pm {background-position: -48px -121px}
.flag-pn {background-position: -64px -121px}
.flag-po351 {background-position: -112px -121px}
.flag-po48 {background-position: -32px -121px}
.flag-pu1787 {background-position: -80px -121px}
.flag-pw {background-position: -128px -121px}
.flag-qa974 {background-position: -160px -121px}
.flag-re262 {background-position: -176px -121px}
.flag-ro40 {background-position: -192px -121px}
.flag-ru7 {background-position: -224px -121px}
.flag-rw250 {background-position: -240px -121px}
.flag-sa1758 {background-position: 0 -88px}
.flag-sa1869 {background-position: -112px -77px}
.flag-sa239 {background-position: -16px -143px}
.flag-sa378 {background-position: -176px -132px}
.flag-sa685 {background-position: -176px 0}
.flag-sa685 {background-position: -80px -165px}
.flag-sa966 {background-position: 0 -132px}
.flag-scotland {background-position: -48px -132px}
.flag-se221 {background-position: -192px -132px}
.flag-se248 {background-position: -32px -132px}
.flag-se381 {background-position: -208px -121px}
.flag-sh {background-position: -112px -132px}
.flag-si232 {background-position: -160px -132px}
.flag-si65 {background-position: -96px -132px}
.flag-sl386 {background-position: -128px -132px}
.flag-sl421 {background-position: -144px -132px}
.flag-so252 {background-position: -208px -132px}
.flag-so27 {background-position: -128px -165px}
.flag-so677 {background-position: -16px -132px}
.flag-somaliland {background-position: -224px -132px}
.flag-sp34 {background-position: -16px -44px}
.flag-sr94 {background-position: -32px -88px}
.flag-ss {background-position: 0 -143px}
.flag-st1784 {background-position: -208px -154px}
.flag-su249 {background-position: -64px -132px}
.flag-su597 {background-position: -240px -132px}
.flag-sw268 {background-position: -80px -143px}
.flag-sw41 {background-position: -128px -22px}
.flag-sw46 {background-position: -80px -132px}
.flag-sx {background-position: -48px -143px}
.flag-sy963 {background-position: -64px -143px}
.flag-ta255 {background-position: -80px -154px}
.flag-ta886 {background-position: -64px -154px}
.flag-ta992 {background-position: -176px -143px}
.flag-tf {background-position: -128px -143px}
.flag-th66 {background-position: -160px -143px}
.flag-ti670 {background-position: -208px -143px}
.flag-tk {background-position: -192px -143px}
.flag-to228 {background-position: -144px -143px}
.flag-to676 {background-position: 0 -154px}
.flag-tr1868 {background-position: -32px -154px}
.flag-tu1649 {background-position: -96px -143px}
.flag-tu216 {background-position: -240px -143px}
.flag-tu90 {background-position: -16px -154px}
.flag-tu993 {background-position: -224px -143px}
.flag-tv {background-position: -48px -154px}
.flag-ug256 {background-position: -112px -154px}
.flag-uk380 {background-position: -96px -154px}
.flag-um {background-position: -128px -154px}
.flag-un1 {background-position: -144px -154px}
.flag-un44 {background-position: -176px -44px}
.flag-un971 {background-position: -32px 0}
.flag-ur598 {background-position: -160px -154px}
.flag-uz998 {background-position: -176px -154px}
.flag-va {background-position: -192px -154px}
.flag-va678 {background-position: -32px -165px}
.flag-ve58 {background-position: -224px -154px}
.flag-vi {background-position: 0 -165px}
.flag-vi1284 {background-position: -240px -154px}
.flag-vi84 {background-position: -16px -165px}
.flag-wales {background-position: -48px -165px}
.flag-wf {background-position: -64px -165px}
.flag-ye967 {background-position: -96px -165px}
.flag-za260 {background-position: -160px -165px}
.flag-zanzibar {background-position: -144px -165px}
.flag-zi263 {background-position: -176px -165px} |
zeppelin-web/bower_components/highlightjs/styles/xcode.css | nikste/visualizationDemo | /*
XCode style (c) Angel Garcia <angelgarcia.mail@gmail.com>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
background: #fff;
color: black;
-webkit-text-size-adjust: none;
}
.hljs-comment,
.hljs-javadoc {
color: #006a00;
}
.hljs-keyword,
.hljs-literal,
.nginx .hljs-title {
color: #aa0d91;
}
.method,
.hljs-list .hljs-title,
.hljs-tag .hljs-title,
.setting .hljs-value,
.hljs-winutils,
.tex .hljs-command,
.http .hljs-title,
.hljs-request,
.hljs-status {
color: #008;
}
.hljs-envvar,
.tex .hljs-special {
color: #660;
}
.hljs-string {
color: #c41a16;
}
.hljs-tag .hljs-value,
.hljs-cdata,
.hljs-filter .hljs-argument,
.hljs-attr_selector,
.apache .hljs-cbracket,
.hljs-date,
.hljs-regexp {
color: #080;
}
.hljs-sub .hljs-identifier,
.hljs-pi,
.hljs-tag,
.hljs-tag .hljs-keyword,
.hljs-decorator,
.ini .hljs-title,
.hljs-shebang,
.hljs-prompt,
.hljs-hexcolor,
.hljs-rules .hljs-value,
.hljs-symbol,
.hljs-symbol .hljs-string,
.hljs-number,
.css .hljs-function,
.hljs-function .hljs-title,
.coffeescript .hljs-attribute {
color: #1c00cf;
}
.hljs-class .hljs-title,
.smalltalk .hljs-class,
.hljs-javadoctag,
.hljs-yardoctag,
.hljs-phpdoc,
.hljs-dartdoc,
.hljs-type,
.hljs-typename,
.hljs-tag .hljs-attribute,
.hljs-doctype,
.hljs-class .hljs-id,
.hljs-built_in,
.setting,
.hljs-params,
.clojure .hljs-attribute {
color: #5c2699;
}
.hljs-variable {
color: #3f6e74;
}
.css .hljs-tag,
.hljs-rules .hljs-property,
.hljs-pseudo,
.hljs-subst {
color: #000;
}
.css .hljs-class,
.css .hljs-id {
color: #9b703f;
}
.hljs-value .hljs-important {
color: #ff7700;
font-weight: bold;
}
.hljs-rules .hljs-keyword {
color: #c5af75;
}
.hljs-annotation,
.apache .hljs-sqbracket,
.nginx .hljs-built_in {
color: #9b859d;
}
.hljs-preprocessor,
.hljs-preprocessor *,
.hljs-pragma {
color: #643820;
}
.tex .hljs-formula {
background-color: #eee;
font-style: italic;
}
.diff .hljs-header,
.hljs-chunk {
color: #808080;
font-weight: bold;
}
.diff .hljs-change {
background-color: #bccff9;
}
.hljs-addition {
background-color: #baeeba;
}
.hljs-deletion {
background-color: #ffc8bd;
}
.hljs-comment .hljs-yardoctag {
font-weight: bold;
}
.method .hljs-id {
color: #000;
}
|
src/plugins/dependencies/dependencies.css | hinablue/angular-gantt | .gantt .gantt-body-dependencies {
position: absolute;
height: 100%;
width: 100%;
}
.gantt .gantt-endpoint.jsplumb-endpoint-anchor {
z-index: 20; /* z-index must be higher than tasks z-index */
overflow: hidden;
}
.gantt .gantt-endpoint.fallback-endpoint.jsplumb-endpoint-anchor {
z-index: auto;
overflow: hidden;
}
.gantt .gantt-endpoint-overlay.fallback-endpoint {
height: 4px;
width: 40px;
top: -2px;
}
.gantt .gantt-endpoint-overlay.start-endpoint.fallback-endpoint {
left: -45px;
background-image:-webkit-linear-gradient(left, rgba(255,255,255,0), #456);
background-image:linear-gradient(to right, rgba(255,255,255,0), #456);
}
.gantt .gantt-endpoint-overlay.end-endpoint.fallback-endpoint {
left: -5px;
background-image:-webkit-linear-gradient(right, rgba(255,255,255,0), #456);
background-image:linear-gradient(to left, rgba(255,255,255,0), #456);
}
.gantt .jsplumb-overlay {
z-index: 20;
}
.gantt .gantt-endpoint-overlay {
position: absolute;
}
.gantt .gantt-endpoint-overlay.arrow-right {
width: 0;
height: 0;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 5px solid black;
}
.gantt .gantt-endpoint-overlay.arrow-right.start-endpoint {
top: -5px;
left: -11px;
border-left-color: rgb(64, 64, 160); /* blue */
}
.gantt .gantt-endpoint-overlay.arrow-right.end-endpoint {
top: -5px;
left: 6px;
border-left-color: rgb(64, 160, 64); /* green */
}
.gantt .gantt-endpoint.source-endpoint svg * {
fill: rgb(64, 160, 64); /* green */
}
.gantt .gantt-endpoint.target-endpoint svg * {
fill: rgb(64, 64, 160); /* blue */
}
|
wp-includes/js/jcrop/jquery.Jcrop.min.css | seeff/Karmacleanse | /* jquery.Jcrop.min.css v0.9.10 (build:20120429) */
.jcrop-holder{direction:ltr;text-align:left;}
.jcrop-vline,.jcrop-hline{background:#FFF url(Jcrop.gif) top left repeat;font-size:0;position:absolute;}
.jcrop-vline{height:100%;width:1px!important;}
.jcrop-hline{height:1px!important;width:100%;}
.jcrop-vline.right{right:0;}
.jcrop-hline.bottom{bottom:0;}
.jcrop-handle{background-color:#333;border:1px #eee solid;font-size:1px;}
.jcrop-tracker{-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;height:100%;width:100%;}
.jcrop-handle.ord-n{left:50%;margin-left:-4px;margin-top:-4px;top:0;}
.jcrop-handle.ord-s{bottom:0;left:50%;margin-bottom:-4px;margin-left:-4px;}
.jcrop-handle.ord-e{margin-right:-4px;margin-top:-4px;right:0;top:50%;}
.jcrop-handle.ord-w{left:0;margin-left:-4px;margin-top:-4px;top:50%;}
.jcrop-handle.ord-nw{left:0;margin-left:-4px;margin-top:-4px;top:0;}
.jcrop-handle.ord-ne{margin-right:-4px;margin-top:-4px;right:0;top:0;}
.jcrop-handle.ord-se{bottom:0;margin-bottom:-4px;margin-right:-4px;right:0;}
.jcrop-handle.ord-sw{bottom:0;left:0;margin-bottom:-4px;margin-left:-4px;}
.jcrop-dragbar.ord-n,.jcrop-dragbar.ord-s{height:7px;width:100%;}
.jcrop-dragbar.ord-e,.jcrop-dragbar.ord-w{height:100%;width:7px;}
.jcrop-dragbar.ord-n{margin-top:-4px;}
.jcrop-dragbar.ord-s{bottom:0;margin-bottom:-4px;}
.jcrop-dragbar.ord-e{margin-right:-4px;right:0;}
.jcrop-dragbar.ord-w{margin-left:-4px;}
.jcrop-light .jcrop-vline,.jcrop-light .jcrop-hline{background:#FFF;filter:Alpha(opacity=70)!important;opacity:.70!important;}
.jcrop-light .jcrop-handle{-moz-border-radius:3px;-webkit-border-radius:3px;background-color:#000;border-color:#FFF;border-radius:3px;}
.jcrop-dark .jcrop-vline,.jcrop-dark .jcrop-hline{background:#000;filter:Alpha(opacity=70)!important;opacity:.7!important;}
.jcrop-dark .jcrop-handle{-moz-border-radius:3px;-webkit-border-radius:3px;background-color:#FFF;border-color:#000;border-radius:3px;}
.jcrop-holder img,img.jcrop-preview{max-width:none;}
|
web-platform-tests/tests/workers/semantics/xhr/003.html | cr/fxos-certsuite | <!--
onconnect = function(e) {
var xhr = new XMLHttpRequest();
var log = '';
var port = e.ports[0];
var postMessage = port.postMessage;
xhr.onreadystatechange = function(e) {
if (this.readyState == 4) {
if (this.responseXML != null)
log += 'responseXML was not null. ';
if (this.responseText && this.responseText != '<x>foo</x>')
log += 'responseText was ' + this.responseText + ', expected <x>foo</x>. ';
postMessage.call(port, log);
}
}
xhr.open('GET', '001-1.xml', true);
xhr.send();
}
/*
-->
<!doctype html>
<title>async XMLHttpRequest in shared worker</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
var t = async_test();
function runtest() {
var worker = new SharedWorker('#', '');
worker.port.onmessage = this.step_func(function(e) {
assert_equals(e.data, '');
this.done();
});
}
</script>
<iframe src=001-1.xml onload="t.step(runtest);"></iframe>
<!--
*/
//-->
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.