path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
_layouts/page.html | klapec/bourbonify-jekyll | ---
layout: default
---
<div class="post">
<header class="post-header">
<h3 class="post-title">{{ page.title }}</h3>
</header>
<article class="post-content">
{{ content }}
</article>
</div>
|
upgrade/files/11.0.4-12.0.0.B1/files/studio/template/prm_edit_option.html | unaio/una | <div class="bx-prm-edit-option bx-def-color-bg-block">
<div class="bx-prm-edit-option-cnt">
__form__
<script language="javascript">
$(document).ready(function () {
$("#__form_id__").ajaxForm({
dataType: "json",
beforeSubmit: function (formData, jqForm, options) {
bx_loading($("#__form_id__"), true);
},
success: function (data) {
$(".bx-popup-applied:visible").dolPopupHide();
glGrids.__object__.processJson(data, '__action__');
}
});
});
</script>
</div>
</div> |
deps/boost_1_77_0/libs/fusion/doc/html/fusion/organization.html | davehorton/drachtio-server | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Organization</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../index.html" title="Chapter 1. Fusion 2.2">
<link rel="up" href="../index.html" title="Chapter 1. Fusion 2.2">
<link rel="prev" href="quick_start.html" title="Quick Start">
<link rel="next" href="support.html" title="Support">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
<td align="center"><a href="../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="quick_start.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="support.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="fusion.organization"></a><a class="link" href="organization.html" title="Organization">Organization</a>
</h2></div></div></div>
<p>
The library is organized into layers of modules, with each module addressing
a particular area of responsibility. A module may not depend on modules in
higher layers.
</p>
<p>
The library is organized in three layers:
</p>
<h4>
<a name="fusion.organization.h0"></a>
<span class="phrase"><a name="fusion.organization.layers"></a></span><a class="link" href="organization.html#fusion.organization.layers">Layers</a>
</h4>
<div class="blockquote"><blockquote class="blockquote"><p>
<span class="inlinemediaobject"><img src="../images/fusion_org.png" alt="fusion_org"></span>
</p></blockquote></div>
<p>
The entire library is found in the <code class="computeroutput"><span class="string">"boost/fusion"</span></code>
directory. Modules are organized in directories. Each module has its own header
file placed in the same directory with the actual module-directory. For example,
there exists <code class="computeroutput"><span class="string">"boost/fusion/support.hpp"</span></code>
in the same directory as "boost/fusion/support". Everything, except
those found inside "detail" directories, is public.
</p>
<p>
There is also a <code class="computeroutput"><span class="string">"boost/fusion/include/"</span></code>
directory that contains all the headers to all the components and modules.
If you are unsure where to find a specific component or module, or don't want
to fuss with hierarchy and nesting, use this.
</p>
<p>
The library is header-only. There is no need to build object files to link
against.
</p>
<h4>
<a name="fusion.organization.h1"></a>
<span class="phrase"><a name="fusion.organization.directory"></a></span><a class="link" href="organization.html#fusion.organization.directory">Directory</a>
</h4>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
tuple
</li>
<li class="listitem">
algorithm
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: circle; ">
<li class="listitem">
auxiliary
</li>
<li class="listitem">
iteration
</li>
<li class="listitem">
query
</li>
<li class="listitem">
transformation
</li>
</ul></div>
</li>
<li class="listitem">
adapted
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: circle; ">
<li class="listitem">
adt
</li>
<li class="listitem">
array
</li>
<li class="listitem">
boost::array
</li>
<li class="listitem">
boost::tuple
</li>
<li class="listitem">
mpl
</li>
<li class="listitem">
std_pair
</li>
<li class="listitem">
std_tuple
</li>
<li class="listitem">
struct
</li>
</ul></div>
</li>
<li class="listitem">
view
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: circle; ">
<li class="listitem">
filter_view
</li>
<li class="listitem">
flatten_view
</li>
<li class="listitem">
iterator_range
</li>
<li class="listitem">
joint_view
</li>
<li class="listitem">
nview
</li>
<li class="listitem">
repetitive_view
</li>
<li class="listitem">
reverse_view
</li>
<li class="listitem">
single_view
</li>
<li class="listitem">
transform_view
</li>
<li class="listitem">
zip_view
</li>
</ul></div>
</li>
<li class="listitem">
container
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: circle; ">
<li class="listitem">
deque
</li>
<li class="listitem">
list
</li>
<li class="listitem">
map
</li>
<li class="listitem">
set
</li>
<li class="listitem">
vector
</li>
<li class="listitem">
generation
</li>
</ul></div>
</li>
<li class="listitem">
mpl
</li>
<li class="listitem">
functional
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: circle; ">
<li class="listitem">
adapter
</li>
<li class="listitem">
generation
</li>
<li class="listitem">
invocation
</li>
</ul></div>
</li>
<li class="listitem">
sequence
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: circle; ">
<li class="listitem">
comparison
</li>
<li class="listitem">
intrinsic
</li>
<li class="listitem">
io
</li>
</ul></div>
</li>
<li class="listitem">
iterator
</li>
<li class="listitem">
support
</li>
</ul></div>
<h4>
<a name="fusion.organization.h2"></a>
<span class="phrase"><a name="fusion.organization.example"></a></span><a class="link" href="organization.html#fusion.organization.example">Example</a>
</h4>
<p>
If, for example, you want to use <code class="computeroutput"><span class="identifier">list</span></code>,
depending on the granularity that you desire, you may do so by including one
of
</p>
<pre class="programlisting"><span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">fusion</span><span class="special">/</span><span class="identifier">container</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span>
<span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">fusion</span><span class="special">/</span><span class="identifier">include</span><span class="special">/</span><span class="identifier">container</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span>
<span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">fusion</span><span class="special">/</span><span class="identifier">container</span><span class="special">/</span><span class="identifier">list</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span>
<span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">fusion</span><span class="special">/</span><span class="identifier">include</span><span class="special">/</span><span class="identifier">list</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span>
</pre>
<p>
The first includes all containers The second includes only <code class="computeroutput"><span class="identifier">list</span></code>
<a href="#ftn.fusion.organization.f0" class="footnote" name="fusion.organization.f0"><sup class="footnote">[4]</sup></a>.
</p>
<div class="footnotes">
<br><hr style="width:100; text-align:left;margin-left: 0">
<div id="ftn.fusion.organization.f0" class="footnote"><p><a href="#fusion.organization.f0" class="para"><sup class="para">[4] </sup></a>
Modules may contain smaller components. Header file information for each
component will be provided as part of the component's documentation.
</p></div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2001-2006, 2011, 2012 Joel de Guzman,
Dan Marsden, Tobias Schwinger<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="quick_start.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="support.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
node_modules/laravel-elixir/node_modules/npm/html/partial/doc/misc/npm-config.html | PCextreme/oauth2-server-manager-laravel | <h1><a href="../misc/npm-config.html">npm-config</a></h1> <p>More than you probably want to know about npm configuration</p>
<h2 id="description">DESCRIPTION</h2>
<p>npm gets its configuration values from 6 sources, in this priority:</p>
<h3 id="command-line-flags">Command Line Flags</h3>
<p>Putting <code>--foo bar</code> on the command line sets the <code>foo</code> configuration
parameter to <code>"bar"</code>. A <code>--</code> argument tells the cli parser to stop
reading flags. A <code>--flag</code> parameter that is at the <em>end</em> of the
command will be given the value of <code>true</code>.</p>
<h3 id="environment-variables">Environment Variables</h3>
<p>Any environment variables that start with <code>npm_config_</code> will be
interpreted as a configuration parameter. For example, putting
<code>npm_config_foo=bar</code> in your environment will set the <code>foo</code>
configuration parameter to <code>bar</code>. Any environment configurations that
are not given a value will be given the value of <code>true</code>. Config
values are case-insensitive, so <code>NPM_CONFIG_FOO=bar</code> will work the
same.</p>
<h3 id="npmrc-files">npmrc Files</h3>
<p>The four relevant files are:</p>
<ul>
<li>per-project config file (/path/to/my/project/.npmrc)</li>
<li>per-user config file (~/.npmrc)</li>
<li>global config file ($PREFIX/npmrc)</li>
<li>npm builtin config file (/path/to/npm/npmrc)</li>
</ul>
<p>See <a href="../files/npmrc.html">npmrc(5)</a> for more details.</p>
<h3 id="default-configs">Default Configs</h3>
<p>A set of configuration parameters that are internal to npm, and are
defaults if nothing else is specified.</p>
<h2 id="shorthands-and-other-cli-niceties">Shorthands and Other CLI Niceties</h2>
<p>The following shorthands are parsed on the command-line:</p>
<ul>
<li><code>-v</code>: <code>--version</code></li>
<li><code>-h</code>, <code>-?</code>, <code>--help</code>, <code>-H</code>: <code>--usage</code></li>
<li><code>-s</code>, <code>--silent</code>: <code>--loglevel silent</code></li>
<li><code>-q</code>, <code>--quiet</code>: <code>--loglevel warn</code></li>
<li><code>-d</code>: <code>--loglevel info</code></li>
<li><code>-dd</code>, <code>--verbose</code>: <code>--loglevel verbose</code></li>
<li><code>-ddd</code>: <code>--loglevel silly</code></li>
<li><code>-g</code>: <code>--global</code></li>
<li><code>-C</code>: <code>--prefix</code></li>
<li><code>-l</code>: <code>--long</code></li>
<li><code>-m</code>: <code>--message</code></li>
<li><code>-p</code>, <code>--porcelain</code>: <code>--parseable</code></li>
<li><code>-reg</code>: <code>--registry</code></li>
<li><code>-v</code>: <code>--version</code></li>
<li><code>-f</code>: <code>--force</code></li>
<li><code>-desc</code>: <code>--description</code></li>
<li><code>-S</code>: <code>--save</code></li>
<li><code>-D</code>: <code>--save-dev</code></li>
<li><code>-O</code>: <code>--save-optional</code></li>
<li><code>-B</code>: <code>--save-bundle</code></li>
<li><code>-E</code>: <code>--save-exact</code></li>
<li><code>-y</code>: <code>--yes</code></li>
<li><code>-n</code>: <code>--yes false</code></li>
<li><code>ll</code> and <code>la</code> commands: <code>ls --long</code></li>
</ul>
<p>If the specified configuration param resolves unambiguously to a known
configuration parameter, then it is expanded to that configuration
parameter. For example:</p>
<pre><code>npm ls --par
# same as:
npm ls --parseable
</code></pre><p>If multiple single-character shorthands are strung together, and the
resulting combination is unambiguously not some other configuration
param, then it is expanded to its various component pieces. For
example:</p>
<pre><code>npm ls -gpld
# same as:
npm ls --global --parseable --long --loglevel info
</code></pre><h2 id="per-package-config-settings">Per-Package Config Settings</h2>
<p>When running scripts (see <code><a href="../misc/npm-scripts.html">npm-scripts(7)</a></code>) the package.json "config"
keys are overwritten in the environment if there is a config param of
<code><name>[@<version>]:<key></code>. For example, if the package.json has
this:</p>
<pre><code>{ "name" : "foo"
, "config" : { "port" : "8080" }
, "scripts" : { "start" : "node server.js" } }
</code></pre><p>and the server.js is this:</p>
<pre><code>http.createServer(...).listen(process.env.npm_package_config_port)
</code></pre><p>then the user could change the behavior by doing:</p>
<pre><code>npm config set foo:port 80
</code></pre><p>See <a href="../files/package.json.html">package.json(5)</a> for more information.</p>
<h2 id="config-settings">Config Settings</h2>
<h3 id="always-auth">always-auth</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Force npm to always require authentication when accessing the registry,
even for <code>GET</code> requests.</p>
<h3 id="bin-links">bin-links</h3>
<ul>
<li>Default: <code>true</code></li>
<li>Type: Boolean</li>
</ul>
<p>Tells npm to create symlinks (or <code>.cmd</code> shims on Windows) for package
executables.</p>
<p>Set to false to have it not do this. This can be used to work around
the fact that some file systems don't support symlinks, even on
ostensibly Unix systems.</p>
<h3 id="browser">browser</h3>
<ul>
<li>Default: OS X: <code>"open"</code>, Windows: <code>"start"</code>, Others: <code>"xdg-open"</code></li>
<li>Type: String</li>
</ul>
<p>The browser that is called by the <code>npm docs</code> command to open websites.</p>
<h3 id="ca">ca</h3>
<ul>
<li>Default: The npm CA certificate</li>
<li>Type: String, Array or null</li>
</ul>
<p>The Certificate Authority signing certificate that is trusted for SSL
connections to the registry. Values should be in PEM format with newlines
replaced by the string "\n". For example:</p>
<pre><code>ca="-----BEGIN CERTIFICATE-----\nXXXX\nXXXX\n-----END CERTIFICATE-----"
</code></pre><p>Set to <code>null</code> to only allow "known" registrars, or to a specific CA cert
to trust only that specific signing authority.</p>
<p>Multiple CAs can be trusted by specifying an array of certificates:</p>
<pre><code>ca[]="..."
ca[]="..."
</code></pre><p>See also the <code>strict-ssl</code> config.</p>
<h3 id="cafile">cafile</h3>
<ul>
<li>Default: <code>null</code></li>
<li>Type: path</li>
</ul>
<p>A path to a file containing one or multiple Certificate Authority signing
certificates. Similar to the <code>ca</code> setting, but allows for multiple CA's, as
well as for the CA information to be stored in a file on disk.</p>
<h3 id="cache">cache</h3>
<ul>
<li>Default: Windows: <code>%AppData%\npm-cache</code>, Posix: <code>~/.npm</code></li>
<li>Type: path</li>
</ul>
<p>The location of npm's cache directory. See <code><a href="../cli/npm-cache.html">npm-cache(1)</a></code></p>
<h3 id="cache-lock-stale">cache-lock-stale</h3>
<ul>
<li>Default: 60000 (1 minute)</li>
<li>Type: Number</li>
</ul>
<p>The number of ms before cache folder lockfiles are considered stale.</p>
<h3 id="cache-lock-retries">cache-lock-retries</h3>
<ul>
<li>Default: 10</li>
<li>Type: Number</li>
</ul>
<p>Number of times to retry to acquire a lock on cache folder lockfiles.</p>
<h3 id="cache-lock-wait">cache-lock-wait</h3>
<ul>
<li>Default: 10000 (10 seconds)</li>
<li>Type: Number</li>
</ul>
<p>Number of ms to wait for cache lock files to expire.</p>
<h3 id="cache-max">cache-max</h3>
<ul>
<li>Default: Infinity</li>
<li>Type: Number</li>
</ul>
<p>The maximum time (in seconds) to keep items in the registry cache before
re-checking against the registry.</p>
<p>Note that no purging is done unless the <code>npm cache clean</code> command is
explicitly used, and that only GET requests use the cache.</p>
<h3 id="cache-min">cache-min</h3>
<ul>
<li>Default: 10</li>
<li>Type: Number</li>
</ul>
<p>The minimum time (in seconds) to keep items in the registry cache before
re-checking against the registry.</p>
<p>Note that no purging is done unless the <code>npm cache clean</code> command is
explicitly used, and that only GET requests use the cache.</p>
<h3 id="cert">cert</h3>
<ul>
<li>Default: <code>null</code></li>
<li>Type: String</li>
</ul>
<p>A client certificate to pass when accessing the registry.</p>
<h3 id="color">color</h3>
<ul>
<li>Default: true on Posix, false on Windows</li>
<li>Type: Boolean or <code>"always"</code></li>
</ul>
<p>If false, never shows colors. If <code>"always"</code> then always shows colors.
If true, then only prints color codes for tty file descriptors.</p>
<h3 id="depth">depth</h3>
<ul>
<li>Default: Infinity</li>
<li>Type: Number</li>
</ul>
<p>The depth to go when recursing directories for <code>npm ls</code> and
<code>npm cache ls</code>.</p>
<h3 id="description">description</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>Show the description in <code>npm search</code></p>
<h3 id="dev">dev</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Install <code>dev-dependencies</code> along with packages.</p>
<p>Note that <code>dev-dependencies</code> are also installed if the <code>npat</code> flag is
set.</p>
<h3 id="editor">editor</h3>
<ul>
<li>Default: <code>EDITOR</code> environment variable if set, or <code>"vi"</code> on Posix,
or <code>"notepad"</code> on Windows.</li>
<li>Type: path</li>
</ul>
<p>The command to run for <code>npm edit</code> or <code>npm config edit</code>.</p>
<h3 id="engine-strict">engine-strict</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>If set to true, then npm will stubbornly refuse to install (or even
consider installing) any package that claims to not be compatible with
the current Node.js version.</p>
<h3 id="force">force</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Makes various commands more forceful.</p>
<ul>
<li>lifecycle script failure does not block progress.</li>
<li>publishing clobbers previously published versions.</li>
<li>skips cache when requesting from the registry.</li>
<li>prevents checks against clobbering non-npm files.</li>
</ul>
<h3 id="fetch-retries">fetch-retries</h3>
<ul>
<li>Default: 2</li>
<li>Type: Number</li>
</ul>
<p>The "retries" config for the <code>retry</code> module to use when fetching
packages from the registry.</p>
<h3 id="fetch-retry-factor">fetch-retry-factor</h3>
<ul>
<li>Default: 10</li>
<li>Type: Number</li>
</ul>
<p>The "factor" config for the <code>retry</code> module to use when fetching
packages.</p>
<h3 id="fetch-retry-mintimeout">fetch-retry-mintimeout</h3>
<ul>
<li>Default: 10000 (10 seconds)</li>
<li>Type: Number</li>
</ul>
<p>The "minTimeout" config for the <code>retry</code> module to use when fetching
packages.</p>
<h3 id="fetch-retry-maxtimeout">fetch-retry-maxtimeout</h3>
<ul>
<li>Default: 60000 (1 minute)</li>
<li>Type: Number</li>
</ul>
<p>The "maxTimeout" config for the <code>retry</code> module to use when fetching
packages.</p>
<h3 id="git">git</h3>
<ul>
<li>Default: <code>"git"</code></li>
<li>Type: String</li>
</ul>
<p>The command to use for git commands. If git is installed on the
computer, but is not in the <code>PATH</code>, then set this to the full path to
the git binary.</p>
<h3 id="git-tag-version">git-tag-version</h3>
<ul>
<li>Default: <code>true</code></li>
<li>Type: Boolean</li>
</ul>
<p>Tag the commit when using the <code>npm version</code> command.</p>
<h3 id="global">global</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Operates in "global" mode, so that packages are installed into the
<code>prefix</code> folder instead of the current working directory. See
<code><a href="../files/npm-folders.html">npm-folders(5)</a></code> for more on the differences in behavior.</p>
<ul>
<li>packages are installed into the <code>{prefix}/lib/node_modules</code> folder, instead of the
current working directory.</li>
<li>bin files are linked to <code>{prefix}/bin</code></li>
<li>man pages are linked to <code>{prefix}/share/man</code></li>
</ul>
<h3 id="globalconfig">globalconfig</h3>
<ul>
<li>Default: {prefix}/etc/npmrc</li>
<li>Type: path</li>
</ul>
<p>The config file to read for global config options.</p>
<h3 id="group">group</h3>
<ul>
<li>Default: GID of the current process</li>
<li>Type: String or Number</li>
</ul>
<p>The group to use when running package scripts in global mode as the root
user.</p>
<h3 id="heading">heading</h3>
<ul>
<li>Default: <code>"npm"</code></li>
<li>Type: String</li>
</ul>
<p>The string that starts all the debugging log output.</p>
<h3 id="https-proxy">https-proxy</h3>
<ul>
<li>Default: null</li>
<li>Type: url</li>
</ul>
<p>A proxy to use for outgoing https requests. If the <code>HTTPS_PROXY</code> or
<code>https_proxy</code> or <code>HTTP_PROXY</code> or <code>http_proxy</code> environment variables are set,
proxy settings will be honored by the underlying <code>request</code> library.</p>
<h3 id="ignore-scripts">ignore-scripts</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>If true, npm does not run scripts specified in package.json files.</p>
<h3 id="init-module">init-module</h3>
<ul>
<li>Default: ~/.npm-init.js</li>
<li>Type: path</li>
</ul>
<p>A module that will be loaded by the <code>npm init</code> command. See the
documentation for the
<a href="https://github.com/isaacs/init-package-json">init-package-json</a> module
for more information, or <a href="../cli/npm-init.html">npm-init(1)</a>.</p>
<h3 id="init-author-name">init-author-name</h3>
<ul>
<li>Default: ""</li>
<li>Type: String</li>
</ul>
<p>The value <code>npm init</code> should use by default for the package author's name.</p>
<h3 id="init-author-email">init-author-email</h3>
<ul>
<li>Default: ""</li>
<li>Type: String</li>
</ul>
<p>The value <code>npm init</code> should use by default for the package author's email.</p>
<h3 id="init-author-url">init-author-url</h3>
<ul>
<li>Default: ""</li>
<li>Type: String</li>
</ul>
<p>The value <code>npm init</code> should use by default for the package author's homepage.</p>
<h3 id="init-license">init-license</h3>
<ul>
<li>Default: "ISC"</li>
<li>Type: String</li>
</ul>
<p>The value <code>npm init</code> should use by default for the package license.</p>
<h3 id="init-version">init-version</h3>
<ul>
<li>Default: "0.0.0"</li>
<li>Type: semver</li>
</ul>
<p>The value that <code>npm init</code> should use by default for the package
version number, if not already set in package.json.</p>
<h3 id="json">json</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Whether or not to output JSON data, rather than the normal output.</p>
<p>This feature is currently experimental, and the output data structures
for many commands is either not implemented in JSON yet, or subject to
change. Only the output from <code>npm ls --json</code> is currently valid.</p>
<h3 id="key">key</h3>
<ul>
<li>Default: <code>null</code></li>
<li>Type: String</li>
</ul>
<p>A client key to pass when accessing the registry.</p>
<h3 id="link">link</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>If true, then local installs will link if there is a suitable globally
installed package.</p>
<p>Note that this means that local installs can cause things to be
installed into the global space at the same time. The link is only done
if one of the two conditions are met:</p>
<ul>
<li>The package is not already installed globally, or</li>
<li>the globally installed version is identical to the version that is
being installed locally.</li>
</ul>
<h3 id="local-address">local-address</h3>
<ul>
<li>Default: undefined</li>
<li>Type: IP Address</li>
</ul>
<p>The IP address of the local interface to use when making connections
to the npm registry. Must be IPv4 in versions of Node prior to 0.12.</p>
<h3 id="loglevel">loglevel</h3>
<ul>
<li>Default: "warn"</li>
<li>Type: String</li>
<li>Values: "silent", "error", "warn", "http", "info", "verbose", "silly"</li>
</ul>
<p>What level of logs to report. On failure, <em>all</em> logs are written to
<code>npm-debug.log</code> in the current working directory.</p>
<p>Any logs of a higher level than the setting are shown.
The default is "warn", which shows warn and error output.</p>
<h3 id="logstream">logstream</h3>
<ul>
<li>Default: process.stderr</li>
<li>Type: Stream</li>
</ul>
<p>This is the stream that is passed to the
<a href="https://github.com/npm/npmlog">npmlog</a> module at run time.</p>
<p>It cannot be set from the command line, but if you are using npm
programmatically, you may wish to send logs to somewhere other than
stderr.</p>
<p>If the <code>color</code> config is set to true, then this stream will receive
colored output if it is a TTY.</p>
<h3 id="long">long</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Show extended information in <code>npm ls</code> and <code>npm search</code>.</p>
<h3 id="message">message</h3>
<ul>
<li>Default: "%s"</li>
<li>Type: String</li>
</ul>
<p>Commit message which is used by <code>npm version</code> when creating version commit.</p>
<p>Any "%s" in the message will be replaced with the version number.</p>
<h3 id="node-version">node-version</h3>
<ul>
<li>Default: process.version</li>
<li>Type: semver or false</li>
</ul>
<p>The node version to use when checking a package's <code>engines</code> map.</p>
<h3 id="npat">npat</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Run tests on installation.</p>
<h3 id="onload-script">onload-script</h3>
<ul>
<li>Default: false</li>
<li>Type: path</li>
</ul>
<p>A node module to <code>require()</code> when npm loads. Useful for programmatic
usage.</p>
<h3 id="optional">optional</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>Attempt to install packages in the <code>optionalDependencies</code> object. Note
that if these packages fail to install, the overall installation
process is not aborted.</p>
<h3 id="parseable">parseable</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Output parseable results from commands that write to
standard output.</p>
<h3 id="prefix">prefix</h3>
<ul>
<li>Default: see <a href="../files/npm-folders.html">npm-folders(5)</a></li>
<li>Type: path</li>
</ul>
<p>The location to install global items. If set on the command line, then
it forces non-global commands to run in the specified folder.</p>
<h3 id="production">production</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Set to true to run in "production" mode.</p>
<ol>
<li>devDependencies are not installed at the topmost level when running
local <code>npm install</code> without any arguments.</li>
<li>Set the NODE_ENV="production" for lifecycle scripts.</li>
</ol>
<h3 id="proprietary-attribs">proprietary-attribs</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>Whether or not to include proprietary extended attributes in the
tarballs created by npm.</p>
<p>Unless you are expecting to unpack package tarballs with something other
than npm -- particularly a very outdated tar implementation -- leave
this as true.</p>
<h3 id="proxy">proxy</h3>
<ul>
<li>Default: null</li>
<li>Type: url</li>
</ul>
<p>A proxy to use for outgoing http requests. If the <code>HTTP_PROXY</code> or
<code>http_proxy</code> environment variables are set, proxy settings will be
honored by the underlying <code>request</code> library.</p>
<h3 id="rebuild-bundle">rebuild-bundle</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>Rebuild bundled dependencies after installation.</p>
<h3 id="registry">registry</h3>
<ul>
<li>Default: <a href="https://registry.npmjs.org/">https://registry.npmjs.org/</a></li>
<li>Type: url</li>
</ul>
<p>The base URL of the npm package registry.</p>
<h3 id="rollback">rollback</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>Remove failed installs.</p>
<h3 id="save">save</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Save installed packages to a package.json file as dependencies.</p>
<p>When used with the <code>npm rm</code> command, it removes it from the <code>dependencies</code>
object.</p>
<p>Only works if there is already a package.json file present.</p>
<h3 id="save-bundle">save-bundle</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>If a package would be saved at install time by the use of <code>--save</code>,
<code>--save-dev</code>, or <code>--save-optional</code>, then also put it in the
<code>bundleDependencies</code> list.</p>
<p>When used with the <code>npm rm</code> command, it removes it from the
bundledDependencies list.</p>
<h3 id="save-dev">save-dev</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Save installed packages to a package.json file as <code>devDependencies</code>.</p>
<p>When used with the <code>npm rm</code> command, it removes it from the
<code>devDependencies</code> object.</p>
<p>Only works if there is already a package.json file present.</p>
<h3 id="save-exact">save-exact</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Dependencies saved to package.json using <code>--save</code>, <code>--save-dev</code> or
<code>--save-optional</code> will be configured with an exact version rather than
using npm's default semver range operator.</p>
<h3 id="save-optional">save-optional</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Save installed packages to a package.json file as
optionalDependencies.</p>
<p>When used with the <code>npm rm</code> command, it removes it from the
<code>devDependencies</code> object.</p>
<p>Only works if there is already a package.json file present.</p>
<h3 id="save-prefix">save-prefix</h3>
<ul>
<li>Default: '^'</li>
<li>Type: String</li>
</ul>
<p>Configure how versions of packages installed to a package.json file via
<code>--save</code> or <code>--save-dev</code> get prefixed.</p>
<p>For example if a package has version <code>1.2.3</code>, by default it's version is
set to <code>^1.2.3</code> which allows minor upgrades for that package, but after
<code>npm config set save-prefix='~'</code> it would be set to <code>~1.2.3</code> which only allows
patch upgrades.</p>
<h3 id="scope">scope</h3>
<ul>
<li>Default: ""</li>
<li>Type: String</li>
</ul>
<p>Associate an operation with a scope for a scoped registry. Useful when logging
in to a private registry for the first time:
<code>npm login --scope=@organization --registry=registry.organization.com</code>, which
will cause <code>@organization</code> to be mapped to the registry for future installation
of packages specified according to the pattern <code>@organization/package</code>.</p>
<h3 id="searchopts">searchopts</h3>
<ul>
<li>Default: ""</li>
<li>Type: String</li>
</ul>
<p>Space-separated options that are always passed to search.</p>
<h3 id="searchexclude">searchexclude</h3>
<ul>
<li>Default: ""</li>
<li>Type: String</li>
</ul>
<p>Space-separated options that limit the results from search.</p>
<h3 id="searchsort">searchsort</h3>
<ul>
<li>Default: "name"</li>
<li>Type: String</li>
<li>Values: "name", "-name", "date", "-date", "description",
"-description", "keywords", "-keywords"</li>
</ul>
<p>Indication of which field to sort search results by. Prefix with a <code>-</code>
character to indicate reverse sort.</p>
<h3 id="shell">shell</h3>
<ul>
<li>Default: SHELL environment variable, or "bash" on Posix, or "cmd" on
Windows</li>
<li>Type: path</li>
</ul>
<p>The shell to run for the <code>npm explore</code> command.</p>
<h3 id="shrinkwrap">shrinkwrap</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>If set to false, then ignore <code>npm-shrinkwrap.json</code> files when
installing.</p>
<h3 id="sign-git-tag">sign-git-tag</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>If set to true, then the <code>npm version</code> command will tag the version
using <code>-s</code> to add a signature.</p>
<p>Note that git requires you to have set up GPG keys in your git configs
for this to work properly.</p>
<h3 id="spin">spin</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean or <code>"always"</code></li>
</ul>
<p>When set to <code>true</code>, npm will display an ascii spinner while it is doing
things, if <code>process.stderr</code> is a TTY.</p>
<p>Set to <code>false</code> to suppress the spinner, or set to <code>always</code> to output
the spinner even for non-TTY outputs.</p>
<h3 id="strict-ssl">strict-ssl</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>Whether or not to do SSL key validation when making requests to the
registry via https.</p>
<p>See also the <code>ca</code> config.</p>
<h3 id="tag">tag</h3>
<ul>
<li>Default: latest</li>
<li>Type: String</li>
</ul>
<p>If you ask npm to install a package and don't tell it a specific version, then
it will install the specified tag.</p>
<p>Also the tag that is added to the package@version specified by the <code>npm
tag</code> command, if no explicit tag is given.</p>
<h3 id="tmp">tmp</h3>
<ul>
<li>Default: TMPDIR environment variable, or "/tmp"</li>
<li>Type: path</li>
</ul>
<p>Where to store temporary files and folders. All temp files are deleted
on success, but left behind on failure for forensic purposes.</p>
<h3 id="unicode">unicode</h3>
<ul>
<li>Default: true</li>
<li>Type: Boolean</li>
</ul>
<p>When set to true, npm uses unicode characters in the tree output. When
false, it uses ascii characters to draw trees.</p>
<h3 id="unsafe-perm">unsafe-perm</h3>
<ul>
<li>Default: false if running as root, true otherwise</li>
<li>Type: Boolean</li>
</ul>
<p>Set to true to suppress the UID/GID switching when running package
scripts. If set explicitly to false, then installing as a non-root user
will fail.</p>
<h3 id="usage">usage</h3>
<ul>
<li>Default: false</li>
<li>Type: Boolean</li>
</ul>
<p>Set to show short usage output (like the -H output)
instead of complete help when doing <code><a href="../cli/npm-help.html">npm-help(1)</a></code>.</p>
<h3 id="user">user</h3>
<ul>
<li>Default: "nobody"</li>
<li>Type: String or Number</li>
</ul>
<p>The UID to set to when running package scripts as root.</p>
<h3 id="userconfig">userconfig</h3>
<ul>
<li>Default: ~/.npmrc</li>
<li>Type: path</li>
</ul>
<p>The location of user-level configuration settings.</p>
<h3 id="umask">umask</h3>
<ul>
<li>Default: 022</li>
<li>Type: Octal numeric string in range 0000..0777 (0..511)</li>
</ul>
<p>The "umask" value to use when setting the file creation mode on files
and folders.</p>
<p>Folders and executables are given a mode which is <code>0777</code> masked against
this value. Other files are given a mode which is <code>0666</code> masked against
this value. Thus, the defaults are <code>0755</code> and <code>0644</code> respectively.</p>
<h3 id="user-agent">user-agent</h3>
<ul>
<li>Default: node/{process.version} {process.platform} {process.arch}</li>
<li>Type: String</li>
</ul>
<p>Sets a User-Agent to the request header</p>
<h3 id="version">version</h3>
<ul>
<li>Default: false</li>
<li>Type: boolean</li>
</ul>
<p>If true, output the npm version and exit successfully.</p>
<p>Only relevant when specified explicitly on the command line.</p>
<h3 id="versions">versions</h3>
<ul>
<li>Default: false</li>
<li>Type: boolean</li>
</ul>
<p>If true, output the npm version as well as node's <code>process.versions</code> map, and
exit successfully.</p>
<p>Only relevant when specified explicitly on the command line.</p>
<h3 id="viewer">viewer</h3>
<ul>
<li>Default: "man" on Posix, "browser" on Windows</li>
<li>Type: path</li>
</ul>
<p>The program to use to view help content.</p>
<p>Set to <code>"browser"</code> to view html help content in the default web browser.</p>
<h2 id="see-also">SEE ALSO</h2>
<ul>
<li><a href="../cli/npm-config.html">npm-config(1)</a></li>
<li><a href="../misc/npm-config.html">npm-config(7)</a></li>
<li><a href="../files/npmrc.html">npmrc(5)</a></li>
<li><a href="../misc/npm-scripts.html">npm-scripts(7)</a></li>
<li><a href="../files/npm-folders.html">npm-folders(5)</a></li>
<li><a href="../cli/npm.html">npm(1)</a></li>
</ul>
|
ajax/libs/tabulator/4.1.5/css/tabulator_simple.css | cdnjs/cdnjs | /* Tabulator v4.1.5 (c) Oliver Folkerd */
.tabulator {
position: relative;
background-color: #fff;
overflow: hidden;
font-size: 14px;
text-align: left;
-ms-transform: translatez(0);
transform: translatez(0);
}
.tabulator[tabulator-layout="fitDataFill"] .tabulator-tableHolder .tabulator-table {
min-width: 100%;
}
.tabulator.tabulator-block-select {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.tabulator .tabulator-header {
position: relative;
box-sizing: border-box;
width: 100%;
border-bottom: 1px solid #999;
background-color: #fff;
color: #555;
font-weight: bold;
white-space: nowrap;
overflow: hidden;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
}
.tabulator .tabulator-header .tabulator-col {
display: inline-block;
position: relative;
box-sizing: border-box;
border-right: 1px solid #ddd;
background-color: #fff;
text-align: left;
vertical-align: bottom;
overflow: hidden;
}
.tabulator .tabulator-header .tabulator-col.tabulator-moving {
position: absolute;
border: 1px solid #999;
background: #e6e6e6;
pointer-events: none;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
box-sizing: border-box;
position: relative;
padding: 4px;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
box-sizing: border-box;
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: bottom;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title .tabulator-title-editor {
box-sizing: border-box;
width: 100%;
border: 1px solid #999;
padding: 1px;
background: #fff;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-arrow {
display: inline-block;
position: absolute;
top: 9px;
right: 8px;
width: 0;
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #bbb;
}
.tabulator .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
position: relative;
display: -ms-flexbox;
display: flex;
border-top: 1px solid #ddd;
overflow: hidden;
}
.tabulator .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols .tabulator-col:last-child {
margin-right: -1px;
}
.tabulator .tabulator-header .tabulator-col:first-child .tabulator-col-resize-handle.prev {
display: none;
}
.tabulator .tabulator-header .tabulator-col.ui-sortable-helper {
position: absolute;
background-color: #e6e6e6 !important;
border: 1px solid #ddd;
}
.tabulator .tabulator-header .tabulator-col .tabulator-header-filter {
position: relative;
box-sizing: border-box;
margin-top: 2px;
width: 100%;
text-align: center;
}
.tabulator .tabulator-header .tabulator-col .tabulator-header-filter textarea {
height: auto !important;
}
.tabulator .tabulator-header .tabulator-col .tabulator-header-filter svg {
margin-top: 3px;
}
.tabulator .tabulator-header .tabulator-col .tabulator-header-filter input::-ms-clear {
width: 0;
height: 0;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
padding-right: 25px;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
cursor: pointer;
background-color: #e6e6e6;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="none"] .tabulator-col-content .tabulator-arrow {
border-top: none;
border-bottom: 6px solid #bbb;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="asc"] .tabulator-col-content .tabulator-arrow {
border-top: none;
border-bottom: 6px solid #666;
}
.tabulator .tabulator-header .tabulator-col.tabulator-sortable[aria-sort="desc"] .tabulator-col-content .tabulator-arrow {
border-top: 6px solid #666;
border-bottom: none;
}
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical .tabulator-col-content .tabulator-col-title {
-webkit-writing-mode: vertical-rl;
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
text-orientation: mixed;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
}
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-col-vertical-flip .tabulator-col-title {
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-col-title {
padding-right: 0;
padding-top: 20px;
}
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable.tabulator-col-vertical-flip .tabulator-col-title {
padding-right: 0;
padding-bottom: 20px;
}
.tabulator .tabulator-header .tabulator-col.tabulator-col-vertical.tabulator-sortable .tabulator-arrow {
right: calc(50% - 6px);
}
.tabulator .tabulator-header .tabulator-frozen {
display: inline-block;
position: absolute;
z-index: 10;
}
.tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-left {
border-right: 2px solid #ddd;
}
.tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-right {
border-left: 2px solid #ddd;
}
.tabulator .tabulator-header .tabulator-calcs-holder {
box-sizing: border-box;
min-width: 400%;
background: #f2f2f2 !important;
border-top: 1px solid #ddd;
border-bottom: 1px solid #999;
overflow: hidden;
}
.tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {
background: #f2f2f2 !important;
}
.tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
display: none;
}
.tabulator .tabulator-header .tabulator-frozen-rows-holder {
min-width: 400%;
}
.tabulator .tabulator-header .tabulator-frozen-rows-holder:empty {
display: none;
}
.tabulator .tabulator-tableHolder {
position: relative;
width: 100%;
white-space: nowrap;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.tabulator .tabulator-tableHolder:focus {
outline: none;
}
.tabulator .tabulator-tableHolder .tabulator-placeholder {
box-sizing: border-box;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
width: 100%;
}
.tabulator .tabulator-tableHolder .tabulator-placeholder[tabulator-render-mode="virtual"] {
position: absolute;
top: 0;
left: 0;
height: 100%;
}
.tabulator .tabulator-tableHolder .tabulator-placeholder span {
display: inline-block;
margin: 0 auto;
padding: 10px;
color: #000;
font-weight: bold;
font-size: 20px;
}
.tabulator .tabulator-tableHolder .tabulator-table {
position: relative;
display: inline-block;
background-color: #fff;
white-space: nowrap;
overflow: visible;
color: #333;
}
.tabulator .tabulator-tableHolder .tabulator-table .tabulator-row.tabulator-calcs {
font-weight: bold;
background: #f2f2f2 !important;
}
.tabulator .tabulator-tableHolder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-top {
border-bottom: 2px solid #ddd;
}
.tabulator .tabulator-tableHolder .tabulator-table .tabulator-row.tabulator-calcs.tabulator-calcs-bottom {
border-top: 2px solid #ddd;
}
.tabulator .tabulator-col-resize-handle {
position: absolute;
right: 0;
top: 0;
bottom: 0;
width: 5px;
}
.tabulator .tabulator-col-resize-handle.prev {
left: 0;
right: auto;
}
.tabulator .tabulator-col-resize-handle:hover {
cursor: ew-resize;
}
.tabulator .tabulator-footer {
padding: 5px 10px;
border-top: 1px solid #999;
background-color: #fff;
text-align: right;
color: #555;
font-weight: bold;
white-space: nowrap;
-ms-user-select: none;
user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
}
.tabulator .tabulator-footer .tabulator-calcs-holder {
box-sizing: border-box;
width: calc(100% + 20px);
margin: -5px -10px 5px -10px;
text-align: left;
background: #f2f2f2 !important;
border-bottom: 1px solid #fff;
border-top: 1px solid #ddd;
overflow: hidden;
}
.tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {
background: #f2f2f2 !important;
}
.tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {
display: none;
}
.tabulator .tabulator-footer .tabulator-calcs-holder:only-child {
margin-bottom: -5px;
border-bottom: none;
}
.tabulator .tabulator-footer .tabulator-pages {
margin: 0 7px;
}
.tabulator .tabulator-footer .tabulator-page {
display: inline-block;
margin: 0 2px;
border: 1px solid #aaa;
border-radius: 3px;
padding: 2px 5px;
background: rgba(255, 255, 255, 0.2);
color: #555;
font-family: inherit;
font-weight: inherit;
font-size: inherit;
}
.tabulator .tabulator-footer .tabulator-page.active {
color: #d00;
}
.tabulator .tabulator-footer .tabulator-page:disabled {
opacity: .5;
}
.tabulator .tabulator-footer .tabulator-page:not(.disabled):hover {
cursor: pointer;
background: rgba(0, 0, 0, 0.2);
color: #fff;
}
.tabulator .tabulator-loader {
position: absolute;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
top: 0;
left: 0;
z-index: 100;
height: 100%;
width: 100%;
background: rgba(0, 0, 0, 0.4);
text-align: center;
}
.tabulator .tabulator-loader .tabulator-loader-msg {
display: inline-block;
margin: 0 auto;
padding: 10px 20px;
border-radius: 10px;
background: #fff;
font-weight: bold;
font-size: 16px;
}
.tabulator .tabulator-loader .tabulator-loader-msg.tabulator-loading {
border: 4px solid #333;
color: #000;
}
.tabulator .tabulator-loader .tabulator-loader-msg.tabulator-error {
border: 4px solid #D00;
color: #590000;
}
.tabulator-row {
position: relative;
box-sizing: border-box;
min-height: 22px;
background-color: #fff;
border-bottom: 1px solid #ddd;
}
.tabulator-row:nth-child(even) {
background-color: #fff;
}
.tabulator-row.tabulator-selectable:hover {
background-color: #bbb;
cursor: pointer;
}
.tabulator-row.tabulator-selected {
background-color: #9ABCEA;
}
.tabulator-row.tabulator-selected:hover {
background-color: #769BCC;
cursor: pointer;
}
.tabulator-row.tabulator-moving {
position: absolute;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
pointer-events: none !important;
z-index: 15;
}
.tabulator-row .tabulator-row-resize-handle {
position: absolute;
right: 0;
bottom: 0;
left: 0;
height: 5px;
}
.tabulator-row .tabulator-row-resize-handle.prev {
top: 0;
bottom: auto;
}
.tabulator-row .tabulator-row-resize-handle:hover {
cursor: ns-resize;
}
.tabulator-row .tabulator-frozen {
display: inline-block;
position: absolute;
background-color: inherit;
z-index: 10;
}
.tabulator-row .tabulator-frozen.tabulator-frozen-left {
border-right: 2px solid #ddd;
}
.tabulator-row .tabulator-frozen.tabulator-frozen-right {
border-left: 2px solid #ddd;
}
.tabulator-row .tabulator-responsive-collapse {
box-sizing: border-box;
padding: 5px;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}
.tabulator-row .tabulator-responsive-collapse:empty {
display: none;
}
.tabulator-row .tabulator-responsive-collapse table {
font-size: 14px;
}
.tabulator-row .tabulator-responsive-collapse table tr td {
position: relative;
}
.tabulator-row .tabulator-responsive-collapse table tr td:first-of-type {
padding-right: 10px;
}
.tabulator-row .tabulator-cell {
display: inline-block;
position: relative;
box-sizing: border-box;
padding: 4px;
border-right: 1px solid #ddd;
vertical-align: middle;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.tabulator-row .tabulator-cell:last-of-type {
border-right: none;
}
.tabulator-row .tabulator-cell.tabulator-editing {
border: 1px solid #1D68CD;
padding: 0;
}
.tabulator-row .tabulator-cell.tabulator-editing input, .tabulator-row .tabulator-cell.tabulator-editing select {
border: 1px;
background: transparent;
}
.tabulator-row .tabulator-cell.tabulator-validation-fail {
border: 1px solid #dd0000;
}
.tabulator-row .tabulator-cell.tabulator-validation-fail input, .tabulator-row .tabulator-cell.tabulator-validation-fail select {
border: 1px;
background: transparent;
color: #dd0000;
}
.tabulator-row .tabulator-cell:first-child .tabulator-col-resize-handle.prev {
display: none;
}
.tabulator-row .tabulator-cell.tabulator-row-handle {
display: -ms-inline-flexbox;
display: inline-flex;
-ms-flex-align: center;
align-items: center;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
}
.tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {
width: 80%;
}
.tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box .tabulator-row-handle-bar {
width: 100%;
height: 3px;
margin-top: 2px;
background: #666;
}
.tabulator-row .tabulator-cell .tabulator-data-tree-branch {
display: inline-block;
vertical-align: middle;
height: 9px;
width: 7px;
margin-top: -9px;
margin-right: 5px;
border-bottom-left-radius: 1px;
border-left: 2px solid #ddd;
border-bottom: 2px solid #ddd;
}
.tabulator-row .tabulator-cell .tabulator-data-tree-control {
display: -ms-inline-flexbox;
display: inline-flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
align-items: center;
vertical-align: middle;
height: 11px;
width: 11px;
margin-right: 5px;
border: 1px solid #333;
border-radius: 2px;
background: rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.tabulator-row .tabulator-cell .tabulator-data-tree-control:hover {
cursor: pointer;
background: rgba(0, 0, 0, 0.2);
}
.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse {
display: inline-block;
position: relative;
height: 7px;
width: 1px;
background: transparent;
}
.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {
position: absolute;
content: "";
left: -3px;
top: 3px;
height: 1px;
width: 7px;
background: #333;
}
.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand {
display: inline-block;
position: relative;
height: 7px;
width: 1px;
background: #333;
}
.tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {
position: absolute;
content: "";
left: -3px;
top: 3px;
height: 1px;
width: 7px;
background: #333;
}
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle {
display: -ms-inline-flexbox;
display: inline-flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
height: 15px;
width: 15px;
border-radius: 20px;
background: #666;
color: #fff;
font-weight: bold;
font-size: 1.1em;
}
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle:hover {
opacity: .7;
}
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-close {
display: initial;
}
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle.open .tabulator-responsive-collapse-toggle-open {
display: none;
}
.tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle .tabulator-responsive-collapse-toggle-close {
display: none;
}
.tabulator-row.tabulator-group {
box-sizing: border-box;
border-bottom: 1px solid #999;
border-right: 1px solid #ddd;
border-top: 1px solid #999;
padding: 5px;
padding-left: 10px;
background: #fafafa;
font-weight: bold;
min-width: 100%;
}
.tabulator-row.tabulator-group:hover {
cursor: pointer;
background-color: rgba(0, 0, 0, 0.1);
}
.tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {
margin-right: 10px;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 6px solid #666;
border-bottom: 0;
}
.tabulator-row.tabulator-group.tabulator-group-level-1 .tabulator-arrow {
margin-left: 20px;
}
.tabulator-row.tabulator-group.tabulator-group-level-2 .tabulator-arrow {
margin-left: 40px;
}
.tabulator-row.tabulator-group.tabulator-group-level-3 .tabulator-arrow {
margin-left: 60px;
}
.tabulator-row.tabulator-group.tabulator-group-level-4 .tabulator-arrow {
margin-left: 80px;
}
.tabulator-row.tabulator-group.tabulator-group-level-5 .tabulator-arrow {
margin-left: 100px;
}
.tabulator-row.tabulator-group .tabulator-arrow {
display: inline-block;
width: 0;
height: 0;
margin-right: 16px;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-right: 0;
border-left: 6px solid #666;
vertical-align: middle;
}
.tabulator-row.tabulator-group span {
margin-left: 10px;
color: #666;
}
.tabulator-edit-select-list {
position: absolute;
display: inline-block;
box-sizing: border-box;
max-height: 200px;
background: #fff;
border: 1px solid #ddd;
font-size: 14px;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
z-index: 10000;
}
.tabulator-edit-select-list .tabulator-edit-select-list-item {
padding: 4px;
color: #333;
}
.tabulator-edit-select-list .tabulator-edit-select-list-item.active {
color: #fff;
background: #1D68CD;
}
.tabulator-edit-select-list .tabulator-edit-select-list-item:hover {
cursor: pointer;
color: #fff;
background: #1D68CD;
}
.tabulator-edit-select-list .tabulator-edit-select-list-group {
border-bottom: 1px solid #ddd;
padding: 4px;
padding-top: 6px;
color: #333;
font-weight: bold;
}
|
testdata/solr/sequence/conf/admin-extra.html | lianyi/seqr | <!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<div>
<ul>
<li><a class="commiter" href=""><img src="img/ico/construction.png"> Commit </a></li>
<li><a class="deleter"><img src="img/ico/construction.png"> Caution!!! --- ClearAll --- Caution!!!</a></li>
</ul>
</div>
<script>
if (window.location.hash) {
current_core = window.location.hash.replace('#/', '');
var base_url = window.location.pathname + current_core;
$("a[class='commiter']").attr("href", base_url + "/update?commit=true");
$("a[class='deleter']").attr("href", base_url + "/update?stream.body=<delete><query>*:*</query></delete>");
}
</script>
|
lib/boost/libs/multi_index/doc/tutorial/basics.html | Bloodyaugust/sugarlabcppboilerplate | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0.1 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Boost.MultiIndex Documentation - Tutorial - Basics</title>
<link rel="stylesheet" href="../style.css" type="text/css">
<link rel="start" href="../index.html">
<link rel="prev" href="index.html">
<link rel="up" href="index.html">
<link rel="next" href="indices.html">
</head>
<body>
<h1><img src="../../../../boost.png" alt="boost.png (6897 bytes)" align=
"middle" width="277" height="86">Boost.MultiIndex Tutorial: Basics</h1>
<div class="prev_link"><a href="index.html"><img src="../prev.gif" alt="Boost.MultiIndex tutorial" border="0"><br>
Boost.MultiIndex tutorial
</a></div>
<div class="up_link"><a href="index.html"><img src="../up.gif" alt="Boost.MultiIndex tutorial" border="0"><br>
Boost.MultiIndex tutorial
</a></div>
<div class="next_link"><a href="indices.html"><img src="../next.gif" alt="index types" border="0"><br>
Index types
</a></div><br clear="all" style="clear: all;">
<hr>
<h2>Contents</h2>
<ul>
<li><a href="#intro">Introduction</a>
<ul>
<li><a href="#multiple_sort">Multiple sorts on a single set</a></li>
<li><a href="#list_fast_lookup">A bidirectional list with fast lookup</a></li>
</ul>
</li>
<li><a href="#index_spec">Index specification</a></li>
<li><a href="#tagging">Tagging</a></li>
<li><a href="#iterator_access">Iterator access</a></li>
<li><a href="#index_types">Index types</a>
<ul>
<li><a href="#ord_indices">Ordered indices</a>
<ul>
<li><a href="#unique_non_unique">Unique and non-unique variants</a></li>
<li><a href="#ord_spec">Specification</a></li>
<li><a href="#key_extraction">Key extraction</a></li>
<li><a href="#comparison_predicates">Comparison predicates</a></li>
<li><a href="#special_lookup">Special lookup operations</a></li>
<li><a href="#range">Retrieval of ranges</a></li>
<li><a href="#ord_updating">Updating</a></li>
</ul>
</li>
<li><a href="#seq_indices">Sequenced indices</a>
<ul>
<li><a href="#seq_spec">Specification</a></li>
<li><a href="#list_ops">List operations</a></li>
<li><a href="#seq_updating">Updating</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#projection">Projection of iterators</a></li>
<li><a href="#complexity">Complexity and exception safety</a></li>
</ul>
<h2><a name="intro">Introduction</a></h2>
<p>
We introduce the main concepts of Boost.MultiIndex through the study of
two typical use cases.
</p>
<h3><a name="multiple_sort">Multiple sorts on a single set</a></h3>
<p>
STL sets and multisets are varying-length containers where elements are efficiently
sorted according to a given comparison predicate. These container classes fall short
of functionality when the programmer wishes to efficiently sort and look up the elements
following a different sorting criterion. Consider for instance:
</p>
<blockquote><pre>
<span class=keyword>struct</span> <span class=identifier>employee</span>
<span class=special>{</span>
<span class=keyword>int</span> <span class=identifier>id</span><span class=special>;</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span> <span class=identifier>name</span><span class=special>;</span>
<span class=identifier>employee</span><span class=special>(</span><span class=keyword>int</span> <span class=identifier>id</span><span class=special>,</span><span class=keyword>const</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>&</span> <span class=identifier>name</span><span class=special>):</span><span class=identifier>id</span><span class=special>(</span><span class=identifier>id</span><span class=special>),</span><span class=identifier>name</span><span class=special>(</span><span class=identifier>name</span><span class=special>){}</span>
<span class=keyword>bool</span> <span class=keyword>operator</span><span class=special><(</span><span class=keyword>const</span> <span class=identifier>employee</span><span class=special>&</span> <span class=identifier>e</span><span class=special>)</span><span class=keyword>const</span><span class=special>{</span><span class=keyword>return</span> <span class=identifier>id</span><span class=special><</span><span class=identifier>e</span><span class=special>.</span><span class=identifier>id</span><span class=special>;}</span>
<span class=special>};</span>
</pre></blockquote>
<p>The fact that IDs are unique to each employee is reflected by the way
<code>operator<</code> is defined, so a natural data structure for storing of
<code>employee</code>s is just a <code>std::set<employee></code>. Now,
if one wishes to print out a listing of all employees in alphabetical order, available
solutions may have disadvantages either in terms of storage space, complexity or ease
of maintenance:
<ul>
<li>Copy the employee set into a vector or similar and sort this by a comparison
functor dependent upon <code>employee::name</code>.
<li>Keep a secondary data structure of pointers to the elements of the set, appropriately
sorted by name.
</ul>
Of these, probably the second solution will be the one adopted by most programmers
concerned about efficiency, but it imposes the annoying burden of keeping the two
structures in sync. If the code is additionally required to be exception-safe, this
construct easily becomes unmaintainable.
</p>
<p>
Boost.MultiIndex features <a href="#ord_indices"><i>ordered indices</i></a>, which
sort the elements according to a particular key, and are designed to help programmers
in need of sequences of elements for which <i>more than one</i> sorting criteria are
relevant. We do so by defining a <code>multi_index_container</code>
instantiation composed of several ordered indices: each index, viewed in isolation,
behaves much as an ordered <code>std::set</code> (or <code>std::multiset</code>), whilst
the overall integrity of the entire data structure is preserved. Our example problem
thus can be solved with Boost.MultiIndex as follows:
</p>
<blockquote><pre>
<span class=preprocessor>#include</span> <span class=special><</span><span class=identifier>boost</span><span class=special>/</span><span class=identifier>multi_index_container</span><span class=special>.</span><span class=identifier>hpp</span><span class=special>></span>
<span class=preprocessor>#include</span> <span class=special><</span><span class=identifier>boost</span><span class=special>/</span><span class=identifier>multi_index</span><span class=special>/</span><span class=identifier>ordered_index</span><span class=special>.</span><span class=identifier>hpp</span><span class=special>></span>
<span class=preprocessor>#include</span> <span class=special><</span><span class=identifier>boost</span><span class=special>/</span><span class=identifier>multi_index</span><span class=special>/</span><span class=identifier>identity</span><span class=special>.</span><span class=identifier>hpp</span><span class=special>></span>
<span class=preprocessor>#include</span> <span class=special><</span><span class=identifier>boost</span><span class=special>/</span><span class=identifier>multi_index</span><span class=special>/</span><span class=identifier>member</span><span class=special>.</span><span class=identifier>hpp</span><span class=special>></span>
<span class=comment>// define a multiply indexed set with indices by id and name</span>
<span class=keyword>typedef</span> <span class=identifier>multi_index_container</span><span class=special><</span>
<span class=identifier>employee</span><span class=special>,</span>
<span class=identifier>indexed_by</span><span class=special><</span>
<span class=comment>// sort by employee::operator<</span>
<span class=identifier>ordered_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><</span><span class=identifier>employee</span><span class=special>></span> <span class=special>>,</span>
<span class=comment>// sort by less<string> on name</span>
<span class=identifier>ordered_non_unique</span><span class=special><</span><span class=identifier>member</span><span class=special><</span><span class=identifier>employee</span><span class=special>,</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>,&</span><span class=identifier>employee</span><span class=special>::</span><span class=identifier>name</span><span class=special>></span> <span class=special>></span>
<span class=special>></span>
<span class=special>></span> <span class=identifier>employee_set</span><span class=special>;</span>
<span class=keyword>void</span> <span class=identifier>print_out_by_name</span><span class=special>(</span><span class=keyword>const</span> <span class=identifier>employee_set</span><span class=special>&</span> <span class=identifier>es</span><span class=special>)</span>
<span class=special>{</span>
<span class=comment>// get a view to index #1 (name)</span>
<span class=keyword>const</span> <span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>nth_index</span><span class=special><</span><span class=number>1</span><span class=special>>::</span><span class=identifier>type</span><span class=special>&</span> <span class=identifier>name_index</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=number>1</span><span class=special>>();</span>
<span class=comment>// use name_index as a regular std::set</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>copy</span><span class=special>(</span>
<span class=identifier>name_index</span><span class=special>.</span><span class=identifier>begin</span><span class=special>(),</span><span class=identifier>name_index</span><span class=special>.</span><span class=identifier>end</span><span class=special>(),</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>ostream_iterator</span><span class=special><</span><span class=identifier>employee</span><span class=special>>(</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>cout</span><span class=special>));</span>
<span class=special>}</span>
</pre></blockquote>
<p>
Instead of a single comparison predicate type, as it happens for STL associative
containers, <code>multi_index_container</code> is passed a
<a href="../reference/multi_index_container.html#multi_index_container">list</a> of index
specifications (<code>indexed_by</code>), each one inducing the corresponding index.
Indices are accessed via
<a href="../reference/multi_index_container.html#index_retrieval"><code>get</code></a><code><N>()</code>
where <i>N</i> ranges between 0 and the number of comparison
predicates minus one. The functionality of index #0 can be accessed directly from a
<code>multi_index_container</code> object without using <code>get<0>()</code>: for instance,
<code>es.begin()</code> is equivalent to <code>es.get<0>().begin()</code>.
</p>
<p>
Note that <code>get</code> returns a <i>reference</i> to the index, and not
an index object. Indices cannot be constructed as separate objects from the
container they belong to, so the following
</p>
<blockquote><pre>
<span class=comment>// Wrong: we forgot the & after employee_set::nth_index<1>::type</span>
<span class=keyword>const</span> <span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>nth_index</span><span class=special><</span><span class=number>1</span><span class=special>>::</span><span class=identifier>type</span> <span class=identifier>name_index</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=number>1</span><span class=special>>();</span>
</pre></blockquote>
<p>
does not compile, since it is trying to construct the index object
<code>name_index</code>. This is a common source of errors in user code.
</p>
<h3><a name="list_fast_lookup">A bidirectional list with fast lookup</a></h3>
<p>
This study case allows us to introduce so-called
<a href="#seq_indices"><i>sequenced indices</i></a>, and how they
interact with ordered indices to construct powerful containers. Suppose
we have a text parsed into words and stored in a list like this:
</p>
<blockquote><pre>
<span class=keyword>typedef</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>list</span><span class=special><</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>></span> <span class=identifier>text_container</span><span class=special>;</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span> <span class=identifier>text</span><span class=special>=</span>
<span class=string>"Alice was beginning to get very tired of sitting by her sister on the "</span>
<span class=string>"bank, and of having nothing to do: once or twice she had peeped into the "</span>
<span class=string>"book her sister was reading, but it had no pictures or conversations in "</span>
<span class=string>"it, 'and what is the use of a book,' thought Alice 'without pictures or "</span>
<span class=string>"conversation?'"</span><span class=special>;</span>
<span class=comment>// feed the text into the list</span>
<span class=identifier>text_container</span> <span class=identifier>tc</span><span class=special>;</span>
<span class=identifier>boost</span><span class=special>::</span><span class=identifier>tokenizer</span><span class=special><</span><span class=identifier>boost</span><span class=special>::</span><span class=identifier>char_separator</span><span class=special><</span><span class=keyword>char</span><span class=special>></span> <span class=special>></span> <span class=identifier>tok</span>
<span class=special>(</span><span class=identifier>text</span><span class=special>,</span><span class=identifier>boost</span><span class=special>::</span><span class=identifier>char_separator</span><span class=special><</span><span class=keyword>char</span><span class=special>>(</span><span class=string>" \t\n.,;:!?'\"-"</span><span class=special>));</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>copy</span><span class=special>(</span><span class=identifier>tok</span><span class=special>.</span><span class=identifier>begin</span><span class=special>(),</span><span class=identifier>tok</span><span class=special>.</span><span class=identifier>end</span><span class=special>(),</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>back_inserter</span><span class=special>(</span><span class=identifier>tc</span><span class=special>));</span>
</pre></blockquote>
<p>
If we want to count the occurrences of a given word into the text we will resort
to <code>std::count</code>:
</p>
<blockquote><pre>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>size_t</span> <span class=identifier>occurrences</span><span class=special>(</span><span class=keyword>const</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>&</span> <span class=identifier>word</span><span class=special>)</span>
<span class=special>{</span>
<span class=keyword>return</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>count</span><span class=special>(</span><span class=identifier>tc</span><span class=special>.</span><span class=identifier>begin</span><span class=special>(),</span><span class=identifier>tc</span><span class=special>.</span><span class=identifier>end</span><span class=special>(),</span><span class=identifier>word</span><span class=special>);</span>
<span class=special>}</span>
</pre></blockquote>
<p>
But this implementation of <code>occurrences</code> performs in linear time, which
could be unacceptable for large quantities of text. Similarly, other operations like
deletion of selected words are just too costly to carry out on a
<code>std::list</code>:
</p>
<blockquote><pre>
<span class=keyword>void</span> <span class=identifier>delete_word</span><span class=special>(</span><span class=keyword>const</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>&</span> <span class=identifier>word</span><span class=special>)</span>
<span class=special>{</span>
<span class=identifier>tc</span><span class=special>.</span><span class=identifier>remove</span><span class=special>(</span><span class=identifier>word</span><span class=special>);</span> <span class=comment>// scans the entire list looking for word</span>
<span class=special>}</span>
</pre></blockquote>
<p>
When performance is a concern, we will need an additional data structure that indexes
the elements in <code>tc</code>, presumably in alphabetical order. Boost.MultiIndex
does precisely this through the combination of sequenced and ordered indices:
</p>
<blockquote><pre>
<span class=preprocessor>#include</span> <span class=special><</span><span class=identifier>boost</span><span class=special>/</span><span class=identifier>multi_index_container</span><span class=special>.</span><span class=identifier>hpp</span><span class=special>></span>
<span class=preprocessor>#include</span> <span class=special><</span><span class=identifier>boost</span><span class=special>/</span><span class=identifier>multi_index</span><span class=special>/</span><span class=identifier>sequenced_index</span><span class=special>.</span><span class=identifier>hpp</span><span class=special>></span>
<span class=preprocessor>#include</span> <span class=special><</span><span class=identifier>boost</span><span class=special>/</span><span class=identifier>multi_index</span><span class=special>/</span><span class=identifier>ordered_index</span><span class=special>.</span><span class=identifier>hpp</span><span class=special>></span>
<span class=preprocessor>#include</span> <span class=special><</span><span class=identifier>boost</span><span class=special>/</span><span class=identifier>multi_index</span><span class=special>/</span><span class=identifier>identity</span><span class=special>.</span><span class=identifier>hpp</span><span class=special>></span>
<span class=comment>// define a multi_index_container with a list-like index and an ordered index</span>
<span class=keyword>typedef</span> <span class=identifier>multi_index_container</span><span class=special><</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>,</span>
<span class=identifier>indexed_by</span><span class=special><</span>
<span class=identifier>sequenced</span><span class=special><>,</span> <span class=comment>// list-like index</span>
<span class=identifier>ordered_non_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>></span> <span class=special>></span> <span class=comment>// words by alphabetical order</span>
<span class=special>></span>
<span class=special>></span> <span class=identifier>text_container</span><span class=special>;</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span> <span class=identifier>text</span><span class=special>=...</span>
<span class=comment>// feed the text into the list</span>
<span class=identifier>text_container</span> <span class=identifier>tc</span><span class=special>;</span>
<span class=identifier>boost</span><span class=special>::</span><span class=identifier>tokenizer</span><span class=special><</span><span class=identifier>boost</span><span class=special>::</span><span class=identifier>char_separator</span><span class=special><</span><span class=keyword>char</span><span class=special>></span> <span class=special>></span> <span class=identifier>tok</span>
<span class=special>(</span><span class=identifier>text</span><span class=special>,</span><span class=identifier>boost</span><span class=special>::</span><span class=identifier>char_separator</span><span class=special><</span><span class=keyword>char</span><span class=special>>(</span><span class=string>" \t\n.,;:!?'\"-"</span><span class=special>));</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>copy</span><span class=special>(</span><span class=identifier>tok</span><span class=special>.</span><span class=identifier>begin</span><span class=special>(),</span><span class=identifier>tok</span><span class=special>.</span><span class=identifier>end</span><span class=special>(),</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>back_inserter</span><span class=special>(</span><span class=identifier>tc</span><span class=special>));</span>
</pre></blockquote>
<p>
So far, the substitution of <code>multi_index_container</code> for <code>std::list</code>
does not show any advantage. The code for inserting the text into the container
does not change as sequenced indices provide an interface similar to that of
<code>std::list</code> (no explicit access to this index through
<code>get<0>()</code> is needed as <code>multi_index_container</code> inherits the
functionality of index #0.) But the specification of an additional ordered index
allows us to implement <code>occurrences</code> and <code>delete_word</code>
in a much more efficient manner:
</p>
<blockquote><pre>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>size_t</span> <span class=identifier>occurrences</span><span class=special>(</span><span class=keyword>const</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>&</span> <span class=identifier>word</span><span class=special>)</span>
<span class=special>{</span>
<span class=comment>// get a view to index #1</span>
<span class=identifier>text_container</span><span class=special>::</span><span class=identifier>nth_index</span><span class=special><</span><span class=number>1</span><span class=special>>::</span><span class=identifier>type</span><span class=special>&</span> <span class=identifier>sorted_index</span><span class=special>=</span><span class=identifier>tc</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=number>1</span><span class=special>>();</span>
<span class=comment>// use sorted_index as a regular std::set</span>
<span class=keyword>return</span> <span class=identifier>sorted_index</span><span class=special>.</span><span class=identifier>count</span><span class=special>(</span><span class=identifier>word</span><span class=special>);</span>
<span class=special>}</span>
<span class=keyword>void</span> <span class=identifier>delete_word</span><span class=special>(</span><span class=keyword>const</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>&</span> <span class=identifier>word</span><span class=special>)</span>
<span class=special>{</span>
<span class=comment>// get a view to index #1</span>
<span class=identifier>text_container</span><span class=special>::</span><span class=identifier>nth_index</span><span class=special><</span><span class=number>1</span><span class=special>>::</span><span class=identifier>type</span><span class=special>&</span> <span class=identifier>sorted_index</span><span class=special>=</span><span class=identifier>tc</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=number>1</span><span class=special>>();</span>
<span class=comment>// use sorted_index as a regular std::set</span>
<span class=identifier>sorted_index</span><span class=special>.</span><span class=identifier>erase</span><span class=special>(</span><span class=identifier>word</span><span class=special>);</span>
<span class=special>}</span>
</pre></blockquote>
<p>
Now, <code>occurrences</code> and <code>delete_word</code> have logarithmic
complexity. The programmer can use index #0 for accessing the text as with
<code>std::list</code>, and use index #1 when logarithmic lookup is needed.
</p>
<h2>
<a name="index_spec">Index specification</a>
</h2>
<p>
The indices of a <code>multi_index_container</code> instantiation are specified by
means of the <a href="../reference/indices.html#indexed_by">
<code>indexed_by</code></a> construct. For instance, the instantiation
</p>
<blockquote><pre>
<span class=keyword>typedef</span> <span class=identifier>multi_index_container</span><span class=special><</span>
<span class=identifier>employee</span><span class=special>,</span>
<span class=identifier>indexed_by</span><span class=special><</span>
<span class=identifier>ordered_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><</span><span class=identifier>employee</span><span class=special>></span> <span class=special>>,</span>
<span class=identifier>ordered_non_unique</span><span class=special><</span><span class=identifier>member</span><span class=special><</span><span class=identifier>employee</span><span class=special>,</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>,&</span><span class=identifier>employee</span><span class=special>::</span><span class=identifier>name</span><span class=special>></span> <span class=special>></span>
<span class=special>></span>
<span class=special>></span> <span class=identifier>employee_set</span><span class=special>;</span>
</pre></blockquote>
<p>
is comprised of a <a href="#unique_non_unique">unique ordered index</a> and a
<a href="#unique_non_unique">non-unique ordered index</a>, while in
</p>
<blockquote><pre>
<span class=keyword>typedef</span> <span class=identifier>multi_index_container</span><span class=special><</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>,</span>
<span class=identifier>indexed_by</span><span class=special><</span>
<span class=identifier>sequenced</span><span class=special><>,</span>
<span class=identifier>ordered_non_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>></span> <span class=special>></span>
<span class=special>></span>
<span class=special>></span> <span class=identifier>text_container</span><span class=special>;</span>
</pre></blockquote>
<p>
we specifiy two indices, the first of <a href="#seq_indices">sequenced type</a>,
the second a non-unique <a href="#ord_indices">ordered index</a>. In general, we
can specify an arbitrary number of indices: each of the arguments of
<code>indexed_by</code> is called an
<a href="../reference/indices.html#index_specification"><i>index specifier</i></a>.
Depending on the type of index being specified, the corresponding specifier
will need additional information: for instance, the specifiers <code>ordered_unique</code>
and <code>ordered_non_unique</code> are provided with a
<a href="#key_extraction">key extractor</a> and an optional
<a href="#comparison_predicates">comparison predicate</a> which jointly indicate
how the sorting of elements will be performed.
</p>
<p>
A <code>multi_index_container</code> instantiation can be declared without supplying
the <code>indexed_by</code> part: in this case, default index values are taken
so that the resulting type is equivalent to a regular <code>std::set</code>.
Concretely, the instantiation
</p>
<blockquote><pre>
<span class=identifier>multi_index_container</span><span class=special><</span><i>(element)</i><span class=special>></span>
</pre></blockquote>
<p>
is equivalent to
</p>
<blockquote><pre>
<span class=identifier>multi_index_container</span><span class=special><</span>
<i>(element)</i><span class=special>,</span>
<span class=identifier>indexed_by</span><span class=special><</span>
<span class=identifier>ordered_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><(</span><span class=identifier>element</span><span class=special>)></span> <span class=special>></span>
<span class=special>></span>
<span class=special>></span>
</pre></blockquote>
<h2><a name="tagging">Tagging</a></h2>
<p>
In order to retrieve (a reference to) an index of a given <code>multi_index_container</code>,
the programmer must provide its order number, which is cumbersome and not very
self-descriptive. Optionally, indices can be assigned <i>tags</i> (C++ types) that
act as more convenient mnemonics. If provided, tags must be passed as the
first parameter of the corresponding index specifier. The following is a revised version of
<code>employee_set</code> with inclusion of tags:
</p>
<blockquote><pre>
<span class=comment>// tags</span>
<span class=keyword>struct</span> <span class=identifier>name</span><span class=special>{};</span>
<span class=keyword>typedef</span> <span class=identifier>multi_index_container</span><span class=special><</span>
<span class=identifier>employee</span><span class=special>,</span>
<span class=identifier>indexed_by</span><span class=special><</span>
<span class=identifier>ordered_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><</span><span class=identifier>employee</span><span class=special>></span> <span class=special>>,</span>
<span class=identifier>ordered_non_unique</span><span class=special><</span><span class=identifier>tag</span><span class=special><</span><span class=identifier>name</span><span class=special>>,</span><span class=identifier>member</span><span class=special><</span><span class=identifier>employee</span><span class=special>,</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>,&</span><span class=identifier>employee</span><span class=special>::</span><span class=identifier>name</span><span class=special>></span> <span class=special>></span>
<span class=special>></span>
<span class=special>></span> <span class=identifier>employee_set</span><span class=special>;</span>
</pre></blockquote>
<p>
Tags have to be passed inside the <a href="../reference/indices.html#tag"><code>tag</code></a>
construct. Any type can be used as a tag for an index, although in general one will choose
names that are descriptive of the index they are associated with. The tagging mechanism allows
us to write expressions like</p>
<blockquote><pre>
<span class=keyword>typedef</span> <span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>index</span><span class=special><</span><span class=identifier>name</span><span class=special>>::</span><span class=identifier>type</span> <span class=identifier>employee_set_by_name</span><span class=special>;</span>
<span class=identifier>employee_set_by_name</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=identifier>name</span><span class=special>>().</span><span class=identifier>begin</span><span class=special>();</span>
</pre></blockquote>
<p>
If no tag is provided for an index (as is the case for index #0 of the previous
example), access to that index can only be performed by number. Note the existence
of two different <code>typedef</code>s <code>nth_index</code> and
<code>index</code> for referring to an index by number and by tag, respectively;
for instance,
<ul>
<li><code>employee_set::nth_index<1>::type</code> is the type of
index #1,</li>
<li><code>employee_set::index<name>::type</code> is the type of the index
tagged with <code>name</code> (the same index #1 in this case.)</li>
</ul>
<code>get()</code>, on the other hand, is overloaded to serve both styles of access:
</p>
<blockquote><pre>
<span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>index</span><span class=special><</span><span class=identifier>name</span><span class=special>>::</span><span class=identifier>type</span><span class=special>&</span> <span class=identifier>name_index</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=identifier>name</span><span class=special>>();</span>
<span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>nth_index</span><span class=special><</span><span class=number>1</span><span class=special>>::</span><span class=identifier>type</span><span class=special>&</span> <span class=identifier>name_index2</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=number>1</span><span class=special>>();</span> <span class=comment>// same index</span>
</pre></blockquote>
<p>
Additionally, the <code>tag</code> class template accepts several tags for one
index, that we can use interchangeably: for instance, the specification of index #1
in the previous example can be rewritten to hold two different tags
<code>name</code> and <code>by_name</code>:
</p>
<blockquote><pre>
<span class=comment>// tags</span>
<span class=keyword>struct</span> <span class=identifier>name</span><span class=special>{};</span>
<span class=keyword>struct</span> <span class=identifier>by_name</span><span class=special>{};</span>
<span class=keyword>typedef</span> <span class=identifier>multi_index_container</span><span class=special><</span>
<span class=special>...</span>
<span class=identifier>ordered_non_unique</span><span class=special><</span>
<span class=identifier>tag</span><span class=special><</span><span class=identifier>name</span><span class=special>,</span><span class=identifier>by_name</span><span class=special>>,</span>
<span class=identifier>member</span><span class=special><</span><span class=identifier>employee</span><span class=special>,</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>,&</span><span class=identifier>employee</span><span class=special>::</span><span class=identifier>name</span><span class=special>></span>
<span class=special>></span>
<span class=special>...</span>
<span class=special>></span> <span class=identifier>employee_set</span><span class=special>;</span>
</pre></blockquote>
<h2><a name="iterator_access">Iterator access</a></h2>
<p>
Each index of a <code>multi_index_container</code> uses its own
iterator types, which are different from those of another indices. As is
the rule with STL containers, these iterators are defined as nested
types of the index:
</p>
<blockquote><pre>
<span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>nth_index</span><span class=special><</span><span class=number>1</span><span class=special>>::</span><span class=identifier>type</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it</span><span class=special>=</span>
<span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=number>1</span><span class=special>>().</span><span class=identifier>find</span><span class=special>(</span><span class=string>"Judy Smith"</span><span class=special>);</span>
</pre></blockquote>
<p>
This kind of expressions can be rendered more readable by
means of user-defined <code>typedef</code>s:
</p>
<blockquote><pre>
<span class=keyword>typedef</span> <span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>nth_index</span><span class=special><</span><span class=number>1</span><span class=special>>::</span><span class=identifier>type</span> <span class=identifier>employee_set_by_name</span><span class=special>;</span>
<span class=identifier>employee_set_by_name</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it</span><span class=special>=</span>
<span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=number>1</span><span class=special>>().</span><span class=identifier>find</span><span class=special>(</span><span class=string>"Judy Smith"</span><span class=special>);</span>
</pre></blockquote>
<p>
The iterators provided by every index are <i>constant</i>, that is, the elements they point to
cannot be mutated directly. This follows the interface of <code>std::set</code> for ordered
indices but might come as a surprise for other types such as sequenced indices, which are modeled after
<code>std::list</code>, where this limitation does not happen. This seemingly odd behavior
is imposed by the way <code>multi_index_container</code>s work; if elements were
allowed to be mutated indiscriminately, we could introduce inconsistencies
in the ordered indices of the <code>multi_index_container</code> without the container
being notified about it. Element modification is properly done by means of
<a href="#ord_updating">update operations</a> on any index.
</p>
<h2>
<a name="index_types">Index types</a>
</h2>
<p>
Currently, Boost.MultiIndex provides the following index types:
<ul>
<li>Ordered indices sort the elements like <code>std::set</code>s do and
provide a similar interface. There are <i>unique</i> and <i>non-unique</i>
variants: the former do not allow for duplicates, while the latter permit
them (like <code>std::multiset</code>.)</li>
<li>Sequenced indices are modeled after the semantics and interface of
<code>std::list</code>: they arrange the elements as if in a bidirectional
list.</li>
<li>Hashed indices provide fast access to the elements through hashing
tecnhiques, in a similar way as non-standard <code>hash_set</code>s provided
by some vendors. Recently, <i>unordered associative containers</i> have been
proposed as part of an extension of the C++ standard library known
in the standardization commitee as TR1. Hashed indices closely model this
proposal.</li>
<li>Random access indices provide an interface similar to that of
sequenced indices, and additionally feature random access iterators
and positional access to the elements.</li>
</ul>
The examples in the <a href="#intro">introduction</a> exercise ordered and sequenced
indices, which are the most commonly used; the other kinds of indices are presented
in the <a href="indices.html">index types</a> section of the tutorial.
</p>
<h3>
<a name="ord_indices">Ordered indices</a>
</h3>
<p>
Ordered indices sort the elements in a <code>multi_index_container</code> according
to a specified key and an associated comparison predicate. These indices can
be viewed as analogues of the standard container <code>std::set</code>, and in fact
they do replicate its interface, albeit with some minor differences dictated
by the general constraints of Boost.MultiIndex.
</p>
<h4>
<a name="unique_non_unique">Unique and non-unique variants</a>
</h4>
<p>
Ordered indices are classified into <i>unique</i>, which prohibit two
elements to have the same key value, and <i>non-unique</i> indices,
which allow for duplicates. Consider again the definition
</p>
<blockquote><pre>
<span class=keyword>typedef</span> <span class=identifier>multi_index_container</span><span class=special><</span>
<span class=identifier>employee</span><span class=special>,</span>
<span class=identifier>indexed_by</span><span class=special><</span>
<span class=identifier>ordered_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><</span><span class=identifier>employee</span><span class=special>></span> <span class=special>>,</span>
<span class=identifier>ordered_non_unique</span><span class=special><</span><span class=identifier>member</span><span class=special><</span><span class=identifier>employee</span><span class=special>,</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>,&</span><span class=identifier>employee</span><span class=special>::</span><span class=identifier>name</span><span class=special>></span> <span class=special>></span>
<span class=special>></span>
<span class=special>></span> <span class=identifier>employee_set</span><span class=special>;</span>
</pre></blockquote>
<p>
In this instantiation of <code>multi_index_container</code>, the first index is to be
treated as unique (since IDs are exclusive to each employee) and thus is declared using
<code>ordered_unique</code>, whereas the second index is non-unique (as the possibility exists
that say two John Smiths are hired in the same company), which is specified by the use
of <code>ordered_non_unique</code>.
</p>
<p>
The classification of ordered indices in unique and non-unique has an impact on which
elements are allowed to be inserted into a given <code>multi_index_container</code>; briefly put,
unique ordered indices mimic the behavior of <code>std::set</code>s while non-unique
ordered indices are similar to <code>std::multiset</code>s. For instance, an
<code>employee_set</code> can hold the objects <code>employee(0,"George Brown")</code>
and <code>employee(1,"George Brown")</code>, but will not accept the insertion of an
<code>employee</code> object whose ID coincides with that of some previously inserted
employee.
</p>
<p>
More than one unique index can be specified. For instance, if we augment
<code>employee</code> to include an additional member for the Social Security number,
which is reasonably treated as unique, the following captures this design:
</p>
<blockquote><pre>
<span class=keyword>struct</span> <span class=identifier>employee</span>
<span class=special>{</span>
<span class=keyword>int</span> <span class=identifier>id</span><span class=special>;</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span> <span class=identifier>name</span><span class=special>;</span>
<span class=keyword>int</span> <span class=identifier>ssnumber</span><span class=special>;</span>
<span class=identifier>employee</span><span class=special>(</span><span class=keyword>int</span> <span class=identifier>id</span><span class=special>,</span><span class=keyword>const</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>&</span> <span class=identifier>name</span><span class=special>,</span><span class=keyword>int</span> <span class=identifier>ssnumber</span><span class=special>):</span>
<span class=identifier>id</span><span class=special>(</span><span class=identifier>id</span><span class=special>),</span><span class=identifier>name</span><span class=special>(</span><span class=identifier>name</span><span class=special>),</span><span class=identifier>ssnumber</span><span class=special>(</span><span class=identifier>ssnumber</span><span class=special>){}</span>
<span class=keyword>bool</span> <span class=keyword>operator</span><span class=special><(</span><span class=keyword>const</span> <span class=identifier>employee</span><span class=special>&</span> <span class=identifier>e</span><span class=special>)</span><span class=keyword>const</span><span class=special>{</span><span class=keyword>return</span> <span class=identifier>id</span><span class=special><</span><span class=identifier>e</span><span class=special>.</span><span class=identifier>id</span><span class=special>;}</span>
<span class=special>};</span>
<span class=keyword>typedef</span> <span class=identifier>multi_index_container</span><span class=special><</span>
<span class=identifier>employee</span><span class=special>,</span>
<span class=identifier>indexed_by</span><span class=special><</span>
<span class=comment>// sort by employee::operator<</span>
<span class=identifier>ordered_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><</span><span class=identifier>employee</span><span class=special>></span> <span class=special>>,</span>
<span class=comment>// sort by less<string> on name</span>
<span class=identifier>ordered_non_unique</span><span class=special><</span><span class=identifier>member</span><span class=special><</span><span class=identifier>employee</span><span class=special>,</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>,&</span><span class=identifier>employee</span><span class=special>::</span><span class=identifier>name</span><span class=special>></span> <span class=special>>,</span>
<span class=comment>// sort by less<int> on ssnumber</span>
<span class=identifier>ordered_unique</span><span class=special><</span><span class=identifier>member</span><span class=special><</span><span class=identifier>employee</span><span class=special>,</span><span class=keyword>int</span><span class=special>,&</span><span class=identifier>employee</span><span class=special>::</span><span class=identifier>ssnumber</span><span class=special>></span> <span class=special>></span>
<span class=special>></span>
<span class=special>></span> <span class=identifier>employee_set</span><span class=special>;</span>
</pre></blockquote>
<h4>
<a name="ord_spec">Specification</a>
</h4>
<p>
Ordered index specifiers in <code>indexed_by</code> must conform to one of the
following syntaxes:
</p>
<blockquote><pre>
<span class=special>(</span><span class=identifier>ordered_unique</span> <span class=special>|</span> <span class=identifier>ordered_non_unique</span><span class=special>)
</span><span class=special><[</span><i>(tag)</i><span class=special>[,</span><i>(key extractor)</i><span class=special>[,</span><i>(comparison predicate)</i><span class=special>]]]></span>
<span class=special>(</span><span class=identifier>ordered_unique</span> <span class=special>|</span> <span class=identifier>ordered_non_unique</span><span class=special>)</span>
<span class=special><[</span><i>(key extractor)</i><span class=special>[,</span><i>(comparison predicate)</i><span class=special>]]></span>
</pre></blockquote>
<p>
The first optional argument is used if <a href="#tagging">tags</a> are associated
with the index. We now proceed to briefly discuss the remaining arguments
of an ordered index specifier.
</p>
<h4>
<a name="key_extraction">Key extraction</a>
</h4>
<p>
The first template parameter (or the second, if tags are supplied)
in the specification of an ordered index provides a <i>key extraction</i> predicate.
This predicate takes a whole element (in our example, a reference to an
<code>employee</code> object) and returns the piece of information by which
the sorting is performed. In most cases, one of the following two situations arises:
<ul>
<li>The whole element serves as the key, as is the case of the first index
in <code>employee_set</code>. The predefined
<a href="key_extraction.html#identity"><code>identity</code></a> predicate
can be used here as a key extractor; <code>identity</code> returns as the key the
same object passed as argument.</li>
<li>The comparison is performed on a particular data member of the element; this
closely follows the specification of indices on a column of a table in relational
databases. Boost.MultiIndex provides
<a href="key_extraction.html#member"><code>member</code></a>, which returns
as the key a member of the element specified by a given pointer.</li>
</ul>
As an example, consider again the definition of <code>employee_set</code>. The
definition of the first index:
</p>
<blockquote><pre>
<span class=identifier>ordered_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><</span><span class=identifier>employee</span><span class=special>></span> <span class=special>></span>
</pre></blockquote>
<p>
specifies by means of <code>identity</code> that <code>element</code>
objects themselves serve as key for this index. On the other hand, in the second
index:
</p>
<blockquote><pre>
<span class=identifier>ordered_non_unique</span><span class=special><</span><span class=identifier>member</span><span class=special><</span><span class=identifier>employee</span><span class=special>,</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>,&</span><span class=identifier>employee</span><span class=special>::</span><span class=identifier>name</span><span class=special>></span> <span class=special>></span>
</pre></blockquote>
<p>
we use <code>member</code> to extract the <code>name</code> part of the
<code>employee</code> object. The key type of this index is then
<code>std::string</code>.
</p>
<p>
Apart from <code>identity</code> and <code>member</code>, Boost.MultiIndex provides
several other predefined key extractors and powerful ways to combine them.
Key extractors can also be defined by the user.
Consult the <a href="key_extraction.html">key extraction section</a> of
the tutorial for a more detailed exposition of this topic.
</p>
<h4><a name="comparison_predicates">Comparison predicates</a></h4>
<p>
The last part of the specification of an ordered index is the associated
<i>comparison predicate</i>, which must order the keys in a less-than fashion.
These comparison predicates are not different from those used by STL containers like
<code>std::set</code>. By default (i.e. if no comparison predicate is provided),
an index with keys of type <code>key_type</code> sorts the elements by
<code>std::less<key_type></code>. Should other comparison criteria be needed,
they can be specified as an additional parameter in the index declaration:
</p>
<blockquote><pre>
<span class=comment>// define a multiply indexed set with indices by id and by name
// in reverse alphabetical order</span>
<span class=keyword>typedef</span> <span class=identifier>multi_index_container</span><span class=special><</span>
<span class=identifier>employee</span><span class=special>,</span>
<span class=identifier>indexed_by</span><span class=special><</span>
<span class=identifier>ordered_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><</span><span class=identifier>employee</span><span class=special>></span> <span class=special>>,</span> <span class=comment>// as usual</span>
<span class=identifier>ordered_non_unique</span><span class=special><</span>
<span class=identifier>member</span><span class=special><</span><span class=identifier>employee</span><span class=special>,</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>,&</span><span class=identifier>employee</span><span class=special>::</span><span class=identifier>name</span><span class=special>>,</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>greater</span><span class=special><</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>></span> <span class=comment>// default would be std::less<std::string></span>
<span class=special>></span>
<span class=special>></span>
<span class=special>></span> <span class=identifier>employee_set</span><span class=special>;</span>
</pre></blockquote>
<h4><a name="special_lookup">Special lookup operations</a></h4>
<p>
A given ordered index allows for lookup based on its key type, rather than the
whole element. For instance, to find Veronica Cruz in an
<code>employee_set</code> one would write:
</p>
<blockquote><pre>
<span class=identifier>employee_set</span> <span class=identifier>es</span><span class=special>;</span>
<span class=special>...</span>
<span class=keyword>typedef</span> <span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>index</span><span class=special><</span><span class=identifier>name</span><span class=special>>::</span><span class=identifier>type</span> <span class=identifier>employee_set_by_name</span><span class=special>;</span>
<span class=identifier>employee_set_by_name</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=identifier>name</span><span class=special>>().</span><span class=identifier>find</span><span class=special>(</span><span class=string>"Veronica Cruz"</span><span class=special>);</span>
</pre></blockquote>
<p>As a plus, Boost.MultiIndex provides lookup operations accepting search keys
different from the <code>key_type</code> of the index, which is a specially useful
facility when <code>key_type</code> objects are expensive to create. Ordered STL containers
fail to provide this functionality, which often leads to inelegant workarounds: consider for
instance the problem of determining the employees whose IDs fall in the range [0,100]. Given
that the key of <code>employee_set</code> index #0
is <code>employee</code> itself, on a first approach one would write the following:
</p>
<blockquote><pre>
<span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>p0</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>lower_bound</span><span class=special>(</span><span class=identifier>employee</span><span class=special>(</span><span class=number>0</span><span class=special>,</span><span class=string>""</span><span class=special>));</span>
<span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>p1</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>upper_bound</span><span class=special>(</span><span class=identifier>employee</span><span class=special>(</span><span class=number>100</span><span class=special>,</span><span class=string>""</span><span class=special>));</span>
</pre></blockquote>
<p>
Note however that <code>std::less<employee></code> actually only depends
on the IDs of the employees, so it would be more convenient to avoid
the creation of entire <code>employee</code> objects just for the sake of
their IDs. Boost.MultiIndex allows for this: define an appropriate
comparison predicate
</p>
<blockquote><pre>
<span class=keyword>struct</span> <span class=identifier>comp_id</span>
<span class=special>{</span>
<span class=comment>// compare an ID and an employee</span>
<span class=keyword>bool</span> <span class=keyword>operator</span><span class=special>()(</span><span class=keyword>int</span> <span class=identifier>x</span><span class=special>,</span><span class=keyword>const</span> <span class=identifier>employee</span><span class=special>&</span> <span class=identifier>e2</span><span class=special>)</span><span class=keyword>const</span><span class=special>{</span><span class=keyword>return</span> <span class=identifier>x</span><span class=special><</span><span class=identifier>e2</span><span class=special>.</span><span class=identifier>id</span><span class=special>;}</span>
<span class=comment>// compare an employee and an ID</span>
<span class=keyword>bool</span> <span class=keyword>operator</span><span class=special>()(</span><span class=keyword>const</span> <span class=identifier>employee</span><span class=special>&</span> <span class=identifier>e1</span><span class=special>,</span><span class=keyword>int</span> <span class=identifier>x</span><span class=special>)</span><span class=keyword>const</span><span class=special>{</span><span class=keyword>return</span> <span class=identifier>e1</span><span class=special>.</span><span class=identifier>id</span><span class=special><</span><span class=identifier>x</span><span class=special>;}</span>
<span class=special>};</span>
</pre></blockquote>
<p>and now write the search as</p>
<blockquote><pre>
<span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>p0</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>lower_bound</span><span class=special>(</span><span class=number>0</span><span class=special>,</span><span class=identifier>comp_id</span><span class=special>());</span>
<span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>p1</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>upper_bound</span><span class=special>(</span><span class=number>100</span><span class=special>,</span><span class=identifier>comp_id</span><span class=special>());</span>
</pre></blockquote>
<p>
Here we are not only passing IDs instead of <code>employee</code> objects:
an alternative comparison predicate is passed as well. In general, lookup operations
of ordered indices are overloaded to accept
<a href="../reference/ord_indices.html#set_operations"><i>compatible sorting
criteria</i></a>. The somewhat cumbersone definition of compatibility in this context
is given in the reference, but roughly speaking we say that a comparison predicate
<code>C1</code> is compatible with <code>C2</code> if any sequence sorted by
<code>C2</code> is also sorted with respect to <code>C1</code>.
The following shows a more interesting use of compatible predicates:
</p>
<blockquote><pre>
<span class=comment>// sorting by name's initial</span>
<span class=keyword>struct</span> <span class=identifier>comp_initial</span>
<span class=special>{</span>
<span class=keyword>bool</span> <span class=keyword>operator</span><span class=special>()(</span><span class=keyword>char</span> <span class=identifier>ch</span><span class=special>,</span><span class=keyword>const</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>&</span> <span class=identifier>s</span><span class=special>)</span><span class=keyword>const</span><span class=special>{</span>
<span class=keyword>if</span><span class=special>(</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>empty</span><span class=special>())</span><span class=keyword>return</span> <span class=keyword>false</span><span class=special>;</span>
<span class=keyword>return</span> <span class=identifier>ch</span><span class=special><</span><span class=identifier>s</span><span class=special>[</span><span class=number>0</span><span class=special>];</span>
<span class=special>}</span>
<span class=keyword>bool</span> <span class=keyword>operator</span><span class=special>()(</span><span class=keyword>const</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>&</span> <span class=identifier>s</span><span class=special>,</span><span class=keyword>char</span> <span class=identifier>ch</span><span class=special>)</span><span class=keyword>const</span><span class=special>{</span>
<span class=keyword>if</span><span class=special>(</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>empty</span><span class=special>())</span><span class=keyword>return</span> <span class=keyword>true</span><span class=special>;</span>
<span class=keyword>return</span> <span class=identifier>s</span><span class=special>[</span><span class=number>0</span><span class=special>]<</span><span class=identifier>ch</span><span class=special>;</span>
<span class=special>}</span>
<span class=special>};</span>
<span class=comment>// obtain first employee whose name begins with 'J' (ordered by name)</span>
<span class=keyword>typedef</span> <span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>index</span><span class=special><</span><span class=identifier>name</span><span class=special>>::</span><span class=identifier>type</span> <span class=identifier>employee_set_by_name</span><span class=special>;</span>
<span class=identifier>employee_set_by_name</span><span class=special>&</span> <span class=identifier>name_index</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=identifier>name</span><span class=special>>();</span>
<span class=identifier>employee_set_by_name</span><span class=special>::</span><span class=identifier>const_iterator</span> <span class=identifier>it</span><span class=special>=</span>
<span class=identifier>name_index</span><span class=special>.</span><span class=identifier>lower_bound</span><span class=special>(</span><span class=literal>'J'</span><span class=special>,</span><span class=identifier>comp_initial</span><span class=special>());</span>
</pre></blockquote>
<h4><a name="range">Retrieval of ranges</a></h4>
<p>
Range searching, i.e. the lookup of all elements in a given interval, is a very
frequent operation for which standard <code>lower_bound</code> and
<code>upper_bound</code> can be resorted to, though in a cumbersome manner.
For instance, the following code retrieves the elements of an
<code>multi_index_container<double></code> in the interval [100,200]:
</p>
<blockquote><pre>
<span class=keyword>typedef</span> <span class=identifier>multi_index_container</span><span class=special><</span><span class=keyword>double</span><span class=special>></span> <span class=identifier>double_set</span><span class=special>;</span>
<span class=comment>// note: default template parameters resolve to
// multi_index_container<double,indexed_by<unique<identity<double> > > >.</span>
<span class=identifier>double_set</span> <span class=identifier>s</span><span class=special>;</span>
<span class=special>...</span>
<span class=identifier>double_set</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it0</span><span class=special>=</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>lower_bound</span><span class=special>(</span><span class=number>100.0</span><span class=special>);</span>
<span class=identifier>double_set</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it1</span><span class=special>=</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>upper_bound</span><span class=special>(</span><span class=number>200.0</span><span class=special>);</span>
<span class=comment>// range [it0,it1) contains the elements in [100,200]</span>
</pre></blockquote>
<p>
Subtle changes to the code are required when strict inequalities are considered.
To retrieve the elements <i>greater</i> than 100 and <i>less</i> than 200, the
code has to be rewritten as
</p>
<blockquote><pre>
<span class=identifier>double_set</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it0</span><span class=special>=</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>upper_bound</span><span class=special>(</span><span class=number>100.0</span><span class=special>);</span>
<span class=identifier>double_set</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it1</span><span class=special>=</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>lower_bound</span><span class=special>(</span><span class=number>200.0</span><span class=special>);</span>
<span class=comment>// range [it0,it1) contains the elements in (100,200)</span>
</pre></blockquote>
<p>
To add to this complexity, the careful programmer has to take into account
that the lower and upper bounds of the interval searched be compatible: for
instance, if the lower bound is 200 and the upper bound is 100, the iterators
<code>it0</code> and <code>it1</code> produced by the code above will be in reverse
order, with possibly catastrophic results if a traversal from <code>it0</code>
to <code>it1</code> is tried. All these details make range searching a tedious
and error prone task.
</p>
<p>
The <a href="../reference/ord_indices.html#range_operations"><code>range</code></a>
member function, often in combination with
<a href="../../../../libs/lambda/index.html">Boost.Lambda</a> expressions, can
greatly help alleviate this situation:
</p>
<blockquote><pre>
<span class=keyword>using</span> <span class=keyword>namespace</span> <span class=identifier>boost</span><span class=special>::</span><span class=identifier>lambda</span><span class=special>;</span>
<span class=keyword>typedef</span> <span class=identifier>multi_index_container</span><span class=special><</span><span class=keyword>double</span><span class=special>></span> <span class=identifier>double_set</span><span class=special>;</span>
<span class=identifier>double_set</span> <span class=identifier>s</span><span class=special>;</span>
<span class=special>...</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>pair</span><span class=special><</span><span class=identifier>double_set</span><span class=special>::</span><span class=identifier>iterator</span><span class=special>,</span><span class=identifier>double_set</span><span class=special>::</span><span class=identifier>iterator</span><span class=special>></span> <span class=identifier>p</span><span class=special>=</span>
<span class=identifier>s</span><span class=special>.</span><span class=identifier>range</span><span class=special>(</span><span class=number>100.0</span><span class=special><=</span><span class=identifier>_1</span><span class=special>,</span><span class=identifier>_1</span><span class=special><=</span><span class=number>200</span><span class=special>);</span> <span class=comment>// 100<= x <=200</span>
<span class=special>...</span>
<span class=identifier>p</span><span class=special>=</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>range</span><span class=special>(</span><span class=number>100.0</span><span class=special><</span><span class=identifier>_1</span><span class=special>,</span><span class=identifier>_1</span><span class=special><</span><span class=number>200</span><span class=special>);</span> <span class=comment>// 100< x < 200</span>
<span class=special>...</span>
<span class=identifier>p</span><span class=special>=</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>range</span><span class=special>(</span><span class=number>100.0</span><span class=special><=</span><span class=identifier>_1</span><span class=special>,</span><span class=identifier>_1</span><span class=special><</span><span class=number>200</span><span class=special>);</span> <span class=comment>// 100<= x < 200</span>
</pre></blockquote>
<p>
<code>range</code> simply accepts predicates specifying the lower and upper bounds
of the interval searched. Please consult the reference for a detailed explanation
of the permissible predicates passed to <code>range</code>.</p>
<p>
One or both bounds can be omitted with the special <code>unbounded</code> marker:
</p>
<blockquote><pre>
<span class=identifier>p</span><span class=special>=</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>range</span><span class=special>(</span><span class=number>100.0</span><span class=special><=</span><span class=identifier>_1</span><span class=special>,</span><span class=identifier>unbounded</span><span class=special>);</span> <span class=comment>// 100 <= x</span>
<span class=identifier>p</span><span class=special>=</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>range</span><span class=special>(</span><span class=identifier>unbounded</span><span class=special>,</span><span class=identifier>_1</span><span class=special><</span><span class=number>200.0</span><span class=special>);</span> <span class=comment>// x < 200</span>
<span class=identifier>p</span><span class=special>=</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>range</span><span class=special>(</span><span class=identifier>unbounded</span><span class=special>,</span><span class=identifier>unbounded</span><span class=special>);</span> <span class=comment>// equiv. to std::make_pair(s.begin(),s.end())</span>
</pre></blockquote>
<h4><a name="ord_updating">Updating</a></h4>
<p>
The <a href="../reference/ord_indices.html#replace"><code>replace</code></a> member function
performs in-place replacement of a given element as the following example shows:
</p>
<blockquote><pre>
<span class=keyword>typedef</span> <span class=identifier>index</span><span class=special><</span><span class=identifier>employee_set</span><span class=special>,</span><span class=identifier>name</span><span class=special>>::</span><span class=identifier>type</span> <span class=identifier>employee_set_by_name</span><span class=special>;</span>
<span class=identifier>employee_set_by_name</span><span class=special>&</span> <span class=identifier>name_index</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=identifier>name</span><span class=special>>();</span>
<span class=identifier>employee_set_by_name</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it</span><span class=special>=</span><span class=identifier>name_index</span><span class=special>.</span><span class=identifier>find</span><span class=special>(</span><span class=string>"Anna Jones"</span><span class=special>);</span>
<span class=identifier>employee</span> <span class=identifier>anna</span><span class=special>=*</span><span class=identifier>it</span><span class=special>;</span>
<span class=identifier>anna</span><span class=special>.</span><span class=identifier>name</span><span class=special>=</span><span class=string>"Anna Smith"</span><span class=special>;</span> <span class=comment>// she just got married to Calvin Smith</span>
<span class=identifier>name_index</span><span class=special>.</span><span class=identifier>replace</span><span class=special>(</span><span class=identifier>it</span><span class=special>,</span><span class=identifier>anna</span><span class=special>);</span> <span class=comment>// update her record</span>
</pre></blockquote>
<p>
<code>replace</code> performs this substitution in such a manner that:
<ul>
<li>The complexity is constant time if the changed element retains its original
order with respect to all indices; it is logarithmic otherwise.
<li>Iterator and reference validity are preserved.
<li>The operation is strongly exception-safe, i.e. the <code>multi_index_container</code>
remains unchanged if some exception (originated by the system or the user's data
types) is thrown.
</ul>
<code>replace</code> is a powerful operation not provided by standard STL
containers, and one that is specially handy when strong exception-safety is
required.
</p>
<p>
The observant reader might have noticed that the convenience of <code>replace</code>
comes at a cost: namely the whole element has to be copied <i>twice</i> to do
the updating (when retrieving it and inside <code>replace</code>). If elements
are expensive to copy, this may be quite a computational cost for the modification
of just a tiny part of the object. To cope with this situation, Boost.MultiIndex
provides an alternative updating mechanism called
<a href="../reference/ord_indices.html#modify"><code>modify</code></a>:
</p>
<blockquote><pre>
<span class=keyword>struct</span> <span class=identifier>change_name</span>
<span class=special>{</span>
<span class=identifier>change_name</span><span class=special>(</span><span class=keyword>const</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>&</span> <span class=identifier>new_name</span><span class=special>):</span><span class=identifier>new_name</span><span class=special>(</span><span class=identifier>new_name</span><span class=special>){}</span>
<span class=keyword>void</span> <span class=keyword>operator</span><span class=special>()(</span><span class=identifier>employee</span><span class=special>&</span> <span class=identifier>e</span><span class=special>)</span>
<span class=special>{</span>
<span class=identifier>e</span><span class=special>.</span><span class=identifier>name</span><span class=special>=</span><span class=identifier>new_name</span><span class=special>;</span>
<span class=special>}</span>
<span class=keyword>private</span><span class=special>:</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span> <span class=identifier>new_name</span><span class=special>;</span>
<span class=special>};</span>
<span class=special>...</span>
<span class=keyword>typedef</span> <span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>index</span><span class=special><</span><span class=identifier>name</span><span class=special>>::</span><span class=identifier>type</span> <span class=identifier>employee_set_by_name</span><span class=special>;</span>
<span class=identifier>employee_set_by_name</span><span class=special>&</span> <span class=identifier>name_index</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=identifier>name</span><span class=special>>();</span>
<span class=identifier>employee_set_by_name</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it</span><span class=special>=</span><span class=identifier>name_index</span><span class=special>.</span><span class=identifier>find</span><span class=special>(</span><span class=string>"Anna Jones"</span><span class=special>);</span>
<span class=identifier>name_index</span><span class=special>.</span><span class=identifier>modify</span><span class=special>(</span><span class=identifier>it</span><span class=special>,</span><span class=identifier>change_name</span><span class=special>(</span><span class=string>"Anna Smith"</span><span class=special>));</span>
</pre></blockquote>
<p><code>modify</code> accepts a functor (or pointer to function) that is
passed a reference to the element to be changed, thus eliminating the need
for spurious copies. Like <code>replace</code>, <code>modify</code> does preserve
the internal orderings of all the indices of the <code>multi_index_container</code>.
However, the semantics of <code>modify</code> is not entirely equivalent to
<code>replace</code>. Consider what happens if a collision occurs as a result
of modifying the element, i.e. the modified element clashes with another with
respect to some unique ordered index. In the case of <code>replace</code>, the
original value is kept and the method returns without altering the container, but
<code>modify</code> cannot afford such an approach, since the modifying functor
leaves no trace of the previous value of the element. Integrity constraints
thus lead to the following policy: when a collision happens in the
process of calling <code>modify</code>, the element is erased and the method returns
<code>false</code>. There is a further version of <code>modify</code> which
accepts a <i>rollback</i> functor to undo the changes in case of collision:
</p>
<blockquote><pre>
<span class=keyword>struct</span> <span class=identifier>change_id</span>
<span class=special>{</span>
<span class=identifier>change_id</span><span class=special>(</span><span class=keyword>int</span> <span class=identifier>new_id</span><span class=special>):</span><span class=identifier>new_id</span><span class=special>(</span><span class=identifier>new_id</span><span class=special>){}</span>
<span class=keyword>void</span> <span class=keyword>operator</span><span class=special>()(</span><span class=identifier>employee</span><span class=special>&</span> <span class=identifier>e</span><span class=special>)</span>
<span class=special>{</span>
<span class=identifier>e</span><span class=special>.</span><span class=identifier>id</span><span class=special>=</span><span class=identifier>new_id</span><span class=special>;</span>
<span class=special>}</span>
<span class=keyword>private</span><span class=special>:</span>
<span class=keyword>int</span> <span class=identifier>new_id</span><span class=special>;</span>
<span class=special>};</span>
<span class=special>...</span>
<span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it</span><span class=special>=...</span>
<span class=keyword>int</span> <span class=identifier>old_id</span><span class=special>=</span><span class=identifier>it</span><span class=special>-></span><span class=identifier>id</span><span class=special>;</span> <span class=comment>// keep the original id
// try to modify the id, restore it in case of collisions</span>
<span class=identifier>es</span><span class=special>.</span><span class=identifier>modify</span><span class=special>(</span><span class=identifier>it</span><span class=special>,</span><span class=identifier>change_id</span><span class=special>(</span><span class=number>321</span><span class=special>),</span><span class=identifier>change_id</span><span class=special>(</span><span class=identifier>old_id</span><span class=special>));</span>
</pre></blockquote>
<p>In the example, <code>change_id(old_id)</code> is invoked to restore the original
conditions when the modification results in collisions with some other element.
The differences in behavior between <code>replace</code>, <code>modify</code> and
<code>modify</code> with rollback have to be considered by the programmer on a
case-by-case basis to determine the best updating mechanism.
</p>
<p align="center">
<table cellspacing="0">
<caption><b>Behavior of the different updating mechanisms.</b></caption>
<tr>
<th align="center">updating function</th>
<th>If there is a collision...</th>
</tr>
<tr>
<td align="center"><code>replace(it,x)</code></td>
<td>replacement does not take place.</td>
</tr>
<tr class="odd_tr">
<td align="center"><code>modify(it,mod)</code></td>
<td>the element is erased.</td>
</tr>
<tr>
<td align="center"><code>modify(it,mod,back)</code></td>
<td><code>back</code> is used to restore the original conditions.
(If <code>back</code> throws, the element is erased.)
</td>
</tr>
</table>
</p>
<p>
Key-based versions of <code>modify</code>, named
<a href="../reference/ord_indices.html#modify_key"><code>modify_key</code></a>, are
provided as well. In this case, the modifying functors are passed a reference to
the <code>key_type</code> part of the element instead of the whole object.
</p>
<blockquote><pre>
<span class=keyword>struct</span> <span class=identifier>change_str</span>
<span class=special>{</span>
<span class=identifier>change_str</span><span class=special>(</span><span class=keyword>const</span> <span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>&</span> <span class=identifier>new_str</span><span class=special>):</span><span class=identifier>new_str</span><span class=special>(</span><span class=identifier>new_str</span><span class=special>){}</span>
<span class=comment>// note this is passed a string, not an employee</span>
<span class=keyword>void</span> <span class=keyword>operator</span><span class=special>()(</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span><span class=special>&</span> <span class=identifier>str</span><span class=special>)</span>
<span class=special>{</span>
<span class=identifier>str</span><span class=special>=</span><span class=identifier>new_str</span><span class=special>;</span>
<span class=special>}</span>
<span class=keyword>private</span><span class=special>:</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>string</span> <span class=identifier>new_str</span><span class=special>;</span>
<span class=special>};</span>
<span class=special>...</span>
<span class=keyword>typedef</span> <span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>index</span><span class=special><</span><span class=identifier>name</span><span class=special>>::</span><span class=identifier>type</span> <span class=identifier>employee_set_by_name</span><span class=special>;</span>
<span class=identifier>employee_set_by_name</span><span class=special>&</span> <span class=identifier>name_index</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=identifier>name</span><span class=special>>();</span>
<span class=identifier>employee_set_by_name</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it</span><span class=special>=</span><span class=identifier>name_index</span><span class=special>.</span><span class=identifier>find</span><span class=special>(</span><span class=string>"Anna Jones"</span><span class=special>);</span>
<span class=identifier>name_index</span><span class=special>.</span><span class=identifier>modify_key</span><span class=special>(</span><span class=identifier>it</span><span class=special>,</span><span class=identifier>change_str</span><span class=special>(</span><span class=string>"Anna Smith"</span><span class=special>));</span>
</pre></blockquote>
<p>
Like <code>modify</code>, there are versions of <code>modify_key</code> with and
without rollback. <code>modify</code> and
<code>modify_key</code> are particularly well suited to use in conjunction to
<a href="../../../../libs/lambda/index.html">Boost.Lambda</a>
for defining the modifying functors:
</p>
<blockquote><pre>
<span class=keyword>using</span> <span class=keyword>namespace</span> <span class=identifier>boost</span><span class=special>::</span><span class=identifier>lambda</span><span class=special>;</span>
<span class=keyword>typedef</span> <span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>index</span><span class=special><</span><span class=identifier>name</span><span class=special>>::</span><span class=identifier>type</span> <span class=identifier>employee_set_by_name</span><span class=special>;</span>
<span class=identifier>employee_set_by_name</span><span class=special>&</span> <span class=identifier>name_index</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=identifier>name</span><span class=special>>();</span>
<span class=identifier>employee_set_by_name</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it</span><span class=special>=</span><span class=identifier>name_index</span><span class=special>.</span><span class=identifier>find</span><span class=special>(</span><span class=string>"Anna Jones"</span><span class=special>);</span>
<span class=identifier>name_index</span><span class=special>.</span><span class=identifier>modify_key</span><span class=special>(</span><span class=identifier>it</span><span class=special>,</span><span class=identifier>_1</span><span class=special>=</span><span class=string>"Anna Smith"</span><span class=special>);</span>
</pre></blockquote>
<p>
<code>modify_key</code> requires that the key extractor be of
a special type called
<a href="key_extraction.html#read_write_key_extractors">read/write</a>:
this is usually, but not always, the case.
</p>
<h3>
<a name="seq_indices">Sequenced indices</a>
</h3>
<p>
Unlike ordered indices, sequenced indices do not impose a fixed order on the
elements: instead, these can be arranged in any position on the sequence, in the
same way as <code>std::list</code> permits. The interface of sequenced indices
is thus designed upon that of <code>std::list</code>; nearly every operation
provided in the standard container is replicated here, occasionally with changes
in the syntax and/or semantics to cope with the constraints imposed by
Boost.MultiIndex. An important difference, commented <a href="#iterator_access">above</a>,
is the fact that the values pointed to by sequenced index iterators are treated
as <i>constant</i>:
</p>
<blockquote><pre>
<span class=identifier>multi_index_container</span><span class=special><</span>
<span class=keyword>int</span><span class=special>,</span>
<span class=identifier>indexed_by</span><span class=special><</span><span class=identifier>sequenced</span><span class=special><></span> <span class=special>></span>
<span class=special>></span> <span class=identifier>s</span><span class=special>;</span> <span class=comment>// list-like container</span>
<span class=identifier>s</span><span class=special>.</span><span class=identifier>push_front</span><span class=special>(</span><span class=number>0</span><span class=special>);</span>
<span class=special>*(</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>begin</span><span class=special>())=</span><span class=number>1</span><span class=special>;</span> <span class=comment>// ERROR: the element cannot be changed</span>
</pre></blockquote>
<p>
As with any other type of index, element modification
can nevertheless be done by means of
<a href="#seq_updating">update operations</a>.
</p>
<p>
Consider a <code>multi_index_container</code> with two or more indices, one of them
of sequenced type. If an element is inserted through another index,
then it will be automatically appended to the end of the sequenced index.
An example will help to clarify this:
</p>
<blockquote><pre>
<span class=identifier>multi_index_container</span><span class=special><</span>
<span class=keyword>int</span><span class=special>,</span>
<span class=identifier>indexed_by</span><span class=special><</span>
<span class=identifier>sequenced</span><span class=special><>,</span> <span class=comment>// sequenced type</span>
<span class=identifier>ordered_unique</span><span class=special><</span><span class=identifier>identity</span><span class=special><</span><span class=keyword>int</span><span class=special>></span> <span class=special>></span> <span class=comment>// another index</span>
<span class=special>></span>
<span class=special>></span> <span class=identifier>s</span><span class=special>;</span>
<span class=identifier>s</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=number>1</span><span class=special>>().</span><span class=identifier>insert</span><span class=special>(</span><span class=number>1</span><span class=special>);</span> <span class=comment>// insert 1 through index #1</span>
<span class=identifier>s</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=number>1</span><span class=special>>().</span><span class=identifier>insert</span><span class=special>(</span><span class=number>0</span><span class=special>);</span> <span class=comment>// insert 0 through index #1
// list elements through sequenced index #0</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>copy</span><span class=special>(</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>begin</span><span class=special>(),</span><span class=identifier>s</span><span class=special>.</span><span class=identifier>end</span><span class=special>(),</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>ostream_iterator</span><span class=special><</span><span class=keyword>int</span><span class=special>>(</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>cout</span><span class=special>));</span>
<span class=comment>// result: 1 0</span>
</pre></blockquote>
<p>
Thus the behavior of sequenced indices when insertions are not made through
them is to preserve insertion order.
</p>
<h4><a name="seq_spec">Specification</a></h4>
<p>
Sequenced indices are specified with the <code>sequenced</code> construct:
</p>
<blockquote><pre>
<span class=identifier>sequenced</span><span class=special><[</span><i>(tag)</i><span class=special>]></span>
</pre></blockquote>
<p>
The <a href="#tagging">tag</a> parameter is optional.
</p>
<h4><a name="list_ops">List operations</a></h4>
<p>
As mentioned before, sequenced indices mimic the interface of
<code>std::list</code>, and most of the original operations therein are
provided as well. The semantics and complexity of these operations, however,
do not always coincide with those of the standard container. Differences
result mainly from the fact that insertions into a sequenced index are not
guaranteed to succeed, due to the possible banning by other indices
of the <code>multi_index_container</code>. Consult the
<a href="../reference/seq_indices.html">reference</a> for further details.
</p>
<h4><a name="seq_updating">Updating</a></h4>
<p>
Like ordered indices, sequenced indices provide
<a href="../reference/seq_indices.html#replace"><code>replace</code></a> and
<a href="../reference/seq_indices.html#modify"><code>modify</code></a>
operations, with identical functionality. There is however no analogous
<code>modify_key</code>, since sequenced indices are not key-based.
</p>
<h2><a name="projection">Projection of iterators</a></h2>
<p>
Given indices <code>i1</code> and <code>i2</code> on the same <code>multi_index_container</code>,
<a href="../reference/multi_index_container.html#projection"><code>project</code></a> can be used to
retrieve an <code>i2</code>-iterator from an <code>i1</code>-iterator, both of them
pointing to the same element of the container. This functionality allows the programmer to
move between different indices of the same <code>multi_index_container</code> when performing
elaborate operations:
</p>
<blockquote><pre>
<span class=keyword>typedef</span> <span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>index</span><span class=special><</span><span class=identifier>name</span><span class=special>>::</span><span class=identifier>type</span> <span class=identifier>employee_set_by_name</span><span class=special>;</span>
<span class=identifier>employee_set_by_name</span><span class=special>&</span> <span class=identifier>name_index</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=identifier>name</span><span class=special>>();</span>
<span class=comment>// list employees by ID starting from Robert Brown's ID</span>
<span class=identifier>employee_set_by_name</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it1</span><span class=special>=</span><span class=identifier>name_index</span><span class=special>.</span><span class=identifier>find</span><span class=special>(</span><span class=string>"Robert Brown"</span><span class=special>);</span>
<span class=comment>// obtain an iterator of index #0 from it1</span>
<span class=identifier>employee_set</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it2</span><span class=special>=</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>project</span><span class=special><</span><span class=number>0</span><span class=special>>(</span><span class=identifier>it1</span><span class=special>);</span>
<span class=identifier>std</span><span class=special>::</span><span class=identifier>copy</span><span class=special>(</span><span class=identifier>it2</span><span class=special>,</span><span class=identifier>es</span><span class=special>.</span><span class=identifier>end</span><span class=special>(),</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>ostream_iterator</span><span class=special><</span><span class=identifier>employee</span><span class=special>>(</span><span class=identifier>std</span><span class=special>::</span><span class=identifier>cout</span><span class=special>));</span>
</pre></blockquote>
<p>
A slightly more interesting example:
</p>
<blockquote><pre>
<span class=identifier>text_container</span> <span class=identifier>tc</span><span class=special>;</span>
<span class=comment>// get a view to index #1 (ordered index on the words)</span>
<span class=identifier>text_container</span><span class=special>::</span><span class=identifier>nth_index</span><span class=special><</span><span class=number>1</span><span class=special>>::</span><span class=identifier>type</span><span class=special>&</span> <span class=identifier>sorted_index</span><span class=special>=</span><span class=identifier>tc</span><span class=special>.</span><span class=identifier>get</span><span class=special><</span><span class=number>1</span><span class=special>>();</span>
<span class=comment>// prepend "older" to all occurrences of "sister"</span>
<span class=identifier>text_container</span><span class=special>::</span><span class=identifier>nth_index</span><span class=special><</span><span class=number>1</span><span class=special>>::</span><span class=identifier>type</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it1</span><span class=special>=</span>
<span class=identifier>sorted_index</span><span class=special>.</span><span class=identifier>lower_bound</span><span class=special>(</span><span class=string>"sister"</span><span class=special>);</span>
<span class=keyword>while</span><span class=special>(</span><span class=identifier>it1</span><span class=special>!=</span><span class=identifier>sorted_index</span><span class=special>.</span><span class=identifier>end</span><span class=special>()&&*</span><span class=identifier>it1</span><span class=special>==</span><span class=string>"sister"</span><span class=special>){</span>
<span class=comment>// convert to an iterator to the sequenced index</span>
<span class=identifier>text_container</span><span class=special>::</span><span class=identifier>iterator</span> <span class=identifier>it2</span><span class=special>=</span><span class=identifier>tc</span><span class=special>.</span><span class=identifier>project</span><span class=special><</span><span class=number>0</span><span class=special>>(</span><span class=identifier>it1</span><span class=special>);</span>
<span class=identifier>tc</span><span class=special>.</span><span class=identifier>insert</span><span class=special>(</span><span class=identifier>it2</span><span class=special>,</span><span class=string>"older"</span><span class=special>);</span>
<span class=special>++</span><span class=identifier>it1</span><span class=special>;</span>
<span class=special>}</span>
</pre></blockquote>
<p>
When provided, <code>project</code> can also be used with
<a href="#tagging">tags</a>.
</p>
<h2><a name="complexity">Complexity and exception safety</a></h2>
<p>
<code>multi_index_container</code> provides the same complexity and exception safety
guarantees as the equivalent STL containers do. Iterator and reference validity
is preserved in the face of insertions, even for replace and modify operations.
</p>
<p>
Appropriate instantiations of <code>multi_index_container</code> can in fact simulate
<code>std::set</code>, <code>std::multiset</code> and (with more limitations)
<code>std::list</code>, as shown in the
<a href="techniques.html#emulate_std_containers">techniques</a>
section. These simulations are as nearly as efficient as the original STL
containers; consult the <a href="../reference/index.html">reference</a> for further
information on complexity guarantees and the
<a href="../performance.html">performance section</a> for practical measurements of
efficiency.
</p>
<hr>
<div class="prev_link"><a href="index.html"><img src="../prev.gif" alt="tutorial" border="0"><br>
Boost.MultiIndex Tutorial
</a></div>
<div class="up_link"><a href="index.html"><img src="../up.gif" alt="Boost.MultiIndex tutorial" border="0"><br>
Boost.MultiIndex tutorial
</a></div>
<div class="next_link"><a href="indices.html"><img src="../next.gif" alt="index types" border="0"><br>
Index types
</a></div><br clear="all" style="clear: all;">
<br>
<p>Revised November 11th 2014</p>
<p>© Copyright 2003-2014 Joaquín M López Muñoz.
Distributed under the Boost Software
License, Version 1.0. (See accompanying file <a href="../../../../LICENSE_1_0.txt">
LICENSE_1_0.txt</a> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt">
http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</body>
</html>
|
commotionwireless.net/es/developer/api/commotiond/html/structsvl__crypto__ctx-members.html | opentechinstitute/commotion-docs | ---
layout: doxygen
title: API Reference - commotiond
site_section: developers
categories:
created: 2014-06-06 13:22:04.584366
changed: 2014-06-06 13:22:04.584366
post_author: Commotion
lang: en
---
<div id="doxygen">
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<!-- end header part -->
<!-- Generated by Doxygen 1.8.7 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<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 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 class="header">
<div class="headertitle">
<div class="title">svl_crypto_ctx Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>keyring_file</b> (defined in <a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a>)</td><td class="entry"><a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>keyring_len</b> (defined in <a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a>)</td><td class="entry"><a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>keyring_path</b> (defined in <a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a>)</td><td class="entry"><a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>msg</b> (defined in <a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a>)</td><td class="entry"><a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>msg_len</b> (defined in <a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a>)</td><td class="entry"><a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>sas_private</b> (defined in <a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a>)</td><td class="entry"><a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>sas_public</b> (defined in <a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a>)</td><td class="entry"><a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>sid</b> (defined in <a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a>)</td><td class="entry"><a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>signature</b> (defined in <a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a>)</td><td class="entry"><a class="el" href="structsvl__crypto__ctx.html">svl_crypto_ctx</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<!-- HTML footer for doxygen 1.8.6-->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jun 6 2014 13:22:06 for commotiond by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.7
</small></address>
<script type="text/javascript" src="dynsections.js"></script>
</div>
|
cpp/lib/PyQt4/doc/html/qxmlnamepool.html | barryrobison/arsenalsuite | <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html><head><title>QXmlNamePool Class Reference</title><style>h3.fn,span.fn { margin-left: 1cm; text-indent: -1cm }
a:link { color: #004faf; text-decoration: none }
a:visited { color: #672967; text-decoration: none }
td.postheader { font-family: sans-serif }
tr.address { font-family: sans-serif }
body { background: #ffffff; color: black; }
</style></head><body><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr /><td align="left" valign="top" width="32"><img align="left" border="0" height="32" src="images/rb-logo.png" width="32" /></td><td width="1">  </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a> · <a href="classes.html"><font color="#004faf">All Classes</font></a> · <a href="modules.html"><font color="#004faf">Modules</font></a></td></table><h1 align="center">QXmlNamePool Class Reference<br /><sup><sup>[<a href="qtxmlpatterns.html">QtXmlPatterns</a> module]</sup></sup></h1><p>The QXmlNamePool class is a table of shared strings referenced
by instances of <a href="qxmlname.html">QXmlName</a>. <a href="#details">More...</a></p>
<h3>Methods</h3><ul><li><div class="fn" /><b><a href="qxmlnamepool.html#QXmlNamePool">__init__</a></b> (<i>self</i>)</li><li><div class="fn" /><b><a href="qxmlnamepool.html#QXmlNamePool-2">__init__</a></b> (<i>self</i>, QXmlNamePool <i>other</i>)</li></ul><a name="details" /><hr /><h2>Detailed Description</h2><p>The QXmlNamePool class is a table of shared strings referenced
by instances of <a href="qxmlname.html">QXmlName</a>.</p>
<p>QXmlNamePool is used to optimize operations on instances of
<a href="qxmlname.html">QXmlName</a>. An instance of <a href="qxmlname.html">QXmlName</a> represents an XML name in a way that
allows the XML name to be compared and passed around efficiently.
The efficiency is achieved by storing the strings comprising the
XML names in an instance of QXmlNamePool, where they are mapped to
binary identifiers, which are then packed into a key which is
stored in the <a href="qxmlname.html">QXmlName</a>.</p>
<p>This means that each instance of <a href="qxmlname.html">QXmlName</a> is tied to the name pool it was
created with, and that name pool should be kept in scope and used
to create all instances of <a href="qxmlname.html">QXmlName</a>
that might be compared. Note also that the name pool is required if
you must reconstitute the <a href="qxmlname.html">QXmlName</a> as
text, or if you must access any of its component strings, so
although instances of <a href="qxmlname.html">QXmlName</a> can be
compared without reference to a name pool, the name pool must be
kept in scope if the name's strings must be accessed later.</p>
<hr /><h2>Method Documentation</h2><h3 class="fn"><a name="QXmlNamePool" />QXmlNamePool.__init__ (<i>self</i>)</h3><p>Constructs an empty name pool.</p>
<h3 class="fn"><a name="QXmlNamePool-2" />QXmlNamePool.__init__ (<i>self</i>, <a href="qxmlnamepool.html">QXmlNamePool</a> <i>other</i>)</h3><p>Constructs a copy of the <i>other</i> name pool.</p>
<address><hr /><div align="center"><table border="0" cellspacing="0" width="100%"><tr class="address"><td align="left" width="25%">PyQt snapshot-4.8.6-4726879563e5 for X11</td><td align="center" width="50%">Copyright © <a href="http://www.riverbankcomputing.com">Riverbank Computing Ltd</a> and <a href="http://www.qtsoftware.com">Nokia</a> 2011</td><td align="right" width="25%">Qt 4.7.4</td></tr></table></div></address></body></html> |
documentation/doxy/output/fannie/html/class_gum_pos_layer-members.html | FranklinCoop/IS4C | <!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.6"/>
<title>CORE POS - Fannie: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() {
if ($('.searchresults').length > 0) { searchBox.DOMSearchField().focus(); }
});
</script>
<link rel="search" href="search-opensearch.php?v=opensearch.xml" type="application/opensearchdescription+xml" title="CORE POS - Fannie"/>
<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">CORE POS - Fannie
</div>
<div id="projectbrief">The CORE POS back end</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.6 -->
<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="pages.html"><span>Related Pages</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<div class="left">
<form id="FSearchBox" action="search.php" method="get">
<img id="MSearchSelect" src="search/mag.png" alt=""/>
<input type="text" id="MSearchField" name="query" value="Search" size="20" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"/>
</form>
</div><div class="right"></div>
</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 class="header">
<div class="headertitle">
<div class="title">GumPosLayer Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="class_gum_pos_layer.html">GumPosLayer</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="class_gum_pos_layer.html#aa8f312d8c6dadbfa4d6f949f7fe5c541">getCustdata</a>($card_no)</td><td class="entry"><a class="el" href="class_gum_pos_layer.html">GumPosLayer</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr><td class="entry"><a class="el" href="class_gum_pos_layer.html#a69bc33bbb3c0974295e2f3c7e69847f5">getMeminfo</a>($card_no)</td><td class="entry"><a class="el" href="class_gum_pos_layer.html">GumPosLayer</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_gum_pos_layer.html#ac64325bc7469c8d4301c9a8c4fcb8872">writeTransaction</a>($emp_no, $register_no, $lines)</td><td class="entry"><a class="el" href="class_gum_pos_layer.html">GumPosLayer</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Fri Sep 2 2016 11:31:07 for CORE POS - Fannie by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.6
</small></address>
</body>
</html>
|
giac/giac-1.5.0/doc/el/cascmd_el/cascmd_el206.html | hiplayer/giac | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<META name="GENERATOR" content="hevea 1.10">
<LINK rel="stylesheet" type="text/css" href="cascmd_el.css">
<TITLE>Πολυώνυμο Lagrange : lagrange interp</TITLE>
</HEAD>
<BODY >
<A HREF="cascmd_el205.html"><IMG SRC="previous_motif.gif" ALT="Previous"></A>
<A HREF="index.html"><IMG SRC="contents_motif.gif" ALT="Up"></A>
<A HREF="cascmd_el207.html"><IMG SRC="next_motif.gif" ALT="Next"></A>
<HR>
<H3 CLASS="subsection"><A NAME="htoc231">1.24.26</A> Πολυώνυμο <TT>Lagrange</TT><TT> : </TT><TT> lagrange interp</TT></H3><P><A NAME="@default386"></A><A NAME="@default387"></A>
<TT>lagrange</TT> παίρνει ως όρισμα 2 λίστες μεγέθους
<TT>n</TT> (αντίστοιχα έναν
πίνακα 2 γραμμών και
<TT>n</TT> στηλών) και το όνομα μιας μεταβλητής
<TT>var</TT> (από προεπιλογή
<TT>x</TT>).<BR>
Η 1η λίστα (αντίστοιχα γραμμή) αντιστοιχεί στις τιμές της τετμημένης <I>x</I><SUB><I>k</I></SUB> (<I>k</I>=1..<I>n</I>),
και η 2η λίστα (αντίστοιχα γραμμή) αντιστοιχεί στις τιμές της τεταγμένης <I>y</I><SUB><I>k</I></SUB>
(<I>k</I>=1..<I>n</I>).<BR>
<TT>lagrange</TT> επιστρέφει μια πολυωνυμική παράσταση
<TT>P</TT>
μεταβλητής
<TT>var</TT> και βαθμού
<TT>n-1</TT>, τέτοια ώστε <I>P</I>(<I>x</I><SUB><I>i</I></SUB>)=<I>y</I><SUB><I>i</I></SUB>.<BR>
Είσοδος :
</P><DIV CLASS="center">
<TT>lagrange([[1,3],[0,1]])</TT></DIV><P>
ή :
</P><DIV CLASS="center">
<TT>lagrange([1,3],[0,1])</TT></DIV><P>
Έξοδος :
</P><DIV CLASS="center">
<TT>(x-1)/2</TT></DIV><P>
αφού <I>x</I>−1/2=0 για <I>x</I>=1, και <I>x</I>−1/2=1 για <I>x</I>=3.<BR>
Είσοδος :
</P><DIV CLASS="center">
<TT>lagrange([1,3],[0,1],y)</TT></DIV><P>
Έξοδος :
</P><DIV CLASS="center">
<TT>(y-1)/2</TT></DIV><P>
<B>Προσοχή</B><BR>
Η
<TT>f:=lagrange([1,2],[3,4],y)</TT> δεν επιστρέφει μια συνάρτηση
αλλά μια παράσταση ως προς <I>y</I>.
Για να ορίσετε την <I>f</I> σαν συνάρτηση, εισάγετε
</P><DIV CLASS="center">
<TT>f:=unapply(lagrange([1,2],[3,4],x),x)</TT>
</DIV><P>
Αποφύγετε την εντολή
<TT>f(x):=lagrange([1,2],[3,4],x)</TT> αφού το
πολυώνυμο <TT>Lagrange</TT> θα υπολογίζεται κάθε φορά που η
<TT>f</TT> καλείται
(πράγματι στον ορισμό μιας συνάρτησης, το 2ο μέλος της εντολής
δεν υπολογίζεται).<BR>
Σημειώστε επίσης ότι η εντολή
<TT>g(x):=lagrange([1,2],[3,4])</TT> δεν θα δούλευε
αφού από προεπιλογή το όρισμα της
<TT>lagrange</TT> (δηλαδή η μεταβλητή
<TT>x</TT>)
θα ήταν καθολικό, και επομένως διάφορο από την τοπική μεταβλητή
που χρησιμοποιείται στον ορισμό της
<TT>g</TT>.</P><HR>
<A HREF="cascmd_el205.html"><IMG SRC="previous_motif.gif" ALT="Previous"></A>
<A HREF="index.html"><IMG SRC="contents_motif.gif" ALT="Up"></A>
<A HREF="cascmd_el207.html"><IMG SRC="next_motif.gif" ALT="Next"></A>
</BODY>
</HTML>
|
tbb-lib/doc/html/a00349.html | rutgers-apl/Atomicity-Violation-Detector | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.4"/>
<title>Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<!-- end header part -->
<!-- Generated by Doxygen 1.8.4 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class 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 id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="a00233.html">tbb</a></li><li class="navelem"><b>flow</b></li><li class="navelem"><b>interface7</b></li><li class="navelem"><a class="el" href="a00070.html">indexer_node< T0, T1 ></a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">tbb::flow::interface7::indexer_node< T0, T1 > Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="a00070.html">tbb::flow::interface7::indexer_node< T0, T1 ></a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>indexer_node</b>(graph &g) (defined in <a class="el" href="a00070.html">tbb::flow::interface7::indexer_node< T0, T1 ></a>)</td><td class="entry"><a class="el" href="a00070.html">tbb::flow::interface7::indexer_node< T0, T1 ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>indexer_node</b>(const indexer_node &other) (defined in <a class="el" href="a00070.html">tbb::flow::interface7::indexer_node< T0, T1 ></a>)</td><td class="entry"><a class="el" href="a00070.html">tbb::flow::interface7::indexer_node< T0, T1 ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>InputTuple</b> typedef (defined in <a class="el" href="a00070.html">tbb::flow::interface7::indexer_node< T0, T1 ></a>)</td><td class="entry"><a class="el" href="a00070.html">tbb::flow::interface7::indexer_node< T0, T1 ></a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>output_type</b> typedef (defined in <a class="el" href="a00070.html">tbb::flow::interface7::indexer_node< T0, T1 ></a>)</td><td class="entry"><a class="el" href="a00070.html">tbb::flow::interface7::indexer_node< T0, T1 ></a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>set_name</b>(const char *name) (defined in <a class="el" href="a00070.html">tbb::flow::interface7::indexer_node< T0, T1 ></a>)</td><td class="entry"><a class="el" href="a00070.html">tbb::flow::interface7::indexer_node< T0, T1 ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>unfolded_type</b> typedef (defined in <a class="el" href="a00070.html">tbb::flow::interface7::indexer_node< T0, T1 ></a>)</td><td class="entry"><a class="el" href="a00070.html">tbb::flow::interface7::indexer_node< T0, T1 ></a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<hr>
<p></p>
Copyright © 2005-2014 Intel Corporation. All Rights Reserved.
<p></p>
Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are
registered trademarks or trademarks of Intel Corporation or its
subsidiaries in the United States and other countries.
<p></p>
* Other names and brands may be claimed as the property of others.
|
src/include/template/css/stylesheet-general.css | zwpwjwtz/Portal-BBS | html,body{
margin:0;
padding:0;
font-size:20px;
font-family: "Microsoft YaHei",Arial,Helvetica,sans-serif;
background: #fafafa;
color:#222;
}
h1,h2,h3,h4,h5,h6,ul,li{
margin:0;
padding:0;
list-style-type:none;
}
input,button,select,textarea{
outline:none;
}
textarea{
resize: none;
}
img{
border:none;
}
a {
display:block;
text-decoration:none;
color:black;
}
.left {
float:left;
}
.right {
float:right;
}
.clear {
clear:both;
}
.heimu {
background-color:black;
}
#container{
margin:0px auto;
overflow:hidden;
} |
toolchains/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabihf/share/doc/as.html/Local.html | BPI-SINOVOIP/BPI-Mainline-kernel | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- This file documents the GNU Assembler "as".
Copyright (C) 1991-2017 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 no Invariant Sections, with no Front-Cover Texts, and with no
Back-Cover Texts. A copy of the license is included in the
section entitled "GNU Free Documentation License".
-->
<!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
<head>
<title>Using as: Local</title>
<meta name="description" content="Using as: Local">
<meta name="keywords" content="Using as: Local">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="AS-Index.html#AS-Index" rel="index" title="AS Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Pseudo-Ops.html#Pseudo-Ops" rel="up" title="Pseudo Ops">
<link href="Long.html#Long" rel="next" title="Long">
<link href="Loc_005fmark_005flabels.html#Loc_005fmark_005flabels" rel="prev" title="Loc_mark_labels">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.indentedblock {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
div.smalllisp {margin-left: 3.2em}
kbd {font-style:oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nocodebreak {white-space:nowrap}
span.nolinebreak {white-space:nowrap}
span.roman {font-family:serif; font-weight:normal}
span.sansserif {font-family:sans-serif; font-weight:normal}
ul.no-bullet {list-style: none}
-->
</style>
</head>
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<a name="Local"></a>
<div class="header">
<p>
Next: <a href="Long.html#Long" accesskey="n" rel="next">Long</a>, Previous: <a href="Loc_005fmark_005flabels.html#Loc_005fmark_005flabels" accesskey="p" rel="prev">Loc_mark_labels</a>, Up: <a href="Pseudo-Ops.html#Pseudo-Ops" accesskey="u" rel="up">Pseudo Ops</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="AS-Index.html#AS-Index" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<a name="g_t_002elocal-names"></a>
<h3 class="section">7.56 <code>.local <var>names</var></code></h3>
<a name="index-local-directive"></a>
<p>This directive, which is available for ELF targets, marks each symbol in
the comma-separated list of <code>names</code> as a local symbol so that it
will not be externally visible. If the symbols do not already exist,
they will be created.
</p>
<p>For targets where the <code>.lcomm</code> directive (see <a href="Lcomm.html#Lcomm">Lcomm</a>) does not
accept an alignment argument, which is the case for most ELF targets,
the <code>.local</code> directive can be used in combination with <code>.comm</code>
(see <a href="Comm.html#Comm">Comm</a>) to define aligned local common data.
</p>
</body>
</html>
|
toolchains/gcc-linaro-7.3.1-2018.05-x86_64_arm-linux-gnueabihf/share/doc/as.html/Syntax.html | BPI-SINOVOIP/BPI-Mainline-kernel | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- This file documents the GNU Assembler "as".
Copyright (C) 1991-2017 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 no Invariant Sections, with no Front-Cover Texts, and with no
Back-Cover Texts. A copy of the license is included in the
section entitled "GNU Free Documentation License".
-->
<!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
<head>
<title>Using as: Syntax</title>
<meta name="description" content="Using as: Syntax">
<meta name="keywords" content="Using as: Syntax">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="AS-Index.html#AS-Index" rel="index" title="AS Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="index.html#Top" rel="up" title="Top">
<link href="Preprocessing.html#Preprocessing" rel="next" title="Preprocessing">
<link href="Z.html#Z" rel="prev" title="Z">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.indentedblock {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
div.smalllisp {margin-left: 3.2em}
kbd {font-style:oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nocodebreak {white-space:nowrap}
span.nolinebreak {white-space:nowrap}
span.roman {font-family:serif; font-weight:normal}
span.sansserif {font-family:sans-serif; font-weight:normal}
ul.no-bullet {list-style: none}
-->
</style>
</head>
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<a name="Syntax"></a>
<div class="header">
<p>
Next: <a href="Sections.html#Sections" accesskey="n" rel="next">Sections</a>, Previous: <a href="Invoking.html#Invoking" accesskey="p" rel="prev">Invoking</a>, Up: <a href="index.html#Top" accesskey="u" rel="up">Top</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="AS-Index.html#AS-Index" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<a name="Syntax-1"></a>
<h2 class="chapter">3 Syntax</h2>
<a name="index-machine_002dindependent-syntax"></a>
<a name="index-syntax_002c-machine_002dindependent"></a>
<p>This chapter describes the machine-independent syntax allowed in a
source file. <code>as</code> syntax is similar to what many other
assemblers use; it is inspired by the BSD 4.2
assembler, except that <code>as</code> does not assemble Vax bit-fields.
</p>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top">• <a href="Preprocessing.html#Preprocessing" accesskey="1">Preprocessing</a>:</td><td> </td><td align="left" valign="top">Preprocessing
</td></tr>
<tr><td align="left" valign="top">• <a href="Whitespace.html#Whitespace" accesskey="2">Whitespace</a>:</td><td> </td><td align="left" valign="top">Whitespace
</td></tr>
<tr><td align="left" valign="top">• <a href="Comments.html#Comments" accesskey="3">Comments</a>:</td><td> </td><td align="left" valign="top">Comments
</td></tr>
<tr><td align="left" valign="top">• <a href="Symbol-Intro.html#Symbol-Intro" accesskey="4">Symbol Intro</a>:</td><td> </td><td align="left" valign="top">Symbols
</td></tr>
<tr><td align="left" valign="top">• <a href="Statements.html#Statements" accesskey="5">Statements</a>:</td><td> </td><td align="left" valign="top">Statements
</td></tr>
<tr><td align="left" valign="top">• <a href="Constants.html#Constants" accesskey="6">Constants</a>:</td><td> </td><td align="left" valign="top">Constants
</td></tr>
</table>
</body>
</html>
|
melati/src/site/resources/withWebmacro/org.webmacro.resource.ReloadingCacheManager.html | timp21337/melati-old | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Coverage Report</title>
<link title="Style" type="text/css" rel="stylesheet" href="css/main.css"/>
<script type="text/javascript" src="js/popup.js"></script>
</head>
<body>
<h5>Coverage Report - org.webmacro.resource.ReloadingCacheManager</h5>
<div class="separator"> </div>
<table class="report">
<thead><tr> <td class="heading">Classes in this File</td> <td class="heading"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">Line Coverage</a></td> <td class="heading"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">Branch Coverage</a></td> <td class="heading"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">Complexity</a></td></tr></thead>
<tr><td><a href="org.webmacro.resource.ReloadingCacheManager.html">ReloadingCacheManager</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">65%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:65px"><span class="text">41/63</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">50%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:50px"><span class="text">16/32</span></div></div></td></tr></table></td><td class="value"><span class="hidden">1.9523809523809523;</span>1.952</td></tr>
<tr><td><a href="org.webmacro.resource.ReloadingCacheManager.html">ReloadingCacheManager$1</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">100%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:100px"><span class="text">5/5</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></td><td class="percentgraph"><div class="percentgraph"><div class="na" style="width:100px"><span class="text"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></span></div></div></td></tr></table></td><td class="value"><span class="hidden">1.9523809523809523;</span>1.952</td></tr>
<tr><td><a href="org.webmacro.resource.ReloadingCacheManager.html">ReloadingCacheManager$2</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">100%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:100px"><span class="text">4/4</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></td><td class="percentgraph"><div class="percentgraph"><div class="na" style="width:100px"><span class="text"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></span></div></div></td></tr></table></td><td class="value"><span class="hidden">1.9523809523809523;</span>1.952</td></tr>
<tr><td><a href="org.webmacro.resource.ReloadingCacheManager.html">ReloadingCacheManager$DirectScmCacheElement</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/4</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></td><td class="percentgraph"><div class="percentgraph"><div class="na" style="width:100px"><span class="text"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></span></div></div></td></tr></table></td><td class="value"><span class="hidden">1.9523809523809523;</span>1.952</td></tr>
<tr><td><a href="org.webmacro.resource.ReloadingCacheManager.html">ReloadingCacheManager$MyCacheElement</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">83%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:83px"><span class="text">5/6</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">25%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:25px"><span class="text">1/4</span></div></div></td></tr></table></td><td class="value"><span class="hidden">1.9523809523809523;</span>1.952</td></tr>
<tr><td><a href="org.webmacro.resource.ReloadingCacheManager.html">ReloadingCacheManager$SoftScmCacheElement</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">100%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:100px"><span class="text">4/4</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></td><td class="percentgraph"><div class="percentgraph"><div class="na" style="width:100px"><span class="text"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></span></div></div></td></tr></table></td><td class="value"><span class="hidden">1.9523809523809523;</span>1.952</td></tr>
</table>
<div class="separator"> </div>
<table cellspacing="0" cellpadding="0" class="src">
<tr> <td class="numLine"> 1</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">package</span> org.webmacro.resource;</pre></td></tr>
<tr> <td class="numLine"> 2</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 3</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">import</span> java.lang.ref.SoftReference;</pre></td></tr>
<tr> <td class="numLine"> 4</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">import</span> java.util.concurrent.ConcurrentHashMap;</pre></td></tr>
<tr> <td class="numLine"> 5</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">import</span> java.util.concurrent.Executors;</pre></td></tr>
<tr> <td class="numLine"> 6</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">import</span> java.util.concurrent.ScheduledExecutorService;</pre></td></tr>
<tr> <td class="numLine"> 7</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">import</span> java.util.concurrent.ThreadFactory;</pre></td></tr>
<tr> <td class="numLine"> 8</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">import</span> java.util.concurrent.TimeUnit;</pre></td></tr>
<tr> <td class="numLine"> 9</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 10</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">import</span> org.slf4j.Logger;</pre></td></tr>
<tr> <td class="numLine"> 11</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">import</span> org.slf4j.LoggerFactory;</pre></td></tr>
<tr> <td class="numLine"> 12</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 13</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">import</span> org.webmacro.Broker;</pre></td></tr>
<tr> <td class="numLine"> 14</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">import</span> org.webmacro.InitException;</pre></td></tr>
<tr> <td class="numLine"> 15</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">import</span> org.webmacro.ResourceException;</pre></td></tr>
<tr> <td class="numLine"> 16</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">import</span> org.webmacro.util.Settings;</pre></td></tr>
<tr> <td class="numLine"> 17</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">import</span> org.webmacro.util.SubSettings;</pre></td></tr>
<tr> <td class="numLine"> 18</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 19</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 20</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment">/**</span></pre></td></tr>
<tr> <td class="numLine"> 21</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> * ReloadingCacheManager -- a cache manager which supports reloading and expiration, backed</span></pre></td></tr>
<tr> <td class="numLine"> 22</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> * by a ConcurrentHashMap. Derived from the old SMapCacheManager, but simplified.</span></pre></td></tr>
<tr> <td class="numLine"> 23</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> *</span></pre></td></tr>
<tr> <td class="numLine"> 24</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> * @author Brian Goetz</span></pre></td></tr>
<tr> <td class="numLine"> 25</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> */</span></pre></td></tr>
<tr> <td class="numLineCover"> 26</td> <td class="nbHitsCovered"> 409</td> <td class="src"><pre class="src"> <span class="keyword">public</span> <span class="keyword">class</span> ReloadingCacheManager <span class="keyword">implements</span> CacheManager {</pre></td></tr>
<tr> <td class="numLine"> 27</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 28</td> <td class="nbHitsCovered"> 2</td> <td class="src"><pre class="src"> <span class="keyword">static</span> Logger _log = LoggerFactory.getLogger(ReloadDelayDecorator.<span class="keyword">class</span>);</pre></td></tr>
<tr> <td class="numLine"> 29</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 30</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">private</span> <span class="keyword">static</span> <span class="keyword">final</span> String NAME = <span class="string">"ReloadingCacheManager"</span>;</pre></td></tr>
<tr> <td class="numLine"> 31</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 32</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> <span class="keyword">private</span> <span class="keyword">final</span> ConcurrentHashMap _cache = <span class="keyword">new</span> ConcurrentHashMap();</pre></td></tr>
<tr> <td class="numLine"> 33</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">private</span> <span class="keyword">int</span> _cacheDurationMilliseconds;</pre></td></tr>
<tr> <td class="numLine"> 34</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">private</span> String _resourceType;</pre></td></tr>
<tr> <td class="numLineCover"> 35</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> <span class="keyword">private</span> <span class="keyword">boolean</span> _reloadOnChange = <span class="keyword">true</span>, _useSoftReferences = <span class="keyword">true</span>;</pre></td></tr>
<tr> <td class="numLineCover"> 36</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> <span class="keyword">private</span> <span class="keyword">boolean</span> _delayReloadChecks = <span class="keyword">false</span>;</pre></td></tr>
<tr> <td class="numLine"> 37</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">private</span> <span class="keyword">long</span> _checkForReloadDelay;</pre></td></tr>
<tr> <td class="numLine"> 38</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 39</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment">// Used ClockDaemon instead of the original TimeLoop -- more efficient priority-queue based implementation</span></pre></td></tr>
<tr> <td class="numLine"> 40</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment">// Then renamed in move to java.util.concurrent</span></pre></td></tr>
<tr> <td class="numLine"> 41</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">private</span> ScheduledExecutorService _clockDaemon;</pre></td></tr>
<tr> <td class="numLine"> 42</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 43</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 44</td> <td class="nbHitsCovered"> 3084</td> <td class="src"><pre class="src"> <span class="keyword">private</span> <span class="keyword">abstract</span> <span class="keyword">class</span> MyCacheElement <span class="keyword">extends</span> CacheElement <span class="keyword">implements</span> Cloneable</pre></td></tr>
<tr> <td class="numLine"> 45</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLine"> 46</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 47</td> <td class="nbHitsCovered"> 544</td> <td class="src"><pre class="src"> <span class="keyword">private</span> CacheReloadContext reloadContext = <span class="keyword">null</span>;</pre></td></tr>
<tr> <td class="numLine"> 48</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 49</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> <span class="keyword">void</span> setReloadContext (CacheReloadContext rc)</pre></td></tr>
<tr> <td class="numLine"> 50</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 51</td> <td class="nbHitsUncovered"><a title="Line 51: Conditional coverage 25% (1/4) [each condition: 50%, 0%]."> 224</a></td> <td class="src"><pre class="src"><span class="srcUncovered"> <a title="Line 51: Conditional coverage 25% (1/4) [each condition: 50%, 0%]."> <span class="keyword">if</span> (_delayReloadChecks && rc != <span class="keyword">null</span>)</a></span></pre></td></tr>
<tr> <td class="numLineCover"> 52</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> <span class="keyword">this</span>.reloadContext = <span class="keyword">new</span> TimedReloadContext(rc, _checkForReloadDelay);</span></pre></td></tr>
<tr> <td class="numLine"> 53</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">else</span></pre></td></tr>
<tr> <td class="numLineCover"> 54</td> <td class="nbHitsCovered"> 224</td> <td class="src"><pre class="src"> <span class="keyword">this</span>.reloadContext = rc;</pre></td></tr>
<tr> <td class="numLineCover"> 55</td> <td class="nbHitsCovered"> 224</td> <td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 56</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 57</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> <span class="keyword">abstract</span> Object getObject ();</pre></td></tr>
<tr> <td class="numLine"> 58</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 59</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> <span class="keyword">abstract</span> <span class="keyword">void</span> setObject (Object o);</pre></td></tr>
<tr> <td class="numLine"> 60</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 61</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 62</td> <td class="nbHitsCovered"> 1088</td> <td class="src"><pre class="src"> <span class="keyword">private</span> <span class="keyword">final</span> <span class="keyword">class</span> SoftScmCacheElement <span class="keyword">extends</span> MyCacheElement</pre></td></tr>
<tr> <td class="numLine"> 63</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLine"> 64</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 65</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">private</span> SoftReference reference;</pre></td></tr>
<tr> <td class="numLine"> 66</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 67</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> Object getObject ()</pre></td></tr>
<tr> <td class="numLine"> 68</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 69</td> <td class="nbHitsCovered"> 998</td> <td class="src"><pre class="src"> <span class="keyword">return</span> reference.get();</pre></td></tr>
<tr> <td class="numLine"> 70</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 71</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 72</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> <span class="keyword">void</span> setObject (Object o)</pre></td></tr>
<tr> <td class="numLine"> 73</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 74</td> <td class="nbHitsCovered"> 224</td> <td class="src"><pre class="src"> reference = <span class="keyword">new</span> SoftReference(o);</pre></td></tr>
<tr> <td class="numLineCover"> 75</td> <td class="nbHitsCovered"> 224</td> <td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 76</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 77</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 78</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> <span class="keyword">private</span> <span class="keyword">final</span> <span class="keyword">class</span> DirectScmCacheElement <span class="keyword">extends</span> MyCacheElement</span></pre></td></tr>
<tr> <td class="numLine"> 79</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLine"> 80</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 81</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">private</span> Object object;</pre></td></tr>
<tr> <td class="numLine"> 82</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 83</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> Object getObject ()</pre></td></tr>
<tr> <td class="numLine"> 84</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 85</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> <span class="keyword">return</span> object;</span></pre></td></tr>
<tr> <td class="numLine"> 86</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 87</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 88</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> <span class="keyword">void</span> setObject (Object o)</pre></td></tr>
<tr> <td class="numLine"> 89</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 90</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> object = o;</span></pre></td></tr>
<tr> <td class="numLineCover"> 91</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> }</span></pre></td></tr>
<tr> <td class="numLine"> 92</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 93</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 94</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> ReloadingCacheManager()</pre></td></tr>
<tr> <td class="numLineCover"> 95</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 96</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 97</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 98</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> <span class="keyword">void</span> init (Broker b, Settings config, String resourceType)</pre></td></tr>
<tr> <td class="numLine"> 99</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">throws</span> InitException</pre></td></tr>
<tr> <td class="numLine"> 100</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLine"> 101</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> Settings ourSettings, defaultSettings;</pre></td></tr>
<tr> <td class="numLine"> 102</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 103</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> _clockDaemon = Executors.newSingleThreadScheduledExecutor(<span class="keyword">new</span> ThreadFactory() {</pre></td></tr>
<tr> <td class="numLine"> 104</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> Thread newThread(Runnable runnable) {</pre></td></tr>
<tr> <td class="numLineCover"> 105</td> <td class="nbHitsCovered"> 6</td> <td class="src"><pre class="src"> _log.info(<span class="string">"Creating new ClockDaemon thread"</span>);</pre></td></tr>
<tr> <td class="numLineCover"> 106</td> <td class="nbHitsCovered"> 6</td> <td class="src"><pre class="src"> Thread t = <span class="keyword">new</span> Thread(runnable);</pre></td></tr>
<tr> <td class="numLineCover"> 107</td> <td class="nbHitsCovered"> 6</td> <td class="src"><pre class="src"> t.setDaemon(<span class="keyword">true</span>);</pre></td></tr>
<tr> <td class="numLineCover"> 108</td> <td class="nbHitsCovered"> 6</td> <td class="src"><pre class="src"> <span class="keyword">return</span> t;</pre></td></tr>
<tr> <td class="numLine"> 109</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 110</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> });</pre></td></tr>
<tr> <td class="numLine"> 111</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 112</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> _resourceType = resourceType;</pre></td></tr>
<tr> <td class="numLine"> 113</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 114</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> ourSettings = <span class="keyword">new</span> SubSettings(config, NAME + <span class="string">"."</span> + _resourceType);</pre></td></tr>
<tr> <td class="numLineCover"> 115</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> defaultSettings = <span class="keyword">new</span> SubSettings(config, NAME + <span class="string">".*"</span>);</pre></td></tr>
<tr> <td class="numLine"> 116</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 117</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> _cacheDurationMilliseconds =</pre></td></tr>
<tr> <td class="numLine"> 118</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> ourSettings.getIntegerSetting(<span class="string">"ExpireTime"</span>,</pre></td></tr>
<tr> <td class="numLine"> 119</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> defaultSettings.getIntegerSetting(<span class="string">"ExpireTime"</span>,</pre></td></tr>
<tr> <td class="numLine"> 120</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> config.getIntegerSetting(<span class="string">"TemplateExpireTime"</span>, 0)));</pre></td></tr>
<tr> <td class="numLineCover"> 121</td> <td class="nbHitsUncovered"><a title="Line 121: Conditional coverage 50% (2/4) [each condition: 50%, 50%]."> 12</a></td> <td class="src"><pre class="src"><span class="srcUncovered"> <a title="Line 121: Conditional coverage 50% (2/4) [each condition: 50%, 50%]."> _useSoftReferences =</a></span></pre></td></tr>
<tr> <td class="numLine"> 122</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> (ourSettings.containsKey(<span class="string">"UseSoftReferences"</span>))</pre></td></tr>
<tr> <td class="numLine"> 123</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> ? ourSettings.getBooleanSetting(<span class="string">"UseSoftReferences"</span>)</pre></td></tr>
<tr> <td class="numLine"> 124</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> : ((defaultSettings.containsKey(<span class="string">"UseSoftReferences"</span>))</pre></td></tr>
<tr> <td class="numLine"> 125</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> ? defaultSettings.getBooleanSetting(<span class="string">"UseSoftReferences"</span>) : <span class="keyword">true</span>);</pre></td></tr>
<tr> <td class="numLineCover"> 126</td> <td class="nbHitsUncovered"><a title="Line 126: Conditional coverage 50% (2/4) [each condition: 50%, 50%]."> 12</a></td> <td class="src"><pre class="src"><span class="srcUncovered"> <a title="Line 126: Conditional coverage 50% (2/4) [each condition: 50%, 50%]."> _reloadOnChange =</a></span></pre></td></tr>
<tr> <td class="numLine"> 127</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> (ourSettings.containsKey(<span class="string">"ReloadOnChange"</span>))</pre></td></tr>
<tr> <td class="numLine"> 128</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> ? ourSettings.getBooleanSetting(<span class="string">"ReloadOnChange"</span>)</pre></td></tr>
<tr> <td class="numLine"> 129</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> : ((defaultSettings.containsKey(<span class="string">"ReloadOnChange"</span>))</pre></td></tr>
<tr> <td class="numLine"> 130</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> ? defaultSettings.getBooleanSetting(<span class="string">"ReloadOnChange"</span>) : <span class="keyword">true</span>);</pre></td></tr>
<tr> <td class="numLine"> 131</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 132</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> _checkForReloadDelay =</pre></td></tr>
<tr> <td class="numLine"> 133</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> (ourSettings.getIntegerSetting(<span class="string">"CheckForReloadDelay"</span>,</pre></td></tr>
<tr> <td class="numLine"> 134</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> defaultSettings.getIntegerSetting(<span class="string">"CheckForReloadDelay"</span>, -1)));</pre></td></tr>
<tr> <td class="numLineCover"> 135</td> <td class="nbHitsUncovered"><a title="Line 135: Conditional coverage 50% (1/2)."> 12</a></td> <td class="src"><pre class="src"><span class="srcUncovered"> <a title="Line 135: Conditional coverage 50% (1/2)."> _delayReloadChecks = _checkForReloadDelay > 0;</a></span></pre></td></tr>
<tr> <td class="numLine"> 136</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 137</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> _log.info(NAME + <span class="string">"."</span> + _resourceType + <span class="string">": "</span></pre></td></tr>
<tr> <td class="numLine"> 138</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> + <span class="string">"; expireTime="</span> + _cacheDurationMilliseconds</pre></td></tr>
<tr> <td class="numLine"> 139</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> + <span class="string">"; reload="</span> + _reloadOnChange</pre></td></tr>
<tr> <td class="numLine"> 140</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> + <span class="string">"; softReference="</span> + _useSoftReferences</pre></td></tr>
<tr> <td class="numLine"> 141</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> + <span class="string">"; checkForReloadDelay="</span> + _checkForReloadDelay);</pre></td></tr>
<tr> <td class="numLineCover"> 142</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 143</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 144</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">private</span> MyCacheElement newCacheElement() {</pre></td></tr>
<tr> <td class="numLineCover"> 145</td> <td class="nbHitsUncovered"><a title="Line 145: Conditional coverage 50% (1/2)."> 544</a></td> <td class="src"><pre class="src"><span class="srcUncovered"> <a title="Line 145: Conditional coverage 50% (1/2)."> <span class="keyword">if</span> (_useSoftReferences)</a></span></pre></td></tr>
<tr> <td class="numLineCover"> 146</td> <td class="nbHitsCovered"> 544</td> <td class="src"><pre class="src"> <span class="keyword">return</span> <span class="keyword">new</span> SoftScmCacheElement();</pre></td></tr>
<tr> <td class="numLine"> 147</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">else</span></pre></td></tr>
<tr> <td class="numLineCover"> 148</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> <span class="keyword">return</span> <span class="keyword">new</span> DirectScmCacheElement();</span></pre></td></tr>
<tr> <td class="numLine"> 149</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 150</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 151</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment">/**</span></pre></td></tr>
<tr> <td class="numLine"> 152</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> * Clear the cache.</span></pre></td></tr>
<tr> <td class="numLine"> 153</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> */</span></pre></td></tr>
<tr> <td class="numLine"> 154</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> <span class="keyword">void</span> flush ()</pre></td></tr>
<tr> <td class="numLine"> 155</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 156</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> _cache.clear();</span></pre></td></tr>
<tr> <td class="numLineCover"> 157</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> }</span></pre></td></tr>
<tr> <td class="numLine"> 158</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 159</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment">/**</span></pre></td></tr>
<tr> <td class="numLine"> 160</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> * Close down the provider.</span></pre></td></tr>
<tr> <td class="numLine"> 161</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> */</span></pre></td></tr>
<tr> <td class="numLine"> 162</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> <span class="keyword">void</span> destroy ()</pre></td></tr>
<tr> <td class="numLine"> 163</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 164</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> _cache.clear();</span></pre></td></tr>
<tr> <td class="numLineCover"> 165</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> _clockDaemon.shutdown();</span></pre></td></tr>
<tr> <td class="numLineCover"> 166</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> }</span></pre></td></tr>
<tr> <td class="numLine"> 167</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 168</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> <span class="keyword">boolean</span> supportsReload ()</pre></td></tr>
<tr> <td class="numLine"> 169</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 170</td> <td class="nbHitsCovered"> 12</td> <td class="src"><pre class="src"> <span class="keyword">return</span> _reloadOnChange;</pre></td></tr>
<tr> <td class="numLine"> 171</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 172</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 173</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">private</span> <span class="keyword">final</span> <span class="keyword">void</span> scheduleRemoval(<span class="keyword">final</span> Object key) {</pre></td></tr>
<tr> <td class="numLineCover"> 174</td> <td class="nbHitsCovered"> 224</td> <td class="src"><pre class="src"> _clockDaemon.schedule(</pre></td></tr>
<tr> <td class="numLine"> 175</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">new</span> Runnable()</pre></td></tr>
<tr> <td class="numLineCover"> 176</td> <td class="nbHitsCovered"> 224</td> <td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLine"> 177</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> <span class="keyword">void</span> run ()</pre></td></tr>
<tr> <td class="numLine"> 178</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 179</td> <td class="nbHitsCovered"> 185</td> <td class="src"><pre class="src"> _cache.remove(key);</pre></td></tr>
<tr> <td class="numLineCover"> 180</td> <td class="nbHitsCovered"> 185</td> <td class="src"><pre class="src"> _log.debug(<span class="string">"cache expired: "</span> + key);</pre></td></tr>
<tr> <td class="numLineCover"> 181</td> <td class="nbHitsCovered"> 185</td> <td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 182</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> },</pre></td></tr>
<tr> <td class="numLine"> 183</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> _cacheDurationMilliseconds,</pre></td></tr>
<tr> <td class="numLine"> 184</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> TimeUnit.MILLISECONDS);</pre></td></tr>
<tr> <td class="numLineCover"> 185</td> <td class="nbHitsCovered"> 224</td> <td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 186</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 187</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment">/**</span></pre></td></tr>
<tr> <td class="numLine"> 188</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> * Get the object associated with the specific query, first</span></pre></td></tr>
<tr> <td class="numLine"> 189</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> * trying to look it up in a cache. If it's not there, then</span></pre></td></tr>
<tr> <td class="numLine"> 190</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> * call load(String) to load it into the cache.</span></pre></td></tr>
<tr> <td class="numLine"> 191</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> */</span></pre></td></tr>
<tr> <td class="numLine"> 192</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> Object get (<span class="keyword">final</span> Object query, ResourceLoader helper)</pre></td></tr>
<tr> <td class="numLine"> 193</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">throws</span> ResourceException</pre></td></tr>
<tr> <td class="numLine"> 194</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLine"> 195</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> MyCacheElement r;</pre></td></tr>
<tr> <td class="numLineCover"> 196</td> <td class="nbHitsCovered"> 1542</td> <td class="src"><pre class="src"> Object o = <span class="keyword">null</span>;</pre></td></tr>
<tr> <td class="numLineCover"> 197</td> <td class="nbHitsCovered"> 1542</td> <td class="src"><pre class="src"> <span class="keyword">boolean</span> reload = <span class="keyword">false</span>;</pre></td></tr>
<tr> <td class="numLine"> 198</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 199</td> <td class="nbHitsCovered"> 1542</td> <td class="src"><pre class="src"> r = (MyCacheElement) _cache.get(query);</pre></td></tr>
<tr> <td class="numLineCover"> 200</td> <td class="nbHitsCovered"><a title="Line 200: Conditional coverage 100% (2/2)."> 1542</a></td> <td class="src"><pre class="src"> <a title="Line 200: Conditional coverage 100% (2/2)."> <span class="keyword">if</span> (r != <span class="keyword">null</span>) {</a></pre></td></tr>
<tr> <td class="numLineCover"> 201</td> <td class="nbHitsCovered"> 998</td> <td class="src"><pre class="src"> o = r.getObject();</pre></td></tr>
<tr> <td class="numLine"> 202</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 203</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment">// should the template be reloaded, regardless of cached status?</span></pre></td></tr>
<tr> <td class="numLineCover"> 204</td> <td class="nbHitsUncovered"><a title="Line 204: Conditional coverage 50% (3/6) [each condition: 50%, 50%, 50%]."> 998</a></td> <td class="src"><pre class="src"><span class="srcUncovered"> <a title="Line 204: Conditional coverage 50% (3/6) [each condition: 50%, 50%, 50%]."> <span class="keyword">if</span> (o != <span class="keyword">null</span> && r.reloadContext != <span class="keyword">null</span> && _reloadOnChange)</a></span></pre></td></tr>
<tr> <td class="numLineCover"> 205</td> <td class="nbHitsCovered"> 998</td> <td class="src"><pre class="src"> reload = r.reloadContext.shouldReload();</pre></td></tr>
<tr> <td class="numLine"> 206</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLineCover"> 207</td> <td class="nbHitsUncovered"><a title="Line 207: Conditional coverage 75% (3/4) [each condition: 100%, 50%]."> 1542</a></td> <td class="src"><pre class="src"><span class="srcUncovered"> <a title="Line 207: Conditional coverage 75% (3/4) [each condition: 100%, 50%]."> <span class="keyword">if</span> (o == <span class="keyword">null</span> || reload)</a></span></pre></td></tr>
<tr> <td class="numLine"> 208</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 209</td> <td class="nbHitsCovered"> 544</td> <td class="src"><pre class="src"> r = newCacheElement();</pre></td></tr>
<tr> <td class="numLineCover"> 210</td> <td class="nbHitsCovered"> 544</td> <td class="src"><pre class="src"> o = helper.load(query, r);</pre></td></tr>
<tr> <td class="numLineCover"> 211</td> <td class="nbHitsUncovered"><a title="Line 211: Conditional coverage 50% (1/2)."> 224</a></td> <td class="src"><pre class="src"><span class="srcUncovered"> <a title="Line 211: Conditional coverage 50% (1/2)."> <span class="keyword">if</span> (o != <span class="keyword">null</span>)</a></span></pre></td></tr>
<tr> <td class="numLine"> 212</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 213</td> <td class="nbHitsCovered"> 224</td> <td class="src"><pre class="src"> r.setObject(o);</pre></td></tr>
<tr> <td class="numLineCover"> 214</td> <td class="nbHitsCovered"> 224</td> <td class="src"><pre class="src"> _cache.put(query, r);</pre></td></tr>
<tr> <td class="numLineCover"> 215</td> <td class="nbHitsCovered"> 224</td> <td class="src"><pre class="src"> _log.debug(<span class="string">"cached: "</span> + query + <span class="string">" for "</span> + _cacheDurationMilliseconds);</pre></td></tr>
<tr> <td class="numLine"> 216</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">try</span></pre></td></tr>
<tr> <td class="numLine"> 217</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLine"> 218</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment">// if timeout is < 0,</span></pre></td></tr>
<tr> <td class="numLine"> 219</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment">// then don't schedule a removal from cache</span></pre></td></tr>
<tr> <td class="numLineCover"> 220</td> <td class="nbHitsUncovered"><a title="Line 220: Conditional coverage 50% (1/2)."> 224</a></td> <td class="src"><pre class="src"><span class="srcUncovered"> <a title="Line 220: Conditional coverage 50% (1/2)."> <span class="keyword">if</span> (_cacheDurationMilliseconds >= 0)</a></span></pre></td></tr>
<tr> <td class="numLineCover"> 221</td> <td class="nbHitsCovered"> 224</td> <td class="src"><pre class="src"> scheduleRemoval(query);</pre></td></tr>
<tr> <td class="numLine"> 222</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLineCover"> 223</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> <span class="keyword">catch</span> (Exception e)</span></pre></td></tr>
<tr> <td class="numLine"> 224</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 225</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> _log.error(<span class="string">"CachingProvider caught an exception"</span>, e);</span></pre></td></tr>
<tr> <td class="numLineCover"> 226</td> <td class="nbHitsCovered"> 224</td> <td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 227</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 228</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLineCover"> 229</td> <td class="nbHitsCovered"> 1222</td> <td class="src"><pre class="src"> <span class="keyword">return</span> o;</pre></td></tr>
<tr> <td class="numLine"> 230</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 231</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 232</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment">/**</span></pre></td></tr>
<tr> <td class="numLine"> 233</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> * Get the object associated with the specific query,</span></pre></td></tr>
<tr> <td class="numLine"> 234</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> * trying to look it up in a cache. If it's not there, return null.</span></pre></td></tr>
<tr> <td class="numLine"> 235</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> */</span></pre></td></tr>
<tr> <td class="numLine"> 236</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> Object get (<span class="keyword">final</span> Object query)</pre></td></tr>
<tr> <td class="numLine"> 237</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 238</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> MyCacheElement r = (MyCacheElement) _cache.get(query);</span></pre></td></tr>
<tr> <td class="numLineCover"> 239</td> <td class="nbHitsUncovered"><a title="Line 239: Conditional coverage 0% (0/2)."> 0</a></td> <td class="src"><pre class="src"><span class="srcUncovered"> <a title="Line 239: Conditional coverage 0% (0/2)."> <span class="keyword">if</span> (r != <span class="keyword">null</span>)</a></span></pre></td></tr>
<tr> <td class="numLineCover"> 240</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> <span class="keyword">return</span> r.getObject();</span></pre></td></tr>
<tr> <td class="numLine"> 241</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">else</span></pre></td></tr>
<tr> <td class="numLineCover"> 242</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> <span class="keyword">return</span> <span class="keyword">null</span>;</span></pre></td></tr>
<tr> <td class="numLine"> 243</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 244</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 245</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment">/**</span></pre></td></tr>
<tr> <td class="numLine"> 246</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> * Put an object in the cache</span></pre></td></tr>
<tr> <td class="numLine"> 247</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment"> */</span></pre></td></tr>
<tr> <td class="numLine"> 248</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> <span class="keyword">void</span> put (<span class="keyword">final</span> Object query, Object resource)</pre></td></tr>
<tr> <td class="numLine"> 249</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 250</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> MyCacheElement r = newCacheElement();</span></pre></td></tr>
<tr> <td class="numLineCover"> 251</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> r.setObject(resource);</span></pre></td></tr>
<tr> <td class="numLine"> 252</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLineCover"> 253</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> _cache.put(query, r);</span></pre></td></tr>
<tr> <td class="numLineCover"> 254</td> <td class="nbHitsUncovered"><a title="Line 254: Conditional coverage 0% (0/2)."> 0</a></td> <td class="src"><pre class="src"><span class="srcUncovered"> <a title="Line 254: Conditional coverage 0% (0/2)."> <span class="keyword">if</span> (_cacheDurationMilliseconds >= 0)</a></span></pre></td></tr>
<tr> <td class="numLine"> 255</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 256</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> _log.debug(<span class="string">"cached: "</span> + query + <span class="string">" for "</span> + _cacheDurationMilliseconds);</span></pre></td></tr>
<tr> <td class="numLineCover"> 257</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> scheduleRemoval(query);</span></pre></td></tr>
<tr> <td class="numLine"> 258</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLineCover"> 259</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> }</span></pre></td></tr>
<tr> <td class="numLine"> 260</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 261</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="comment">/** Removes a specific entry from the cache. */</span></pre></td></tr>
<tr> <td class="numLine"> 262</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> <span class="keyword">void</span> invalidate (<span class="keyword">final</span> Object query)</pre></td></tr>
<tr> <td class="numLine"> 263</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 264</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> _cache.remove(query);</span></pre></td></tr>
<tr> <td class="numLineCover"> 265</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> }</span></pre></td></tr>
<tr> <td class="numLine"> 266</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> </pre></td></tr>
<tr> <td class="numLine"> 267</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> <span class="keyword">public</span> String toString ()</pre></td></tr>
<tr> <td class="numLine"> 268</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> {</pre></td></tr>
<tr> <td class="numLineCover"> 269</td> <td class="nbHitsUncovered"> 0</td> <td class="src"><pre class="src"><span class="srcUncovered"> <span class="keyword">return</span> NAME + <span class="string">"(type = "</span> + _resourceType + <span class="string">")"</span>;</span></pre></td></tr>
<tr> <td class="numLine"> 270</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
<tr> <td class="numLine"> 271</td> <td class="nbHits"> </td>
<td class="src"><pre class="src"> }</pre></td></tr>
</table>
<div class="footer">Report generated by <a href="http://cobertura.sourceforge.net/" target="_top">Cobertura</a> 1.9.2 on 04/03/10 21:33.</div>
</body>
</html>
|
css/islandora_image_annotation.list.css | Islandora/islandora_image_annotation | /**
* @file
* Defines the base set of css required to view the image annotation tool.
*/
#islandora-image-annotation-list .comment-type-title {
position: relative;
cursor: pointer;
padding: 8px 30px 8px 18px;
margin: 3px 0 0 0;
background: #ccc;
color: #555;
border: 1px solid #ddd;
word-wrap: break-word;
-webkit-border-radius: 5px 5px 5px 5px; /* Saf3-4, iOS 1-3.2, Android �1.6 */
border-radius: 5px 5px 5px 5px; /* Opera 10.5, IE9, Saf5, Chrome, FF4+, iOS 4, Android 2.1+ */
}
#islandora-image-annotation-list .comment-title {
position: relative;
cursor: pointer;
padding: 8px 30px 8px 18px;
margin: 3px 0 0 0;
overflow: auto;
background: #eee;
color: #555;
border: 1px solid #ddd;
word-wrap: break-word;
-webkit-border-radius: 5px 5px 5px 5px; /* Saf3-4, iOS 1-3.2, Android �1.6 */
border-radius: 5px 5px 5px 5px; /* Opera 10.5, IE9, Saf5, Chrome, FF4+, iOS 4, Android 2.1+ */
}
#islandora-image-annotation-list .comment-title:hover {
background: #e3e3e3;
color: #212121;
}
#islandora-image-annotation-list .comment-title.annotation-opened {
-webkit-border-radius: 5px 5px 0 0; /* Saf3-4, iOS 1-3.2, Android �1.6 */
border-radius: 5px 5px 0 0; /* Opera 10.5, IE9, Saf5, Chrome, FF4+, iOS 4, Android 2.1+ */
color: #212121;
border-bottom: 0 solid #ddd;
}
#islandora-image-annotation-list .comment-text {
margin: 0 0 0 0;
padding: 5px 10px 5px 10px;
border: 1px solid #ddd;
border-top: 0;
background: #f6f6f6;
word-wrap: break-word;
-webkit-border-radius: 0 0 5px 5px; /* Saf3-4, iOS 1-3.2, Android �1.6 */
border-radius: 0 0 5px 5px; /* Opera 10.5, IE9, Saf5, Chrome, FF4+, iOS 4, Android 2.1+ */
}
#islandora-image-annotation-list .color {
float: right;
right: 8px;
top: 8px;
width: 15px;
height: 15px;
margin-top: 5px;
margin-right: 0px;
-webkit-border-radius: 8px; /* Saf3-4, iOS 1-3.2, Android �1.6 */
border-radius: 8px; /* Opera 10.5, IE9, Saf5, Chrome, FF4+, iOS 4, Android 2.1+ */
}
#islandora-image-annotation-list .comment-show-hide {
top: 8px;
left: 8px;
padding-right: 0.5em;
}
|
web/assets/plugins/bower_components/custom-select/custom-select.css | wilxsv/contratos | /*
Version: 3.5.2 Timestamp: Sat Nov 1 14:43:36 EDT 2014
*/
.select2-container {
margin: 0;
position: relative;
display: inline-block;
/* inline-block for ie7 */
zoom: 1;
*display: inline;
vertical-align: middle;
}
.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
/*
Force border-box so that % widths fit the parent
container without overlap because of margin/padding.
More Info : http://www.quirksmode.org/css/box.html
*/
-webkit-box-sizing: border-box; /* webkit */
-moz-box-sizing: border-box; /* firefox */
box-sizing: border-box; /* css3 */
}
.select2-container .select2-choice {
display: block;
height: 26px;
padding: 0 0 0 8px;
overflow: hidden;
position: relative;
border: 1px solid #aaa;
white-space: nowrap;
line-height: 26px;
color: #444;
text-decoration: none;
border-radius: 4px;
background-clip: padding-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: #fff;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}
html[dir="rtl"] .select2-container .select2-choice {
padding: 0 8px 0 0;
}
.select2-container.select2-drop-above .select2-choice {
border-bottom-color: #aaa;
border-radius: 0 0 4px 4px;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}
.select2-container.select2-allowclear .select2-choice .select2-chosen {
margin-right: 42px;
}
.select2-container .select2-choice > .select2-chosen {
margin-right: 26px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
float: none;
width: auto;
}
html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
margin-left: 26px;
margin-right: 0;
}
.select2-container .select2-choice abbr {
display: none;
width: 12px;
height: 12px;
position: absolute;
right: 24px;
top: 8px;
font-size: 1px;
text-decoration: none;
border: 0;
background: url('select2.png') right top no-repeat;
cursor: pointer;
outline: 0;
}
.select2-container.select2-allowclear .select2-choice abbr {
display: inline-block;
}
.select2-container .select2-choice abbr:hover {
background-position: right -11px;
cursor: pointer;
}
.select2-drop-mask {
border: 0;
margin: 0;
padding: 0;
position: fixed;
left: 0;
top: 0;
min-height: 100%;
min-width: 100%;
height: auto;
width: auto;
opacity: 0;
z-index: 9998;
/* styles required for IE to work */
background-color: #fff;
filter: alpha(opacity=0);
}
.select2-drop {
width: 100%;
margin-top: -1px;
position: absolute;
z-index: 9999;
top: 100%;
background: #fff;
color: #000;
border: 1px solid #aaa;
border-top: 0;
border-radius: 0 0 4px 4px;
-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}
.select2-drop.select2-drop-above {
margin-top: 1px;
border-top: 1px solid #aaa;
border-bottom: 0;
border-radius: 4px 4px 0 0;
-webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}
.select2-drop-active {
border: 1px solid #5897fb;
border-top: none;
}
.select2-drop.select2-drop-above.select2-drop-active {
border-top: 1px solid #5897fb;
}
.select2-drop-auto-width {
border-top: 1px solid #aaa;
width: auto;
}
.select2-drop-auto-width .select2-search {
padding-top: 4px;
}
.select2-container .select2-choice .select2-arrow {
display: inline-block;
width: 18px;
height: 100%;
position: absolute;
right: 0;
top: 0;
border-left: 1px solid #aaa;
border-radius: 0 4px 4px 0;
background-clip: padding-box;
background: #ccc;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}
html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
left: 0;
right: auto;
border-left: none;
border-right: 1px solid #aaa;
border-radius: 4px 0 0 4px;
}
.select2-container .select2-choice .select2-arrow b {
display: block;
width: 100%;
height: 100%;
background: url('select2.png') no-repeat 0 1px;
}
html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
background-position: 2px 1px;
}
.select2-search {
display: inline-block;
width: 100%;
min-height: 26px;
margin: 0;
padding-left: 4px;
padding-right: 4px;
position: relative;
z-index: 10000;
white-space: nowrap;
}
.select2-search input {
width: 100%;
height: auto !important;
min-height: 26px;
padding: 4px 20px 4px 5px;
margin: 0;
outline: 0;
font-family: sans-serif;
font-size: 1em;
border: 1px solid #aaa;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
background: #fff url('select2.png') no-repeat 100% -22px;
background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url('select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}
html[dir="rtl"] .select2-search input {
padding: 4px 5px 4px 20px;
background: #fff url('select2.png') no-repeat -37px -22px;
background: url('select2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
background: url('select2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url('select2.png') no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url('select2.png') no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}
.select2-drop.select2-drop-above .select2-search input {
margin-top: 4px;
}
.select2-search input.select2-active {
background: #fff url('select2-spinner.gif') no-repeat 100%;
background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url('select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
border: 1px solid #5897fb;
outline: none;
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-dropdown-open .select2-choice {
border-bottom-color: transparent;
-webkit-box-shadow: 0 1px 0 #fff inset;
box-shadow: 0 1px 0 #fff inset;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
background-color: #eee;
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
border: 1px solid #5897fb;
border-top-color: transparent;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}
.select2-dropdown-open .select2-choice .select2-arrow {
background: transparent;
border-left: none;
filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
border-right: none;
}
.select2-dropdown-open .select2-choice .select2-arrow b {
background-position: -18px 1px;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
background-position: -16px 1px;
}
.select2-hidden-accessible {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
/* results */
.select2-results {
max-height: 200px;
padding: 0 0 0 4px;
margin: 4px 4px 4px 0;
position: relative;
overflow-x: hidden;
overflow-y: auto;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html[dir="rtl"] .select2-results {
padding: 0 4px 0 0;
margin: 4px 0 4px 4px;
}
.select2-results ul.select2-result-sub {
margin: 0;
padding-left: 0;
}
.select2-results li {
list-style: none;
display: list-item;
background-image: none;
}
.select2-results li.select2-result-with-children > .select2-result-label {
font-weight: bold;
}
.select2-results .select2-result-label {
padding: 3px 7px 4px;
margin: 0;
cursor: pointer;
min-height: 1em;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }
.select2-results .select2-highlighted {
background: #3875d7;
color: #fff;
}
.select2-results li em {
background: #feffde;
font-style: normal;
}
.select2-results .select2-highlighted em {
background: transparent;
}
.select2-results .select2-highlighted ul {
background: #fff;
color: #000;
}
.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
background: #f4f4f4;
display: list-item;
padding-left: 5px;
}
/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
color: #666;
background: #f4f4f4;
display: list-item;
cursor: default;
}
.select2-results .select2-disabled {
background: #f4f4f4;
display: list-item;
cursor: default;
}
.select2-results .select2-selected {
display: none;
}
.select2-more-results.select2-active {
background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%;
}
.select2-results .select2-ajax-error {
background: rgba(255, 50, 50, .2);
}
.select2-more-results {
background: #f4f4f4;
display: list-item;
}
/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
background-color: #f4f4f4;
background-image: none;
border: 1px solid #ddd;
cursor: default;
}
.select2-container.select2-container-disabled .select2-choice .select2-arrow {
background-color: #f4f4f4;
background-image: none;
border-left: 0;
}
.select2-container.select2-container-disabled .select2-choice abbr {
display: none;
}
/* multiselect */
.select2-container-multi .select2-choices {
height: auto !important;
height: 1%;
margin: 0;
padding: 0 5px 0 0;
position: relative;
border: 1px solid #aaa;
cursor: text;
overflow: hidden;
background-color: #fff;
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}
html[dir="rtl"] .select2-container-multi .select2-choices {
padding: 0 0 0 5px;
}
.select2-locked {
padding: 3px 5px 3px 5px !important;
}
.select2-container-multi .select2-choices {
min-height: 26px;
border-radius:2px!important;
}
.select2-container-multi.select2-container-active .select2-choices {
border: 1px solid #5897fb;
outline: none;
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
float: left;
list-style: none;
line-height:22px;
border-radius:2px;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
margin: 0;
padding: 0;
white-space: nowrap;
}
.select2-container-multi .select2-choices .select2-search-field input {
padding: 5px;
margin: 1px 0;
font-family: sans-serif;
font-size: 100%;
color: #666;
outline: 0;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
background: transparent !important;
}
.select2-container-multi .select2-choices .select2-search-field input.select2-active {
background: #fff url('select2-spinner.gif') no-repeat 100% !important;
}
.select2-default {
color: #999 !important;
}
.select2-container-multi .select2-choices .select2-search-choice {
padding: 3px 5px 3px 18px;
margin: 3px 0 3px 5px;
position: relative;
line-height: 13px;
color: #333;
cursor: default;
border: 1px solid #aaaaaa;
border-radius: 3px;
-webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
background-clip: padding-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: #e4e4e4;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
margin: 3px 5px 3px 0;
padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
background: #d4d4d4;
}
.select2-search-choice-close {
display: block;
width: 12px;
height: 13px;
position: absolute;
right: 3px;
top: 4px;
font-size: 1px;
outline: none;
background: url('select2.png') right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
right: auto;
left: 3px;
}
.select2-container-multi .select2-search-choice-close {
left: 3px;
}
html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
left: auto;
right: 2px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
background-position: right -11px;
}
/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
background-color: #f4f4f4;
background-image: none;
border: 1px solid #ddd;
cursor: default;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
padding: 3px 5px 3px 5px;
border: 1px solid #ddd;
background-image: none;
background-color: #f4f4f4;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close { display: none;
background: none;
}
/* end multiselect */
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
text-decoration: underline;
}
.select2-offscreen, .select2-offscreen:focus {
clip: rect(0 0 0 0) !important;
width: 1px !important;
height: 1px !important;
border: 0 !important;
margin: 0 !important;
padding: 0 !important;
overflow: hidden !important;
position: absolute !important;
outline: 0 !important;
left: 0px !important;
top: 0px !important;
}
.select2-display-none {
display: none;
}
.select2-measure-scrollbar {
position: absolute;
top: -10000px;
left: -10000px;
width: 100px;
height: 100px;
overflow: scroll;
}
/* Retina-ize icons */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
.select2-search input,
.select2-search-choice-close,
.select2-container .select2-choice abbr,
.select2-container .select2-choice .select2-arrow b {
background-image: url('select2x2.png') !important;
background-repeat: no-repeat !important;
background-size: 60px 40px !important;
}
.select2-search input {
background-position: 100% -21px !important;
}
}
|
third_party/cpp/berkeleydb/docs/upgrading/upgrade_3_0_log_stat.html | apavlo/h-store | <?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>log_stat</title>
<link rel="stylesheet" href="gettingStarted.css" type="text/css" />
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
<link rel="start" href="index.html" title="Berkeley DB Upgrade Guide" />
<link rel="up" href="upgrade_3_0_toc.html" title="Chapter 14. Upgrading Berkeley DB 2.X applications to Berkeley DB 3.0" />
<link rel="prev" href="upgrade_3_0_log_register.html" title="log_register" />
<link rel="next" href="upgrade_3_0_memp_stat.html" title="memp_stat" />
</head>
<body>
<div xmlns="" class="navheader">
<div class="libver">
<p>Library Version 12.1.6.1</p>
</div>
<table width="100%" summary="Navigation header">
<tr>
<th colspan="3" align="center">log_stat</th>
</tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="upgrade_3_0_log_register.html">Prev</a> </td>
<th width="60%" align="center">Chapter 14. Upgrading Berkeley DB 2.X applications to Berkeley DB 3.0</th>
<td width="20%" align="right"> <a accesskey="n" href="upgrade_3_0_memp_stat.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="upgrade_3_0_log_stat"></a>log_stat</h2>
</div>
</div>
</div>
<p>The <span class="bold"><strong>st_refcnt</strong></span> field returned from the log_stat function
has been removed, and this information is no longer available.</p>
</div>
<div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="upgrade_3_0_log_register.html">Prev</a> </td>
<td width="20%" align="center">
<a accesskey="u" href="upgrade_3_0_toc.html">Up</a>
</td>
<td width="40%" align="right"> <a accesskey="n" href="upgrade_3_0_memp_stat.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top">log_register </td>
<td width="20%" align="center">
<a accesskey="h" href="index.html">Home</a>
</td>
<td width="40%" align="right" valign="top"> memp_stat</td>
</tr>
</table>
</div>
</body>
</html>
|
src/Test/OpenOfficeConvert/TestFiles/input/Precede1.css | neilmayhew/pathway | .xitem[lang='en']
{ color: orange;}
.xitem + .xitem{ color: blue;}
.xitem + .xitem[lang='en']{ color: green;}
|
website/static/doc/api/lastest/ycbcr_8cpp_source.html | DarkReZuS/silenteye | <!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>SilentEye: modules/seformatjpeg/ycbcr.cpp Source File</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.7.3 -->
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">SilentEye <span id="projectnumber">0.4.1</span></div>
</td>
</tr>
</tbody>
</table>
</div>
<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>Classes</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>File Members</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<h1>modules/seformatjpeg/ycbcr.cpp</h1> </div>
</div>
<div class="contents">
<a href="ycbcr_8cpp.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">// This file is part of SilentEye.</span>
<a name="l00002"></a>00002 <span class="comment">//</span>
<a name="l00003"></a>00003 <span class="comment">// SilentEye is free software: you can redistribute it and/or modify</span>
<a name="l00004"></a>00004 <span class="comment">// it under the terms of the GNU General Public License as published by</span>
<a name="l00005"></a>00005 <span class="comment">// the Free Software Foundation, either version 3 of the License, or</span>
<a name="l00006"></a>00006 <span class="comment">// (at your option) any later version.</span>
<a name="l00007"></a>00007 <span class="comment">//</span>
<a name="l00008"></a>00008 <span class="comment">// SilentEye is distributed in the hope that it will be useful,</span>
<a name="l00009"></a>00009 <span class="comment">// but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<a name="l00010"></a>00010 <span class="comment">// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</span>
<a name="l00011"></a>00011 <span class="comment">// GNU General Public License for more details.</span>
<a name="l00012"></a>00012 <span class="comment">//</span>
<a name="l00013"></a>00013 <span class="comment">// You should have received a copy of the GNU General Public License</span>
<a name="l00014"></a>00014 <span class="comment">// along with SilentEye. If not, see <http://www.gnu.org/licenses/>.</span>
<a name="l00015"></a>00015
<a name="l00016"></a>00016 <span class="preprocessor">#include "<a class="code" href="ycbcr_8h.html">ycbcr.h</a>"</span>
<a name="l00017"></a>00017
<a name="l00018"></a>00018 <span class="preprocessor">#include "math.h"</span>
<a name="l00019"></a>00019
<a name="l00020"></a>00020 <span class="keyword">namespace </span>SEFormatJPEG {
<a name="l00021"></a>00021
<a name="l00022"></a><a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ade334dd1519f4c7f54b677bcbff6af51">00022</a> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ade334dd1519f4c7f54b677bcbff6af51" title="Create an YCbCr pixel from YCbCr.">YCbCr::YCbCr</a>(<span class="keyword">const</span> <span class="keywordtype">float</span> y, <span class="keyword">const</span> <span class="keywordtype">float</span> cb, <span class="keyword">const</span> <span class="keywordtype">float</span> cr, QObject* parent) : QObject(parent)
<a name="l00023"></a>00023 {
<a name="l00024"></a>00024 <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ab5935fdcf1d135059f0cf67e723855e9" title="luminance">m_y</a> = <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a558b38b0877cc9c08ec79558125e2f03">y</a>;
<a name="l00025"></a>00025 <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ad81050e838b7844ac9f329d065f03e31" title="blue difference">m_cb</a> = <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a6e42f2e7944584dc71198e61a6cc2be5">cb</a>;
<a name="l00026"></a>00026 <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a576827dbf8cc2ba5f2e2d4a647316dc1" title="red difference">m_cr</a> = <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#aa8c091cd4d7d422cfeb7f19317b2c0a9">cr</a>;
<a name="l00027"></a>00027 }
<a name="l00028"></a>00028
<a name="l00029"></a><a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ab379e0507caceec748a76ef7ff72ac79">00029</a> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ade334dd1519f4c7f54b677bcbff6af51" title="Create an YCbCr pixel from YCbCr.">YCbCr::YCbCr</a>(<span class="keyword">const</span> QRgb& rgb, QObject* parent) : QObject(parent)
<a name="l00030"></a>00030 {
<a name="l00031"></a>00031 <span class="keywordtype">int</span> r = qRed(rgb);
<a name="l00032"></a>00032 <span class="keywordtype">int</span> g = qGreen(rgb);
<a name="l00033"></a>00033 <span class="keywordtype">int</span> b = qBlue(rgb);
<a name="l00034"></a>00034
<a name="l00035"></a>00035 <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ab5935fdcf1d135059f0cf67e723855e9" title="luminance">m_y</a> = (<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a281af65d22de3304d23a7c6411aeef08" title="Mathematic value for conversion.">kr</a> * r) + ((1 - <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a281af65d22de3304d23a7c6411aeef08" title="Mathematic value for conversion.">kr</a> - <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a34f3e91a74a53d23570816891f3f9fac" title="Mathematic value for conversion.">kb</a>) * g) + (<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a34f3e91a74a53d23570816891f3f9fac" title="Mathematic value for conversion.">kb</a> * b);
<a name="l00036"></a>00036 <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ad81050e838b7844ac9f329d065f03e31" title="blue difference">m_cb</a> = 128 - (0.1687 * r) - (0.3313 * g) + (0.5 * b);
<a name="l00037"></a>00037 <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a576827dbf8cc2ba5f2e2d4a647316dc1" title="red difference">m_cr</a> = 128 + (0.5 * r) - (0.4187 * g) - (0.0813 * b);
<a name="l00038"></a>00038 }
<a name="l00039"></a>00039
<a name="l00040"></a><a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a97552ac63c563fd9fa7a5e4b568d32b2">00040</a> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a97552ac63c563fd9fa7a5e4b568d32b2">YCbCr::~YCbCr</a>()
<a name="l00041"></a>00041 {
<a name="l00042"></a>00042 <span class="comment">// NOTHING TO DO</span>
<a name="l00043"></a>00043 }
<a name="l00044"></a>00044
<a name="l00045"></a><a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a558b38b0877cc9c08ec79558125e2f03">00045</a> <span class="keywordtype">float</span> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a558b38b0877cc9c08ec79558125e2f03">YCbCr::y</a>()<span class="keyword"> const</span>
<a name="l00046"></a>00046 <span class="keyword"> </span>{
<a name="l00047"></a>00047 <span class="keywordflow">return</span> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ab5935fdcf1d135059f0cf67e723855e9" title="luminance">m_y</a>;
<a name="l00048"></a>00048 }
<a name="l00049"></a>00049
<a name="l00050"></a><a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a997cd937ad17be928ddbcd835f6b913a">00050</a> <span class="keywordtype">void</span> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a997cd937ad17be928ddbcd835f6b913a">YCbCr::setY</a>(<span class="keywordtype">float</span> value)
<a name="l00051"></a>00051 {
<a name="l00052"></a>00052 <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ab5935fdcf1d135059f0cf67e723855e9" title="luminance">m_y</a> = value;
<a name="l00053"></a>00053 }
<a name="l00054"></a>00054
<a name="l00055"></a><a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a6e42f2e7944584dc71198e61a6cc2be5">00055</a> <span class="keywordtype">float</span> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a6e42f2e7944584dc71198e61a6cc2be5">YCbCr::cb</a>()<span class="keyword"> const</span>
<a name="l00056"></a>00056 <span class="keyword"> </span>{
<a name="l00057"></a>00057 <span class="keywordflow">return</span> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ad81050e838b7844ac9f329d065f03e31" title="blue difference">m_cb</a>;
<a name="l00058"></a>00058 }
<a name="l00059"></a>00059
<a name="l00060"></a><a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a2b7865f754bebe84b4ed999225a2a10c">00060</a> <span class="keywordtype">void</span> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a2b7865f754bebe84b4ed999225a2a10c">YCbCr::setCb</a>(<span class="keywordtype">float</span> value)
<a name="l00061"></a>00061 {
<a name="l00062"></a>00062 <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ad81050e838b7844ac9f329d065f03e31" title="blue difference">m_cb</a> = value;
<a name="l00063"></a>00063 }
<a name="l00064"></a>00064
<a name="l00065"></a><a class="code" href="classSEFormatJPEG_1_1YCbCr.html#aa8c091cd4d7d422cfeb7f19317b2c0a9">00065</a> <span class="keywordtype">float</span> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#aa8c091cd4d7d422cfeb7f19317b2c0a9">YCbCr::cr</a>()<span class="keyword"> const</span>
<a name="l00066"></a>00066 <span class="keyword"> </span>{
<a name="l00067"></a>00067 <span class="keywordflow">return</span> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a576827dbf8cc2ba5f2e2d4a647316dc1" title="red difference">m_cr</a>;
<a name="l00068"></a>00068 }
<a name="l00069"></a>00069
<a name="l00070"></a><a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ae676f2e9ed06a5f1d3ca27d219763c6b">00070</a> <span class="keywordtype">void</span> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ae676f2e9ed06a5f1d3ca27d219763c6b">YCbCr::setCr</a>(<span class="keywordtype">float</span> value)
<a name="l00071"></a>00071 {
<a name="l00072"></a>00072 <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a576827dbf8cc2ba5f2e2d4a647316dc1" title="red difference">m_cr</a> = value;
<a name="l00073"></a>00073 }
<a name="l00074"></a>00074
<a name="l00075"></a><a class="code" href="classSEFormatJPEG_1_1YCbCr.html#af75ea227c694dbd5d339dfe3c29f3471">00075</a> QRgb <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#af75ea227c694dbd5d339dfe3c29f3471" title="Convert the YCbCr value into RGB Color.">YCbCr::toRGB</a>()
<a name="l00076"></a>00076 {
<a name="l00077"></a>00077 <span class="keywordtype">int</span> red = round(<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ab5935fdcf1d135059f0cf67e723855e9" title="luminance">m_y</a> + 1.402 * (<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a576827dbf8cc2ba5f2e2d4a647316dc1" title="red difference">m_cr</a> - 128));
<a name="l00078"></a>00078 <span class="keywordtype">int</span> green = round(<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ab5935fdcf1d135059f0cf67e723855e9" title="luminance">m_y</a> - (0.34414 * (<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ad81050e838b7844ac9f329d065f03e31" title="blue difference">m_cb</a> - 128)) - (0.71414 * (<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a576827dbf8cc2ba5f2e2d4a647316dc1" title="red difference">m_cr</a>-128)));
<a name="l00079"></a>00079 <span class="keywordtype">int</span> blue = round(<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ab5935fdcf1d135059f0cf67e723855e9" title="luminance">m_y</a> + (1.772 * (<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ad81050e838b7844ac9f329d065f03e31" title="blue difference">m_cb</a> - 128)));
<a name="l00080"></a>00080
<a name="l00081"></a>00081 <span class="comment">/*int red = (int)(2 * (1 - kr) * m_cr + m_y);</span>
<a name="l00082"></a>00082 <span class="comment"> int green = (int)(m_y - 2 * ((1 - kr) * kr * m_cr + (1 - kb) * kb * m_cb) / (1 - kr - kb));</span>
<a name="l00083"></a>00083 <span class="comment"> int blue = (int)(2 * (1 - kb) * m_cb + m_y);*/</span>
<a name="l00084"></a>00084
<a name="l00085"></a>00085 <span class="comment">// After the compacting process some computed value could be invalid.</span>
<a name="l00086"></a>00086 <span class="keywordflow">if</span> (red > 255) red = 255;
<a name="l00087"></a>00087 <span class="keywordflow">else</span> <span class="keywordflow">if</span> (red < 0) red = 0;
<a name="l00088"></a>00088 <span class="keywordflow">if</span> (green > 255) green = 255;
<a name="l00089"></a>00089 <span class="keywordflow">else</span> <span class="keywordflow">if</span> (green < 0) green = 0;
<a name="l00090"></a>00090 <span class="keywordflow">if</span> (blue > 255) blue = 255;
<a name="l00091"></a>00091 <span class="keywordflow">else</span> <span class="keywordflow">if</span> (blue < 0) blue = 0;
<a name="l00092"></a>00092
<a name="l00093"></a>00093 <span class="keywordflow">return</span> qRgb(red, green, blue);
<a name="l00094"></a>00094 }
<a name="l00095"></a>00095
<a name="l00096"></a><a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ae2cf976a66e2cf8f3d07858e1d1f51d2">00096</a> QString <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ae2cf976a66e2cf8f3d07858e1d1f51d2">YCbCr::toString</a>()
<a name="l00097"></a>00097 {
<a name="l00098"></a>00098 QString str = <span class="stringliteral">"Y:"</span> + QString::number(<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ab5935fdcf1d135059f0cf67e723855e9" title="luminance">m_y</a>) + <span class="stringliteral">","</span>;
<a name="l00099"></a>00099 str += <span class="stringliteral">"Cb:"</span> + QString::number(<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ad81050e838b7844ac9f329d065f03e31" title="blue difference">m_cb</a>) + <span class="stringliteral">","</span>;
<a name="l00100"></a>00100 str += <span class="stringliteral">"Cr:"</span> + QString::number(<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a576827dbf8cc2ba5f2e2d4a647316dc1" title="red difference">m_cr</a>);
<a name="l00101"></a>00101 <span class="keywordflow">return</span> str;
<a name="l00102"></a>00102 }
<a name="l00103"></a>00103
<a name="l00104"></a><a class="code" href="classSEFormatJPEG_1_1YCbCr.html#aeb097963a4524b888d14dc5113186ba1">00104</a> <span class="keywordtype">bool</span> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html#aeb097963a4524b888d14dc5113186ba1">YCbCr::operator==</a>(<span class="keyword">const</span> <a class="code" href="classSEFormatJPEG_1_1YCbCr.html" title="Manage the YCbCr value for a color corresponding to a pixel (Y: luminance, Cb: blue difference...">YCbCr</a>& color)
<a name="l00105"></a>00105 {
<a name="l00106"></a>00106 <span class="keywordflow">return</span> round(color.<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#a558b38b0877cc9c08ec79558125e2f03">y</a>()) == round(<a class="code" href="classSEFormatJPEG_1_1YCbCr.html#ab5935fdcf1d135059f0cf67e723855e9" title="luminance">m_y</a>);
<a name="l00107"></a>00107 }
<a name="l00108"></a>00108
<a name="l00109"></a>00109 }
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sun Feb 6 2011 14:59:54 for SilentEye by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
</body>
</html>
|
addons/forum/templates/post_reply.html | WoWRoster/wowroster_dev | <!-- $Id: post_reply.html 2544 2012-06-10 07:55:08Z ulminia@gmail.com $ -->
<form method="post" action="{U_FORMACTION}" id="addnews" style="text-align:left;">
<input type="hidden" name="process" value="process" />
<input type="hidden" name="type" value="newTopic" />
<div class="tier-2-a">
<div class="tier-2-b">
<div class="tier-2-title">
{CRUMB}</a> - <!-- TRANSLATE reply_topic -->
<div class="right"><input type="submit" value="<!-- TRANSLATE reply_topic -->" /></div>
</div>
<div class="info-text">
<label for="author"><!-- TRANSLATE name -->:</label> <input name="author" id="author" type="text" maxlength="16" size="16" value="{S_POSTER}" />
</div>
<br />
<!-- IF S_HTML_ENABLE -->
<div class="radioset">
<input type="radio" id="html_on" name="html" value="1" <!-- IF S_TOPIC_HTML -->checked="checked" <!-- ENDIF -->/><label for="html_on"><!-- TRANSLATE enable_html --></label>
<input type="radio" id="html_off" name="html" value="0" <!-- IF ! S_TOPIC_HTML -->checked="checked" <!-- ENDIF -->/><label for="html_off"><!-- TRANSLATE disable_html --></label>
</div>
<br />
<!-- ENDIF -->
<textarea name="text" id="text" cols="100" rows="20"></textarea>
</div>
</div>
</form>
|
_includes/templates/permalink.html | youngguncho/youngguncho.github.io | <template id="_permalink-template">
<a href="#" class="permalink">
<span class="sr-only">{{ strings.permalink | default:"Permalink" }}</span>
<span class="{{ strings.permalink_icon | default:"icon-link" }}"></span>
</a>
</template>
|
third_party/cpp/berkeleydb/docs/api_reference/CXX/set_create_dir_parameter.html | malin1993ml/h-store | <?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>set_create_dir</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="configuration_reference.html" title="Appendix B. DB_CONFIG Parameter Reference" />
<link rel="prev" href="set_cache_max_parameter.html" title="set_cache_max" />
<link rel="next" href="set_data_len_parameter.html" title="set_data_len" />
</head>
<body>
<div xmlns="" class="navheader">
<div class="libver">
<p>Library Version 12.1.6.1</p>
</div>
<table width="100%" summary="Navigation header">
<tr>
<th colspan="3" align="center">set_create_dir</th>
</tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="set_cache_max_parameter.html">Prev</a> </td>
<th width="60%" align="center">Appendix B. DB_CONFIG Parameter Reference</th>
<td width="20%" align="right"> <a accesskey="n" href="set_data_len_parameter.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="set_create_dir_parameter"></a>set_create_dir</h2></div></div></div><p>
Sets the path of a directory to be used as the location to create the access method database files.
</p><p>
The syntax of this parameter in the <a href="../../programmer_reference/env_db_config.html#env_db_config.DB_CONFIG" class="olink">DB_CONFIG</a> file is a
single line with the string
<code class="literal">set_create_dir</code>, one or more whitespace
characters, and the directory name.
</p><p>
For example:
</p><pre class="programlisting">set_create_dir /b/data2</pre>
Sets data2 as the location to create the access method database files. When the
<a class="xref" href="dbopen.html" title="Db::open()">Db::open()</a> function is used to
create a file, it will be created relative to this path.
<p> For more information, see <a class="xref" href="envset_create_dir.html" title="DbEnv::set_create_dir()">DbEnv::set_create_dir()</a>.</p></div>
<div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="set_cache_max_parameter.html">Prev</a> </td>
<td width="20%" align="center">
<a accesskey="u" href="configuration_reference.html">Up</a>
</td>
<td width="40%" align="right"> <a accesskey="n" href="set_data_len_parameter.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top">set_cache_max </td>
<td width="20%" align="center">
<a accesskey="h" href="index.html">Home</a>
</td>
<td width="40%" align="right" valign="top"> set_data_len</td>
</tr>
</table>
</div>
</body>
</html>
|
source/plugins/bootstrap-datetimepicker/bootstrap-datetimepicker.min.css | Jensyn/cs-xiyoulinux | /*!
* Datetimepicker for Bootstrap 3
* ! version : 4.7.14
* https://github.com/Eonasdan/bootstrap-datetimepicker/
*/
.bootstrap-datetimepicker-widget {
list-style: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
margin: 2px 0;
padding: 4px;
width: 19em;
}
@media (min-width: 768px) {
.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
width: 38em;
}
}
@media (min-width: 992px) {
.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
width: 38em;
}
}
@media (min-width: 1200px) {
.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
width: 38em;
}
}
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
content: '';
display: inline-block;
position: absolute;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid #cccccc;
border-bottom-color: rgba(0, 0, 0, 0.2);
top: -7px;
left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid white;
top: -6px;
left: 8px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-top: 7px solid #cccccc;
border-top-color: rgba(0, 0, 0, 0.2);
bottom: -7px;
left: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 6px solid white;
bottom: -6px;
left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
left: auto;
right: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
left: auto;
right: 7px;
}
.bootstrap-datetimepicker-widget .list-unstyled {
margin: 0;
}
.bootstrap-datetimepicker-widget a[data-action] {
padding: 6px 0;
}
.bootstrap-datetimepicker-widget a[data-action]:active {
box-shadow: none;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
width: 54px;
font-weight: bold;
font-size: 1.2em;
margin: 0;
}
.bootstrap-datetimepicker-widget button[data-action] {
padding: 6px;
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Increment Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Increment Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Decrement Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Decrement Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Show Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Show Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Toggle AM/PM";
}
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Clear the picker";
}
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Set the date to today";
}
.bootstrap-datetimepicker-widget .picker-switch {
text-align: center;
}
.bootstrap-datetimepicker-widget .picker-switch::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Toggle Date and Time Screens";
}
.bootstrap-datetimepicker-widget .picker-switch td {
padding: 0;
margin: 0;
height: auto;
width: auto;
line-height: inherit;
}
.bootstrap-datetimepicker-widget .picker-switch td span {
line-height: 2.5;
height: 2.5em;
width: 100%;
}
.bootstrap-datetimepicker-widget table {
width: 100%;
margin: 0;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
text-align: center;
border-radius: 4px;
}
.bootstrap-datetimepicker-widget table th {
height: 20px;
line-height: 20px;
width: 20px;
}
.bootstrap-datetimepicker-widget table th.picker-switch {
width: 145px;
}
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
background: none;
color: #777777;
cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table th.prev::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Previous Month";
}
.bootstrap-datetimepicker-widget table th.next::after {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
content: "Next Month";
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
cursor: pointer;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td {
height: 54px;
line-height: 54px;
width: 54px;
}
.bootstrap-datetimepicker-widget table td.cw {
font-size: .8em;
height: 20px;
line-height: 20px;
color: #777777;
}
.bootstrap-datetimepicker-widget table td.day {
height: 20px;
line-height: 20px;
width: 20px;
}
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
background: #eeeeee;
cursor: pointer;
}
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
color: #777777;
}
.bootstrap-datetimepicker-widget table td.today {
position: relative;
}
.bootstrap-datetimepicker-widget table td.today:before {
content: '';
display: inline-block;
border: 0 0 7px 7px solid transparent;
border-bottom-color: #337ab7;
border-top-color: rgba(0, 0, 0, 0.2);
position: absolute;
bottom: 4px;
right: 4px;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
background-color: #337ab7;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td.active.today:before {
border-bottom-color: #fff;
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
background: none;
color: #777777;
cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table td span {
display: inline-block;
width: 54px;
height: 54px;
line-height: 54px;
margin: 2px 1.5px;
cursor: pointer;
border-radius: 4px;
}
.bootstrap-datetimepicker-widget table td span:hover {
background: #eeeeee;
}
.bootstrap-datetimepicker-widget table td span.active {
background-color: #337ab7;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td span.old {
color: #777777;
}
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
background: none;
color: #777777;
cursor: not-allowed;
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
height: 27px;
line-height: 27px;
}
.input-group.date .input-group-addon {
cursor: pointer;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
} |
src/app/locale/en_US/template/magesetup/page/payment.html | riker09/firegento-magesetup | <!--@title Payment Methods @-->
<!--@identifier payment @-->
<!--@root_template one_column @-->
<h2><i>Please insert your payment methods and further details here.</i></h2>
|
themes/mf/assets/pawtucket/css/fonts.css | ideesculture/pawtucket2 |
@charset "UTF-8";
/* CSS Document */
@font-face {
font-family: 'ProximaNovaBold';
src: url('fonts/proximanova-bold-webfont.eot');
src: url('fonts/proximanova-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/proximanova-bold-webfont.woff') format('woff'),
url('fonts/proximanova-bold-webfont.ttf') format('truetype'),
url('fonts/proximanova-bold-webfont.svg#ProximaNovaBold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'ProximaNovaBoldItalic';
src: url('fonts/proximanova-boldit-webfont.eot');
src: url('fonts/proximanova-boldit-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/proximanova-boldit-webfont.woff') format('woff'),
url('fonts/proximanova-boldit-webfont.ttf') format('truetype'),
url('fonts/proximanova-boldit-webfont.svg#ProximaNovaBoldItalic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'ProximaNovaRegular';
src: url('fonts/proximanova-reg-webfont.eot');
src: url('fonts/proximanova-reg-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/proximanova-reg-webfont.woff') format('woff'),
url('fonts/proximanova-reg-webfont.ttf') format('truetype'),
url('fonts/proximanova-reg-webfont.svg#ProximaNovaRegular') format('svg');
font-weight: normal;
font-style: normal;
}
|
src/main/resources/se/diabol/jenkins/pipeline/DeliveryPipelineView/help-allowPipelineStart.html | dawidmalina/delivery-pipeline-plugin | <div>
Start a new pipeline build.
</div> |
demo/ts-demo/index.html | kumilingus/joint | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>JointJs + Ts</title>
<link rel="stylesheet" type="text/css" href="vendor/joint.css" />
<body>
<script src="dist/bundle.js"></script>
</body>
</html>
|
examples/sobel/src/boost_1_63_0/doc/html/boost/xpressive/_.html | ntonjeta/iidea-Docker | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Global _</title>
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../xpressive/reference.html#header.boost.xpressive.regex_primitives_hpp" title="Header <boost/xpressive/regex_primitives.hpp>">
<link rel="prev" href="_ln.html" title="Global _ln">
<link rel="next" href="self.html" title="Global self">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td>
<td align="center"><a href="../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="_ln.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../xpressive/reference.html#header.boost.xpressive.regex_primitives_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="self.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.xpressive._"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Global _</span></h2>
<p>boost::xpressive::_ — Matches any one character. </p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../xpressive/reference.html#header.boost.xpressive.regex_primitives_hpp" title="Header <boost/xpressive/regex_primitives.hpp>">boost/xpressive/regex_primitives.hpp</a>>
</span><span class="emphasis"><em><span class="identifier">unspecified</span></em></span> _<span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp716632208"></a><h2>Description</h2>
<p>Match any character, similar to '.' in perl syntax with the /s modifier. '_' matches any one character, including the newline.</p>
<div class="note"><table border="0" summary="Note">
<tr>
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../doc/src/images/note.png"></td>
<th align="left">Note</th>
</tr>
<tr><td align="left" valign="top"><p>To match any character except the newline, use ~_n </p></td></tr>
</table></div>
<p>
</p>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2007 Eric Niebler<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="_ln.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../xpressive/reference.html#header.boost.xpressive.regex_primitives_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="self.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
addons/lunch/static/src/css/lunch.css | tvtsoft/odoo8 | .openerp .o_lunch .o_lunch_alert {
height: 22px;
}
.openerp .o_lunch .o_lunch_30pc {
width: 30%;
display: inline-block;
vertical-align: top;
}
.openerp .o_lunch .o_lunch_30pc:nth-child(3) {
padding-right: 0;
}
.openerp .o_lunch .o_lunch_30pc {
padding-right: 5%;
}
.openerp .o_lunch h2 {
color: #7c7bad;
}
.openerp .o_lunch .o_lunch_vignette {
border-bottom: 1px solid #dddddd;
padding-top: 5px;
padding-bottom: 5px;
}
.openerp .o_lunch .o_lunch_vignette:last-child {
border: none;
}
.openerp .o_lunch .oe_group_text_button {
margin-bottom: 3px;
}
|
instance-app/views/person/form.html | Sinar/popit | <form action="<%= person.url %>" method="post" class="container entity person person-view editing">
<input type="hidden" name="_method" value="put">
<input type="hidden" name="_add_another" value="0">
<div class="entity-header">
<%= render('person/image.html') %>
<div class="entity-header__primary-property">
<label for="input-name">Name</label>
<input type="text" class="form-control" id="input-name" name="name" placeholder="John Doe" value="<%- person.name %>">
<strong class="control-label edit-mode-error" style="display: none">This person must have a name</strong>
</div>
</div>
<div class="entity-details">
<ul class="nav nav-tabs">
<li><a href="#political-career">Political career</a></li>
<li><a href="#biography">Biography</a></li>
<li><a href="#websites">Websites</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#sources">Sources</a></li>
<li><a href="#advanced">Advanced</a></li>
</ul>
<div class="entity-details__section" id="biography">
<% if (!person.other_names.length && !person.summary && !person.birth_date && !person.death_date) { %>
<p class="entity-details__hint view-mode entity-enter-edit-mode">
<span class="btn btn-xs btn-default pull-right">Add details</span>
You can use PopIt to store extra information about this person, like who they are and when they were born.
</p>
<% } %>
<div class="entity-details__property">
<label>Other names</label>
<ul class="other_names">
<% _.each(person.other_names, function(name, i) { %>
<li>
<%= render('other_name/edit.html', {name: name, i: i}) %>
<a href="#" class="other_name-delete">Delete</a>
</li>
<% }) %>
</ul>
<a class="add other_name-edit btn"><span class="glyphicon glyphicon-plus glyphicon-space-after"></span>Add a<% if(person.other_names.length){ %>nother<% } %> name</a>
</div>
<div class="entity-details__property">
<label>Summary</label>
<textarea class="form-control" name="summary"><%- person.summary %></textarea>
</div>
<div class="entity-details__property">
<label>Born</label>
<input type="text" class="form-control" name="birth_date" value="<%- person.birth_date || '' %>">
<strong class="control-label edit-mode-error" style="display: none">Dates should be in YYYY, YYYY-MM or YYYY-MM-DD format</strong>
</div>
<div class="entity-details__property">
<label>Died</label>
<input type="text" class="form-control" name="death_date" value="<%- person.death_date || '' %>">
<strong class="control-label edit-mode-error" style="display: none">Dates should be in YYYY, YYYY-MM or YYYY-MM-DD format</strong>
</div>
</div>
<div class="entity-details__section" id="websites">
<% if (!person.links.length) { %>
<p class="entity-details__hint view-mode entity-enter-edit-mode">
<span class="btn btn-xs btn-default pull-right">Add links to websites</span>
If this person has a website, or any online profile pages, you can add them here.
</p>
<% } %>
<div class="entity-details__property">
<ul class="links">
<% _.each(person.links, function(link, i) { %>
<li>
<%= render('link/edit.html', {link: link, i: i}) %>
<a href="delete" class="link-delete">Delete</a>
</li>
<% }) %>
</ul>
<a class="add link-edit btn"><span class="glyphicon glyphicon-plus glyphicon-space-after"></span>Add a<% if(person.links.length){ %>nother<% } %> link</a>
</div>
</div>
<div class="entity-details__section" id="contact">
<% if (!person.contact_details.length) { %>
<p class="entity-details__hint view-mode entity-enter-edit-mode">
<span class="btn btn-xs btn-default pull-right">Add contact details</span>
PopIt is most useful when people have contact details, like their phone, email, and Twitter.
</p>
<% } %>
<div class="entity-details__property">
<ul class="contact_details">
<% _.each(person.contact_details, function(contact, i) { %>
<li>
<%= render('contact/edit.html', {contact: contact, i: i}) %>
<a href="delete" class="contact-delete">Delete</a>
</li>
<% }) %>
</ul>
<a class="add contact-edit btn"><span class="glyphicon glyphicon-plus glyphicon-space-after"></span>Add <% if ( person.contact_details.length > 0 ) { %>more <% } %>contact details</a>
</div>
</div>
<div class="entity-details__section" id="political-career">
<% if (!memberships.length) { %>
<p class="entity-details__hint view-mode entity-enter-edit-mode">
<span class="btn btn-xs btn-default pull-right">Add a membership</span>
Is this person a member of an organization or party?
</p>
<% } %>
<div class="entity-details__property">
<ul class="cleared memberships">
<% _.each( memberships, function (membership, i) { %>
<% if (validMembership(membership, person.id)) { %>
<li class="membership">
<%= render('membership/new.html', { membership: membership, member: person, organization: relatedObject(membership, person, lang, defaultLang), type: 'person', i: i }) %>
</li>
<% } %>
<% }); %>
</ul>
<a class="add add-membership btn"><span class="glyphicon glyphicon-plus glyphicon-space-after"></span>Add a<% if(memberships.length){ %>nother<% } %> membership</a>
</div>
</div>
<div class="entity-details__section" id="sources">
<% if (!person.sources.length) { %>
<p class="entity-details__hint view-mode entity-enter-edit-mode">
<span class="btn btn-xs btn-default pull-right">Add sources</span>
Add any URLs to documents from which the person is derived here.
</p>
<% } %>
<div class="entity-details__property">
<ul class="sources">
<% _.each(person.sources, function(source, i) { %>
<li>
<%= render('source/edit.html', {source: source, i: i}) %>
<a class="source-delete" href="#">Delete</a>
</li>
<% }) %>
</ul>
<a class="add source-edit btn"><span class="glyphicon glyphicon-plus glyphicon-space-after"></span>Add a<% if(person.sources.length){ %>nother<% } %> source</a>
</div>
</div>
<div class="entity-details__section" id="advanced">
<% if (!person.identifiers.length) { %>
<p class="entity-details__hint view-mode entity-enter-edit-mode">
<span class="btn btn-xs btn-default pull-right">Add identifiers</span>
If this person has special registration or ID numbers, you can add them here.
</p>
<% } %>
<div class="entity-details__property">
<ul class="identifiers">
<% _.each(person.identifiers, function(identifier, i) { %>
<li>
<%= render('identifier/edit.html', {identifier: identifier, i: i}) %>
<a class="identifier-delete" href="#">Delete</a>
</li>
<% }) %>
</ul>
<a class="add identifier-edit btn"><span class="glyphicon glyphicon-plus glyphicon-space-after"></span>Add an<% if(person.identifiers.length){ %>other<% } %> identifier</a>
</div>
</div>
</div>
<div class="btn-group">
<button type="submit" class="btn btn-success"><span class="glyphicon glyphicon-ok glyphicon-space-after"></span> Save changes</button>
</div>
</form>
|
selectraerp/libs/js/ext-3.1.1/resources/css/xtheme-blue.css | armadillotec/SuiteSelectra | /*!
* Ext JS Library 3.1.1
* Copyright(c) 2006-2010 Ext JS, LLC
* licensing@extjs.com
* http://www.extjs.com/license
*/
.ext-el-mask {
background-color: #ccc;
}
.ext-el-mask-msg {
border-color:#6593cf;
background-color:#c3daf9;
background-image:url(../images/default/box/tb-blue.gif);
}
.ext-el-mask-msg div {
background-color: #eee;
border-color:#a3bad9;
color:#222;
font:normal 11px tahoma, arial, helvetica, sans-serif;
}
.x-mask-loading div {
background-color:#fbfbfb;
background-image:url(../images/default/grid/loading.gif);
}
.x-item-disabled {
color: gray;
}
.x-item-disabled * {
color: gray !important;
}
.x-splitbar-proxy {
background-color: #aaa;
}
.x-color-palette a {
border-color:#fff;
}
.x-color-palette a:hover, .x-color-palette a.x-color-palette-sel {
border-color:#8bb8f3;
background-color: #deecfd;
}
.x-color-palette em:hover, .x-color-palette span:hover{
background-color: #deecfd;
}
.x-color-palette em {
border-color:#aca899;
}
.x-ie-shadow {
background-color:#777;
}
.x-shadow .xsmc {
background-image: url(../images/default/shadow-c.png);
}
.x-shadow .xsml, .x-shadow .xsmr {
background-image: url(../images/default/shadow-lr.png);
}
.x-shadow .xstl, .x-shadow .xstc, .x-shadow .xstr, .x-shadow .xsbl, .x-shadow .xsbc, .x-shadow .xsbr{
background-image: url(../images/default/shadow.png);
}
.loading-indicator {
font-size: 11px;
background-image: url(../images/default/grid/loading.gif);
}
.x-spotlight {
background-color: #ccc;
}
.x-tab-panel-header, .x-tab-panel-footer {
background-color: #deecfd;
border-color:#8db2e3;
overflow:hidden;
zoom:1;
}
.x-tab-panel-header, .x-tab-panel-footer {
border-color:#8db2e3;
}
ul.x-tab-strip-top{
background-color:#cedff5;
background-image: url(../images/default/tabs/tab-strip-bg.gif);
border-bottom-color:#8db2e3;
}
ul.x-tab-strip-bottom{
background-color:#cedff5;
background-image: url(../images/default/tabs/tab-strip-btm-bg.gif);
border-top-color:#8db2e3;
}
.x-tab-panel-header-plain .x-tab-strip-spacer,
.x-tab-panel-footer-plain .x-tab-strip-spacer {
border-color:#8db2e3;
background-color: #deecfd;
}
.x-tab-strip span.x-tab-strip-text {
font:normal 11px tahoma,arial,helvetica;
color:#416aa3;
}
.x-tab-strip-over span.x-tab-strip-text {
color:#15428b;
}
.x-tab-strip-active span.x-tab-strip-text {
color:#15428b;
font-weight:bold;
}
.x-tab-strip-disabled .x-tabs-text {
color:#aaaaaa;
}
.x-tab-strip-top .x-tab-right, .x-tab-strip-top .x-tab-left, .x-tab-strip-top .x-tab-strip-inner{
background-image: url(../images/default/tabs/tabs-sprite.gif);
}
.x-tab-strip-bottom .x-tab-right {
background-image: url(../images/default/tabs/tab-btm-inactive-right-bg.gif);
}
.x-tab-strip-bottom .x-tab-left {
background-image: url(../images/default/tabs/tab-btm-inactive-left-bg.gif);
}
.x-tab-strip-bottom .x-tab-strip-over .x-tab-right {
background-image: url(../images/default/tabs/tab-btm-over-right-bg.gif);
}
.x-tab-strip-bottom .x-tab-strip-over .x-tab-left {
background-image: url(../images/default/tabs/tab-btm-over-left-bg.gif);
}
.x-tab-strip-bottom .x-tab-strip-active .x-tab-right {
background-image: url(../images/default/tabs/tab-btm-right-bg.gif);
}
.x-tab-strip-bottom .x-tab-strip-active .x-tab-left {
background-image: url(../images/default/tabs/tab-btm-left-bg.gif);
}
.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close {
background-image:url(../images/default/tabs/tab-close.gif);
}
.x-tab-strip .x-tab-strip-closable a.x-tab-strip-close:hover{
background-image:url(../images/default/tabs/tab-close.gif);
}
.x-tab-panel-body {
border-color:#8db2e3;
background-color:#fff;
}
.x-tab-panel-body-top {
border-top: 0 none;
}
.x-tab-panel-body-bottom {
border-bottom: 0 none;
}
.x-tab-scroller-left {
background-image:url(../images/default/tabs/scroll-left.gif);
border-bottom-color:#8db2e3;
}
.x-tab-scroller-left-over {
background-position: 0 0;
}
.x-tab-scroller-left-disabled {
background-position: -18px 0;
opacity:.5;
-moz-opacity:.5;
filter:alpha(opacity=50);
cursor:default;
}
.x-tab-scroller-right {
background-image:url(../images/default/tabs/scroll-right.gif);
border-bottom-color:#8db2e3;
}
.x-tab-panel-bbar .x-toolbar, .x-tab-panel-tbar .x-toolbar {
border-color:#99bbe8;
}.x-form-field{
font:normal 12px tahoma, arial, helvetica, sans-serif;
}
.x-form-text, textarea.x-form-field{
background-color:#fff;
background-image:url(../images/default/form/text-bg.gif);
border-color:#b5b8c8;
}
.x-form-select-one {
background-color:#fff;
border-color:#b5b8c8;
}
.x-form-check-group-label {
border-bottom: 1px solid #99bbe8;
color: #15428b;
}
.x-editor .x-form-check-wrap {
background-color:#fff;
}
.x-form-field-wrap .x-form-trigger{
background-image:url(../images/default/form/trigger.gif);
border-bottom-color:#b5b8c8;
}
.x-form-field-wrap .x-form-date-trigger{
background-image: url(../images/default/form/date-trigger.gif);
}
.x-form-field-wrap .x-form-clear-trigger{
background-image: url(../images/default/form/clear-trigger.gif);
}
.x-form-field-wrap .x-form-search-trigger{
background-image: url(../images/default/form/search-trigger.gif);
}
.x-trigger-wrap-focus .x-form-trigger{
border-bottom-color:#7eadd9;
}
.x-item-disabled .x-form-trigger-over{
border-bottom-color:#b5b8c8;
}
.x-item-disabled .x-form-trigger-click{
border-bottom-color:#b5b8c8;
}
.x-form-focus, textarea.x-form-focus{
border-color:#7eadd9;
}
.x-form-invalid, textarea.x-form-invalid{
background-color:#fff;
background-image:url(../images/default/grid/invalid_line.gif);
border-color:#c30;
}
.ext-webkit .x-form-invalid{
background-color:#fee;
border-color:#ff7870;
}
.x-form-inner-invalid, textarea.x-form-inner-invalid{
background-color:#fff;
background-image:url(../images/default/grid/invalid_line.gif);
}
.x-form-grow-sizer {
font:normal 12px tahoma, arial, helvetica, sans-serif;
}
.x-form-item {
font:normal 12px tahoma, arial, helvetica, sans-serif;
}
.x-form-invalid-msg {
color:#c0272b;
font:normal 11px tahoma, arial, helvetica, sans-serif;
background-image:url(../images/default/shared/warning.gif);
}
.x-form-empty-field {
color:gray;
}
.x-small-editor .x-form-field {
font:normal 11px arial, tahoma, helvetica, sans-serif;
}
.ext-webkit .x-small-editor .x-form-field {
font:normal 11px arial, tahoma, helvetica, sans-serif;
}
.x-form-invalid-icon {
background-image:url(../images/default/form/exclamation.gif);
}
.x-fieldset {
border-color:#b5b8c8;
}
.x-fieldset legend {
font:bold 11px tahoma, arial, helvetica, sans-serif;
color:#15428b;
}
.x-btn{
font:normal 11px tahoma, verdana, helvetica;
}
.x-btn button{
font:normal 11px arial,tahoma,verdana,helvetica;
color:#333;
}
.x-btn em {
font-style:normal;
font-weight:normal;
}
.x-btn-tl, .x-btn-tr, .x-btn-tc, .x-btn-ml, .x-btn-mr, .x-btn-mc, .x-btn-bl, .x-btn-br, .x-btn-bc{
background-image:url(../images/default/button/btn.gif);
}
.x-btn-click .x-btn-text, .x-btn-menu-active .x-btn-text, .x-btn-pressed .x-btn-text{
color:#000;
}
.x-btn-disabled *{
color:gray !important;
}
.x-btn-mc em.x-btn-arrow {
background-image:url(../images/default/button/arrow.gif);
}
.x-btn-mc em.x-btn-split {
background-image:url(../images/default/button/s-arrow.gif);
}
.x-btn-over .x-btn-mc em.x-btn-split, .x-btn-click .x-btn-mc em.x-btn-split, .x-btn-menu-active .x-btn-mc em.x-btn-split, .x-btn-pressed .x-btn-mc em.x-btn-split {
background-image:url(../images/default/button/s-arrow-o.gif);
}
.x-btn-mc em.x-btn-arrow-bottom {
background-image:url(../images/default/button/s-arrow-b-noline.gif);
}
.x-btn-mc em.x-btn-split-bottom {
background-image:url(../images/default/button/s-arrow-b.gif);
}
.x-btn-over .x-btn-mc em.x-btn-split-bottom, .x-btn-click .x-btn-mc em.x-btn-split-bottom, .x-btn-menu-active .x-btn-mc em.x-btn-split-bottom, .x-btn-pressed .x-btn-mc em.x-btn-split-bottom {
background-image:url(../images/default/button/s-arrow-bo.gif);
}
.x-btn-group-header {
color: #3e6aaa;
}
.x-btn-group-tc {
background-image: url(../images/default/button/group-tb.gif);
}
.x-btn-group-tl {
background-image: url(../images/default/button/group-cs.gif);
}
.x-btn-group-tr {
background-image: url(../images/default/button/group-cs.gif);
}
.x-btn-group-bc {
background-image: url(../images/default/button/group-tb.gif);
}
.x-btn-group-bl {
background-image: url(../images/default/button/group-cs.gif);
}
.x-btn-group-br {
background-image: url(../images/default/button/group-cs.gif);
}
.x-btn-group-ml {
background-image: url(../images/default/button/group-lr.gif);
}
.x-btn-group-mr {
background-image: url(../images/default/button/group-lr.gif);
}
.x-btn-group-notitle .x-btn-group-tc {
background-image: url(../images/default/button/group-tb.gif);
}.x-toolbar{
border-color:#a9bfd3;
background-color:#d0def0;
background-image:url(../images/default/toolbar/bg.gif);
}
.x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{
font:normal 11px arial,tahoma, helvetica, sans-serif;
}
.x-toolbar .x-item-disabled {
color:gray;
}
.x-toolbar .x-item-disabled * {
color:gray;
}
.x-toolbar .x-btn-mc em.x-btn-split {
background-image:url(../images/default/button/s-arrow-noline.gif);
}
.x-toolbar .x-btn-over .x-btn-mc em.x-btn-split, .x-toolbar .x-btn-click .x-btn-mc em.x-btn-split,
.x-toolbar .x-btn-menu-active .x-btn-mc em.x-btn-split, .x-toolbar .x-btn-pressed .x-btn-mc em.x-btn-split
{
background-image:url(../images/default/button/s-arrow-o.gif);
}
.x-toolbar .x-btn-mc em.x-btn-split-bottom {
background-image:url(../images/default/button/s-arrow-b-noline.gif);
}
.x-toolbar .x-btn-over .x-btn-mc em.x-btn-split-bottom, .x-toolbar .x-btn-click .x-btn-mc em.x-btn-split-bottom,
.x-toolbar .x-btn-menu-active .x-btn-mc em.x-btn-split-bottom, .x-toolbar .x-btn-pressed .x-btn-mc em.x-btn-split-bottom
{
background-image:url(../images/default/button/s-arrow-bo.gif);
}
.x-toolbar .xtb-sep {
background-image: url(../images/default/grid/grid-blue-split.gif);
}
.x-tbar-page-first{
background-image: url(../images/default/grid/page-first.gif) !important;
}
.x-tbar-loading{
background-image: url(../images/default/grid/refresh.gif) !important;
}
.x-tbar-page-last{
background-image: url(../images/default/grid/page-last.gif) !important;
}
.x-tbar-page-next{
background-image: url(../images/default/grid/page-next.gif) !important;
}
.x-tbar-page-prev{
background-image: url(../images/default/grid/page-prev.gif) !important;
}
.x-item-disabled .x-tbar-loading{
background-image: url(../images/default/grid/loading.gif) !important;
}
.x-item-disabled .x-tbar-page-first{
background-image: url(../images/default/grid/page-first-disabled.gif) !important;
}
.x-item-disabled .x-tbar-page-last{
background-image: url(../images/default/grid/page-last-disabled.gif) !important;
}
.x-item-disabled .x-tbar-page-next{
background-image: url(../images/default/grid/page-next-disabled.gif) !important;
}
.x-item-disabled .x-tbar-page-prev{
background-image: url(../images/default/grid/page-prev-disabled.gif) !important;
}
.x-paging-info {
color:#444;
}
.x-toolbar-more-icon {
background-image: url(../images/default/toolbar/more.gif) !important;
}.x-resizable-handle {
background-color:#fff;
}
.x-resizable-over .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-east,
.x-resizable-over .x-resizable-handle-west, .x-resizable-pinned .x-resizable-handle-west
{
background-image:url(../images/default/sizer/e-handle.gif);
}
.x-resizable-over .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-south,
.x-resizable-over .x-resizable-handle-north, .x-resizable-pinned .x-resizable-handle-north
{
background-image:url(../images/default/sizer/s-handle.gif);
}
.x-resizable-over .x-resizable-handle-north, .x-resizable-pinned .x-resizable-handle-north{
background-image:url(../images/default/sizer/s-handle.gif);
}
.x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast{
background-image:url(../images/default/sizer/se-handle.gif);
}
.x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest{
background-image:url(../images/default/sizer/nw-handle.gif);
}
.x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast{
background-image:url(../images/default/sizer/ne-handle.gif);
}
.x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest{
background-image:url(../images/default/sizer/sw-handle.gif);
}
.x-resizable-proxy{
border-color:#3b5a82;
}
.x-resizable-overlay{
background-color:#fff;
}
.x-grid3 {
background-color:#fff;
}
.x-grid-panel .x-panel-mc .x-panel-body {
border-color:#99bbe8;
}
.x-grid3-hd-row td, .x-grid3-row td, .x-grid3-summary-row td{
font:normal 11px arial, tahoma, helvetica, sans-serif;
}
.x-grid3-hd-row td {
border-left-color:#eee;
border-right-color:#d0d0d0;
}
.x-grid-row-loading {
background-color: #fff;
background-image:url(../images/default/shared/loading-balls.gif);
}
.x-grid3-row {
border-color:#ededed;
border-top-color:#fff;
}
.x-grid3-row-alt{
background-color:#fafafa;
}
.x-grid3-row-over {
border-color:#ddd;
background-color:#efefef;
background-image:url(../images/default/grid/row-over.gif);
}
.x-grid3-resize-proxy {
background-color:#777;
}
.x-grid3-resize-marker {
background-color:#777;
}
.x-grid3-header{
background-color:#f9f9f9;
background-image:url(../images/default/grid/grid3-hrow.gif);
}
.x-grid3-header-pop {
border-left-color:#d0d0d0;
}
.x-grid3-header-pop-inner {
border-left-color:#eee;
background-image:url(../images/default/grid/hd-pop.gif);
}
td.x-grid3-hd-over, td.sort-desc, td.sort-asc, td.x-grid3-hd-menu-open {
border-left-color:#aaccf6;
border-right-color:#aaccf6;
}
td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-asc .x-grid3-hd-inner, td.x-grid3-hd-menu-open .x-grid3-hd-inner {
background-color:#ebf3fd;
background-image:url(../images/default/grid/grid3-hrow-over.gif);
}
.sort-asc .x-grid3-sort-icon {
background-image: url(../images/default/grid/sort_asc.gif);
}
.sort-desc .x-grid3-sort-icon {
background-image: url(../images/default/grid/sort_desc.gif);
}
.x-grid3-cell-text, .x-grid3-hd-text {
color:#000;
}
.x-grid3-split {
background-image: url(../images/default/grid/grid-split.gif);
}
.x-grid3-hd-text {
color:#15428b;
}
.x-dd-drag-proxy .x-grid3-hd-inner{
background-color:#ebf3fd;
background-image:url(../images/default/grid/grid3-hrow-over.gif);
border-color:#aaccf6;
}
.col-move-top{
background-image:url(../images/default/grid/col-move-top.gif);
}
.col-move-bottom{
background-image:url(../images/default/grid/col-move-bottom.gif);
}
.x-grid3-row-selected {
background-color: #dfe8f6 !important;
background-image: none;
border-color:#a3bae9;
}
.x-grid3-cell-selected{
background-color: #b8cfee !important;
color:#000;
}
.x-grid3-cell-selected span{
color:#000 !important;
}
.x-grid3-cell-selected .x-grid3-cell-text{
color:#000;
}
.x-grid3-locked td.x-grid3-row-marker, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker{
background-color:#ebeadb !important;
background-image:url(../images/default/grid/grid-hrow.gif) !important;
color:#000;
border-top-color:#fff;
border-right-color:#6fa0df !important;
}
.x-grid3-locked td.x-grid3-row-marker div, .x-grid3-locked .x-grid3-row-selected td.x-grid3-row-marker div{
color:#15428b !important;
}
.x-grid3-dirty-cell {
background-image:url(../images/default/grid/dirty.gif);
}
.x-grid3-topbar, .x-grid3-bottombar{
font:normal 11px arial, tahoma, helvetica, sans-serif;
}
.x-grid3-bottombar .x-toolbar{
border-top-color:#a9bfd3;
}
.x-props-grid .x-grid3-td-name .x-grid3-cell-inner{
background-image:url(../images/default/grid/grid3-special-col-bg.gif) !important;
color:#000 !important;
}
.x-props-grid .x-grid3-body .x-grid3-td-name{
background-color:#fff !important;
border-right-color:#eee;
}
.xg-hmenu-sort-asc .x-menu-item-icon{
background-image: url(../images/default/grid/hmenu-asc.gif);
}
.xg-hmenu-sort-desc .x-menu-item-icon{
background-image: url(../images/default/grid/hmenu-desc.gif);
}
.xg-hmenu-lock .x-menu-item-icon{
background-image: url(../images/default/grid/hmenu-lock.gif);
}
.xg-hmenu-unlock .x-menu-item-icon{
background-image: url(../images/default/grid/hmenu-unlock.gif);
}
.x-grid3-hd-btn {
background-color:#c3daf9;
background-image:url(../images/default/grid/grid3-hd-btn.gif);
}
.x-grid3-body .x-grid3-td-expander {
background-image:url(../images/default/grid/grid3-special-col-bg.gif);
}
.x-grid3-row-expander {
background-image:url(../images/default/grid/row-expand-sprite.gif);
}
.x-grid3-body .x-grid3-td-checker {
background-image: url(../images/default/grid/grid3-special-col-bg.gif);
}
.x-grid3-row-checker, .x-grid3-hd-checker {
background-image:url(../images/default/grid/row-check-sprite.gif);
}
.x-grid3-body .x-grid3-td-numberer {
background-image:url(../images/default/grid/grid3-special-col-bg.gif);
}
.x-grid3-body .x-grid3-td-numberer .x-grid3-cell-inner {
color:#444;
}
.x-grid3-body .x-grid3-td-row-icon {
background-image:url(../images/default/grid/grid3-special-col-bg.gif);
}
.x-grid3-body .x-grid3-row-selected .x-grid3-td-numberer,
.x-grid3-body .x-grid3-row-selected .x-grid3-td-checker,
.x-grid3-body .x-grid3-row-selected .x-grid3-td-expander {
background-image:url(../images/default/grid/grid3-special-col-sel-bg.gif);
}
.x-grid3-check-col {
background-image:url(../images/default/menu/unchecked.gif);
}
.x-grid3-check-col-on {
background-image:url(../images/default/menu/checked.gif);
}
.x-grid-group, .x-grid-group-body, .x-grid-group-hd {
zoom:1;
}
.x-grid-group-hd {
border-bottom-color:#99bbe8;
}
.x-grid-group-hd div.x-grid-group-title {
background-image:url(../images/default/grid/group-collapse.gif);
color:#3764a0;
font:bold 11px tahoma, arial, helvetica, sans-serif;
}
.x-grid-group-collapsed .x-grid-group-hd div.x-grid-group-title {
background-image:url(../images/default/grid/group-expand.gif);
}
.x-group-by-icon {
background-image:url(../images/default/grid/group-by.gif);
}
.x-cols-icon {
background-image:url(../images/default/grid/columns.gif);
}
.x-show-groups-icon {
background-image:url(../images/default/grid/group-by.gif);
}
.x-grid-empty {
color:gray;
font:normal 11px tahoma, arial, helvetica, sans-serif;
}
.x-grid-with-col-lines .x-grid3-row td.x-grid3-cell {
border-right-color:#ededed;
}
.x-grid-with-col-lines .x-grid3-row-selected {
border-top-color:#a3bae9;
}.x-dd-drag-ghost{
color:#000;
font: normal 11px arial, helvetica, sans-serif;
border-color: #ddd #bbb #bbb #ddd;
background-color:#fff;
}
.x-dd-drop-nodrop .x-dd-drop-icon{
background-image: url(../images/default/dd/drop-no.gif);
}
.x-dd-drop-ok .x-dd-drop-icon{
background-image: url(../images/default/dd/drop-yes.gif);
}
.x-dd-drop-ok-add .x-dd-drop-icon{
background-image: url(../images/default/dd/drop-add.gif);
}
.x-view-selector {
background-color:#c3daf9;
border-color:#3399bb;
}.x-tree-node-expanded .x-tree-node-icon{
background-image:url(../images/default/tree/folder-open.gif);
}
.x-tree-node-leaf .x-tree-node-icon{
background-image:url(../images/default/tree/leaf.gif);
}
.x-tree-node-collapsed .x-tree-node-icon{
background-image:url(../images/default/tree/folder.gif);
}
.x-tree-node-loading .x-tree-node-icon{
background-image:url(../images/default/tree/loading.gif) !important;
}
.x-tree-node .x-tree-node-inline-icon {
background-image: none;
}
.x-tree-node-loading a span{
font-style: italic;
color:#444444;
}
.x-tree-lines .x-tree-elbow{
background-image:url(../images/default/tree/elbow.gif);
}
.x-tree-lines .x-tree-elbow-plus{
background-image:url(../images/default/tree/elbow-plus.gif);
}
.x-tree-lines .x-tree-elbow-minus{
background-image:url(../images/default/tree/elbow-minus.gif);
}
.x-tree-lines .x-tree-elbow-end{
background-image:url(../images/default/tree/elbow-end.gif);
}
.x-tree-lines .x-tree-elbow-end-plus{
background-image:url(../images/default/tree/elbow-end-plus.gif);
}
.x-tree-lines .x-tree-elbow-end-minus{
background-image:url(../images/default/tree/elbow-end-minus.gif);
}
.x-tree-lines .x-tree-elbow-line{
background-image:url(../images/default/tree/elbow-line.gif);
}
.x-tree-no-lines .x-tree-elbow-plus{
background-image:url(../images/default/tree/elbow-plus-nl.gif);
}
.x-tree-no-lines .x-tree-elbow-minus{
background-image:url(../images/default/tree/elbow-minus-nl.gif);
}
.x-tree-no-lines .x-tree-elbow-end-plus{
background-image:url(../images/default/tree/elbow-end-plus-nl.gif);
}
.x-tree-no-lines .x-tree-elbow-end-minus{
background-image:url(../images/default/tree/elbow-end-minus-nl.gif);
}
.x-tree-arrows .x-tree-elbow-plus{
background-image:url(../images/default/tree/arrows.gif);
}
.x-tree-arrows .x-tree-elbow-minus{
background-image:url(../images/default/tree/arrows.gif);
}
.x-tree-arrows .x-tree-elbow-end-plus{
background-image:url(../images/default/tree/arrows.gif);
}
.x-tree-arrows .x-tree-elbow-end-minus{
background-image:url(../images/default/tree/arrows.gif);
}
.x-tree-node{
color:#000;
font: normal 11px arial, tahoma, helvetica, sans-serif;
}
.x-tree-node a, .x-dd-drag-ghost a{
color:#000;
}
.x-tree-node a span, .x-dd-drag-ghost a span{
color:#000;
}
.x-tree-node .x-tree-node-disabled a span{
color:gray !important;
}
.x-tree-node div.x-tree-drag-insert-below{
border-bottom-color:#36c;
}
.x-tree-node div.x-tree-drag-insert-above{
border-top-color:#36c;
}
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-below a{
border-bottom-color:#36c;
}
.x-tree-dd-underline .x-tree-node div.x-tree-drag-insert-above a{
border-top-color:#36c;
}
.x-tree-node .x-tree-drag-append a span{
background-color:#ddd;
border-color:gray;
}
.x-tree-node .x-tree-node-over {
background-color: #eee;
}
.x-tree-node .x-tree-selected {
background-color: #d9e8fb;
}
.x-tree-drop-ok-append .x-dd-drop-icon{
background-image: url(../images/default/tree/drop-add.gif);
}
.x-tree-drop-ok-above .x-dd-drop-icon{
background-image: url(../images/default/tree/drop-over.gif);
}
.x-tree-drop-ok-below .x-dd-drop-icon{
background-image: url(../images/default/tree/drop-under.gif);
}
.x-tree-drop-ok-between .x-dd-drop-icon{
background-image: url(../images/default/tree/drop-between.gif);
}.x-date-picker {
border-color: #1b376c;
background-color:#fff;
}
.x-date-middle,.x-date-left,.x-date-right {
background-image: url(../images/default/shared/hd-sprite.gif);
color:#fff;
font:bold 11px "sans serif", tahoma, verdana, helvetica;
}
.x-date-middle .x-btn .x-btn-text {
color:#fff;
}
.x-date-middle .x-btn-mc em.x-btn-arrow {
background-image:url(../images/default/toolbar/btn-arrow-light.gif);
}
.x-date-right a {
background-image: url(../images/default/shared/right-btn.gif);
}
.x-date-left a{
background-image: url(../images/default/shared/left-btn.gif);
}
.x-date-inner th {
background-color:#dfecfb;
background-image:url(../images/default/shared/glass-bg.gif);
border-bottom-color:#a3bad9;
font:normal 10px arial, helvetica,tahoma,sans-serif;
color:#233d6d;
}
.x-date-inner td {
border-color:#fff;
}
.x-date-inner a {
font:normal 11px arial, helvetica,tahoma,sans-serif;
color:#000;
}
.x-date-inner .x-date-active{
color:#000;
}
.x-date-inner .x-date-selected a{
background-color:#dfecfb;
background-image:url(../images/default/shared/glass-bg.gif);
border-color:#8db2e3;
}
.x-date-inner .x-date-today a{
border-color:darkred;
}
.x-date-inner .x-date-selected span{
font-weight:bold;
}
.x-date-inner .x-date-prevday a,.x-date-inner .x-date-nextday a {
color:#aaa;
}
.x-date-bottom {
border-top-color:#a3bad9;
background-color:#dfecfb;
background-image:url(../images/default/shared/glass-bg.gif);
}
.x-date-inner a:hover, .x-date-inner .x-date-disabled a:hover{
color:#000;
background-color:#ddecfe;
}
.x-date-inner .x-date-disabled a {
background-color:#eee;
color:#bbb;
}
.x-date-mmenu{
background-color:#eee !important;
}
.x-date-mmenu .x-menu-item {
font-size:10px;
color:#000;
}
.x-date-mp {
background-color:#fff;
}
.x-date-mp td {
font:normal 11px arial, helvetica,tahoma,sans-serif;
}
.x-date-mp-btns button {
background-color:#083772;
color:#fff;
border-color: #3366cc #000055 #000055 #3366cc;
font:normal 11px arial, helvetica,tahoma,sans-serif;
}
.x-date-mp-btns {
background-color: #dfecfb;
background-image: url(../images/default/shared/glass-bg.gif);
}
.x-date-mp-btns td {
border-top-color: #c5d2df;
}
td.x-date-mp-month a,td.x-date-mp-year a {
color:#15428b;
}
td.x-date-mp-month a:hover,td.x-date-mp-year a:hover {
color:#15428b;
background-color: #ddecfe;
}
td.x-date-mp-sel a {
background-color: #dfecfb;
background-image: url(../images/default/shared/glass-bg.gif);
border-color:#8db2e3;
}
.x-date-mp-ybtn a {
background-image:url(../images/default/panel/tool-sprites.gif);
}
td.x-date-mp-sep {
border-right-color:#c5d2df;
}.x-tip .x-tip-close{
background-image: url(../images/default/qtip/close.gif);
}
.x-tip .x-tip-tc, .x-tip .x-tip-tl, .x-tip .x-tip-tr, .x-tip .x-tip-bc, .x-tip .x-tip-bl, .x-tip .x-tip-br, .x-tip .x-tip-ml, .x-tip .x-tip-mr {
background-image: url(../images/default/qtip/tip-sprite.gif);
}
.x-tip .x-tip-mc {
font: normal 11px tahoma,arial,helvetica,sans-serif;
}
.x-tip .x-tip-ml {
background-color: #fff;
}
.x-tip .x-tip-header-text {
font: bold 11px tahoma,arial,helvetica,sans-serif;
color:#444;
}
.x-tip .x-tip-body {
font: normal 11px tahoma,arial,helvetica,sans-serif;
color:#444;
}
.x-form-invalid-tip .x-tip-tc, .x-form-invalid-tip .x-tip-tl, .x-form-invalid-tip .x-tip-tr, .x-form-invalid-tip .x-tip-bc,
.x-form-invalid-tip .x-tip-bl, .x-form-invalid-tip .x-tip-br, .x-form-invalid-tip .x-tip-ml, .x-form-invalid-tip .x-tip-mr
{
background-image: url(../images/default/form/error-tip-corners.gif);
}
.x-form-invalid-tip .x-tip-body {
background-image:url(../images/default/form/exclamation.gif);
}
.x-tip-anchor {
background-image:url(../images/default/qtip/tip-anchor-sprite.gif);
}.x-menu {
background-color:#f0f0f0;
background-image:url(../images/default/menu/menu.gif);
}
.x-menu-floating{
border-color:#718bb7;
}
.x-menu-nosep {
background-image:none;
}
.x-menu-list-item{
font:normal 11px arial,tahoma,sans-serif;
}
.x-menu-item-arrow{
background-image:url(../images/default/menu/menu-parent.gif);
}
.x-menu-sep {
background-color:#e0e0e0;
border-bottom-color:#fff;
}
a.x-menu-item {
color:#222;
}
.x-menu-item-active {
background-image: url(../images/default/menu/item-over.gif);
background-color: #dbecf4;
border-color:#aaccf6;
}
.x-menu-item-active a.x-menu-item {
border-color:#aaccf6;
}
.x-menu-check-item .x-menu-item-icon{
background-image:url(../images/default/menu/unchecked.gif);
}
.x-menu-item-checked .x-menu-item-icon{
background-image:url(../images/default/menu/checked.gif);
}
.x-menu-item-checked .x-menu-group-item .x-menu-item-icon{
background-image:url(../images/default/menu/group-checked.gif);
}
.x-menu-group-item .x-menu-item-icon{
background-image:none;
}
.x-menu-plain {
background-color:#f0f0f0 !important;
background-image: none;
}
.x-date-menu, .x-color-menu{
background-color: #fff !important;
}
.x-menu .x-date-picker{
border-color:#a3bad9;
}
.x-cycle-menu .x-menu-item-checked {
border-color:#a3bae9 !important;
background-color:#def8f6;
}
.x-menu-scroller-top {
background-image:url(../images/default/layout/mini-top.gif);
}
.x-menu-scroller-bottom {
background-image:url(../images/default/layout/mini-bottom.gif);
}
.x-box-tl {
background-image: url(../images/default/box/corners.gif);
}
.x-box-tc {
background-image: url(../images/default/box/tb.gif);
}
.x-box-tr {
background-image: url(../images/default/box/corners.gif);
}
.x-box-ml {
background-image: url(../images/default/box/l.gif);
}
.x-box-mc {
background-color: #eee;
background-image: url(../images/default/box/tb.gif);
font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;
color: #393939;
font-size: 12px;
}
.x-box-mc h3 {
font-size: 14px;
font-weight: bold;
}
.x-box-mr {
background-image: url(../images/default/box/r.gif);
}
.x-box-bl {
background-image: url(../images/default/box/corners.gif);
}
.x-box-bc {
background-image: url(../images/default/box/tb.gif);
}
.x-box-br {
background-image: url(../images/default/box/corners.gif);
}
.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr {
background-image: url(../images/default/box/corners-blue.gif);
}
.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc {
background-image: url(../images/default/box/tb-blue.gif);
}
.x-box-blue .x-box-mc {
background-color: #c3daf9;
}
.x-box-blue .x-box-mc h3 {
color: #17385b;
}
.x-box-blue .x-box-ml {
background-image: url(../images/default/box/l-blue.gif);
}
.x-box-blue .x-box-mr {
background-image: url(../images/default/box/r-blue.gif);
}.x-combo-list {
border-color:#98c0f4;
background-color:#ddecfe;
font:normal 12px tahoma, arial, helvetica, sans-serif;
}
.x-combo-list-inner {
background-color:#fff;
}
.x-combo-list-hd {
font:bold 11px tahoma, arial, helvetica, sans-serif;
color:#15428b;
background-image: url(../images/default/layout/panel-title-light-bg.gif);
border-bottom-color:#98c0f4;
}
.x-resizable-pinned .x-combo-list-inner {
border-bottom-color:#98c0f4;
}
.x-combo-list-item {
border-color:#fff;
}
.x-combo-list .x-combo-selected{
border-color:#a3bae9 !important;
background-color:#dfe8f6;
}
.x-combo-list .x-toolbar {
border-top-color:#98c0f4;
}
.x-combo-list-small {
font:normal 11px tahoma, arial, helvetica, sans-serif;
}.x-panel {
border-color: #99bbe8;
}
.x-panel-header {
color:#15428b;
font-weight:bold;
font-size: 11px;
font-family: tahoma,arial,verdana,sans-serif;
border-color:#99bbe8;
background-image: url(../images/default/panel/white-top-bottom.gif);
}
.x-panel-body {
border-color:#99bbe8;
background-color:#fff;
}
.x-panel-bbar .x-toolbar, .x-panel-tbar .x-toolbar {
border-color:#99bbe8;
}
.x-panel-tbar-noheader .x-toolbar, .x-panel-mc .x-panel-tbar .x-toolbar {
border-top-color:#99bbe8;
}
.x-panel-body-noheader, .x-panel-mc .x-panel-body {
border-top-color:#99bbe8;
}
.x-panel-tl .x-panel-header {
color:#15428b;
font:bold 11px tahoma,arial,verdana,sans-serif;
}
.x-panel-tc {
background-image: url(../images/default/panel/top-bottom.gif);
}
.x-panel-tl, .x-panel-tr, .x-panel-bl, .x-panel-br{
background-image: url(../images/default/panel/corners-sprite.gif);
border-bottom-color:#99bbe8;
}
.x-panel-bc {
background-image: url(../images/default/panel/top-bottom.gif);
}
.x-panel-mc {
font: normal 11px tahoma,arial,helvetica,sans-serif;
background-color:#dfe8f6;
}
.x-panel-ml {
background-color: #fff;
background-image:url(../images/default/panel/left-right.gif);
}
.x-panel-mr {
background-image: url(../images/default/panel/left-right.gif);
}
.x-tool {
background-image:url(../images/default/panel/tool-sprites.gif);
}
.x-panel-ghost {
background-color:#cbddf3;
}
.x-panel-ghost ul {
border-color:#99bbe8;
}
.x-panel-dd-spacer {
border-color:#99bbe8;
}
.x-panel-fbar td,.x-panel-fbar span,.x-panel-fbar input,.x-panel-fbar div,.x-panel-fbar select,.x-panel-fbar label{
font:normal 11px arial,tahoma, helvetica, sans-serif;
}
.x-window-proxy {
background-color:#c7dffc;
border-color:#99bbe8;
}
.x-window-tl .x-window-header {
color:#15428b;
font:bold 11px tahoma,arial,verdana,sans-serif;
}
.x-window-tc {
background-image: url(../images/default/window/top-bottom.png);
}
.x-window-tl {
background-image: url(../images/default/window/left-corners.png);
}
.x-window-tr {
background-image: url(../images/default/window/right-corners.png);
}
.x-window-bc {
background-image: url(../images/default/window/top-bottom.png);
}
.x-window-bl {
background-image: url(../images/default/window/left-corners.png);
}
.x-window-br {
background-image: url(../images/default/window/right-corners.png);
}
.x-window-mc {
border-color:#99bbe8;
font: normal 11px tahoma,arial,helvetica,sans-serif;
background-color:#dfe8f6;
}
.x-window-ml {
background-image: url(../images/default/window/left-right.png);
}
.x-window-mr {
background-image: url(../images/default/window/left-right.png);
}
.x-window-maximized .x-window-tc {
background-color:#fff;
}
.x-window-bbar .x-toolbar {
border-top-color:#99bbe8;
}
.x-panel-ghost .x-window-tl {
border-bottom-color:#99bbe8;
}
.x-panel-collapsed .x-window-tl {
border-bottom-color:#84a0c4;
}
.x-dlg-mask{
background-color:#ccc;
}
.x-window-plain .x-window-mc {
background-color: #ccd9e8;
border-color: #a3bae9 #dfe8f6 #dfe8f6 #a3bae9;
}
.x-window-plain .x-window-body {
border-color: #dfe8f6 #a3bae9 #a3bae9 #dfe8f6;
}
body.x-body-masked .x-window-plain .x-window-mc {
background-color: #ccd9e8;
}.x-html-editor-wrap {
border-color:#a9bfd3;
background-color:#fff;
}
.x-html-editor-tb .x-btn-text {
background-image:url(../images/default/editor/tb-sprite.gif);
}.x-panel-noborder .x-panel-header-noborder {
border-bottom-color:#99bbe8;
}
.x-panel-noborder .x-panel-tbar-noborder .x-toolbar {
border-bottom-color:#99bbe8;
}
.x-panel-noborder .x-panel-bbar-noborder .x-toolbar {
border-top-color:#99bbe8;
}
.x-tab-panel-bbar-noborder .x-toolbar {
border-top-color:#99bbe8;
}
.x-tab-panel-tbar-noborder .x-toolbar {
border-bottom-color:#99bbe8;
}.x-border-layout-ct {
background-color:#dfe8f6;
}
.x-accordion-hd {
color:#222;
font-weight:normal;
background-image: url(../images/default/panel/light-hd.gif);
}
.x-layout-collapsed{
background-color:#d2e0f2;
border-color:#98c0f4;
}
.x-layout-collapsed-over{
background-color:#d9e8fb;
}
.x-layout-split-west .x-layout-mini {
background-image:url(../images/default/layout/mini-left.gif);
}
.x-layout-split-east .x-layout-mini {
background-image:url(../images/default/layout/mini-right.gif);
}
.x-layout-split-north .x-layout-mini {
background-image:url(../images/default/layout/mini-top.gif);
}
.x-layout-split-south .x-layout-mini {
background-image:url(../images/default/layout/mini-bottom.gif);
}
.x-layout-cmini-west .x-layout-mini {
background-image:url(../images/default/layout/mini-right.gif);
}
.x-layout-cmini-east .x-layout-mini {
background-image:url(../images/default/layout/mini-left.gif);
}
.x-layout-cmini-north .x-layout-mini {
background-image:url(../images/default/layout/mini-bottom.gif);
}
.x-layout-cmini-south .x-layout-mini {
background-image:url(../images/default/layout/mini-top.gif);
}.x-progress-wrap {
border-color:#6593cf;
}
.x-progress-inner {
background-color:#e0e8f3;
background-image:url(../images/default/qtip/bg.gif);
}
.x-progress-bar {
background-color:#9cbfee;
background-image:url(../images/default/progress/progress-bg.gif);
border-top-color:#d1e4fd;
border-bottom-color:#7fa9e4;
border-right-color:#7fa9e4;
}
.x-progress-text {
font-size:11px;
font-weight:bold;
color:#fff;
}
.x-progress-text-back {
color:#396095;
}.x-list-header{
background-color:#f9f9f9;
background-image:url(../images/default/grid/grid3-hrow.gif);
}
.x-list-header-inner div em {
border-left-color:#ddd;
font:normal 11px arial, tahoma, helvetica, sans-serif;
}
.x-list-body dt em {
font:normal 11px arial, tahoma, helvetica, sans-serif;
}
.x-list-over {
background-color:#eee;
}
.x-list-selected {
background-color:#dfe8f6;
}
.x-list-resizer {
border-left-color:#555;
border-right-color:#555;
}
.x-list-header-inner em.sort-asc, .x-list-header-inner em.sort-desc {
background-image:url(../images/default/grid/sort-hd.gif);
border-color: #99bbe8;
}.x-slider-horz, .x-slider-horz .x-slider-end, .x-slider-horz .x-slider-inner {
background-image:url(../images/default/slider/slider-bg.png);
}
.x-slider-horz .x-slider-thumb {
background-image:url(../images/default/slider/slider-thumb.png);
}
.x-slider-vert, .x-slider-vert .x-slider-end, .x-slider-vert .x-slider-inner {
background-image:url(../images/default/slider/slider-v-bg.png);
}
.x-slider-vert .x-slider-thumb {
background-image:url(../images/default/slider/slider-v-thumb.png);
}.x-window-dlg .ext-mb-text,
.x-window-dlg .x-window-header-text {
font-size:12px;
}
.x-window-dlg .ext-mb-textarea {
font:normal 12px tahoma,arial,helvetica,sans-serif;
}
.x-window-dlg .x-msg-box-wait {
background-image:url(../images/default/grid/loading.gif);
}
.x-window-dlg .ext-mb-info {
background-image:url(../images/default/window/icon-info.gif);
}
.x-window-dlg .ext-mb-warning {
background-image:url(../images/default/window/icon-warning.gif);
}
.x-window-dlg .ext-mb-question {
background-image:url(../images/default/window/icon-question.gif);
}
.x-window-dlg .ext-mb-error {
background-image:url(../images/default/window/icon-error.gif);
} |
rules/rules-rgaa2.2/src/test/resources/testcases/rgaa22/Rgaa22Rule06141/RGAA22.Test.6.14-2Failed-22.html | dzc34/Asqatasun | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>RGAA22 Test.6.14 Failed 22</title>
</head>
<body>
<div>
<p class="test-detail" lang="fr">
Possibilité d’identifier la destination ou l’action des liens et des boutons (intitulé seul)
</p>
<area href="my-link.html" alt="cliquez ici"/>
<map id="map">
<area href="my-link.html"
alt="cliquez ici"/>
</map>
<p class="test-explanation">Failed : The text link belongs to the text link blacklist (whatever the context). We can deduce it is not pertinent</p>
</div>
</body>
</html> |
examples/sobel/src/boost_1_63_0/doc/html/BOOST_ACCUMULATORS_MAX_FEATURES.html | ntonjeta/iidea-Docker | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Macro BOOST_ACCUMULATORS_MAX_FEATURES</title>
<link rel="stylesheet" href="../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="accumulators/reference.html#header.boost.accumulators.accumulators_fwd_hpp" title="Header <boost/accumulators/accumulators_fwd.hpp>">
<link rel="prev" href="boost/accumulators/features.html" title="Struct template features">
<link rel="next" href="BOOST_ACCUMULATORS_MAX_ARGS.html" title="Macro BOOST_ACCUMULATORS_MAX_ARGS">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../boost.png"></td>
<td align="center"><a href="../../index.html">Home</a></td>
<td align="center"><a href="../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="boost/accumulators/features.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="accumulators/reference.html#header.boost.accumulators.accumulators_fwd_hpp"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="BOOST_ACCUMULATORS_MAX_ARGS.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="BOOST_ACCUMULATORS_MAX_FEATURES"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Macro BOOST_ACCUMULATORS_MAX_FEATURES</span></h2>
<p>BOOST_ACCUMULATORS_MAX_FEATURES</p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="accumulators/reference.html#header.boost.accumulators.accumulators_fwd_hpp" title="Header <boost/accumulators/accumulators_fwd.hpp>">boost/accumulators/accumulators_fwd.hpp</a>>
</span>BOOST_ACCUMULATORS_MAX_FEATURES</pre></div>
<div class="refsect1">
<a name="idp93898832"></a><h2>Description</h2>
<p>The maximum number of accumulators that may be put in an accumulator_set. Defaults to BOOST_MPL_LIMIT_VECTOR_SIZE (which defaults to 20). </p>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2005, 2006 Eric Niebler<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="boost/accumulators/features.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="accumulators/reference.html#header.boost.accumulators.accumulators_fwd_hpp"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="BOOST_ACCUMULATORS_MAX_ARGS.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
ui/playground/configure.html | Hazed/PayPal-IPN-Generator | <style>
.form-row {
padding-bottom: .5em;
}
.css-form input.ng-invalid.ng-dirty {
background-color: #FA787E;
}
.css-form input.ng-valid.ng-dirty {
background-color: #78FA89;
}
</style>
<!-- TODO: Add confirmation notification on save, should only be red on save pressed or on leave field. Not automatically. -->
<div fade-in>
<div class="container">
<div class="form-row">
<h3>
Example of form validation and data binding.
</h3>
<hr>
</div>
<div class="well">
<form novalidate class="container css-form">
<div class="container form-row">
Name: <input class="form-control" type="text" ng-model="user.name" required/>
</div>
<div class="container form-row">
E-mail: <input class="form-control" type="email" ng-model="user.email"
required/><br/>
</div>
<div class="container form-row">
Gender: <input type="radio" ng-model="user.gender" value="male"/> Male
<input type="radio" ng-model="user.gender" value="female"/> Female<br/>
</div>
<div style="padding-top: 1em;" class="container form-row">
<a class="btn btn-primary" ng-click="user = '';">Reset</a>
<a class="btn btn-primary" ng-click="saveForm(user)">Save</a>
</div>
</form>
</div>
<pre>form = {{user | json}}</pre>
<pre>master = {{master | json}}</pre>
</div>
</div> |
common/src/web/printPage.html | SeleniumHQ/selenium | <!--
~ Licensed to the Software Freedom Conservancy (SFC) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The SFC licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<!DOCTYPE html>
<html>
<body>
<table>
<tbody>
<tr>
<td>
<div class="page" style="line-height: 3;">
<br/> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tincidunt metus eu consectetur rutrum. Praesent tempor facilisis dapibus. Aliquam cursus diam ac vehicula pulvinar. Integer lacinia non odio et condimentum. Aenean faucibus cursus
mi, sed interdum turpis sagittis a. Quisque quis pellentesque mi. Ut erat eros, posuere sed scelerisque ut, pharetra vitae tellus. Suspendisse ligula sapien, laoreet ac hendrerit sit amet, viverra vel mi. Pellentesque faucibus nisl et dolor
pharetra, vel mattis massa venenatis. Integer congue condimentum nisi, sed tincidunt velit tincidunt non. Nulla sagittis sed lorem pretium aliquam. Praesent consectetur volutpat nibh, quis pulvinar est volutpat id. Cras maximus odio posuere
suscipit venenatis. Donec rhoncus scelerisque metus, in tempus erat rhoncus sed. Morbi massa sapien, porttitor id urna vel, volutpat blandit velit. Cras sit amet sem eros. Quisque commodo facilisis tristique. Proin pellentesque sodales rutrum.
Vestibulum purus neque, congue vel dapibus in, venenatis ut felis. Donec et ligula enim. Sed sapien sapien, tincidunt vitae lectus quis, ultricies rhoncus mi. Nunc dapibus nulla tempus nunc interdum, sed facilisis ex pellentesque. Nunc vel
lorem leo. Cras pharetra sodales metus. Cras lacus ex, consequat at consequat vel, laoreet ac dui. Curabitur aliquam, sapien quis congue feugiat, nisi nisl feugiat diam, sed vehicula velit nulla ac nisl. Aliquam quis nisi euismod massa blandit
pharetra nec eget nunc. Etiam eros ante, auctor sit amet quam vel, fringilla faucibus leo. Morbi a pulvinar nulla. Praesent sed vulputate nisl. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean commodo
mollis iaculis. Maecenas consectetur enim vitae mollis venenatis. Ut scelerisque pretium orci id laoreet. In sit amet pharetra diam. Vestibulum in molestie lorem. Nunc gravida, eros non consequat fermentum, ex orci vestibulum orci, non accumsan
sem velit ac lectus. Vivamus malesuada lacus nec velit dignissim, ac fermentum nulla pretium. Aenean mi nisi, convallis sed tempor in, porttitor eu libero. Praesent et molestie ante. Duis suscipit vitae purus sit amet aliquam. Vestibulum lectus
justo, lobortis a purus a, dapibus efficitur metus. Suspendisse potenti. Duis dictum ex lorem. Suspendisse nec ligula consectetur magna hendrerit ullamcorper et eget mauris. Etiam vestibulum sodales diam, eget venenatis nunc luctus quis. Ut
fermentum placerat neque nec elementum. Praesent orci erat, rhoncus vitae est eu, dictum molestie metus. Cras et fermentum elit. Aenean eget augue lacinia, varius ante in, ullamcorper dolor. Cras viverra purus non egestas consectetur. Nulla
nec dolor ac lectus convallis aliquet sed a metus. Suspendisse eu imperdiet nunc, id pulvinar risus. Maecenas varius sagittis est, vel fermentum risus accumsan at. Vestibulum sollicitudin dui pharetra sapien volutpat, id convallis mi vestibulum.
Phasellus commodo sit amet lorem quis imperdiet. Proin nec diam sed urna euismod ultricies at sed urna. Quisque ornare, nulla et vehicula ultrices, massa purus vehicula urna, ac sodales lacus leo vitae mi. Sed congue placerat justo at placerat.
Aenean suscipit fringilla vehicula. Quisque iaculis orci vitae arcu commodo maximus. Maecenas nec nunc rutrum, cursus elit quis, porttitor sapien. Sed ac hendrerit ipsum, lacinia fringilla velit. Donec ultricies feugiat dictum.
</div>
</td>
</tr>
<tr>
<td>
<div class="page" style="line-height: 3;">
<br/> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc tincidunt metus eu consectetur rutrum. Praesent tempor facilisis dapibus. Aliquam cursus diam ac vehicula pulvinar. Integer lacinia non odio et condimentum. Aenean faucibus cursus
mi, sed interdum turpis sagittis a. Quisque quis pellentesque mi. Ut erat eros, posuere sed scelerisque ut, pharetra vitae tellus. Suspendisse ligula sapien, laoreet ac hendrerit sit amet, viverra vel mi. Pellentesque faucibus nisl et dolor
pharetra, vel mattis massa venenatis. Integer congue condimentum nisi, sed tincidunt velit tincidunt non. Nulla sagittis sed lorem pretium aliquam. Praesent consectetur volutpat nibh, quis pulvinar est volutpat id. Cras maximus odio posuere
suscipit venenatis. Donec rhoncus scelerisque metus, in tempus erat rhoncus sed. Morbi massa sapien, porttitor id urna vel, volutpat blandit velit. Cras sit amet sem eros. Quisque commodo facilisis tristique. Proin pellentesque sodales rutrum.
Vestibulum purus neque, congue vel dapibus in, venenatis ut felis. Donec et ligula enim. Sed sapien sapien, tincidunt vitae lectus quis, ultricies rhoncus mi. Nunc dapibus nulla tempus nunc interdum, sed facilisis ex pellentesque. Nunc vel
lorem leo. Cras pharetra sodales metus. Cras lacus ex, consequat at consequat vel, laoreet ac dui. Curabitur aliquam, sapien quis congue feugiat, nisi nisl feugiat diam, sed vehicula velit nulla ac nisl. Aliquam quis nisi euismod massa blandit
pharetra nec eget nunc. Etiam eros ante, auctor sit amet quam vel, fringilla faucibus leo. Morbi a pulvinar nulla. Praesent sed vulputate nisl. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean commodo
mollis iaculis. Maecenas consectetur enim vitae mollis venenatis. Ut scelerisque pretium orci id laoreet. In sit amet pharetra diam. Vestibulum in molestie lorem. Nunc gravida, eros non consequat fermentum, ex orci vestibulum orci, non accumsan
sem velit ac lectus. Vivamus malesuada lacus nec velit dignissim, ac fermentum nulla pretium. Aenean mi nisi, convallis sed tempor in, porttitor eu libero. Praesent et molestie ante. Duis suscipit vitae purus sit amet aliquam. Vestibulum lectus
justo, lobortis a purus a, dapibus efficitur metus. Suspendisse potenti. Duis dictum ex lorem. Suspendisse nec ligula consectetur magna hendrerit ullamcorper et eget mauris. Etiam vestibulum sodales diam, eget venenatis nunc luctus quis. Ut
fermentum placerat neque nec elementum. Praesent orci erat, rhoncus vitae est eu, dictum molestie metus. Cras et fermentum elit. Aenean eget augue lacinia, varius ante in, ullamcorper dolor. Cras viverra purus non egestas consectetur. Nulla
nec dolor ac lectus convallis aliquet sed a metus. Suspendisse eu imperdiet nunc, id pulvinar risus. Maecenas varius sagittis est, vel fermentum risus accumsan at. Vestibulum sollicitudin dui pharetra sapien volutpat, id convallis mi vestibulum.
Phasellus commodo sit amet lorem quis imperdiet. Proin nec diam sed urna euismod ultricies at sed urna. Quisque ornare, nulla et vehicula ultrices, massa purus vehicula urna, ac sodales lacus leo vitae mi. Sed congue placerat justo at placerat.
Aenean suscipit fringilla vehicula. Quisque iaculis orci vitae arcu commodo maximus. Maecenas nec nunc rutrum, cursus elit quis, porttitor sapien. Sed ac hendrerit ipsum, lacinia fringilla velit. Donec ultricies feugiat dictum.
</div>
</td>
</tr>
</tbody>
</table>
</body>
</html>
|
test/local_tests/jqueryui152/tests/visual/all.css | windmill/windmill |
body { margin: 0; padding: 20px; background: black; }
ul.plugins { margin: 0; padding: 0; }
ul.plugins li { margin: 0 12px 12px 0;
list-style-type: none; width: 210px; height: 220px; float: left;
color: white; border: 1px solid gray; text-align: center; font-weight: bold; }
#accordion, #draggable,
#resizable, #selectable, #sortable, #tabs {
margin: 10px;
width: 190px; height: 180px;
text-align: center;
background: #FF9C08; color: white; font-weight: bold;
}
#selectable div {
width: 45px; height: 45px; float: left; margin: 6px;
border: 1px solid white;
}
#selectable .ui-selecting {
background: gray;
}
#selectable .ui-selected {
background: black;
}
#sortable div {
width: 45px; height: 45px; float: left; margin: 6px;
border: 1px solid white;
}
#sortable .ui-sortable-helper {
background: black;
}
.draggable { margin: 10px; width: 32px; height: 30px; float: left; background: #FF9C08; }
#droppable { margin: 10px; width: 190px; height: 130px; float: left; border: 1px solid #FF9C08; overflow: hidden; }
#droppable .draggable { margin: 7px; }
.ui-dialog { background-color: #FF9C08; }
.ui-dialog .ui-dialog-titlebar { background: black; padding: 0px; height: 28px; _height: 29px; }
.ui-dialog.ui-draggable .ui-dialog-titlebar { cursor: move; }
.ui-dialog .ui-dialog-titlebar-close {
width: 16px; height: 16px; position: absolute; top: 6px; right: 7px;
cursor: default; color: white;
}
.ui-dialog .ui-dialog-titlebar-close-hover { color: #FF9C08; }
.ui-dialog .ui-dialog-title {
margin-left: 5px; color: white; font-weight: bold;
position: relative; top: 7px; left: 4px;
}
.ui-dialog .ui-dialog-content {
margin: 1.2em;
}
.ui-dialog .ui-dialog-buttonpane {
position: absolute;
bottom: 8px;
right: 12px;
width: 100%;
text-align: right;
}
.ui-dialog .ui-dialog-buttonpane button {
margin: 6px;
}
/* Dialog handle styles */
.ui-dialog .ui-resizable-n { cursor: n-resize; height: 6px; width: 100%; top: 0px; left: 0px; background: gray !important; border: none !important; }
.ui-dialog .ui-resizable-s { cursor: s-resize; height: 8px; width: 100%; bottom: 0px; left: 0px; background: gray !important; border: none !important; }
.ui-dialog .ui-resizable-e { cursor: e-resize; width: 7px; right: 0px; top: 0px; height: 100%; background: gray !important; border: none !important; }
.ui-dialog .ui-resizable-w { cursor: w-resize; width: 7px; left: 0px; top: 0px; height: 100%; background: gray !important; border: none !important; }
.ui-dialog .ui-resizable-se { cursor: se-resize; width: 9px; height: 9px; right: 0px; bottom: 0px; background: gray !important; border: none !important; }
.ui-dialog .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: 0px; bottom: 0px; background: gray !important; border: none !important; }
.ui-dialog .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 29px; left: 0px; top: 0px; background: gray !important; border: none !important; }
.ui-dialog .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 29px; right: 0px; top: 0px; background: gray !important; border: none !important; }
.ui-slider { margin: 10px; background: #FF9C08; height: 15px; position: relative; }
.ui-slider-handle { width: 10px; height: 15px; background: white; position: absolute; top: 0px; left: 0px; }
|
javadoc/com/box/boxjavalibv2/dao/class-use/BoxUser.html | tdtran/box-android-sdk-v2 | <!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_11) on Mon Mar 17 10:57:48 PDT 2014 -->
<title>Uses of Class com.box.boxjavalibv2.dao.BoxUser</title>
<meta name="date" content="2014-03-17">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.box.boxjavalibv2.dao.BoxUser";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/box/boxjavalibv2/dao/class-use/BoxUser.html" target="_top">Frames</a></li>
<li><a href="BoxUser.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class com.box.boxjavalibv2.dao.BoxUser" class="title">Uses of Class<br>com.box.boxjavalibv2.dao.BoxUser</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#com.box.boxandroidlibv2.dao">com.box.boxandroidlibv2.dao</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.box.boxjavalibv2.dao">com.box.boxjavalibv2.dao</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.box.boxjavalibv2.resourcemanagers">com.box.boxjavalibv2.resourcemanagers</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.box.boxandroidlibv2.dao">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a> in <a href="../../../../../com/box/boxandroidlibv2/dao/package-summary.html">com.box.boxandroidlibv2.dao</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a> in <a href="../../../../../com/box/boxandroidlibv2/dao/package-summary.html">com.box.boxandroidlibv2.dao</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../com/box/boxandroidlibv2/dao/BoxAndroidUser.html" title="class in com.box.boxandroidlibv2.dao">BoxAndroidUser</a></strong></code>
<div class="block">Data class for user.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.box.boxjavalibv2.dao">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a> in <a href="../../../../../com/box/boxjavalibv2/dao/package-summary.html">com.box.boxjavalibv2.dao</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../com/box/boxjavalibv2/dao/package-summary.html">com.box.boxjavalibv2.dao</a> that return <a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">BoxLock.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/dao/BoxLock.html#getCreatedBy()">getCreatedBy</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">BoxItem.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/dao/BoxItem.html#getCreatedBy()">getCreatedBy</a></strong>()</code>
<div class="block">Get the user creating this item.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">BoxComment.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/dao/BoxComment.html#getCreatedBy()">getCreatedBy</a></strong>()</code>
<div class="block">Get the user creating this comment.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">BoxCollaboration.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/dao/BoxCollaboration.html#getCreatedBy()">getCreatedBy</a></strong>()</code>
<div class="block">Get the user creating this collaboration.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">BoxItem.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/dao/BoxItem.html#getModifiedBy()">getModifiedBy</a></strong>()</code>
<div class="block">Get the user last modified the item.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">BoxFileVersion.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/dao/BoxFileVersion.html#getModifiedBy()">getModifiedBy</a></strong>()</code>
<div class="block">Get the user last modified this version.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">BoxItem.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/dao/BoxItem.html#getOwnedBy()">getOwnedBy</a></strong>()</code>
<div class="block">Get owner of the item.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">BoxGroupMembership.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/dao/BoxGroupMembership.html#getUser()">getUser</a></strong>()</code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../com/box/boxjavalibv2/dao/package-summary.html">com.box.boxjavalibv2.dao</a> with parameters of type <a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">BoxLock.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/dao/BoxLock.html#setCreatedBy(com.box.boxjavalibv2.dao.BoxUser)">setCreatedBy</a></strong>(<a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a> createdBy)</code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../../../../com/box/boxjavalibv2/dao/package-summary.html">com.box.boxjavalibv2.dao</a> with parameters of type <a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><strong><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html#BoxUser(com.box.boxjavalibv2.dao.BoxUser)">BoxUser</a></strong>(<a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a> obj)</code>
<div class="block">Copy constructor, this does deep copy for all the fields.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.box.boxjavalibv2.resourcemanagers">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a> in <a href="../../../../../com/box/boxjavalibv2/resourcemanagers/package-summary.html">com.box.boxjavalibv2.resourcemanagers</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../com/box/boxjavalibv2/resourcemanagers/package-summary.html">com.box.boxjavalibv2.resourcemanagers</a> that return <a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">IBoxUsersManager.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/resourcemanagers/IBoxUsersManager.html#createEnterpriseUser(com.box.boxjavalibv2.requests.requestobjects.BoxUserRequestObject)">createEnterpriseUser</a></strong>(<a href="../../../../../com/box/boxjavalibv2/requests/requestobjects/BoxUserRequestObject.html" title="class in com.box.boxjavalibv2.requests.requestobjects">BoxUserRequestObject</a> requestObject)</code>
<div class="block">Used to provision a new user in an enterprise.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">BoxUsersManagerImpl.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/resourcemanagers/BoxUsersManagerImpl.html#createEnterpriseUser(com.box.boxjavalibv2.requests.requestobjects.BoxUserRequestObject)">createEnterpriseUser</a></strong>(<a href="../../../../../com/box/boxjavalibv2/requests/requestobjects/BoxUserRequestObject.html" title="class in com.box.boxjavalibv2.requests.requestobjects">BoxUserRequestObject</a> requestObject)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">IBoxUsersManager.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/resourcemanagers/IBoxUsersManager.html#getCurrentUser(com.box.restclientv2.requestsbase.BoxDefaultRequestObject)">getCurrentUser</a></strong>(<a href="../../../../../com/box/restclientv2/requestsbase/BoxDefaultRequestObject.html" title="class in com.box.restclientv2.requestsbase">BoxDefaultRequestObject</a> requestObject)</code>
<div class="block">Get the current user's information.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">BoxUsersManagerImpl.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/resourcemanagers/BoxUsersManagerImpl.html#getCurrentUser(com.box.restclientv2.requestsbase.BoxDefaultRequestObject)">getCurrentUser</a></strong>(<a href="../../../../../com/box/restclientv2/requestsbase/BoxDefaultRequestObject.html" title="class in com.box.restclientv2.requestsbase">BoxDefaultRequestObject</a> requestObject)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">IBoxUsersManager.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/resourcemanagers/IBoxUsersManager.html#updateUserInformaiton(java.lang.String, com.box.boxjavalibv2.requests.requestobjects.BoxUserRequestObject)">updateUserInformaiton</a></strong>(java.lang.String userId,
<a href="../../../../../com/box/boxjavalibv2/requests/requestobjects/BoxUserRequestObject.html" title="class in com.box.boxjavalibv2.requests.requestobjects">BoxUserRequestObject</a> requestObject)</code>
<div class="block">Used to edit the settings and information about a user.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">BoxUsersManagerImpl.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/resourcemanagers/BoxUsersManagerImpl.html#updateUserInformaiton(java.lang.String, com.box.boxjavalibv2.requests.requestobjects.BoxUserRequestObject)">updateUserInformaiton</a></strong>(java.lang.String userId,
<a href="../../../../../com/box/boxjavalibv2/requests/requestobjects/BoxUserRequestObject.html" title="class in com.box.boxjavalibv2.requests.requestobjects">BoxUserRequestObject</a> requestObject)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">IBoxUsersManager.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/resourcemanagers/IBoxUsersManager.html#updateUserPrimaryLogin(java.lang.String, com.box.boxjavalibv2.requests.requestobjects.BoxUserUpdateLoginRequestObject)">updateUserPrimaryLogin</a></strong>(java.lang.String userId,
<a href="../../../../../com/box/boxjavalibv2/requests/requestobjects/BoxUserUpdateLoginRequestObject.html" title="class in com.box.boxjavalibv2.requests.requestobjects">BoxUserUpdateLoginRequestObject</a> requestObject)</code>
<div class="block">Used to convert one of the user's confirmed email aliases into the user's primary login.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></code></td>
<td class="colLast"><span class="strong">BoxUsersManagerImpl.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/resourcemanagers/BoxUsersManagerImpl.html#updateUserPrimaryLogin(java.lang.String, com.box.boxjavalibv2.requests.requestobjects.BoxUserUpdateLoginRequestObject)">updateUserPrimaryLogin</a></strong>(java.lang.String userId,
<a href="../../../../../com/box/boxjavalibv2/requests/requestobjects/BoxUserUpdateLoginRequestObject.html" title="class in com.box.boxjavalibv2.requests.requestobjects">BoxUserUpdateLoginRequestObject</a> requestObject)</code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../com/box/boxjavalibv2/resourcemanagers/package-summary.html">com.box.boxjavalibv2.resourcemanagers</a> that return types with arguments of type <a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>java.util.List<<a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a>></code></td>
<td class="colLast"><span class="strong">IBoxUsersManager.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/resourcemanagers/IBoxUsersManager.html#getAllEnterpriseUser(com.box.restclientv2.requestsbase.BoxDefaultRequestObject, java.lang.String)">getAllEnterpriseUser</a></strong>(<a href="../../../../../com/box/restclientv2/requestsbase/BoxDefaultRequestObject.html" title="class in com.box.restclientv2.requestsbase">BoxDefaultRequestObject</a> requestObject,
java.lang.String filterTerm)</code>
<div class="block">Get the list of all users for the Enterprise with their user_id, public_name, and login if the user is an enterprise admin.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.util.List<<a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a>></code></td>
<td class="colLast"><span class="strong">BoxUsersManagerImpl.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/resourcemanagers/BoxUsersManagerImpl.html#getAllEnterpriseUser(com.box.restclientv2.requestsbase.BoxDefaultRequestObject, java.lang.String)">getAllEnterpriseUser</a></strong>(<a href="../../../../../com/box/restclientv2/requestsbase/BoxDefaultRequestObject.html" title="class in com.box.restclientv2.requestsbase">BoxDefaultRequestObject</a> requestObject,
java.lang.String filterTerm)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.util.List<<a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">BoxUser</a>></code></td>
<td class="colLast"><span class="strong">BoxUsersManagerImpl.</span><code><strong><a href="../../../../../com/box/boxjavalibv2/resourcemanagers/BoxUsersManagerImpl.html#getUsers(com.box.boxjavalibv2.dao.BoxCollection)">getUsers</a></strong>(<a href="../../../../../com/box/boxjavalibv2/dao/BoxCollection.html" title="class in com.box.boxjavalibv2.dao">BoxCollection</a> collection)</code>
<div class="block"><strong>Deprecated.</strong> </div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../com/box/boxjavalibv2/dao/BoxUser.html" title="class in com.box.boxjavalibv2.dao">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/box/boxjavalibv2/dao/class-use/BoxUser.html" target="_top">Frames</a></li>
<li><a href="BoxUser.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
source/api/apidocs-4.14/apis/getUserKeys.html | apache/cloudstack-www | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../includes/main.css" type="text/css">
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon">
<title>Apache CloudStack | The Power Behind Your Cloud</title>
</head>
<body>
<div id="insidetopbg">
<div id="inside_wrapper">
<div class="uppermenu_panel">
<div class="uppermenu_box"></div>
</div>
<div id="main_master">
<div id="inside_header">
<div class="header_top">
<a class="cloud_logo" href="http://cloudstack.org"></a>
<div class="mainemenu_panel"></div>
</div>
</div>
<div id="main_content">
<div class="inside_apileftpanel">
<div class="inside_contentpanel" style="width:930px;">
<div class="api_titlebox">
<div class="api_titlebox_left">
<span>
Apache CloudStack 4.14.1.0-SNAPSHOT Root Admin API Reference
</span>
<p></p>
<h1>getUserKeys</h1>
<p>This command allows the user to query the seceret and API keys for the account</p>
</div>
<div class="api_titlebox_right">
<a class="api_backbutton" href="../index.html"></a>
</div>
</div>
<div class="api_tablepanel">
<h2>Request parameters</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td>
</tr>
<tr>
<td style="width:200px;"><strong>id</strong></td><td style="width:500px;"><strong>ID of the user whose keys are required</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
</table>
</div>
<div class="api_tablepanel">
<h2>Response Tags</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td>
</tr>
<tr>
<td style="width:200px;"><strong>apikey</strong></td><td style="width:500px;">the api key of the registered user</td>
</tr>
<tr>
<td style="width:200px;"><strong>secretkey</strong></td><td style="width:500px;">the secret key of the registered user</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div id="comments_thread">
<script type="text/javascript" src="https://comments.apache.org/show_comments.lua?site=test" async="true"></script>
<noscript>
<iframe width="930" height="500" src="https://comments.apache.org/iframe.lua?site=test&page=4.2.0/rootadmin"></iframe>
</noscript>
</div>
<div id="footer_mainmaster">
<p>
Copyright © 2015 The Apache Software Foundation, Licensed under the
<a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a>
<br>
Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
|
hadoop/docs/api/org/apache/hadoop/io/compress/zlib/class-use/ZlibCompressor.html | markkerzner/nn_kove | <!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_31) on Thu Jan 31 02:05:00 UTC 2013 -->
<TITLE>
Uses of Class org.apache.hadoop.io.compress.zlib.ZlibCompressor (Hadoop 1.1.2 API)
</TITLE>
<META NAME="date" CONTENT="2013-01-31">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.hadoop.io.compress.zlib.ZlibCompressor (Hadoop 1.1.2 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="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/io/compress/zlib/ZlibCompressor.html" title="class in org.apache.hadoop.io.compress.zlib"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/io/compress/zlib//class-useZlibCompressor.html" target="_top"><B>FRAMES</B></A>
<A HREF="ZlibCompressor.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>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.hadoop.io.compress.zlib.ZlibCompressor</B></H2>
</CENTER>
No usage of org.apache.hadoop.io.compress.zlib.ZlibCompressor
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/io/compress/zlib/ZlibCompressor.html" title="class in org.apache.hadoop.io.compress.zlib"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/io/compress/zlib//class-useZlibCompressor.html" target="_top"><B>FRAMES</B></A>
<A HREF="ZlibCompressor.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>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2009 The Apache Software Foundation
</BODY>
</HTML>
|
src/boost_1_57_0/doc/html/boost/proto/nary_expr.html | biospi/seamass-windeps | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct template nary_expr</title>
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../proto/reference.html#header.boost.proto.traits_hpp" title="Header <boost/proto/traits.hpp>">
<link rel="prev" href="binary_expr/impl.html" title="Struct template impl">
<link rel="next" href="nary_expr/impl.html" title="Struct template impl">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td>
<td align="center"><a href="../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="binary_expr/impl.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../proto/reference.html#header.boost.proto.traits_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="nary_expr/impl.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.proto.nary_expr"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct template nary_expr</span></h2>
<p>boost::proto::nary_expr — A metafunction for generating n-ary expression types with a specified tag type,
a grammar element for matching n-ary expressions, and
a <a class="link" href="../../PrimitiveTransform.html" title="Concept PrimitiveTransform">PrimitiveTransform</a>
that dispatches to the
<code class="computeroutput"><a class="link" href="pass_through.html" title="Struct template pass_through">proto::pass_through<></a></code>
transform.</p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../proto/reference.html#header.boost.proto.traits_hpp" title="Header <boost/proto/traits.hpp>">boost/proto/traits.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Tag<span class="special">,</span> <span class="keyword">typename</span><span class="special">...</span> A<span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="nary_expr.html" title="Struct template nary_expr">nary_expr</a> <span class="special">:</span> <span class="keyword"></span> <a class="link" href="transform.html" title="Struct template transform">proto::transform</a><span class="special"><</span> <span class="identifier">nary_expr</span><span class="special"><</span><span class="identifier">Tag</span><span class="special">,</span> <span class="identifier">A</span><span class="special">...</span><span class="special">></span> <span class="special">></span> <span class="special">{</span>
<span class="comment">// types</span>
<span class="keyword">typedef</span> <a class="link" href="expr.html" title="Struct template expr">proto::expr</a><span class="special"><</span> <span class="identifier">Tag</span><span class="special">,</span> <a class="link" href="listN.html" title="Struct template listN">proto::listN</a><span class="special"><</span> <span class="identifier">A</span><span class="special">...</span> <span class="special">></span> <span class="special">></span> <a name="boost.proto.nary_expr.type"></a><span class="identifier">type</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="basic_expr.html" title="Struct template basic_expr">proto::basic_expr</a><span class="special"><</span> <span class="identifier">Tag</span><span class="special">,</span> <a class="link" href="listN.html" title="Struct template listN">proto::listN</a><span class="special"><</span> <span class="identifier">A</span><span class="special">...</span> <span class="special">></span> <span class="special">></span> <a name="boost.proto.nary_expr.proto_grammar"></a><span class="identifier">proto_grammar</span><span class="special">;</span>
<span class="comment">// member classes/structs/unions</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> <a class="link" href="../../Expr.html" title="Concept Expr">Expr</a><span class="special">,</span> <span class="keyword">typename</span> State<span class="special">,</span> <span class="keyword">typename</span> Data<span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="nary_expr/impl.html" title="Struct template impl">impl</a> <span class="special">:</span>
<span class="keyword"></span> <a class="link" href="pass_through.html" title="Struct template pass_through">proto::pass_through</a><nary_expr>::template impl<Expr, State, Data>
<span class="special">{</span>
<span class="special">}</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp385678416"></a><h2>Description</h2>
<p>
Use <code class="computeroutput">proto::nary_expr<<a class="link" href="_.html" title="Struct _">proto::_</a>, <a class="link" href="vararg.html" title="Struct template vararg">proto::vararg</a><<a class="link" href="_.html" title="Struct _">proto::_</a>> ></code>
as a grammar element to match any n-ary expression; that is, any non-terminal.
</p>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2008 Eric Niebler<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="binary_expr/impl.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../proto/reference.html#header.boost.proto.traits_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="nary_expr/impl.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
data/datetagcloud2014-05-09.html | dice89/w4 | <a target="_blank" href="https://www.google.de/?q=vernadsky" rel="0.0">vernadsky</a>
<a target="_blank" href="https://www.google.de/?q=urlhttp//www.blackseanews.net/read/" rel="0.0">urlhttp//www.blackseanews.net/read/</a>
<a target="_blank" href="https://www.google.de/?q=karlavske" rel="0.0">karlavske</a>
<a target="_blank" href="https://www.google.de/?q={{convert?kmmi." rel="0.0">{{convert?kmmi.</a>
<a target="_blank" href="https://www.google.de/?q=shchaslyvtseve" rel="0.0">shchaslyvtseve</a>
<a target="_blank" href="https://www.google.de/?q=coast." rel="0.0">coast.</a>
<a target="_blank" href="https://www.google.de/?q=warbritish" rel="0.0">warbritish</a>
<a target="_blank" href="https://www.google.de/?q=existence." rel="0.0">existence.</a>
<a target="_blank" href="https://www.google.de/?q=kazantip" rel="0.0">kazantip</a>
<a target="_blank" href="https://www.google.de/?q=urban-type" rel="0.0">urban-type</a>
<a target="_blank" href="https://www.google.de/?q=role" rel="0.0">role</a>
<a target="_blank" href="https://www.google.de/?q=right" rel="0.0">right</a>
<a target="_blank" href="https://www.google.de/?q=samuel" rel="0.0">samuel</a>
<a target="_blank" href="https://www.google.de/?q=pashaottoman" rel="0.0">pashaottoman</a>
<a target="_blank" href="https://www.google.de/?q=essential" rel="0.0">essential</a>
<a target="_blank" href="https://www.google.de/?q=uncertain." rel="0.0">uncertain.</a>
<a target="_blank" href="https://www.google.de/?q=????" rel="0.0">????</a>
<a target="_blank" href="https://www.google.de/?q=http//books.google.de/booksidsrr_dmjtac" rel="0.0">http//books.google.de/booksidsrr_dmjtac</a>
<a target="_blank" href="https://www.google.de/?q=bulgarians.http//jrs.oxfordjournals.org/content///.full.pdf" rel="0.0">bulgarians.http//jrs.oxfordjournals.org/content///.full.pdf</a>
<a target="_blank" href="https://www.google.de/?q=few" rel="0.0">few</a>
<a target="_blank" href="https://www.google.de/?q=slavsslavs" rel="0.0">slavsslavs</a>
<a target="_blank" href="https://www.google.de/?q=interrputed" rel="0.0">interrputed</a>
<a target="_blank" href="https://www.google.de/?q=native" rel="0.0">native</a>
<a target="_blank" href="https://www.google.de/?q=quality" rel="0.0">quality</a>
<a target="_blank" href="https://www.google.de/?q=titleautonomous" rel="0.0">titleautonomous</a>
<a target="_blank" href="https://www.google.de/?q=ministers" rel="0.0">ministers</a>
<a target="_blank" href="https://www.google.de/?q={{col-list" rel="0.0">{{col-list</a>
<a target="_blank" href="https://www.google.de/?q=trillion" rel="0.0">trillion</a>
<a target="_blank" href="https://www.google.de/?q=ssrhttp//www.goldade.net/arrests/nkvd.pdf" rel="0.0">ssrhttp//www.goldade.net/arrests/nkvd.pdf</a>
<a target="_blank" href="https://www.google.de/?q=made" rel="0.0">made</a>
|
tests/position/isValidCursorPosition-link01a-expected.html | corinthia/corinthia-editorlib | <html>
<head>
</head>
<body>
<p>
.o.n.e
.
<a href="http://www.uxproductivity.com/">UX Productivity</a>
.
t.w.o.
</p>
</body>
</html>
|
java/java-impl/src/inspectionDescriptions/SuspiciousTernaryOperatorInVarargsCall.html | allotria/intellij-community | <html>
<body>
Reports vararg method calls that use a ternary operator with mixed array and non-array branches.
<p>
When compiled, both branches are wrapped in arrays. As a result, the array branch is turned into
a two-dimensional array, which may indicate a problem.
</p>
<p>
The quick-fix wraps the non-array branch in an array to prevent the compiler from doing the conversion.
</p>
<!-- tooltip end -->
<p>Example:</p>
<pre>
static void bar(boolean flag) {
Object[] a = {1, 2};
Object b = "hello";
foo(flag ? a : b);
}
static void foo(Object... obj) {
}
</pre>
<p>After the quick-fix: </p>
<pre>
static void bar(boolean flag) {
Object[] a = {1, 2};
Object b = "hello";
foo(flag ? a : new Object[]{b});
}
static void foo(Object... obj) {
}
</pre>
<p><small>New in 2020.3</small></p>
</body>
</html> |
src/boost_1_57_0/libs/log/doc/html/boost/log/greater.html | biospi/seamass-windeps | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct greater</title>
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../index.html" title="Chapter 1. Boost.Log v2">
<link rel="up" href="../../utilities.html#header.boost.log.utility.functional.logical_hpp" title="Header <boost/log/utility/functional/logical.hpp>">
<link rel="prev" href="less.html" title="Struct less">
<link rel="next" href="less_equal.html" title="Struct less_equal">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr><td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td></tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="less.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../utilities.html#header.boost.log.utility.functional.logical_hpp"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="less_equal.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.log.greater"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct greater</span></h2>
<p>boost::log::greater — Greater predicate. </p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../utilities.html#header.boost.log.utility.functional.logical_hpp" title="Header <boost/log/utility/functional/logical.hpp>">boost/log/utility/functional/logical.hpp</a>>
</span>
<span class="keyword">struct</span> <a class="link" href="greater.html" title="Struct greater">greater</a> <span class="special">{</span>
<span class="comment">// types</span>
<span class="keyword">typedef</span> <span class="keyword">bool</span> <a name="boost.log.greater.result_type"></a><span class="identifier">result_type</span><span class="special">;</span>
<span class="comment">// <a class="link" href="greater.html#idp39728720-bb">public member functions</a></span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">,</span> <span class="keyword">typename</span> U<span class="special">></span> <span class="keyword">bool</span> <a class="link" href="greater.html#idp39729280-bb"><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span></a><span class="special">(</span><span class="identifier">T</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">U</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="comment">// <a class="link" href="greater.html#idp39733344-bb">private static functions</a></span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">,</span> <span class="keyword">typename</span> U<span class="special">></span>
<span class="keyword">static</span> <span class="keyword">bool</span> <a class="link" href="greater.html#idp39733920-bb"><span class="identifier">op</span></a><span class="special">(</span><span class="identifier">T</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">U</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">mpl</span><span class="special">::</span><span class="identifier">false_</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">,</span> <span class="keyword">typename</span> U<span class="special">></span>
<span class="keyword">static</span> <span class="keyword">bool</span> <a class="link" href="greater.html#idp39738512-bb"><span class="identifier">op</span></a><span class="special">(</span><span class="identifier">T</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">U</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">mpl</span><span class="special">::</span><span class="identifier">true_</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp114650240"></a><h2>Description</h2>
<div class="refsect2">
<a name="idp114650656"></a><h3>
<a name="idp39728720-bb"></a><code class="computeroutput">greater</code> public member functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">,</span> <span class="keyword">typename</span> U<span class="special">></span>
<span class="keyword">bool</span> <a name="idp39729280-bb"></a><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span><span class="special">(</span><span class="identifier">T</span> <span class="keyword">const</span> <span class="special">&</span> left<span class="special">,</span> <span class="identifier">U</span> <span class="keyword">const</span> <span class="special">&</span> right<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre></li></ol></div>
</div>
<div class="refsect2">
<a name="idp114667568"></a><h3>
<a name="idp39733344-bb"></a><code class="computeroutput">greater</code> private static functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem"><pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">,</span> <span class="keyword">typename</span> U<span class="special">></span>
<span class="keyword">static</span> <span class="keyword">bool</span> <a name="idp39733920-bb"></a><span class="identifier">op</span><span class="special">(</span><span class="identifier">T</span> <span class="keyword">const</span> <span class="special">&</span> left<span class="special">,</span> <span class="identifier">U</span> <span class="keyword">const</span> <span class="special">&</span> right<span class="special">,</span> <span class="identifier">mpl</span><span class="special">::</span><span class="identifier">false_</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">,</span> <span class="keyword">typename</span> U<span class="special">></span>
<span class="keyword">static</span> <span class="keyword">bool</span> <a name="idp39738512-bb"></a><span class="identifier">op</span><span class="special">(</span><span class="identifier">T</span> <span class="keyword">const</span> <span class="special">&</span> left<span class="special">,</span> <span class="identifier">U</span> <span class="keyword">const</span> <span class="special">&</span> right<span class="special">,</span> <span class="identifier">mpl</span><span class="special">::</span><span class="identifier">true_</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span></pre></li>
</ol></div>
</div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2007-2014 Andrey Semashev<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>).
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="less.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../utilities.html#header.boost.log.utility.functional.logical_hpp"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="less_equal.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
cluster-ha-singleton/README.html | ejlp12/quickstart | <html><head><title>README</title><link href="https://raw.github.com/pmuir/github-flavored-markdown/gh-pages/shared/css/documentation.css" rel="stylesheet"></link><link href="https://raw.github.com/github/github-flavored-markdown/gh-pages/shared/css/pygments.css" rel="stylesheet"></link></head><body><h1 id="toc_0">cluster-ha-singleton: A SingletonService deployed in a JAR started by SingletonStartup and accessed by an EJB</h1>
<p>Author: Wolf-Dieter Fink
Level: Advanced
Technologies: EJB, HASingleton, JNDI
Summary: A SingletonService deployed in a JAR started by SingletonStartup and accessed by an EJB
Target Product: EAP</p>
<h2 id="toc_1">What is it?</h2>
<p>This example demonstrates the deployment of a Service that is wrapped with the SingletonService decorater
to be a cluster wide singleton service.</p>
<p>The example is composed of 2 maven projects with a shared parent. The projects are as follows:</p>
<ol>
<li><code>service</code>: This project contains the Service and the EJB code to instantiate, start and access the service</li>
<li><code>client</code> : This project contains a remote ejb client to show the behaviour</li>
</ol>
<p>The root <code>pom.xml</code> builds each of the subprojects in the above order and deploys the archive to the server.</p>
<h2 id="toc_2">System requirements</h2>
<p>All you need to build this project is Java 6.0 (Java SDK 1.6) or better, Maven 3.0 or better.</p>
<p>The application this project produces is designed to be run on JBoss Enterprise Application Platform 6 or JBoss AS 7. </p>
<h2 id="toc_3">Configure Maven</h2>
<p>You can copy or link to the Maven configuration information in the README file in the root folder of the quickstarts. For example:</p>
<p>If you have not yet done so, you must <a href="../README.html#mavenconfiguration">Configure Maven</a> before testing the quickstarts.</p>
<h2 id="toc_4">Start JBoss Enterprise Application Platform 6 or JBoss AS 7 with a HA profile</h2>
<p>If you run a non HA profile the singleton service will not start correctly. To run the example one instance must be started, to see the singleton behaviour at minimum two instances
should be started.</p>
<div class="highlight"><pre><span class="n">Start</span> <span class="n">server</span> <span class="n">one</span> <span class="p">:</span> <span class="n">standalone</span><span class="p">.</span><span class="n">sh</span> <span class="o">--</span><span class="n">server</span><span class="o">-</span><span class="n">config</span><span class="p">=</span><span class="n">standalone</span><span class="o">-</span><span class="n">ha</span><span class="p">.</span><span class="n">xml</span> <span class="o">-</span><span class="n">Djboss</span><span class="p">.</span><span class="n">node</span><span class="p">.</span><span class="n">name</span><span class="p">=</span><span class="n">nodeOne</span>
<span class="n">Start</span> <span class="n">server</span> <span class="n">two</span> <span class="p">:</span> <span class="n">standalone</span><span class="p">.</span><span class="n">sh</span> <span class="o">--</span><span class="n">server</span><span class="o">-</span><span class="n">config</span><span class="p">=</span><span class="n">standalone</span><span class="o">-</span><span class="n">ha</span><span class="p">.</span><span class="n">xml</span> <span class="o">-</span><span class="n">Djboss</span><span class="p">.</span><span class="n">node</span><span class="p">.</span><span class="n">name</span><span class="p">=</span><span class="n">nodeTwo</span> <span class="o">-</span><span class="n">Djboss</span><span class="p">.</span><span class="n">socket</span><span class="p">.</span><span class="n">binding</span><span class="p">.</span><span class="n">port</span><span class="o">-</span><span class="n">offset</span><span class="p">=</span>100
</pre>
</div>
<h2 id="toc_5">Build and Deploy the Quickstart</h2>
<p><em>NOTE: The following build command assumes you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See <a href="../README.html#buildanddeploy">Build and Deploy the Quickstarts</a> for complete instructions and additional options.</em></p>
<ol>
<li>Make sure you have started the JBoss Server as described above.</li>
<li>Open a command line and navigate to the root directory of this quickstart.</li>
<li><p>Type this command to build and deploy the archive:</p>
<div class="highlight"><pre><span class="n">mvn</span> <span class="n">clean</span> <span class="n">install</span> <span class="n">jboss</span><span class="o">-</span><span class="n">as</span><span class="p">:</span><span class="n">deploy</span>
</pre>
</div></li>
<li><p>This will deploy <code>service/target/jboss-as-cluster-ha-singleton-service.jar</code> to the running instance of the server.</p></li>
<li><p>Type this command to deploy the archive to the second server (or more) and replace the port, depending on your settings:</p>
<div class="highlight"><pre><span class="n">mvn</span> <span class="n">jboss</span><span class="o">-</span><span class="n">as</span><span class="p">:</span><span class="n">deploy</span> <span class="o">-</span><span class="n">Djboss</span><span class="o">-</span><span class="n">as</span><span class="p">.</span><span class="n">port</span><span class="p">=</span>10099
</pre>
</div></li>
<li><p>This will deploy <code>service/target/jboss-as-cluster-ha-singleton-service.jar</code> to the running instance of the additional server.</p></li>
</ol>
<p>Check whether the application is deployed on each instance.
All instances will have a message:
INFO <a href="SingletonService%20lifecycle%20-%201">org.jboss.as.clustering.singleton</a> JBAS010342: nodeOne/cluster elected as the singleton provider of the jboss.quickstart.ejb.ha.singleton service
Only nodeOne (or even one instance) will have a message:
INFO <a href="SingletonService%20lifecycle%20-%201">org.jboss.as.clustering.singleton</a> JBAS010340: This node will now operate as the singleton provider of the jboss.quickstart.ejb.ha.singleton service</p>
<p>The timer on the started node will log a message every 10sec.</p>
<h2 id="toc_6">Check the timer</h2>
<ol>
<li>Open a command line and navigate to the root directory of this quickstart.</li>
<li><p>Type this command to start the client</p>
<div class="highlight"><pre><span class="n">cd</span> <span class="n">client</span>
<span class="n">mvn</span> <span class="n">exec</span><span class="p">:</span><span class="n">exec</span>
</pre>
</div></li>
<li><p>check the output
The request to the EJB is running four times and every time it should answer
# The timer service is active on node with name = NodeOne
If you look into the servers logfiles you will see that each node will process requests</p></li>
<li><p>Stop the server nodeOne
If you look into the server nodeTwo logfile you will see the message
“JBAS010342: nodeTwo/cluster elected as the singleton provider of …”
that shows that the singleton service was started here
The timer will be started here and log a message every 10sec.</p></li>
<li><p>repeat step 2
The request is running four times and the message is
# The timer service is active on node with name = NodeTwo
If you look into the server#2 logfile you will see that it process all four requests.</p></li>
</ol>
<h2 id="toc_7">Undeploy the Archive</h2>
<ol>
<li>Make sure you have started the JBoss Server as described above.</li>
<li>Open a command line and navigate to the root directory of this quickstart.</li>
<li><p>When you are finished testing, type this command to undeploy the archive:</p>
<div class="highlight"><pre><span class="n">mvn</span> <span class="n">jboss</span><span class="o">-</span><span class="n">as</span><span class="p">:</span><span class="n">undeploy</span>
<span class="n">mvn</span> <span class="n">jboss</span><span class="o">-</span><span class="n">as</span><span class="p">:</span><span class="n">undeploy</span> <span class="o">-</span><span class="n">Djboss</span><span class="o">-</span><span class="n">as</span><span class="p">.</span><span class="n">port</span><span class="p">=</span>10099
</pre>
</div></li>
</ol>
<h2 id="toc_8">Run the Quickstart in JBoss Developer Studio or Eclipse</h2>
<p>You can also start the server and deploy the quickstarts from Eclipse using JBoss tools. For more information, see <a href="../README.html#useeclipse">Use JBoss Developer Studio or Eclipse to Run the Quickstarts</a> </p>
<h2 id="toc_9">Debug the Application</h2>
<p>If you want to debug the source code or look at the Javadocs of any library in the project, run either of the following commands to pull them into your local repository. The IDE should then detect them.</p>
<div class="highlight"><pre><span class="n">mvn</span> <span class="n">dependency</span><span class="p">:</span><span class="n">sources</span>
<span class="n">mvn</span> <span class="n">dependency</span><span class="p">:</span><span class="n">resolve</span> <span class="o">-</span><span class="n">Dclassifier</span><span class="p">=</span><span class="n">javadoc</span>
</pre>
</div>
<hr/>
</body></html>
|
source/api/apidocs-4.13/apis/updateGuestOs.html | apache/cloudstack-www | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../includes/main.css" type="text/css">
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon">
<title>Apache CloudStack | The Power Behind Your Cloud</title>
</head>
<body>
<div id="insidetopbg">
<div id="inside_wrapper">
<div class="uppermenu_panel">
<div class="uppermenu_box"></div>
</div>
<div id="main_master">
<div id="inside_header">
<div class="header_top">
<a class="cloud_logo" href="http://cloudstack.org"></a>
<div class="mainemenu_panel"></div>
</div>
</div>
<div id="main_content">
<div class="inside_apileftpanel">
<div class="inside_contentpanel" style="width:930px;">
<div class="api_titlebox">
<div class="api_titlebox_left">
<span>
Apache CloudStack 4.13.0.0 Root Admin API Reference
</span>
<p></p>
<h1>updateGuestOs</h1>
<p>Updates the information about Guest OS</p>
</div>
<div class="api_titlebox_right">
<a class="api_backbutton" href="../index.html"></a>
</div>
</div>
<div class="api_tablepanel">
<h2>Request parameters</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td>
</tr>
<tr>
<td style="width:200px;"><strong>id</strong></td><td style="width:500px;"><strong>UUID of the Guest OS</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
<tr>
<td style="width:200px;"><strong>details</strong></td><td style="width:500px;"><strong>Map of (key/value pairs)</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
<tr>
<td style="width:200px;"><strong>osdisplayname</strong></td><td style="width:500px;"><strong>Unique display name for Guest OS</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
</table>
</div>
<div class="api_tablepanel">
<h2>Response Tags</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td>
</tr>
<tr>
<td style="width:200px;"><strong>id</strong></td><td style="width:500px;">the ID of the OS type</td>
</tr>
<tr>
<td style="width:200px;"><strong>description</strong></td><td style="width:500px;">the name/description of the OS type</td>
</tr>
<tr>
<td style="width:200px;"><strong>isuserdefined</strong></td><td style="width:500px;">is the guest OS user defined</td>
</tr>
<tr>
<td style="width:200px;"><strong>oscategoryid</strong></td><td style="width:500px;">the ID of the OS category</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div id="comments_thread">
<script type="text/javascript" src="https://comments.apache.org/show_comments.lua?site=test" async="true"></script>
<noscript>
<iframe width="930" height="500" src="https://comments.apache.org/iframe.lua?site=test&page=4.2.0/rootadmin"></iframe>
</noscript>
</div>
<div id="footer_mainmaster">
<p>Copyright © 2015 The Apache Software Foundation, Licensed under the
<a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a>
<br>
Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
</div>
</div>
</div>
</div>
</body>
</html>
|
doc/gui/org/deidentifier/arx/gui/view/impl/class-use/MainToolBar.html | COWYARD/arx | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<title>Uses of Class org.deidentifier.arx.gui.view.impl.MainToolBar (ARX GUI Documentation)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.deidentifier.arx.gui.view.impl.MainToolBar (ARX GUI Documentation)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/deidentifier/arx/gui/view/impl/MainToolBar.html" title="class in org.deidentifier.arx.gui.view.impl">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/deidentifier/arx/gui/view/impl/class-use/MainToolBar.html" target="_top">Frames</a></li>
<li><a href="MainToolBar.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.deidentifier.arx.gui.view.impl.MainToolBar" class="title">Uses of Class<br>org.deidentifier.arx.gui.view.impl.MainToolBar</h2>
</div>
<div class="classUseContainer">No usage of org.deidentifier.arx.gui.view.impl.MainToolBar</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/deidentifier/arx/gui/view/impl/MainToolBar.html" title="class in org.deidentifier.arx.gui.view.impl">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/deidentifier/arx/gui/view/impl/class-use/MainToolBar.html" target="_top">Frames</a></li>
<li><a href="MainToolBar.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
src/GenApp.UI/gen-app/app/tasks/task-edit-dialog/task-edit-dialog.component.css | jmatyjasik/Gen | .example-container {
display: flex;
flex-direction: column;
}
.example-container > * {
width: 100%;
}
|
apidoc/classes/zebra.ui.SwitchManager.html | olemis/zebra | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>zebra.ui.SwitchManager</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
<link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
<link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
<link rel="shortcut icon" type="image/png" href="../assets/favicon.png">
<script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script>
</head>
<body class="yui3-skin-sam">
<table id="doc" width="100%" style="background:white;">
<tr>
<td align="left" colspan="2">
<h2>Zebra API Doc</h2>
</td>
</tr>
<tr style="background:white;">
<td style="background:white;" >
<div style="width:270px;" 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">Packages</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/zebra.data.Item.html">zebra.data.Item</a></li>
<li><a href="../classes/zebra.data.ListModel.html">zebra.data.ListModel</a></li>
<li><a href="../classes/zebra.data.Matrix.html">zebra.data.Matrix</a></li>
<li><a href="../classes/zebra.data.SingleLineTxt.html">zebra.data.SingleLineTxt</a></li>
<li><a href="../classes/zebra.data.Text.html">zebra.data.Text</a></li>
<li><a href="../classes/zebra.data.TextModel.html">zebra.data.TextModel</a></li>
<li><a href="../classes/zebra.data.TreeModel.html">zebra.data.TreeModel</a></li>
<li><a href="../classes/zebra.Dummy.html">zebra.Dummy</a></li>
<li><a href="../classes/zebra.io.HTTP.html">zebra.io.HTTP</a></li>
<li><a href="../classes/zebra.io.JRPC.html">zebra.io.JRPC</a></li>
<li><a href="../classes/zebra.io.QS.html">zebra.io.QS</a></li>
<li><a href="../classes/zebra.io.Service.html">zebra.io.Service</a></li>
<li><a href="../classes/zebra.io.XRPC.html">zebra.io.XRPC</a></li>
<li><a href="../classes/zebra.layout.BorderLayout.html">zebra.layout.BorderLayout</a></li>
<li><a href="../classes/zebra.layout.Constraints.html">zebra.layout.Constraints</a></li>
<li><a href="../classes/zebra.layout.FlowLayout.html">zebra.layout.FlowLayout</a></li>
<li><a href="../classes/zebra.layout.GridLayout.html">zebra.layout.GridLayout</a></li>
<li><a href="../classes/zebra.layout.Layout.html">zebra.layout.Layout</a></li>
<li><a href="../classes/zebra.layout.Layoutable.html">zebra.layout.Layoutable</a></li>
<li><a href="../classes/zebra.layout.ListLayout.html">zebra.layout.ListLayout</a></li>
<li><a href="../classes/zebra.layout.PercentLayout.html">zebra.layout.PercentLayout</a></li>
<li><a href="../classes/zebra.layout.RasterLayout.html">zebra.layout.RasterLayout</a></li>
<li><a href="../classes/zebra.layout.StackLayout.html">zebra.layout.StackLayout</a></li>
<li><a href="../classes/zebra.ui.BaseLayer.html">zebra.ui.BaseLayer</a></li>
<li><a href="../classes/zebra.ui.BaseList.html">zebra.ui.BaseList</a></li>
<li><a href="../classes/zebra.ui.BoldLabel.html">zebra.ui.BoldLabel</a></li>
<li><a href="../classes/zebra.ui.Border.html">zebra.ui.Border</a></li>
<li><a href="../classes/zebra.ui.BorderPan.html">zebra.ui.BorderPan</a></li>
<li><a href="../classes/zebra.ui.Button.html">zebra.ui.Button</a></li>
<li><a href="../classes/zebra.ui.Checkbox.html">zebra.ui.Checkbox</a></li>
<li><a href="../classes/zebra.ui.Checkbox.Box.html">zebra.ui.Checkbox.Box</a></li>
<li><a href="../classes/zebra.ui.Combo.html">zebra.ui.Combo</a></li>
<li><a href="../classes/zebra.ui.Combo.ComboPadPan.html">zebra.ui.Combo.ComboPadPan</a></li>
<li><a href="../classes/zebra.ui.Combo.ContentPan.html">zebra.ui.Combo.ContentPan</a></li>
<li><a href="../classes/zebra.ui.Combo.EditableContentPan.html">zebra.ui.Combo.EditableContentPan</a></li>
<li><a href="../classes/zebra.ui.Combo.ReadonlyContentPan.html">zebra.ui.Combo.ReadonlyContentPan</a></li>
<li><a href="../classes/zebra.ui.ComboArrowView.html">zebra.ui.ComboArrowView</a></li>
<li><a href="../classes/zebra.ui.CommandManager.html">zebra.ui.CommandManager</a></li>
<li><a href="../classes/zebra.ui.CompList.html">zebra.ui.CompList</a></li>
<li><a href="../classes/zebra.ui.CompositeEvStatePan.html">zebra.ui.CompositeEvStatePan</a></li>
<li><a href="../classes/zebra.ui.CompositeView.html">zebra.ui.CompositeView</a></li>
<li><a href="../classes/zebra.ui.CompRender.html">zebra.ui.CompRender</a></li>
<li><a href="../classes/zebra.ui.CursorManager.html">zebra.ui.CursorManager</a></li>
<li><a href="../classes/zebra.ui.designer.ShaperPan.html">zebra.ui.designer.ShaperPan</a></li>
<li><a href="../classes/zebra.ui.Dotted.html">zebra.ui.Dotted</a></li>
<li><a href="../classes/zebra.ui.Etched.html">zebra.ui.Etched</a></li>
<li><a href="../classes/zebra.ui.EventManager.html">zebra.ui.EventManager</a></li>
<li><a href="../classes/zebra.ui.EvStatePan.html">zebra.ui.EvStatePan</a></li>
<li><a href="../classes/zebra.ui.ExtendablePan.html">zebra.ui.ExtendablePan</a></li>
<li><a href="../classes/zebra.ui.FocusManager.html">zebra.ui.FocusManager</a></li>
<li><a href="../classes/zebra.ui.Font.html">zebra.ui.Font</a></li>
<li><a href="../classes/zebra.ui.Gradient.html">zebra.ui.Gradient</a></li>
<li><a href="../classes/zebra.ui.grid.BaseCaption.html">zebra.ui.grid.BaseCaption</a></li>
<li><a href="../classes/zebra.ui.grid.CompGridCaption.html">zebra.ui.grid.CompGridCaption</a></li>
<li><a href="../classes/zebra.ui.grid.CompGridCaption.TitlePan.html">zebra.ui.grid.CompGridCaption.TitlePan</a></li>
<li><a href="../classes/zebra.ui.grid.DefEditors.html">zebra.ui.grid.DefEditors</a></li>
<li><a href="../classes/zebra.ui.grid.DefViews.html">zebra.ui.grid.DefViews</a></li>
<li><a href="../classes/zebra.ui.grid.Grid.html">zebra.ui.grid.Grid</a></li>
<li><a href="../classes/zebra.ui.grid.GridCaption.html">zebra.ui.grid.GridCaption</a></li>
<li><a href="../classes/zebra.ui.grid.GridStretchPan.html">zebra.ui.grid.GridStretchPan</a></li>
<li><a href="../classes/zebra.ui.grid.Metrics.html">zebra.ui.grid.Metrics</a></li>
<li><a href="../classes/zebra.ui.Group.html">zebra.ui.Group</a></li>
<li><a href="../classes/zebra.ui.HtmlElement.html">zebra.ui.HtmlElement</a></li>
<li><a href="../classes/zebra.ui.HtmlTextArea.html">zebra.ui.HtmlTextArea</a></li>
<li><a href="../classes/zebra.ui.HtmlTextField.html">zebra.ui.HtmlTextField</a></li>
<li><a href="../classes/zebra.ui.HtmlTextInput.html">zebra.ui.HtmlTextInput</a></li>
<li><a href="../classes/zebra.ui.ImageLabel.html">zebra.ui.ImageLabel</a></li>
<li><a href="../classes/zebra.ui.ImagePan.html">zebra.ui.ImagePan</a></li>
<li><a href="../classes/zebra.ui.InputEvent.html">zebra.ui.InputEvent</a></li>
<li><a href="../classes/zebra.ui.KeyEvent.html">zebra.ui.KeyEvent</a></li>
<li><a href="../classes/zebra.ui.Label.html">zebra.ui.Label</a></li>
<li><a href="../classes/zebra.ui.Line.html">zebra.ui.Line</a></li>
<li><a href="../classes/zebra.ui.Link.html">zebra.ui.Link</a></li>
<li><a href="../classes/zebra.ui.List.html">zebra.ui.List</a></li>
<li><a href="../classes/zebra.ui.List.ViewProvider.html">zebra.ui.List.ViewProvider</a></li>
<li><a href="../classes/zebra.ui.Manager.html">zebra.ui.Manager</a></li>
<li><a href="../classes/zebra.ui.Menu.html">zebra.ui.Menu</a></li>
<li><a href="../classes/zebra.ui.Menubar.html">zebra.ui.Menubar</a></li>
<li><a href="../classes/zebra.ui.MenuItem.html">zebra.ui.MenuItem</a></li>
<li><a href="../classes/zebra.ui.MLabel.html">zebra.ui.MLabel</a></li>
<li><a href="../classes/zebra.ui.MobileScrollMan.html">zebra.ui.MobileScrollMan</a></li>
<li><a href="../classes/zebra.ui.MouseEvent.html">zebra.ui.MouseEvent</a></li>
<li><a href="../classes/zebra.ui.MouseWheelSupport.html">zebra.ui.MouseWheelSupport</a></li>
<li><a href="../classes/zebra.ui.PaintManager.html">zebra.ui.PaintManager</a></li>
<li><a href="../classes/zebra.ui.PaintManImpl.html">zebra.ui.PaintManImpl</a></li>
<li><a href="../classes/zebra.ui.Panel.html">zebra.ui.Panel</a></li>
<li><a href="../classes/zebra.ui.PassTextField.html">zebra.ui.PassTextField</a></li>
<li><a href="../classes/zebra.ui.PasswordText.html">zebra.ui.PasswordText</a></li>
<li><a href="../classes/zebra.ui.Pattern.html">zebra.ui.Pattern</a></li>
<li><a href="../classes/zebra.ui.Picture.html">zebra.ui.Picture</a></li>
<li><a href="../classes/zebra.ui.PopupLayer.html">zebra.ui.PopupLayer</a></li>
<li><a href="../classes/zebra.ui.PopupManager.html">zebra.ui.PopupManager</a></li>
<li><a href="../classes/zebra.ui.Progress.html">zebra.ui.Progress</a></li>
<li><a href="../classes/zebra.ui.Radial.html">zebra.ui.Radial</a></li>
<li><a href="../classes/zebra.ui.Radiobox.html">zebra.ui.Radiobox</a></li>
<li><a href="../classes/zebra.ui.RadioView.html">zebra.ui.RadioView</a></li>
<li><a href="../classes/zebra.ui.Raised.html">zebra.ui.Raised</a></li>
<li><a href="../classes/zebra.ui.Render.html">zebra.ui.Render</a></li>
<li><a href="../classes/zebra.ui.RootLayer.html">zebra.ui.RootLayer</a></li>
<li><a href="../classes/zebra.ui.RoundBorder.html">zebra.ui.RoundBorder</a></li>
<li><a href="../classes/zebra.ui.Scroll.html">zebra.ui.Scroll</a></li>
<li><a href="../classes/zebra.ui.ScrollManager.html">zebra.ui.ScrollManager</a></li>
<li><a href="../classes/zebra.ui.ScrollPan.html">zebra.ui.ScrollPan</a></li>
<li><a href="../classes/zebra.ui.Slider.html">zebra.ui.Slider</a></li>
<li><a href="../classes/zebra.ui.SplitPan.html">zebra.ui.SplitPan</a></li>
<li><a href="../classes/zebra.ui.StatePan.html">zebra.ui.StatePan</a></li>
<li><a href="../classes/zebra.ui.StatusBar.html">zebra.ui.StatusBar</a></li>
<li><a href="../classes/zebra.ui.StringRender.html">zebra.ui.StringRender</a></li>
<li><a href="../classes/zebra.ui.Sunken.html">zebra.ui.Sunken</a></li>
<li><a href="../classes/zebra.ui.SwitchManager.html">zebra.ui.SwitchManager</a></li>
<li><a href="../classes/zebra.ui.Tabs.html">zebra.ui.Tabs</a></li>
<li><a href="../classes/zebra.ui.Tabs.TabView.html">zebra.ui.Tabs.TabView</a></li>
<li><a href="../classes/zebra.ui.TextArea.html">zebra.ui.TextArea</a></li>
<li><a href="../classes/zebra.ui.TextField.html">zebra.ui.TextField</a></li>
<li><a href="../classes/zebra.ui.TextRender.html">zebra.ui.TextRender</a></li>
<li><a href="../classes/zebra.ui.TitledBorder.html">zebra.ui.TitledBorder</a></li>
<li><a href="../classes/zebra.ui.Toolbar.html">zebra.ui.Toolbar</a></li>
<li><a href="../classes/zebra.ui.Tooltip.html">zebra.ui.Tooltip</a></li>
<li><a href="../classes/zebra.ui.tree.$IM.html">zebra.ui.tree.$IM</a></li>
<li><a href="../classes/zebra.ui.tree.BaseTree.html">zebra.ui.tree.BaseTree</a></li>
<li><a href="../classes/zebra.ui.tree.CompTree.html">zebra.ui.tree.CompTree</a></li>
<li><a href="../classes/zebra.ui.tree.DefEditors.html">zebra.ui.tree.DefEditors</a></li>
<li><a href="../classes/zebra.ui.tree.DefViews.html">zebra.ui.tree.DefViews</a></li>
<li><a href="../classes/zebra.ui.tree.Tree.html">zebra.ui.tree.Tree</a></li>
<li><a href="../classes/zebra.ui.tree.TreeSignView.html">zebra.ui.tree.TreeSignView</a></li>
<li><a href="../classes/zebra.ui.VideoPan.html">zebra.ui.VideoPan</a></li>
<li><a href="../classes/zebra.ui.View.html">zebra.ui.View</a></li>
<li><a href="../classes/zebra.ui.ViewPan.html">zebra.ui.ViewPan</a></li>
<li><a href="../classes/zebra.ui.ViewSet.html">zebra.ui.ViewSet</a></li>
<li><a href="../classes/zebra.ui.Window.html">zebra.ui.Window</a></li>
<li><a href="../classes/zebra.ui.WinLayer.html">zebra.ui.WinLayer</a></li>
<li><a href="../classes/zebra.ui.zCanvas.html">zebra.ui.zCanvas</a></li>
<li><a href="../classes/zebra.URL.html">zebra.URL</a></li>
<li><a href="../classes/zebra.util.Bag.html">zebra.util.Bag</a></li>
<li><a href="../classes/zebra.util.Listeners.html">zebra.util.Listeners</a></li>
<li><a href="../classes/zebra.util.Position.html">zebra.util.Position</a></li>
<li><a href="../classes/zebra.util.Position.Metric.html">zebra.util.Position.Metric</a></li>
<li><a href="../classes/zebra.util.rgb.html">zebra.util.rgb</a></li>
<li><a href="../classes/zebra.util.TaskCotext.html">zebra.util.TaskCotext</a></li>
</ul>
<ul id="api-modules" class="apis modules">
<li><a href="../modules/data.html">data</a></li>
<li><a href="../modules/io.html">io</a></li>
<li><a href="../modules/layout.html">layout</a></li>
<li><a href="../modules/ui.html">ui</a></li>
<li><a href="../modules/ui.designer.html">ui.designer</a></li>
<li><a href="../modules/ui.grid.html">ui.grid</a></li>
<li><a href="../modules/ui.tree.html">ui.tree</a></li>
<li><a href="../modules/util.html">util</a></li>
<li><a href="../modules/zebra.html">zebra</a></li>
</ul>
</div>
</div>
</div>
</div>
</td>
<td style="background:white;" id="bd">
<div class="apidocs">
<div id="docs-main">
<div class="content">
<h1>zebra.ui.SwitchManager Class</h1>
<div class="box intro">
<p>The standard UI checkbox component switch manager implementation. The manager holds
boolean state of a checkbox UI component. There are few ways how a checkbox can
switch its state: standard checkbox or radio group. In general we have a deal with
one switchable UI component that can work in different modes. Thus we can re-use
one UI, but customize it with appropriate switch manager. That is the main idea of
having the class.</p>
</div>
<div class="constructor">
<h2>Constructor</h2>
<div id="method_zebra.ui.SwitchManager" class="method item">
<h3 class="name"><code>zebra.ui.SwitchManager</code></h3>
<span class="paren">()</span>
<div class="meta">
</p>
</div>
<div class="description">
</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 events"><a href="#events">Events</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">
<li class="index-item method">
<a href="#method_getValue">getValue</a>
</li>
<li class="index-item method protected">
<a href="#method_install">install</a>
</li>
<li class="index-item method">
<a href="#method_setValue">setValue</a>
</li>
<li class="index-item method">
<a href="#method_stateUpdated">stateUpdated</a>
</li>
<li class="index-item method protected">
<a href="#method_uninstall">uninstall</a>
</li>
</ul>
</div>
<div class="index-section events">
<h3>Events</h3>
<ul class="index-list events">
<li class="index-item event">
<a href="#event_stateUpdated">stateUpdated</a>
</li>
</ul>
</div>
</div>
<div id="methods" class="api-class-tabpanel">
<h2 class="off-left">Methods</h2>
<div id="method_getValue" class="method item">
<h3 class="name"><code>getValue</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>o</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="returns-inline">
<span class="type">Boolean</span>
</span>
<div class="meta">
</p>
</div>
<div class="description">
<p>Get current state of the given UI component</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">o</code>
<span class="type"><a href="../classes/zebra.ui.Checkbox.html" class="crosslink">zebra.ui.Checkbox</a></span>
<div class="param-description">
<p>an ui component</p>
</div>
</li>
</ul>
</div>
<br>
<div class="returns">
<div class="returns-description">
<b>Return: </b><span class="type">Boolean</span>
<p>a boolean state</p>
</div>
</div>
</div>
<div id="method_install" class="method item protected">
<h3 class="name"><code>install</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>o</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="flag protected">protected</span>
<div class="meta">
</p>
</div>
<div class="description">
<p>Call when the manager has been installed for the given UI component</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">o</code>
<span class="type"><a href="../classes/zebra.ui.Checkbox.html" class="crosslink">zebra.ui.Checkbox</a></span>
<div class="param-description">
<p>an UI component the switch manager is designated</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_setValue" class="method item">
<h3 class="name"><code>setValue</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>o</code>
</li>
<li class="arg">
<code>b</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
</p>
</div>
<div class="description">
<p>Set the state for the given UI component</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">o</code>
<span class="type"><a href="../classes/zebra.ui.Checkbox.html" class="crosslink">zebra.ui.Checkbox</a></span>
<div class="param-description">
<p>an ui component</p>
</div>
</li>
<li class="param">
<code class="param-name">b</code>
<span class="type">Boolean</span>
<div class="param-description">
<p>a boolean state</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_stateUpdated" class="method item">
<h3 class="name"><code>stateUpdated</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>o</code>
</li>
<li class="arg">
<code>b</code>
</li>
</ul><span class="paren">)</span>
</div>
<div class="meta">
</p>
</div>
<div class="description">
<p>Called every time a state has been updated.</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">o</code>
<span class="type"><a href="../classes/zebra.ui.Checkbox.html" class="crosslink">zebra.ui.Checkbox</a></span>
<div class="param-description">
<p>an ui component for which the state has been updated</p>
</div>
</li>
<li class="param">
<code class="param-name">b</code>
<span class="type">Boolean</span>
<div class="param-description">
<p>a new boolean state of the UI component</p>
</div>
</li>
</ul>
</div>
</div>
<div id="method_uninstall" class="method item protected">
<h3 class="name"><code>uninstall</code></h3>
<div class="args">
<span class="paren">(</span><ul class="args-list inline commas">
<li class="arg">
<code>o</code>
</li>
</ul><span class="paren">)</span>
</div>
<span class="flag protected">protected</span>
<div class="meta">
</p>
</div>
<div class="description">
<p>Call when the manager has been uninstalled for the given UI component</p>
</div>
<div class="params">
<h4>Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">o</code>
<span class="type"><a href="../classes/zebra.ui.Checkbox.html" class="crosslink">zebra.ui.Checkbox</a></span>
<div class="param-description">
<p>an UI component the switch manager is not anymore used</p>
</div>
</li>
</ul>
</div>
</div>
</div>
<div id="events" class="api-class-tabpanel">
<h2 class="off-left">Events</h2>
<div id="event_stateUpdated" class="events item">
<h3 class="name"><code>stateUpdated</code></h3>
<span class="type"></span>
<div class="meta">
</p>
</div>
<div class="description">
<p>Fired when a state has been updated</p>
<pre class="code prettyprint"><code> var ch = new zebra.ui.Checkbox("Test");
ch.manager.bind(function (src, ui) {
...
});</code></pre>
</div>
<div class="params">
<h4>Event Parameters:</h4>
<ul class="params-list">
<li class="param">
<code class="param-name">src</code>
<span class="type"><a href="../classes/zebra.ui.SwitchManager.html" class="crosslink">zebra.ui.SwitchManager</a></span>
<div class="param-description">
<p>a switch manager that controls and tracks the event</p>
</div>
</li>
<li class="param">
<code class="param-name">ui</code>
<span class="type"><a href="../classes/zebra.ui.Checkbox.html" class="crosslink">zebra.ui.Checkbox</a></span>
<div class="param-description">
<p>an UI component that triggers the event</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</td>
</tr>
</table>
<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>
|
core/standards/encodings/UTF-8_EL/UTF-8_EL_specified.html | frivoal/presto-testo | <!DOCTYPE HTML>
<html>
<head>
<title>
Encodings test suite: UTF-8 EL (specified)
</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="content-language" content="el">
</head>
<body>
qwe ςερτυθιοπασδφγηξκλζχψωβνμ <br />
QWE ςΕΡΤΥΘΙΟΠΑΣΔΦΓΗΞΚΛΖΧΨΩΒΝΜ
</body>
</html>
|
SVG/Testsuites/W3C-1_1F2/harness/htmlEmbed/struct-image-06-t.html | frivoal/presto-testo | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//CL//DTD XHTML 1.0 Transitional plus Embed//EN"
"http://www.w3.org/Graphics/xhtml1-transitional-plus-embed.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="keywords" content="W3C SVG 1.1 2nd Edition Test Suite"/>
<meta name="description" content="W3C SVG 1.1 2nd Edition Embedded Test Suite"/>
<title>
SVG 1.1 2nd Edition Test (<embed>): struct-image-06-t.svg
</title>
<style type="text/css">
<!--
.bodytext { font-family:verdana, helvetica, sans-serif; font-size: 12pt; line-height: 125%; text-align: Left; margin-top: 0; margin-bottom: 0 }
.pageTitle { line-height: 150%; font-size: 20pt; font-weight : 900; margin-bottom: 20pt }
.pageSubTitle { color : blue; line-height: 100%; font-size: 24pt; font-weight : 900 }
.openChapter { color : blue; line-height: 125%; font-weight : 900 }
.openSection { color : blue; line-height: 125%; font-weight : 900 }
.info { color : black; line-height: 110%; font-size: 10pt; font-weight : 100 }
p { margin-top:0; margin-bottom:0; padding-top:0; padding-bottom:0 }
blockquote { margin-top:0; margin-bottom:0; padding-top:0; padding-bottom:0 }
.opscript { margin-left: 3%; margin-right: 3%; }
.opscript p { margin-top: 0.7em }
.navbar { background: black; color: white; font-weight: bold }
.warning { color: red; text-align: Center;}
a,a:visited { color: blue }
-->
</style>
<link rel="prev" href="struct-image-05-b.html" />
<link rel="index" href="index.html" />
<link rel="next" href="struct-image-07-t.html" />
<script src="../resources/testharnessreport.js"></script>
</head>
<body class="bodytext">
<div class="linkbar">
<p>Specification link: <a target="spec" href="http://www.w3.org/TR/SVG11/struct.html#ImageElement">5.7 The 'image' element</a></p>
<p>
<a href="struct-image-05-b.html" rel="prev">struct-image-05-b ←</a>
<a href="index.html" rel="index">index</a>
<a href="struct-image-07-t.html" rel="next">→ struct-image-07-t</a>
</p>
</div>
<div>
<br />
<p class="warning">
Tests that contain the draft-watermark are under development and may be incorrectly testing a feature.
</p>
</div>
<table align="center" border="0" cellspacing="0" cellpadding="10">
<tr>
<td align="center" colspan="3">
<table border="0" cellpadding="8">
<tr>
<td align="center" colspan="2" class="pageTitle">
<h1>struct-image-06-t.svg</h1>
</td>
</tr>
<tr class="navbar">
<td align="center">
SVG Image
</td>
<td align="center">
PNG Image
</td>
</tr>
<tr>
<td align="right">
<embed src="../../svg/struct-image-06-t.svg" width="480" height="360"/>
</td>
<td align="left">
<img alt="raster image of struct-image-06-t.svg" src="../../png/struct-image-06-t.png" width="480" height="360"/>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div class="opscript">
<h2 id="operatorscript">
Operator Script
</h2>
<div>
<p>Run the test. No interaction required.</p>
</div>
<h2 id="passcriteria">
Pass Criteria
</h2>
<div>
<p>The test shows four smiley images: the leftmost one is the reference,
and the three on the right are the three sub-tests. The test is passed
if the following conditions are met:
</p><ul>
<li>The image in the first sub-test is shown within the blue rectangle,
its aspect ratio preserved and with white bars between the blue rectangle
and the left and right edges of the image.</li>
<li>The image in the second sub-test is shown within the blue rectangle,
its aspect ratio preserved and with white bars between the blue rectangle
and the top and bottom edges of the image.</li>
<li>The image in the third sub-test is shown stretched, having the same
size as the blue rectangle shown on the left of the test slide underneath
the text "Viewport 2".</li>
</ul>
</div>
<h2 id="testdescription">
Test Description
</h2>
<div>
<p>
Check that all the preserveAspectRatio values are supported
for the <image> element. In particular, check that
values which are not supported on the svg element's
preserveAspectRatio are supported for <image>.
</p>
</div>
</div>
<br/>
<div class="linkbar">
<p>
<a href="struct-image-05-b.html" rel="prev">struct-image-05-b ←</a>
<a href="index.html" rel="index">index</a>
<a href="struct-image-07-t.html" rel="next">→ struct-image-07-t</a>
</p>
</div>
</body>
</html>
|
documentation/html/iOS/_c_p_t_platform_specific_categories_8h.html | escoz/core-plot | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>Core Plot (iOS): iPhoneOnly/CPTPlatformSpecificCategories.h File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="customdoxygen.css" rel="stylesheet" type="text/css" />
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="core-plot-logo.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Core Plot (iOS)
</div>
<div id="projectbrief">Cocoa plotting framework for Mac OS X and iOS</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.6.1 -->
<script type="text/javascript" src="dynsections.js"></script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Animation & Constants</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
</div>
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
initNavTree('_c_p_t_platform_specific_categories_8h.html','');
</script>
<div id="doc-content">
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> </div>
<div class="headertitle">
<div class="title">iPhoneOnly/CPTPlatformSpecificCategories.h File Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><code>#import "<a class="el" href="_c_p_t_color_8h_source.html">CPTColor.h</a>"</code><br/>
<code>#import "<a class="el" href="_c_p_t_layer_8h_source.html">CPTLayer.h</a>"</code><br/>
<code>#import "<a class="el" href="_c_p_t_platform_specific_defines_8h_source.html">CPTPlatformSpecificDefines.h</a>"</code><br/>
<code>#import <UIKit/UIKit.h></code><br/>
</div><div class="textblock"><div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-0-trigger" src="closed.png" alt="+"/> Include dependency graph for CPTPlatformSpecificCategories.h:</div>
<div id="dynsection-0-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-0-content" class="dyncontent" style="display:none;">
<div class="center"><img src="_c_p_t_platform_specific_categories_8h__incl.png" border="0" usemap="#i_phone_only_2_c_p_t_platform_specific_categories_8h" alt=""/></div>
<map name="i_phone_only_2_c_p_t_platform_specific_categories_8h" id="i_phone_only_2_c_p_t_platform_specific_categories_8h">
<area shape="rect" id="node3" href="_c_p_t_color_8h.html" title="CPTColor.h" alt="" coords="574,166,668,197"/><area shape="rect" id="node9" href="_c_p_t_layer_8h.html" title="CPTLayer.h" alt="" coords="389,86,481,117"/><area shape="rect" id="node25" href="_c_p_t_platform_specific_defines_8h.html" title="CPTPlatformSpecificDefines.h" alt="" coords="600,86,811,117"/><area shape="rect" id="node11" href="_c_p_t_responder_8h.html" title="CPTResponder.h" alt="" coords="372,166,499,197"/><area shape="rect" id="node17" href="_c_p_t_definitions_8h.html" title="CPTDefinitions.h" alt="" coords="169,166,297,197"/></map>
</div>
</div><div class="textblock"><div id="dynsection-1" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-1-trigger" src="closed.png" alt="+"/> This graph shows which files directly or indirectly include this file:</div>
<div id="dynsection-1-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-1-content" class="dyncontent" style="display:none;">
<div class="center"><img src="_c_p_t_platform_specific_categories_8h__dep__incl.png" border="0" usemap="#i_phone_only_2_c_p_t_platform_specific_categories_8hdep" alt=""/></div>
<map name="i_phone_only_2_c_p_t_platform_specific_categories_8hdep" id="i_phone_only_2_c_p_t_platform_specific_categories_8hdep">
<area shape="rect" id="node3" href="_core_plot-_cocoa_touch_8h.html" title="CorePlot-CocoaTouch.h" alt="" coords="5,86,181,117"/><area shape="rect" id="node5" href="_c_p_t_axis_8m.html" title="Source/CPTAxis.m" alt="" coords="205,86,347,117"/><area shape="rect" id="node7" href="_c_p_t_plot_range_8m.html" title="Source/CPTPlotRange.m" alt="" coords="371,86,548,117"/><area shape="rect" id="node9" href="_c_p_t_text_layer_8m.html" title="Source/CPTTextLayer.m" alt="" coords="573,86,749,117"/><area shape="rect" id="node11" href="_c_p_t_platform_specific_categories_8m.html" title="iPhoneOnly/CPTPlatformSpecificCategories.m" alt="" coords="774,86,1089,117"/><area shape="rect" id="node13" href="_c_p_t_text_style_platform_specific_8m.html" title="iPhoneOnly/CPTTextStylePlatformSpecific.m" alt="" coords="1114,86,1419,117"/></map>
</div>
</div>
<p><a href="_c_p_t_platform_specific_categories_8h_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">category  </td><td class="memItemRight" valign="bottom"><b>CPTColor(CPTPlatformSpecificColorExtensions)</b></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Platform-specific extensions to <a class="el" href="interface_c_p_t_color.html" title="An immutable color.">CPTColor</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">category  </td><td class="memItemRight" valign="bottom"><b>CPTLayer(CPTPlatformSpecificLayerExtensions)</b></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Platform-specific extensions to <a class="el" href="interface_c_p_t_layer.html" title="Base class for all Core Animation layers in Core Plot.">CPTLayer</a>. <br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">category  </td><td class="memItemRight" valign="bottom"><b>NSNumber(CPTPlatformSpecificNumberExtensions)</b></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Platform-specific extensions to <a class="elRef" href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSNumber_Class/Reference/Reference.html">NSNumber</a>. <br/></td></tr>
</table>
</div><!-- contents -->
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="_c_p_t_platform_specific_categories_8h.html">CPTPlatformSpecificCategories.h</a> </li>
<li class="footer">Generated by <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a></li>
</ul>
</div>
</body>
</html>
|
raw/angular/docs/partials/api/ng/directive/ngMouseover.html | vincentsels/themes-gnap | <a href='http://github.com/angular/angular.js/edit/master/src/ng/directive/ngEventDirs.js' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this doc</a>
<a href='http://github.com/angular/angular.js/tree/master/src/ng/directive/ngEventDirs.js#L148' class='view-source pull-right btn btn-primary'>
<i class="glyphicon glyphicon-zoom-in"> </i>View Source
</a>
<header class="api-profile-header">
<h1 class="api-profile-header-heading">ngMouseover</h1>
<ol class="api-profile-header-structure naked-list step-list">
<li>
- directive in module <a href="api/ng">ng</a>
</li>
</ol>
</header>
<div class="api-profile-description">
<p>Specify custom behavior on mouseover event.</p>
</div>
<div>
<h2>Directive Info</h2>
<ul>
<li>This directive executes at priority level 0.</li>
</ul>
<h2 id="usage">Usage</h2>
<div class="usage">
<ul>
<li>as attribute:
<pre><code><ANY ng-mouseover=""> ... </ANY></code></pre>
</li>
</div>
<section class="api-section">
<h3>Arguments</h3>
<table class="variables-matrix input-arguments">
<thead>
<tr>
<th>Param</th>
<th>Type</th>
<th>Details</th>
</tr>
</thead>
<tbody>
<tr>
<td>
ngMouseover
</td>
<td>
<a href="" class="label type-hint type-hint-expression">expression</a>
</td>
<td>
<p><a href="guide/expression">Expression</a> to evaluate upon
mouseover. (<a href="guide/expression#-event-">Event object is available as <code>$event</code></a>)</p>
</td>
</tr>
</tbody>
</table>
</section>
<h2 id="example">Example</h2><p>
<div>
<a ng-click="openPlunkr('examples/example-example25')" class="btn pull-right">
<i class="glyphicon glyphicon-edit"> </i>
Edit in Plunker</a>
<div class="runnable-example"
path="examples/example-example25">
<div class="runnable-example-file"
name="index.html"
language="html"
type="html">
<pre><code><button ng-mouseover="count = count + 1" ng-init="count=0"> Increment (when mouse is over) </button> count: {{count}}</code></pre>
</div>
<iframe class="runnable-example-frame" src="examples/example-example25/index.html" name="example-example25"></iframe>
</div>
</div>
</p>
</div>
|
xstream-distribution/src/content/news.html | codehaus/xstream | <html>
<!--
Copyright (C) 2005, 2006 Joe Walnes.
Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012, 2013, 2014, 2015 XStream committers.
All rights reserved.
The software in this package is published under the terms of the BSD
style license a copy of which has been included with this distribution in
the LICENSE.txt file.
Created on 29. January 2005 by Joe Walnes
-->
<head>
<title>News</title>
</head>
<body>
<h2 id="1.4.8"><b>February 18, 2015</b> XStream 1.4.8 released</h2>
<p>Maintenance release 1.4.8 of XStream with bug fixes and improvements running with Java 8.</p>
<p>XStream supports now serializable lambda types for a Java 8 runtime.</p>
<p>View the complete <a href="changes.html">change log</a> and <a href="download.html">download</a>.</p>
<p>Note, the next major release 1.5 will require Java 6.</p>
<h2 id="1.4.7"><b>February 8, 2014</b> XStream 1.4.7 released</h2>
<p class="highlight">This maintenance release addresses mainly the security vulnerability CVE-2013-7285, an
arbitrary execution of commands when unmarshalling. All previous versions are affected running at least Java 5.</p>
<p>XStream contains now a security framework to fine-control the unmarshalled types.</p>
<p>View the complete <a href="changes.html">change log</a> and <a href="download.html">download</a>.</p>
<h2 id="1.4.6"><b>December 12, 2013</b> XStream 1.4.6 released</h2>
<p>Maintenance release 1.4.6 of XStream with bug fixes and improvements running with Java 8, in a GAE runtime
environment and under an active SecurityManager.</p>
<p>View the complete <a href="changes.html#1.4.6">change log</a> and <a href="download.html">download</a>.</p>
<h2 id="1.4.5"><b>September 28, 2013</b> XStream 1.4.5 released</h2>
<p>Maintenance release 1.4.5 of XStream with bug fixes and small improvements.</p>
<ul>
<li>Allow unknown XML elements to be ignored using new method XStream.ignoreUnknownElements.</li>
<li>Support for JDOM2 with JDom2Driver, JDom2Reader and JDom2Writer.</li>
<li>Optimized XML structure for java.awt.Font.</li>
<li>Referencing implementation for the ClassLoader to support environments where no new ClassLoader can be
instantiated due to security restrictions.</li>
</ul>
<p>View the complete <a href="changes.html#1.4.5">change log</a> and <a href="download.html">download</a>.</p>
<h2 id="decade"><b>September 26, 2013</b> A Decade of XStream</h2>
<p>Joe Walnes made his initial commit to the XStream project at Codehaus in 26th September 2003.
10 years passed by and XStream celebrates its 10th birthday!</p>
<h2 id="1.4.4"><b>January 19, 2013</b> XStream 1.4.4 released</h2>
<p>Maintenance release 1.4.4 of XStream with bug fixes and small improvements.</p>
<ul>
<li>DateConverter supports now localized formats.</li>
</ul>
<p>View the complete <a href="changes.html#1.4.4">change log</a> and <a href="download.html">download</a>.</p>
<h2 id="1.4.3"><b>July 17, 2012</b> XStream 1.4.3 released</h2>
<p>Maintenance release 1.4.3 of XStream with bug fixes and small improvements. Main changes:</p>
<ul>
<li>Support java.util.concurrent.ConcurrentHashMap with the MapConverter.</li>
<li>Support for Hibernate 4 with XStream's Hibernate module as default for Java 6 or higher.</li>
</ul>
<p>View the complete <a href="changes.html#1.4.3">change log</a> and <a href="download.html">download</a>.</p>
<h2 id="1.4.2"><b>November 3, 2011</b> XStream 1.4.2 released</h2>
<p>Maintenance release 1.4.2 of XStream with bug fixes and small improvements. Main changes:</p>
<ul>
<li>XStream libraries can be used now directly in Android, therefore support of Java 1.4.2 has been stopped with the delivery.
Anyone who needs a version for Java 1.4.2 can build it easily from source, this build is still supported and part of CI.</li>
<li>New extended HierarchicalStreamReader interface with peekNextChild method. All XStream readers implement the new
interface (by Nikita Levyankov).</li>
<li>Special support for Collections.EMPTY_LIST, Collections.EMPTY_SET and Collections.EMPTY_MAP and collections created
with Collections.singletonList(), Collections.singletonSet() and Collections.singletonMap().</li>
<li>Support additional parameters for XStreamConverter annotation (e.g. to declare a ToAttributedValueConverter).</li>
</ul>
<p>View the complete <a href="changes.html#1.4.2">change log</a> and <a href="download.html">download</a>.</p>
<h2 id="1.4.1"><b>August 11, 2011</b> XStream 1.4.1 released</h2>
<p>Maintenance release 1.4.1 of XStream after turning out that it did not work in 1.4 with the new default
dependencies. Therefore XStream is back with Xpp3 as default parser and refers additionally the XmlPullParser
API to enable the XppDriver that is used by default.</p>
<p>View the complete <a href="changes.html#1.4.1">change log</a> and <a href="download.html">download</a>.</p>
<h2 id="1.4"><b>August 6, 2011</b> XStream 1.4 released</h2>
<p>Finally - XStream 1.4 is ready for delivery. A lot of things have changed and improved, new features added.
Nevertheless we have maintain compatibility to the old versions:</p>
<ul>
<li>Detection of Java 7 and Android i.e. enabled enhanced mode and annotations for both environments out of the box</li>
<li>Direct support of XmlPullParser factory and alternate kXML2 implementation</li>
<li>Explicit drivers to select the StAX implementation</li>
<li>New separate Hibernate module to support those managed instances (special thanks to Jaime Metcher)</li>
<li>Support of implicit arrays and maps additionally to already existing implicit collection support</li>
<li>Performance improvements (special thanks to Keith Kowalczykowski)</li>
<li>Some new converters (for URI and one to write all fields but one as attributes)</li>
<li>A lot of other enhancements and bug fixes</li>
</ul>
<p>View the complete <a href="changes.html#1.4">change log</a> and <a href="download.html">download</a>.</p>
<p>Thanks to this impressive list of <a href="team.html#contributors">contributors</a>.</p>
<p class="hightlight">Note, that with version 1.4 the default parser has been changed from
<a href="faq.html#Compatibility_kXML2">Xpp3 to kXML2</a>.</p>
<p class="hightlight">Note, that JDK 1.3 support has been officially dropped. Nothing special has been done to
enforce this, but there is no longer any support.</p>
<p class="highlight">Note, to support a representation of null values in some way, it is absolutely necessary that each converter can handle a null
value in its marshalling methods. If you have implemented your own custom converters, try to handle such a case also to prevent incompatibilities
in case XStream will provide such values with its next major version.</p>
<h2 id="1.3.1"><b>December 6, 2008</b> XStream 1.3.1 released</h2>
<p>A new XStream maintenance version has been released. The release contains some
bug fixes, some minor enhancements and support of new JDKs:</p>
<ul>
<li>Ability to alias package names</li>
<li>Converters are only registered by default for types delivered with the JDK in use preventing
unexpected incompatibilities</li>
<li>Separation between user defined attributes and XStream attributes</li>
<li>New mode for JSONWriter to drop JSON root node</li>
<li>Support for FreeBSD's Diablo JDK.</li>
<li>Enhanced persistence package and extended tutorial.</li>
</ul>
<p>View the complete <a href="changes.html#1.3.1">change log</a> and <a href="download.html">download</a>.</p>
<p class="hightlight">Note, that XStream really supports by default now only types of the JDK in use. Especially for
CGLIB this means that support of those proxies will have to be <a href="faq.html#Serialization_CGLIB">explicitly activated</a>
first. However, support for CGLIB proxies has been enhanced.</p>
<p class="highlight">Note, to support a representation of null values in some way, it is absolutely necessary that each converter can handle a null
value in its marshalling methods. If you have implemented your own custom converters, try to handle such a case also to prevent incompatibilities
in case XStream will provide such values with its next major version.</p>
<h2 id="1.3"><b>February 27, 2008</b> XStream 1.3 released</h2>
<p>The XStream committers proudly present XStream 1.3. This release contains some major
refactorings concerning Java annotations, improved XML support regarding encoding and
character sets, some minor new features, deprecations and a lot of bug fixes:</p>
<ul>
<li>Annotation support is now implemented as Mapper and Annotations can either be processed
in advance or on-the-fly (see <a href="annotations-tutorial.html#AutoDetect">Annotations tutorial</a>
for limitations).</li>
<li>Improved encoding support for JSON and XML (including automated support for XML headers).
Enforceable check for valid XML characters in the written stream.</li>
<li>Dedicated converters can now be configured for individual fields also using the XStream facade.</li>
<li>New converters for java.lang.StringBuilder, java.util.UUID, javax.xml.datatype.Duration,
and javax.swing.LookAndFeel. New generic converter for types using a java.beans.PropertyEditor.
Auto-instantiated SingleValueConverter for Java enums to support enum values as attributes.</li>
<li>XML elements are now sorted by default according their declaration with the fields defined in parent
classes first to improve support for type hierarchies in XML schemata.</li>
<li>A lot of bug fixes to improve JSON support for arbitrary types. Added section in
<a href="faq.html#JSON">FAQ</a> for limitations and operation modes.</li>
<li>Native support for SAP VM.</li>
<li>All text-based files are now shipped with an appropriate license header to clean-up legal issues.</li>
</ul>
<p>View the complete <a href="changes.html#1.3">change log</a> and <a href="download.html">download</a>.</p>
<p class="highlight">Note, to support a representation of null values in some way, it is absolutely necessary that each converter can handle a null
value in its marshalling methods. If you have implemented your own custom converters, try to handle such a case also to prevent incompatibilities
in case XStream will provide such values with its next major version.</p>
<h2 id="1.2.2"><b>May 24, 2007</b> XStream 1.2.2 released</h2>
<p>A maintenance release of XStream that contains a lot of bug fixes and has some minor highlights:
<ul>
<li>JSON serialization and deserialization support with the help of the new JettisonMappedXmlDriver</li>
<li>Supports customized field sorting</li>
<li>Omitting fields at deserialization time</li>
</ul>
<p>View the complete <a href="changes.html#1.2.2">change log</a> and <a href="download.html">download</a>.</p>
<p class="hightlight">Note, that next version of XStream will behave slightly different by default. XStream emits
all fields in declaration order like Java serialization. But in contrast to Java it will omit the fields of parent
classes last while Java serialization emits them first. This makes it difficult to match a given XML schema that
defined inherited types or leads sometimes to obscure initialization problems. However, XStream itself will not be
affected by the changed order of elements in the XML, any deserialization of current XML representations will work
fine. Anyway we will provide with XStream 1.3 a FieldKeySorter implementation that mimics the old behaviour. In
the meanwhile you can enforce the new field sorting by installing the NaturalFieldKeySorter.</p>
<h2 id="1.2.1"><b>November 11, 2006</b> XStream 1.2.1 released</h2>
<ul>
<li>Introduced DocumentWriter interface and generalized functionality for all writer implementations
creating a DOM structure (DOM4J, DOM, JDom, Xom, Xpp3Dom).</li>
<li>Refactor of build system to use Maven 2. Ant still supported on XStream Core.</li>
<li>Created separate XStream Benchmark module</li>
</ul>
<p>View the complete <a href="changes.html#1.2.1">change log</a> and <a href="download.html">download</a>.</p>
<h2 id="project-lead-joehni"><b>Oct 10, 2006</b>Joe Walness announcing new XStream Project Lead</h2>
<p>I have been the XStream project lead, since it was open sourced 3 years ago. In that time, it has attracted some
excellent developers who have formed the foundations of the user community, made all kinds of significant improvements
and pushed out new releases. It's now approaching its 1000th commit.</p>
<p>The development community that has formed around XStream has been outstanding - more than I could ever have
imagined. In particular, the following people have invested a lot of time into XStream, both from a technical and social point of
view:</p>
<ul>
<li>Jörg Schaible</li>
<li>Mauro Talevi</li>
<li>Guilherme Silveira</li>
<li>Jason van Zyl</li>
<li>Me (well I have!)</li>
</ul>
<p>Recently I have been turning my attention to other things and XStream has been very much a self sustaining project. I've
decided that the project would benefit from have a project lead who can invest a lot more time than I can currently offer.</p>
<p>So, the new XStream project lead will be Jörg Schaible, who along with Mauro Talevi and Guilherme Silveira will carry
XStream forward. This has been happening for a long while anyway, it's just none of us ever realised or acknowledged it.</p>
<p>Of course, I'll still be lurking around, helping the transition, having loud mouth opinions and generally annoying people in any
way I can... you haven't got rid of me that easily. ;) </p>
<p>I know Jörg, Mauro and Guilherme will be able carry XStream into the next generation (we have a lot of ambitious plans
for XStream 2).</p>
<p>I'd also like to thank the 45(!) other <a href="team.html">contributers</a> to the XStream project, who have all helped
make it what it is today. Finally, thanks to Graham Glass, who's Electric XML library formed a lot of the inspiration for XStream.</p>
<h2 id="1.2"><b>August 18, 2006</b> XStream 1.2 released</h2>
<ul>
<li>Using attributes for fields (contributed by Paul Hammant and Ian Cartwright).</li>
<li>Aliasing of arbitrary attributes.</li>
<li>XStream can now serialize another XStream instance.</li>
<li>XStream has now the XStreamer, that serializes an object together with its XStream instance.</li>
<li>AnnotationConverter for fields (contributed by Guilherme Silveira).</li>
<li>PureJavaReflectionProvider supports now final fields starting with JDK 1.5</li>
<li>Any Collection type can now be declared implicit, the default implementation will be respected for unmarshalling.</li>
<li>XStream can now write all references as absolute XPath expression.</li>
<li>New SingeValueConverter allows light weight converters if the value can be represented by a unique string.</li>
<li>Aliasing of classes of a specific type.</li>
<li>Support for certain types of proxies generated with the CGLIB Enhancer.</li>
<li>Support for BEA JRockit starting with R25.1.0 (contributed by Henrik Ståhl of BEA).</li>
<li>Experimental binary reader and writer.</li>
<li>Experimental HierarichicalStreamCopier allows streams to be copied from one format to another without the overhead of serialization.</li>
<li>Experimental JSON support allows streams to be copied from one format to another without the overhead of serialization (contributed by Paul Hammant).</li>
</ul>
<p>View the complete <a href="changes.html#1.2">change log</a> and <a href="download.html">download</a>.</p>
<h2 id="1.1.3"><b>January 13, 2006</b> XStream 1.1.3 released</h2>
<ul>
<li>Added XStream.toXML(OutputStream) and XStream.fromXML(InputStream).</li>
<li>Ability to prevent fields from being serialized by calling XStream.omitField() or by implementing Mapper.shouldSerializeMember().</li>
<li>Added Converter for Enum, EnumMap and EnumSet</li>
<li>Added BeanConverter and ISO8601SqlTimestampConverter</li>
<li>Fixed support for IBM JVM (contributed by Gabor Liptak)</li>
<li>Enhanced mode support for Blackdown JDK.</li>
</ul>
<p>View the complete <a href="changes.html#1.1.3">change log</a> and <a href="download.html">download</a>.</p>
<h2 id="1.1.2"><b>April 30, 2005</b> XStream 1.1.2 released</h2>
<p>Most popular feature requests implemented.</p>
<ul>
<li>Java 5 Enum support.</li>
<li>JavaBeanConverter for serialization using getters and setters.</li>
<li>Aliasing of fields.</li>
<li>StAX integration, with namespaces.</li>
<li>Improved support on JDK 1.3 and IBM JDK.</li>
</ul>
<p>View the complete <a href="changes.html#1.1.2">change log</a> and <a href="download.html">download</a>.</p>
<h2 id="1.1.1"><b>March 7, 2005</b> XStream 1.1.1 released</h2>
<ul>
<li>Converters can be registered with a priority, allowing more <i>generic</i> filters to handle classes that don't have more specific converters.</li>
<li>Converters can now access underlying HierarchicalStreamReader/Writer implementations to make implementation specific calls.</li>
<li>Improved support for classes using ObjectInputFields and ObjectInputValidation to follow the serialization specification.</li>
<li>Default ClassLoader may be changed using XStream.setClassLoader().</li>
<li>Many bugfixes and performance enhancements.</li>
</ul>
<p>View the complete <a href="changes.html#1.1.1">change log</a> and <a href="download.html">download</a>.</p>
<h2 id="1.1"><b>January 15, 2005</b> XStream 1.1 released</h2>
<ul>
<li>Improved support for serializing objects as per the <a href="http://java.sun.com/j2se/1.4.2/docs/guide/serialization/spec/serialTOC.html">Java Serialization</a> Specification:
<ul>
<li>Calls custom serialization methods, readObject(), writeObject(), readResolve() and writeReplace() in class, if defined.</li>
<li>Supports ObjectInputStream.getFields() and ObjectOutputStream.putFields() in custom serialization.</li>
</ul></li>
<li>Provides implementations of ObjectInputStream and ObjectOutputStream, allowing drop in replacements for standard serialization,
including support for streams of objects. [<a href="objectstream.html">More...</a>]</li>
<li>Reads and writes directly to most XML Java APIs: DOM, DOM4J, JDOM, XOM, Electric XML, StAX, Trax (write only), SAX (write only).
[<a href="javadoc/com/thoughtworks/xstream/io/xml/package-summary.html">More...</a>]</li>
</ul>
<p>View the complete <a href="changes.html#1.1">change log</a> and <a href="download.html">download</a>.</p>
</body>
</html>
|
src/pages/content/content.html | vivadaniele/spid-ionic-sdk | <ion-header>
<ion-navbar>
<ion-title>
Content
</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<p>
This is a perfect starting point for a page with primarily text content. The body is padded nicely and ready for prose.
</p>
</ion-content> |
SVG/Testsuites/W3C-1_1F2/harness/htmlObject/color-prop-01-b.html | frivoal/presto-testo | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="keywords" content="W3C SVG 1.1 2nd Edition Test Suite"/>
<meta name="description" content="W3C SVG 1.1 2nd Edition Object Test Suite"/>
<title>
SVG 1.1 2nd Edition Test (<object>): color-prop-01-b.svg
</title>
<style type="text/css">
<!--
.bodytext { font-family:verdana, helvetica, sans-serif; font-size: 12pt; line-height: 125%; text-align: Left; margin-top: 0; margin-bottom: 0 }
.pageTitle { line-height: 150%; font-size: 20pt; font-weight : 900; margin-bottom: 20pt }
.pageSubTitle { color : blue; line-height: 100%; font-size: 24pt; font-weight : 900 }
.openChapter { color : blue; line-height: 125%; font-weight : 900 }
.openSection { color : blue; line-height: 125%; font-weight : 900 }
.info { color : black; line-height: 110%; font-size: 10pt; font-weight : 100 }
p { margin-top:0; margin-bottom:0; padding-top:0; padding-bottom:0 }
blockquote { margin-top:0; margin-bottom:0; padding-top:0; padding-bottom:0 }
.opscript { margin-left: 3%; margin-right: 3%; }
.opscript p { margin-top: 0.7em }
.navbar { background: black; color: white; font-weight: bold }
.warning { color: red; text-align: Center;}
a,a:visited { color: blue }
-->
</style>
<link rel="prev" href="color-prof-01-f.html" />
<link rel="index" href="index.html" />
<link rel="next" href="color-prop-02-f.html" />
<script src="../resources/testharnessreport.js"></script>
</head>
<body class="bodytext">
<div class="linkbar">
<p>Specification link: <a target="spec" href="http://www.w3.org/TR/SVG11/color.html#ColorProperty">12.2 The 'color' property</a></p>
<p>
<a href="color-prof-01-f.html" rel="prev">color-prof-01-f ←</a>
<a href="index.html" rel="index">index</a>
<a href="color-prop-02-f.html" rel="next">→ color-prop-02-f</a>
</p>
</div>
<div>
<br />
<p class="warning">
Tests that contain the draft-watermark are under development and may be incorrectly testing a feature.
</p>
</div>
<table align="center" border="0" cellspacing="0" cellpadding="10">
<tr>
<td align="center" colspan="3">
<table border="0" cellpadding="8">
<tr>
<td align="center" colspan="2" class="pageTitle">
<h1>color-prop-01-b.svg</h1>
</td>
</tr>
<tr class="navbar">
<td align="center">
SVG Image
</td>
<td align="center">
PNG Image
</td>
</tr>
<tr>
<td align="right">
<object data="../../svg/color-prop-01-b.svg" width="480" height="360" type="image/svg+xml"><p style="font-size:300%;color:red">FAIL</p></object>
</td>
<td align="left">
<img alt="raster image of color-prop-01-b.svg" src="../../png/color-prop-01-b.png" width="480" height="360"/>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div class="opscript">
<h2 id="operatorscript">
Operator Script
</h2>
<div>
<p>
Run the test. No interaction required.
</p>
</div>
<h2 id="passcriteria">
Pass Criteria
</h2>
<div>
<p>
There are three subtests. The first subtest, to the top left, is passed if the circle has a green fill. The second subtest,
to the top right, is passed if the circle has a green stroke. The third subtest shows a rectangle
with a gradient fill, which has three stops. The subtest is passed if central stop is green,
fading off to blue to the left and pale yellow to the right.
</p>
</div>
<h2 id="testdescription">
Test Description
</h2>
<div>
<p>
This tests the 'color' property and the 'currentColor' value on fill, stroke, and stop-color properties.
</p>
</div>
</div>
<br/>
<div class="linkbar">
<p>
<a href="color-prof-01-f.html" rel="prev">color-prof-01-f ←</a>
<a href="index.html" rel="index">index</a>
<a href="color-prop-02-f.html" rel="next">→ color-prop-02-f</a>
</p>
</div>
</body>
</html>
|
static/404.html | absolute413/MagnussonFarm.com | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Page Not Found</title>
<style>
* {
margin: 0;
line-height: 1.2;
}
body {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
left: 16px;
right: 16px;
color: #888;
font-family: sans-serif;
text-align: center;
}
h1 {
color: #555;
font-size: 2em;
font-weight: 400;
line-height: 1.5;
}
</style>
</head>
<body>
<h1>Page Not Found</h1>
<p>Sorry, but the page you were trying to view does not exist.</p>
</body>
</html>
<!-- IE requires 512+ bytes: http://www.404-error-page.com/404-error-page-too-short-problem-microsoft-ie.shtml -->
|
admin/public/rcm-input/rcm-input.css | rodmcnew/Rcm | .rcm-input {
}
.rcm-input.image label {
display: block;
}
.rcm-input.image img {
max-height: 8em;
/*max-width: 120px !important;*/
/*max-height: 170px !important;*/
/*float: left;*/
/*margin-right: 10px*/
}
|
client/views/app/home.html | princesust/Rocket.Chat | <template name="home">
<section class="page-container page-home page-static">
<header class="fixed-title">
<div class="burger">
<i></i>
<i></i>
<i></i>
</div>
<h2>
<span class="room-title">{{_ "Welcome_to_the"}} Rocket.Chat</span>
</h2>
</header>
<div class="content">
<img class="logo" src="/images/logo/logo-dark.svg?v=3" />
<div class="info">
<p>{{_ "Have_your_own_chat"}}</p>
<p>← {{_ "use_menu"}}.</p>
</div>
{{ > social withParagraph }}
<div class="rocket-team">
<h4>{{_ "Get_to_know_the_team" }}</h4>
<ul>
<li>
<a target="_blank" href="https://github.com/engelgabriel" style="background-image: url(https://avatars1.githubusercontent.com/u/1000217?v=3&s=460)" title="Gabriel Engel (Founder & CEO)"></a>
</li>
<li>
<a target="_blank" href="https://github.com/sampaiodiego" style="background-image: url(https://avatars3.githubusercontent.com/u/8591547?v=3&s=460)" title="Diego Sampaio (Developer)"></a>
</li>
<li>
<a target="_blank" href="https://github.com/marceloschmidt" style="background-image: url(https://avatars1.githubusercontent.com/u/1986378?v=3&s=460)" title="Marcelo Schmidt (Developer)"></a>
</li>
<li>
<a target="_blank" href="https://github.com/rodrigok" style="background-image:url(https://avatars2.githubusercontent.com/u/234261?v=3&s=460)" title="Rodrigo Nascimento (Developer)"></a>
</li>
<li>
<a target="_blank" href="https://github.com/rcaferati" style="background-image: url(https://avatars2.githubusercontent.com/u/8358797?v=3&s=460)" title="Rafael Caferati (UX Architect)"></a>
</li>
</ul>
</div>
</div>
</section>
<!-- <section class="flex-tab">
<div class="control">
<button class="more"><span class="arrow {{arrowPosition}}"></span></button>
</div>
<div class="content">
<div class="list-view">
<div class="status">
<h2>{{_ "Chat_Rooms"}}</h2>
<p>
{{{_ "Showing_online_users" total_online=1 total=1}}}
</p>
</div>
</div>
</div>
</section> -->
</template>
|
original_sources/boost_1_59_0/doc/html/boost/proto/result_of/flatten.html | TyRoXx/cdm | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct template flatten</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../../proto/reference.html#header.boost.proto.fusion_hpp" title="Header <boost/proto/fusion.hpp>">
<link rel="prev" href="../functional/flatten/result_This_E_idp204657376.html" title="Struct template result<This(Expr &)>">
<link rel="next" href="../flatten_idp204679696.html" title="Function flatten">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
<td align="center"><a href="../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../functional/flatten/result_This_E_idp204657376.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../proto/reference.html#header.boost.proto.fusion_hpp"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../flatten_idp204679696.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.proto.result_of.flatten"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct template flatten</span></h2>
<p>boost::proto::result_of::flatten — Metafunction that computes the return type of <code class="computeroutput">
<a class="link" href="../flatten_idp204679696.html" title="Function flatten">proto::flatten()</a></code></p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../../proto/reference.html#header.boost.proto.fusion_hpp" title="Header <boost/proto/fusion.hpp>">boost/proto/fusion.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> <a class="link" href="../../../Expr.html" title="Concept Expr">Expr</a><span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="flatten.html" title="Struct template flatten">flatten</a> <span class="special">{</span>
<span class="comment">// types</span>
<span class="keyword">typedef</span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a name="boost.proto.result_of.flatten.type"></a><span class="identifier">type</span><span class="special">;</span> <span class="comment">// A Fusion Forward Sequence</span>
<span class="special">}</span><span class="special">;</span></pre></div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2008 Eric Niebler<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../functional/flatten/result_This_E_idp204657376.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../proto/reference.html#header.boost.proto.fusion_hpp"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../flatten_idp204679696.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
views/partials/playnow.html | kumartarun/Ionic-passport-Angular | <div class="container">
<input ng-model='inputState' />
<button ng-click='setGameState(inputState)'>Set state</button>
<br/>
<br/>
<button ng-click='checkState()'>check state</button>
<br/>
<br/>
<br/>
<br/>
<div>
<div ng-show='gameState === "lobby"'>
<p>tis lobby</p>
<table class="CSSTableGenerator" >
<tr>
<th>
Username
</th>
<th>
Color
</th>
</tr>
<tr>
<td>
{{currentUser.username}}
</td>
<td>
other peopl
</td>
</tr>
</table>
</div>
<div ng-show='gameState === "ongoing"'>
tis ongoing
</div>
<div ng-show='gameState === "browse"'>
<tabset>
<tab>
<tab-heading>Join Game</tab-heading>
<div class='col-md-6'>
<button ng-click="enterGame(selectedGame)">Enter Game</button>
<p>{{message}}</p>
<b>select some fruit:</b> <br/>
<select NAME="Morefruit" SIZE="10" style="width: 300px">
<option ng-repeat="g in games" ng-bind="g.name" ng-click="selectGame(g)"> </option>
</select>
</div>
<div class='col-md-6'>
<p>Host: {{selectedGame.host}}</p>
</div>
</tab>
<tab>
<tab-heading>Create Game</tab-heading>
<form class="well" novalidate class="simple-form" ng-submit="create()">
Game name: <input type="text" ng-model="game.name" /><br />
<input type="button" ng-click="reset()" value="Reset" />
<input type="submit" ng-click="update(game)" value="OK" />
<button>Cancel</button>
</form>
<pre>Game description = {{game | json}}</pre>
<pre>Map stats = {{master | json}}</pre>
<!-- <pre ng-model="game.host">Host: {{currentUser.username}}</pre> -->
</tab>
<tab>
<section ng-init="populateUsersAndGames()"></section>
<tab-heading>Leaderboard</tab-heading>
<p>Current Leaderboard: </p>
<ul ng-repeat='u in usernameList'>
<li>{{u}}</li>
</ul>
</tab>
</tabset>
</div>
</div>
</div> |
test/visual/menu/menu-flex.html | DaSchTour/foundation-sites | <!doctype html>
<!--[if IE 9]><html class="lt-ie10" lang="en" > <![endif]-->
<html class="no-js" lang="en" dir="ltr">
<head>
<link href="http://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/foundation-icons.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="../assets/css/foundation-flex.css" rel="stylesheet" />
<style>
</style>
</head>
<body>
<h2>Menu</h2>
<hr>
<p>This menu should be centered</p>
<div class="menu-centered">
<ul class="menu">
<li><a href="#" target="_blank">Link</a></li>
<li><a href="#" target="_blank">Link</a></li>
<li><a href="#" target="_blank">Link</a></li>
<li><a href="#" target="_blank">Link</a></li>
</ul>
</div>
<hr>
<script src="../assets/js/vendor.js"></script>
<script src="../assets/js/foundation.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>
|
src/deps/boost/doc/html/boost_asio/reference/windows__basic_object_handle/service.html | mxrrow/zaicoin | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>windows::basic_object_handle::service</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../../boost_asio.html" title="Boost.Asio">
<link rel="up" href="../windows__basic_object_handle.html" title="windows::basic_object_handle">
<link rel="prev" href="operator_eq_.html" title="windows::basic_object_handle::operator=">
<link rel="next" href="service_type.html" title="windows::basic_object_handle::service_type">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
<td align="center"><a href="../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="operator_eq_.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../windows__basic_object_handle.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="service_type.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h4 class="title">
<a name="boost_asio.reference.windows__basic_object_handle.service"></a><a class="link" href="service.html" title="windows::basic_object_handle::service">windows::basic_object_handle::service</a>
</h4></div></div></div>
<p>
<span class="emphasis"><em>Inherited from basic_io_object.</em></span>
</p>
<p>
<a class="indexterm" name="idp73979904"></a>
(Deprecated: Use <code class="computeroutput"><span class="identifier">get_service</span><span class="special">()</span></code>.) The service associated with the I/O
object.
</p>
<pre class="programlisting"><span class="identifier">service_type</span> <span class="special">&</span> <span class="identifier">service</span><span class="special">;</span>
</pre>
<h6>
<a name="boost_asio.reference.windows__basic_object_handle.service.h0"></a>
<span><a name="boost_asio.reference.windows__basic_object_handle.service.remarks"></a></span><a class="link" href="service.html#boost_asio.reference.windows__basic_object_handle.service.remarks">Remarks</a>
</h6>
<p>
Available only for services that do not support movability.
</p>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2003-2012 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="operator_eq_.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../windows__basic_object_handle.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="service_type.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
poi-3.14/docs/apidocs/org/apache/poi/hslf/usermodel/class-use/HSLFPictureShape.html | Sebaxtian/KDD | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<TITLE>
Uses of Class org.apache.poi.hslf.usermodel.HSLFPictureShape (POI API Documentation)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.poi.hslf.usermodel.HSLFPictureShape (POI API Documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureShape.html" title="class in org.apache.poi.hslf.usermodel"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/poi/hslf/usermodel/\class-useHSLFPictureShape.html" target="_top"><B>FRAMES</B></A>
<A HREF="HSLFPictureShape.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>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.poi.hslf.usermodel.HSLFPictureShape</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureShape.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureShape</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.poi.hslf.model"><B>org.apache.poi.hslf.model</B></A></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.poi.hslf.usermodel"><B>org.apache.poi.hslf.usermodel</B></A></TD>
<TD> </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.poi.hslf.model"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureShape.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureShape</A> in <A HREF="../../../../../../org/apache/poi/hslf/model/package-summary.html">org.apache.poi.hslf.model</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureShape.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureShape</A> in <A HREF="../../../../../../org/apache/poi/hslf/model/package-summary.html">org.apache.poi.hslf.model</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/model/ActiveXShape.html" title="class in org.apache.poi.hslf.model">ActiveXShape</A></B></CODE>
<BR>
Represents an ActiveX control in a PowerPoint document.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/model/MovieShape.html" title="class in org.apache.poi.hslf.model">MovieShape</A></B></CODE>
<BR>
Represents a movie in a PowerPoint document.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/poi/hslf/model/OLEShape.html" title="class in org.apache.poi.hslf.model">OLEShape</A></B></CODE>
<BR>
A shape representing embedded OLE obejct.</TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.poi.hslf.usermodel"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureShape.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureShape</A> in <A HREF="../../../../../../org/apache/poi/hslf/usermodel/package-summary.html">org.apache.poi.hslf.usermodel</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../org/apache/poi/hslf/usermodel/package-summary.html">org.apache.poi.hslf.usermodel</A> that return <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureShape.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureShape</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureShape.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureShape</A></CODE></FONT></TD>
<TD><CODE><B>HSLFSheet.</B><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFSheet.html#createPicture(org.apache.poi.sl.usermodel.PictureData)">createPicture</A></B>(<A HREF="../../../../../../org/apache/poi/sl/usermodel/PictureData.html" title="interface in org.apache.poi.sl.usermodel">PictureData</A> pictureData)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureShape.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureShape</A></CODE></FONT></TD>
<TD><CODE><B>HSLFShapeContainer.</B><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFShapeContainer.html#createPicture(org.apache.poi.sl.usermodel.PictureData)">createPicture</A></B>(<A HREF="../../../../../../org/apache/poi/sl/usermodel/PictureData.html" title="interface in org.apache.poi.sl.usermodel">PictureData</A> pictureData)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureShape.html" title="class in org.apache.poi.hslf.usermodel">HSLFPictureShape</A></CODE></FONT></TD>
<TD><CODE><B>HSLFGroupShape.</B><B><A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFGroupShape.html#createPicture(org.apache.poi.sl.usermodel.PictureData)">createPicture</A></B>(<A HREF="../../../../../../org/apache/poi/sl/usermodel/PictureData.html" title="interface in org.apache.poi.sl.usermodel">PictureData</A> pictureData)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/poi/hslf/usermodel/HSLFPictureShape.html" title="class in org.apache.poi.hslf.usermodel"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/poi/hslf/usermodel/\class-useHSLFPictureShape.html" target="_top"><B>FRAMES</B></A>
<A HREF="HSLFPictureShape.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>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2016 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
components/YouTube.Player.html | aplib/markdown-site-template | <!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>YouTube Player component</title>
<script src="../document.min.js" userjs="user.js" icon="favicon.ico" id="DOC" onerror="var l=document.createElement('link'),s=document.createElement('script');l.rel='stylesheet';l.href='http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css';l.id='bootstrap.css';l.auto='1';document.head.insertBefore(l,document.getElementById('DOC'));s.src='http://aplib.github.io/document.min.js';document.head.appendChild(s);"></script>
</head>
<body>
<!--content-panel
## YouTube player component
<h3><a class="label label-default" href="http://aplib.github.io/markdown-site-template/components/YouTube.Player.zip">Download</a></h3>
>syntax:
><code>[off][YouTube.Player]ID,parameters[/YouTube.Player][/off]</code>
>location: components/YouTube/Player/
[YouTube.Player]M7lc1UVf-VE,hd720,400,280[/YouTube.Player]
### Parameters
* videoID {string}
* start {number} - optionalб begin playing the video at the given number of seconds from the start of the video
* quality {default,small,medium,large,hd720,hd1080,highres} - optional
* width - optional, default value 640
* height - optional, default value 390
* command {play} - optional
<code>[off][YouTube.Player]M7lc1UVf-VE[/YouTube.Player][/off]</code>
<code>[off][YouTube.Player]M7lc1UVf-VE,226,large,400,280,play[/YouTube.Player][/off]</code>
<code>[off][YouTube.Player videoID=M7lc1UVf-VE start=226 quality=large width=400 height=280 command=play/][/off]</code>
-->
<!--right-side-panel -->
<noscript><div class="alert alert-warning">This Website requires your browser to be JavaScript enabled.</div></noscript>
</body>
</html> |
example_project/media/css/style.css | MidwestCommunications/django-linkslist | .header { display: block; background: url("../img/header-background.gif") #CCCCCC; width: 100%; }
.header a.logo { display: inline-block; padding: 5px 10px; }
.nav { background: url("../img/nav-background.gif") #3973A0; width: 100%; margin: 0; }
.nav li { list-style-type:none; float: left; }
.nav li a { padding: 3px 5px; display: block; }
.body { clear: both; width: 960px; margin: 0 auto; padding: 10px; }
.footer { clear: both; width: 960px; margin: 0 auto; text-align: center; color: #aaa; }
/* --Uploadify -- */
.uploadifyQueueItem {
font: 11px Verdana, Geneva, sans-serif;
border: 2px solid #E5E5E5;
background-color: #F5F5F5;
margin-top: 5px;
padding: 10px;
width: 350px;
}
.uploadifyError {
border: 2px solid #FBCBBC !important;
background-color: #FDE5DD !important;
}
.uploadifyQueueItem .cancel {
float: right;
}
.uploadifyProgress {
background-color: #FFFFFF;
border-top: 1px solid #808080;
border-left: 1px solid #808080;
border-right: 1px solid #C5C5C5;
border-bottom: 1px solid #C5C5C5;
margin-top: 10px;
width: 100%;
}
.uploadifyProgressBar {
background-color: #0099FF;
width: 1px;
height: 3px;
}
#fileQueue .uploadifyQueueItem {
font: 11px Verdana, Geneva, sans-serif;
border: none;
border-bottom: 1px solid #E5E5E5;
background-color: #FFFFFF;
padding: 5%;
width: 90%;
}
#fileQueue .uploadifyError {
background-color: #FDE5DD !important;
}
#fileQueue .uploadifyQueueItem .cancel {
float: right;
}
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix {
display: inline-block;
}
html[xmlns] .clearfix {
display: block;
}
* html .clearfix {
height: 1%;
} |
public/resources/angular-1.5.3/docs/examples/example-example13/index-production.html | Palkess/TrackWork-Angular | <!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example13-production</title>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.2/angular.min.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="docsTemplateUrlDirective">
<div ng-controller="Controller">
<div my-customer></div>
</div>
</body>
</html> |
index.html | kasonjim/interviewer.dc | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Interviewer Direct Connection</title>
<!-- Required library files -->
<script src="https://d3p86x8y7zn38t.cloudfront.net/lib/screenshot.min.js"></script>
<script src="https://d3p86x8y7zn38t.cloudfront.net/lib/RecordRTC.min.js"></script>
<script src="https://d3p86x8y7zn38t.cloudfront.net/lib/RTCMultiConnection.min.js"></script>
<script src="https://d3p86x8y7zn38t.cloudfront.net/lib/getMediaElement.js"></script>
<script src="https://d3p86x8y7zn38t.cloudfront.net/lib/socket.io.min.js"></script>
<!-- Materialize Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/css/materialize.min.css">
<!-- Mbox Materialize Box Maker (inspired by bootbox) -->
<link href="//cdn.bri.io/mbox/dist/mbox-0.0.1.min.css" rel="stylesheet">
<!-- Codeshare CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.25.0/codemirror.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.25.0/theme/monokai.min.css">
<link rel="stylesheet" href="https://cdn.firebase.com/libs/firepad/1.4.0/firepad.css">
<link rel="stylesheet" href="https://d3p86x8y7zn38t.cloudfront.net/glyphicons/css/glyphicons.css">
<link rel="stylesheet" href="https://d3p86x8y7zn38t.cloudfront.net/glyphicons-social/css/glyphicons-social.css">
<link rel="stylesheet" href="client/styles/output.css">
<link rel="shortcut icon" type="image/png" href="client/assets/logo.png">
<script src="https://d3p86x8y7zn38t.cloudfront.net/blob-stream/blob-stream.js"></script>
<script src="https://d3p86x8y7zn38t.cloudfront.net/pdfkit/pdfkit.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.6.0/clipboard.min.js"></script>
<!-- React Select -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>
<script src="https://unpkg.com/classnames/index.js"></script>
<script src="https://unpkg.com/react-input-autosize/dist/react-input-autosize.js"></script>
<script src="https://unpkg.com/react-select/dist/react-select.js"></script>
<link rel="stylesheet" href="https://unpkg.com/react-select/dist/react-select.css">
</head>
<body>
<!-- Render the app inside of a main tag, as life should be -->
<!-- The preloader-wrapper class creates a loading spinner that changes color -->
<main>
<div id="app">
<div class="preloader-wrapper big active">
<div class="spinner-layer spinner-blue">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
<div class="spinner-layer spinner-red">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
<div class="spinner-layer spinner-yellow">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
<div class="spinner-layer spinner-green">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
</div>
</div>
</main>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<!-- Webpack bundle -->
<script src="client/dist/bundle.js"></script>
<!-- <script src="https://apis.google.com/js/client.js?onload=checkAuth"></script>
-->
<!-- Materialize Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.1/js/materialize.min.js"></script>
<!-- Mbox JavaScript -->
<script src="//cdn.bri.io/mbox/dist/mbox-0.0.1.min.js"></script>
<!-- CodeShare files -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.25.0/codemirror.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.25.0/mode/javascript/javascript.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.3.0/firebase.js"></script>
<script src="https://cdn.firebase.com/libs/firepad/1.4.0/firepad.min.js"></script>
</body>
</html>
|
example/src/pinch.html | beni55/react-tappable | <!doctype html>
<head>
<title>React-Tappable Example</title>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<link rel="stylesheet" href="example.css">
</head>
<body>
<div class="container">
<h1>React Tappable</h1>
<h2><a href="http://github.com/JedWatson/react-tappable">View project on GitHub</a></h2>
<div id="app"></div>
<div class="hint">
Events in the area on the left will be logged on the right.
Toggle scrolling to test event cancel on scroll (touch devices only).
</div>
<div class="footer">
Copyright © Jed Watson 2014. MIT Licensed.
</div>
</div>
<script src="common.js"></script>
<script src="bundle.js"></script>
<script src="pinch.js"></script>
</body>
|
sites/all/themes/scholarly/fonts/https/cinzel-font.css | jacquehettel/learn | @import url(https://fonts.googleapis.com/css?family=Cinzel:400,700,900&subset=latin-ext,latin,greek); |
sites/all/libraries/yui/api/modules/datatype.html | oystercrackher/dev.sdtn.com | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>datatype - YUI 3</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/3.5.0pr4/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">
<script src="http://yui.yahooapis.com/3.5.0pr4/build/yui/yui-min.js"></script>
</head>
<body class="yui3-skin-sam">
<div id="doc">
<div id="hd" class="yui3-g header">
<div class="yui3-u-3-4">
<h1><img src="../assets/css/logo.png" title="YUI 3"></h1>
</div>
<div class="yui3-u-1-4 version">
<em>API Docs for: 3.5.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/Anim.html">Anim</a></li>
<li><a href="../classes/App.html">App</a></li>
<li><a href="../classes/App.Base.html">App.Base</a></li>
<li><a href="../classes/App.Transitions.html">App.Transitions</a></li>
<li><a href="../classes/App.TransitionsNative.html">App.TransitionsNative</a></li>
<li><a href="../classes/AreaSeries.html">AreaSeries</a></li>
<li><a href="../classes/AreaSplineSeries.html">AreaSplineSeries</a></li>
<li><a href="../classes/Array.html">Array</a></li>
<li><a href="../classes/ArrayList.html">ArrayList</a></li>
<li><a href="../classes/ArraySort.html">ArraySort</a></li>
<li><a href="../classes/AsyncQueue.html">AsyncQueue</a></li>
<li><a href="../classes/Attribute.html">Attribute</a></li>
<li><a href="../classes/AttributeCore.html">AttributeCore</a></li>
<li><a href="../classes/AttributeEvents.html">AttributeEvents</a></li>
<li><a href="../classes/AttributeExtras.html">AttributeExtras</a></li>
<li><a href="../classes/AttributeLite.html">AttributeLite</a></li>
<li><a href="../classes/AutoComplete.html">AutoComplete</a></li>
<li><a href="../classes/AutoCompleteBase.html">AutoCompleteBase</a></li>
<li><a href="../classes/AutoCompleteFilters.html">AutoCompleteFilters</a></li>
<li><a href="../classes/AutoCompleteHighlighters.html">AutoCompleteHighlighters</a></li>
<li><a href="../classes/AutoCompleteList.html">AutoCompleteList</a></li>
<li><a href="../classes/Axis.html">Axis</a></li>
<li><a href="../classes/AxisType.html">AxisType</a></li>
<li><a href="../classes/BarSeries.html">BarSeries</a></li>
<li><a href="../classes/Base.html">Base</a></li>
<li><a href="../classes/BaseCore.html">BaseCore</a></li>
<li><a href="../classes/BottomAxisLayout.html">BottomAxisLayout</a></li>
<li><a href="../classes/Button.html">Button</a></li>
<li><a href="../classes/ButtonCore.html">ButtonCore</a></li>
<li><a href="../classes/ButtonGroup.html">ButtonGroup</a></li>
<li><a href="../classes/ButtonPlugin.html">ButtonPlugin</a></li>
<li><a href="../classes/Cache.html">Cache</a></li>
<li><a href="../classes/CacheOffline.html">CacheOffline</a></li>
<li><a href="../classes/Calendar.html">Calendar</a></li>
<li><a href="../classes/CalendarBase.html">CalendarBase</a></li>
<li><a href="../classes/CanvasCircle.html">CanvasCircle</a></li>
<li><a href="../classes/CanvasDrawing.html">CanvasDrawing</a></li>
<li><a href="../classes/CanvasEllipse.html">CanvasEllipse</a></li>
<li><a href="../classes/CanvasGraphic.html">CanvasGraphic</a></li>
<li><a href="../classes/CanvasPath.html">CanvasPath</a></li>
<li><a href="../classes/CanvasPieSlice.html">CanvasPieSlice</a></li>
<li><a href="../classes/CanvasRect.html">CanvasRect</a></li>
<li><a href="../classes/CanvasShape.html">CanvasShape</a></li>
<li><a href="../classes/CartesianChart.html">CartesianChart</a></li>
<li><a href="../classes/CartesianSeries.html">CartesianSeries</a></li>
<li><a href="../classes/CategoryAxis.html">CategoryAxis</a></li>
<li><a href="../classes/Chart.html">Chart</a></li>
<li><a href="../classes/ChartBase.html">ChartBase</a></li>
<li><a href="../classes/ChartLegend.html">ChartLegend</a></li>
<li><a href="../classes/Circle.html">Circle</a></li>
<li><a href="../classes/ClassNameManager.html">ClassNameManager</a></li>
<li><a href="../classes/ClickableRail.html">ClickableRail</a></li>
<li><a href="../classes/ColumnSeries.html">ColumnSeries</a></li>
<li><a href="../classes/ComboSeries.html">ComboSeries</a></li>
<li><a href="../classes/ComboSplineSeries.html">ComboSplineSeries</a></li>
<li><a href="../classes/config.html">config</a></li>
<li><a href="../classes/Console.html">Console</a></li>
<li><a href="../classes/Controller.html">Controller</a></li>
<li><a href="../classes/Cookie.html">Cookie</a></li>
<li><a href="../classes/CurveUtil.html">CurveUtil</a></li>
<li><a href="../classes/CustomEvent.html">CustomEvent</a></li>
<li><a href="../classes/DataSchema.Array.html">DataSchema.Array</a></li>
<li><a href="../classes/DataSchema.Base.html">DataSchema.Base</a></li>
<li><a href="../classes/DataSchema.JSON.html">DataSchema.JSON</a></li>
<li><a href="../classes/DataSchema.Text.html">DataSchema.Text</a></li>
<li><a href="../classes/DataSchema.XML.html">DataSchema.XML</a></li>
<li><a href="../classes/DataSource.Function.html">DataSource.Function</a></li>
<li><a href="../classes/DataSource.Get.html">DataSource.Get</a></li>
<li><a href="../classes/DataSource.IO.html">DataSource.IO</a></li>
<li><a href="../classes/DataSource.Local.html">DataSource.Local</a></li>
<li><a href="../classes/DataSourceArraySchema.html">DataSourceArraySchema</a></li>
<li><a href="../classes/DataSourceCache.html">DataSourceCache</a></li>
<li><a href="../classes/DataSourceCacheExtension.html">DataSourceCacheExtension</a></li>
<li><a href="../classes/DataSourceJSONSchema.html">DataSourceJSONSchema</a></li>
<li><a href="../classes/DataSourceTextSchema.html">DataSourceTextSchema</a></li>
<li><a href="../classes/DataSourceXMLSchema.html">DataSourceXMLSchema</a></li>
<li><a href="../classes/DataTable.html">DataTable</a></li>
<li><a href="../classes/DataTable.Base.html">DataTable.Base</a></li>
<li><a href="../classes/DataTable.BodyView.html">DataTable.BodyView</a></li>
<li><a href="../classes/DataTable.ColumnWidths.html">DataTable.ColumnWidths</a></li>
<li><a href="../classes/DataTable.Core.html">DataTable.Core</a></li>
<li><a href="../classes/DataTable.HeaderView.html">DataTable.HeaderView</a></li>
<li><a href="../classes/DataTable.Message.html">DataTable.Message</a></li>
<li><a href="../classes/DataTable.Mutable.html">DataTable.Mutable</a></li>
<li><a href="../classes/DataTable.Scrollable.html">DataTable.Scrollable</a></li>
<li><a href="../classes/DataTable.Sortable.html">DataTable.Sortable</a></li>
<li><a href="../classes/DataType.Date.html">DataType.Date</a></li>
<li><a href="../classes/DataType.Date.Locale.html">DataType.Date.Locale</a></li>
<li><a href="../classes/DataType.Number.html">DataType.Number</a></li>
<li><a href="../classes/DataType.XML.html">DataType.XML</a></li>
<li><a href="../classes/DD.DDM.html">DD.DDM</a></li>
<li><a href="../classes/DD.Delegate.html">DD.Delegate</a></li>
<li><a href="../classes/DD.Drag.html">DD.Drag</a></li>
<li><a href="../classes/DD.Drop.html">DD.Drop</a></li>
<li><a href="../classes/DD.Plugin.DDWindowScroll.html">DD.Plugin.DDWindowScroll</a></li>
<li><a href="../classes/DD.Scroll.html">DD.Scroll</a></li>
<li><a href="../classes/Dial.html">Dial</a></li>
<li><a href="../classes/Do.html">Do</a></li>
<li><a href="../classes/Do.AlterArgs.html">Do.AlterArgs</a></li>
<li><a href="../classes/Do.AlterReturn.html">Do.AlterReturn</a></li>
<li><a href="../classes/Do.Error.html">Do.Error</a></li>
<li><a href="../classes/Do.Halt.html">Do.Halt</a></li>
<li><a href="../classes/Do.Method.html">Do.Method</a></li>
<li><a href="../classes/Do.Prevent.html">Do.Prevent</a></li>
<li><a href="../classes/DOM.html">DOM</a></li>
<li><a href="../classes/DOMEventFacade.html">DOMEventFacade</a></li>
<li><a href="../classes/Drawing.html">Drawing</a></li>
<li><a href="../classes/Easing.html">Easing</a></li>
<li><a href="../classes/EditorBase.html">EditorBase</a></li>
<li><a href="../classes/EditorSelection.html">EditorSelection</a></li>
<li><a href="../classes/Ellipse.html">Ellipse</a></li>
<li><a href="../classes/EllipseGroup.html">EllipseGroup</a></li>
<li><a href="../classes/Escape.html">Escape</a></li>
<li><a href="../classes/Event.html">Event</a></li>
<li><a href="../classes/EventFacade.html">EventFacade</a></li>
<li><a href="../classes/EventHandle.html">EventHandle</a></li>
<li><a href="../classes/EventTarget.html">EventTarget</a></li>
<li><a href="../classes/ExecCommand.html">ExecCommand</a></li>
<li><a href="../classes/Features.html">Features</a></li>
<li><a href="../classes/File.html">File</a></li>
<li><a href="../classes/FileFlash.html">FileFlash</a></li>
<li><a href="../classes/FileHTML5.html">FileHTML5</a></li>
<li><a href="../classes/Fills.html">Fills</a></li>
<li><a href="../classes/Frame.html">Frame</a></li>
<li><a href="../classes/Get.html">Get</a></li>
<li><a href="../classes/Get.Transaction.html">Get.Transaction</a></li>
<li><a href="../classes/GetNodeJS.html">GetNodeJS</a></li>
<li><a href="../classes/Graph.html">Graph</a></li>
<li><a href="../classes/Graphic.html">Graphic</a></li>
<li><a href="../classes/GraphicBase.html">GraphicBase</a></li>
<li><a href="../classes/Gridlines.html">Gridlines</a></li>
<li><a href="../classes/GroupCircle.html">GroupCircle</a></li>
<li><a href="../classes/GroupDiamond.html">GroupDiamond</a></li>
<li><a href="../classes/GroupRect.html">GroupRect</a></li>
<li><a href="../classes/Handlebars.html">Handlebars</a></li>
<li><a href="../classes/Highlight.html">Highlight</a></li>
<li><a href="../classes/Histogram.html">Histogram</a></li>
<li><a href="../classes/HistoryBase.html">HistoryBase</a></li>
<li><a href="../classes/HistoryHash.html">HistoryHash</a></li>
<li><a href="../classes/HistoryHTML5.html">HistoryHTML5</a></li>
<li><a href="../classes/HorizontalLegendLayout.html">HorizontalLegendLayout</a></li>
<li><a href="../classes/ImgLoadGroup.html">ImgLoadGroup</a></li>
<li><a href="../classes/ImgLoadImgObj.html">ImgLoadImgObj</a></li>
<li><a href="../classes/Intl.html">Intl</a></li>
<li><a href="../classes/IO.html">IO</a></li>
<li><a href="../classes/json.html">json</a></li>
<li><a href="../classes/JSONPRequest.html">JSONPRequest</a></li>
<li><a href="../classes/Lang.html">Lang</a></li>
<li><a href="../classes/LeftAxisLayout.html">LeftAxisLayout</a></li>
<li><a href="../classes/Lines.html">Lines</a></li>
<li><a href="../classes/LineSeries.html">LineSeries</a></li>
<li><a href="../classes/Loader.html">Loader</a></li>
<li><a href="../classes/MarkerSeries.html">MarkerSeries</a></li>
<li><a href="../classes/Matrix.html">Matrix</a></li>
<li><a href="../classes/Model.html">Model</a></li>
<li><a href="../classes/ModelList.html">ModelList</a></li>
<li><a href="../classes/Node.html">Node</a></li>
<li><a href="../classes/NodeList.html">NodeList</a></li>
<li><a href="../classes/NumericAxis.html">NumericAxis</a></li>
<li><a href="../classes/Object.html">Object</a></li>
<li><a href="../classes/Overlay.html">Overlay</a></li>
<li><a href="../classes/Panel.html">Panel</a></li>
<li><a href="../classes/Parallel.html">Parallel</a></li>
<li><a href="../classes/Path.html">Path</a></li>
<li><a href="../classes/PieChart.html">PieChart</a></li>
<li><a href="../classes/PieSeries.html">PieSeries</a></li>
<li><a href="../classes/Pjax.html">Pjax</a></li>
<li><a href="../classes/PjaxBase.html">PjaxBase</a></li>
<li><a href="../classes/Plots.html">Plots</a></li>
<li><a href="../classes/Plugin.Align.html">Plugin.Align</a></li>
<li><a href="../classes/Plugin.AutoComplete.html">Plugin.AutoComplete</a></li>
<li><a href="../classes/Plugin.Base.html">Plugin.Base</a></li>
<li><a href="../classes/Plugin.Cache.html">Plugin.Cache</a></li>
<li><a href="../classes/Plugin.CalendarNavigator.html">Plugin.CalendarNavigator</a></li>
<li><a href="../classes/Plugin.ConsoleFilters.html">Plugin.ConsoleFilters</a></li>
<li><a href="../classes/Plugin.CreateLinkBase.html">Plugin.CreateLinkBase</a></li>
<li><a href="../classes/Plugin.DataTableDataSource.html">Plugin.DataTableDataSource</a></li>
<li><a href="../classes/Plugin.DDConstrained.html">Plugin.DDConstrained</a></li>
<li><a href="../classes/Plugin.DDNodeScroll.html">Plugin.DDNodeScroll</a></li>
<li><a href="../classes/Plugin.DDProxy.html">Plugin.DDProxy</a></li>
<li><a href="../classes/Plugin.Drag.html">Plugin.Drag</a></li>
<li><a href="../classes/Plugin.Drop.html">Plugin.Drop</a></li>
<li><a href="../classes/Plugin.EditorBidi.html">Plugin.EditorBidi</a></li>
<li><a href="../classes/Plugin.EditorBR.html">Plugin.EditorBR</a></li>
<li><a href="../classes/Plugin.EditorLists.html">Plugin.EditorLists</a></li>
<li><a href="../classes/Plugin.EditorPara.html">Plugin.EditorPara</a></li>
<li><a href="../classes/Plugin.EditorParaBase.html">Plugin.EditorParaBase</a></li>
<li><a href="../classes/Plugin.EditorParaIE.html">Plugin.EditorParaIE</a></li>
<li><a href="../classes/Plugin.EditorTab.html">Plugin.EditorTab</a></li>
<li><a href="../classes/Plugin.ExecCommand.html">Plugin.ExecCommand</a></li>
<li><a href="../classes/Plugin.Flick.html">Plugin.Flick</a></li>
<li><a href="../classes/Plugin.Host.html">Plugin.Host</a></li>
<li><a href="../classes/plugin.NodeFocusManager.html">plugin.NodeFocusManager</a></li>
<li><a href="../classes/Plugin.NodeFX.html">Plugin.NodeFX</a></li>
<li><a href="../classes/plugin.NodeMenuNav.html">plugin.NodeMenuNav</a></li>
<li><a href="../classes/Plugin.Pjax.html">Plugin.Pjax</a></li>
<li><a href="../classes/Plugin.Resize.html">Plugin.Resize</a></li>
<li><a href="../classes/Plugin.ResizeConstrained.html">Plugin.ResizeConstrained</a></li>
<li><a href="../classes/Plugin.ResizeProxy.html">Plugin.ResizeProxy</a></li>
<li><a href="../classes/Plugin.ScrollViewList.html">Plugin.ScrollViewList</a></li>
<li><a href="../classes/Plugin.ScrollViewPaginator.html">Plugin.ScrollViewPaginator</a></li>
<li><a href="../classes/Plugin.ScrollViewScrollbars.html">Plugin.ScrollViewScrollbars</a></li>
<li><a href="../classes/Plugin.Shim.html">Plugin.Shim</a></li>
<li><a href="../classes/Plugin.SortScroll.html">Plugin.SortScroll</a></li>
<li><a href="../classes/Plugin.WidgetAnim.html">Plugin.WidgetAnim</a></li>
<li><a href="../classes/Pollable.html">Pollable</a></li>
<li><a href="../classes/Profiler.html">Profiler</a></li>
<li><a href="../classes/QueryString.html">QueryString</a></li>
<li><a href="../classes/Queue.html">Queue</a></li>
<li><a href="../classes/Record.html">Record</a></li>
<li><a href="../classes/Recordset.html">Recordset</a></li>
<li><a href="../classes/RecordsetFilter.html">RecordsetFilter</a></li>
<li><a href="../classes/RecordsetIndexer.html">RecordsetIndexer</a></li>
<li><a href="../classes/RecordsetSort.html">RecordsetSort</a></li>
<li><a href="../classes/Rect.html">Rect</a></li>
<li><a href="../classes/Renderer.html">Renderer</a></li>
<li><a href="../classes/Resize.html">Resize</a></li>
<li><a href="../classes/RightAxisLayout.html">RightAxisLayout</a></li>
<li><a href="../classes/Router.html">Router</a></li>
<li><a href="../classes/ScrollView.html">ScrollView</a></li>
<li><a href="../classes/Selector.html">Selector</a></li>
<li><a href="../classes/Shape.html">Shape</a></li>
<li><a href="../classes/ShapeGroup.html">ShapeGroup</a></li>
<li><a href="../classes/Slider.html">Slider</a></li>
<li><a href="../classes/SliderBase.html">SliderBase</a></li>
<li><a href="../classes/SliderValueRange.html">SliderValueRange</a></li>
<li><a href="../classes/Sortable.html">Sortable</a></li>
<li><a href="../classes/SplineSeries.html">SplineSeries</a></li>
<li><a href="../classes/StackedAreaSeries.html">StackedAreaSeries</a></li>
<li><a href="../classes/StackedAreaSplineSeries.html">StackedAreaSplineSeries</a></li>
<li><a href="../classes/StackedAxis.html">StackedAxis</a></li>
<li><a href="../classes/StackedBarSeries.html">StackedBarSeries</a></li>
<li><a href="../classes/StackedColumnSeries.html">StackedColumnSeries</a></li>
<li><a href="../classes/StackedComboSeries.html">StackedComboSeries</a></li>
<li><a href="../classes/StackedComboSplineSeries.html">StackedComboSplineSeries</a></li>
<li><a href="../classes/StackedLineSeries.html">StackedLineSeries</a></li>
<li><a href="../classes/StackedMarkerSeries.html">StackedMarkerSeries</a></li>
<li><a href="../classes/StackedSplineSeries.html">StackedSplineSeries</a></li>
<li><a href="../classes/StackingUtil.html">StackingUtil</a></li>
<li><a href="../classes/State.html">State</a></li>
<li><a href="../classes/StyleSheet.html">StyleSheet</a></li>
<li><a href="../classes/Subscriber.html">Subscriber</a></li>
<li><a href="../classes/SVGCircle.html">SVGCircle</a></li>
<li><a href="../classes/SVGDrawing.html">SVGDrawing</a></li>
<li><a href="../classes/SVGEllipse.html">SVGEllipse</a></li>
<li><a href="../classes/SVGGraphic.html">SVGGraphic</a></li>
<li><a href="../classes/SVGPath.html">SVGPath</a></li>
<li><a href="../classes/SVGPieSlice.html">SVGPieSlice</a></li>
<li><a href="../classes/SVGRect.html">SVGRect</a></li>
<li><a href="../classes/SVGShape.html">SVGShape</a></li>
<li><a href="../classes/SWF.html">SWF</a></li>
<li><a href="../classes/SWFDetect.html">SWFDetect</a></li>
<li><a href="../classes/SyntheticEvent.html">SyntheticEvent</a></li>
<li><a href="../classes/SyntheticEvent.Notifier.html">SyntheticEvent.Notifier</a></li>
<li><a href="../classes/SynthRegistry.html">SynthRegistry</a></li>
<li><a href="../classes/Tab.html">Tab</a></li>
<li><a href="../classes/TabView.html">TabView</a></li>
<li><a href="../classes/Test.html">Test</a></li>
<li><a href="../classes/Test.ArrayAssert.html">Test.ArrayAssert</a></li>
<li><a href="../classes/Test.Assert.html">Test.Assert</a></li>
<li><a href="../classes/Test.AssertionError.html">Test.AssertionError</a></li>
<li><a href="../classes/Test.ComparisonFailure.html">Test.ComparisonFailure</a></li>
<li><a href="../classes/Test.Console.html">Test.Console</a></li>
<li><a href="../classes/Test.CoverageFormat.CoverageFormat.html">Test.CoverageFormat.CoverageFormat</a></li>
<li><a href="../classes/Test.DateAssert.html">Test.DateAssert</a></li>
<li><a href="../classes/Test.EventTarget.html">Test.EventTarget</a></li>
<li><a href="../classes/Test.Mock.Mock.html">Test.Mock.Mock</a></li>
<li><a href="../classes/Test.Mock.Value.html">Test.Mock.Value</a></li>
<li><a href="../classes/Test.ObjectAssert.html">Test.ObjectAssert</a></li>
<li><a href="../classes/Test.Reporter.html">Test.Reporter</a></li>
<li><a href="../classes/Test.Results.html">Test.Results</a></li>
<li><a href="../classes/Test.Runner.html">Test.Runner</a></li>
<li><a href="../classes/Test.ShouldError.html">Test.ShouldError</a></li>
<li><a href="../classes/Test.ShouldFail.html">Test.ShouldFail</a></li>
<li><a href="../classes/Test.TestCase.html">Test.TestCase</a></li>
<li><a href="../classes/Test.TestFormat.html">Test.TestFormat</a></li>
<li><a href="../classes/Test.TestNode.html">Test.TestNode</a></li>
<li><a href="../classes/Test.TestRunner.html">Test.TestRunner</a></li>
<li><a href="../classes/Test.TestSuite.html">Test.TestSuite</a></li>
<li><a href="../classes/Test.UnexpectedError.html">Test.UnexpectedError</a></li>
<li><a href="../classes/Test.UnexpectedValue.html">Test.UnexpectedValue</a></li>
<li><a href="../classes/Test.Wait.html">Test.Wait</a></li>
<li><a href="../classes/Text.AccentFold.html">Text.AccentFold</a></li>
<li><a href="../classes/Text.WordBreak.html">Text.WordBreak</a></li>
<li><a href="../classes/TimeAxis.html">TimeAxis</a></li>
<li><a href="../classes/ToggleButton.html">ToggleButton</a></li>
<li><a href="../classes/TopAxisLayout.html">TopAxisLayout</a></li>
<li><a href="../classes/Transition.html">Transition</a></li>
<li><a href="../classes/UA.html">UA</a></li>
<li><a href="../classes/Uploader.html">Uploader</a></li>
<li><a href="../classes/Uploader.Queue.html">Uploader.Queue</a></li>
<li><a href="../classes/UploaderFlash.html">UploaderFlash</a></li>
<li><a href="../classes/UploaderHTML5.html">UploaderHTML5</a></li>
<li><a href="../classes/ValueChange.html">ValueChange</a></li>
<li><a href="../classes/VerticalLegendLayout.html">VerticalLegendLayout</a></li>
<li><a href="../classes/View.html">View</a></li>
<li><a href="../classes/View.NodeMap.html">View.NodeMap</a></li>
<li><a href="../classes/VMLCircle.html">VMLCircle</a></li>
<li><a href="../classes/VMLDrawing.html">VMLDrawing</a></li>
<li><a href="../classes/VMLEllipse.html">VMLEllipse</a></li>
<li><a href="../classes/VMLGraphic.html">VMLGraphic</a></li>
<li><a href="../classes/VMLPath.html">VMLPath</a></li>
<li><a href="../classes/VMLPieSlice.html">VMLPieSlice</a></li>
<li><a href="../classes/VMLRect.html">VMLRect</a></li>
<li><a href="../classes/VMLShape.html">VMLShape</a></li>
<li><a href="../classes/Widget.html">Widget</a></li>
<li><a href="../classes/WidgetAutohide.html">WidgetAutohide</a></li>
<li><a href="../classes/WidgetButtons.html">WidgetButtons</a></li>
<li><a href="../classes/WidgetChild.html">WidgetChild</a></li>
<li><a href="../classes/WidgetModality.html">WidgetModality</a></li>
<li><a href="../classes/WidgetParent.html">WidgetParent</a></li>
<li><a href="../classes/WidgetPosition.html">WidgetPosition</a></li>
<li><a href="../classes/WidgetPositionAlign.html">WidgetPositionAlign</a></li>
<li><a href="../classes/WidgetPositionConstrain.html">WidgetPositionConstrain</a></li>
<li><a href="../classes/WidgetStack.html">WidgetStack</a></li>
<li><a href="../classes/WidgetStdMod.html">WidgetStdMod</a></li>
<li><a href="../classes/YQL.html">YQL</a></li>
<li><a href="../classes/YQLRequest.html">YQLRequest</a></li>
<li><a href="../classes/YUI.html">YUI</a></li>
<li><a href="../classes/YUI~substitute.html">YUI~substitute</a></li>
</ul>
<ul id="api-modules" class="apis modules">
<li><a href="../modules/align-plugin.html">align-plugin</a></li>
<li><a href="../modules/anim.html">anim</a></li>
<li><a href="../modules/anim-base.html">anim-base</a></li>
<li><a href="../modules/anim-color.html">anim-color</a></li>
<li><a href="../modules/anim-curve.html">anim-curve</a></li>
<li><a href="../modules/anim-easing.html">anim-easing</a></li>
<li><a href="../modules/anim-node-plugin.html">anim-node-plugin</a></li>
<li><a href="../modules/anim-scroll.html">anim-scroll</a></li>
<li><a href="../modules/anim-xy.html">anim-xy</a></li>
<li><a href="../modules/app.html">app</a></li>
<li><a href="../modules/app-base.html">app-base</a></li>
<li><a href="../modules/app-transitions.html">app-transitions</a></li>
<li><a href="../modules/app-transitions-native.html">app-transitions-native</a></li>
<li><a href="../modules/array-extras.html">array-extras</a></li>
<li><a href="../modules/array-invoke.html">array-invoke</a></li>
<li><a href="../modules/arraylist.html">arraylist</a></li>
<li><a href="../modules/arraylist-add.html">arraylist-add</a></li>
<li><a href="../modules/arraylist-filter.html">arraylist-filter</a></li>
<li><a href="../modules/arraysort.html">arraysort</a></li>
<li><a href="../modules/async-queue.html">async-queue</a></li>
<li><a href="../modules/attribute.html">attribute</a></li>
<li><a href="../modules/attribute-base.html">attribute-base</a></li>
<li><a href="../modules/attribute-complex.html">attribute-complex</a></li>
<li><a href="../modules/attribute-core.html">attribute-core</a></li>
<li><a href="../modules/attribute-events.html">attribute-events</a></li>
<li><a href="../modules/attribute-extras.html">attribute-extras</a></li>
<li><a href="../modules/autocomplete.html">autocomplete</a></li>
<li><a href="../modules/autocomplete-base.html">autocomplete-base</a></li>
<li><a href="../modules/autocomplete-filters.html">autocomplete-filters</a></li>
<li><a href="../modules/autocomplete-filters-accentfold.html">autocomplete-filters-accentfold</a></li>
<li><a href="../modules/autocomplete-highlighters.html">autocomplete-highlighters</a></li>
<li><a href="../modules/autocomplete-highlighters-accentfold.html">autocomplete-highlighters-accentfold</a></li>
<li><a href="../modules/autocomplete-list.html">autocomplete-list</a></li>
<li><a href="../modules/autocomplete-list-keys.html">autocomplete-list-keys</a></li>
<li><a href="../modules/autocomplete-plugin.html">autocomplete-plugin</a></li>
<li><a href="../modules/autocomplete-sources.html">autocomplete-sources</a></li>
<li><a href="../modules/base.html">base</a></li>
<li><a href="../modules/base-base.html">base-base</a></li>
<li><a href="../modules/base-build.html">base-build</a></li>
<li><a href="../modules/base-core.html">base-core</a></li>
<li><a href="../modules/base-pluginhost.html">base-pluginhost</a></li>
<li><a href="../modules/button.html">button</a></li>
<li><a href="../modules/button-core.html">button-core</a></li>
<li><a href="../modules/button-group.html">button-group</a></li>
<li><a href="../modules/button-plugin.html">button-plugin</a></li>
<li><a href="../modules/cache.html">cache</a></li>
<li><a href="../modules/cache-base.html">cache-base</a></li>
<li><a href="../modules/cache-offline.html">cache-offline</a></li>
<li><a href="../modules/cache-plugin.html">cache-plugin</a></li>
<li><a href="../modules/calendar.html">calendar</a></li>
<li><a href="../modules/calendar-base.html">calendar-base</a></li>
<li><a href="../modules/calendarnavigator.html">calendarnavigator</a></li>
<li><a href="../modules/charts.html">charts</a></li>
<li><a href="../modules/charts-legend.html">charts-legend</a></li>
<li><a href="../modules/classnamemanager.html">classnamemanager</a></li>
<li><a href="../modules/clickable-rail.html">clickable-rail</a></li>
<li><a href="../modules/collection.html">collection</a></li>
<li><a href="../modules/console.html">console</a></li>
<li><a href="../modules/console-filters.html">console-filters</a></li>
<li><a href="../modules/cookie.html">cookie</a></li>
<li><a href="../modules/createlink-base.html">createlink-base</a></li>
<li><a href="../modules/dataschema.html">dataschema</a></li>
<li><a href="../modules/dataschema-array.html">dataschema-array</a></li>
<li><a href="../modules/dataschema-base.html">dataschema-base</a></li>
<li><a href="../modules/dataschema-json.html">dataschema-json</a></li>
<li><a href="../modules/dataschema-text.html">dataschema-text</a></li>
<li><a href="../modules/dataschema-xml.html">dataschema-xml</a></li>
<li><a href="../modules/datasource.html">datasource</a></li>
<li><a href="../modules/datasource-arrayschema.html">datasource-arrayschema</a></li>
<li><a href="../modules/datasource-cache.html">datasource-cache</a></li>
<li><a href="../modules/datasource-function.html">datasource-function</a></li>
<li><a href="../modules/datasource-get.html">datasource-get</a></li>
<li><a href="../modules/datasource-io.html">datasource-io</a></li>
<li><a href="../modules/datasource-jsonschema.html">datasource-jsonschema</a></li>
<li><a href="../modules/datasource-local.html">datasource-local</a></li>
<li><a href="../modules/datasource-polling.html">datasource-polling</a></li>
<li><a href="../modules/datasource-textschema.html">datasource-textschema</a></li>
<li><a href="../modules/datasource-xmlschema.html">datasource-xmlschema</a></li>
<li><a href="../modules/datatable.html">datatable</a></li>
<li><a href="../modules/datatable-base.html">datatable-base</a></li>
<li><a href="../modules/datatable-base-deprecated.html">datatable-base-deprecated</a></li>
<li><a href="../modules/datatable-body.html">datatable-body</a></li>
<li><a href="../modules/datatable-column-widths.html">datatable-column-widths</a></li>
<li><a href="../modules/datatable-core.html">datatable-core</a></li>
<li><a href="../modules/datatable-datasource.html">datatable-datasource</a></li>
<li><a href="../modules/datatable-datasource-deprecated.html">datatable-datasource-deprecated</a></li>
<li><a href="../modules/datatable-deprecated.html">datatable-deprecated</a></li>
<li><a href="../modules/datatable-head.html">datatable-head</a></li>
<li><a href="../modules/datatable-message.html">datatable-message</a></li>
<li><a href="../modules/datatable-mutable.html">datatable-mutable</a></li>
<li><a href="../modules/datatable-scroll.html">datatable-scroll</a></li>
<li><a href="../modules/datatable-scroll-deprecated.html">datatable-scroll-deprecated</a></li>
<li><a href="../modules/datatable-sort.html">datatable-sort</a></li>
<li><a href="../modules/datatable-sort-deprecated.html">datatable-sort-deprecated</a></li>
<li><a href="../modules/datatype.html">datatype</a></li>
<li><a href="../modules/datatype-date.html">datatype-date</a></li>
<li><a href="../modules/datatype-date-format.html">datatype-date-format</a></li>
<li><a href="../modules/datatype-date-math.html">datatype-date-math</a></li>
<li><a href="../modules/datatype-date-parse.html">datatype-date-parse</a></li>
<li><a href="../modules/datatype-number.html">datatype-number</a></li>
<li><a href="../modules/datatype-number-format.html">datatype-number-format</a></li>
<li><a href="../modules/datatype-number-parse.html">datatype-number-parse</a></li>
<li><a href="../modules/datatype-xml.html">datatype-xml</a></li>
<li><a href="../modules/datatype-xml-format.html">datatype-xml-format</a></li>
<li><a href="../modules/datatype-xml-parse.html">datatype-xml-parse</a></li>
<li><a href="../modules/dd.html">dd</a></li>
<li><a href="../modules/dd-constrain.html">dd-constrain</a></li>
<li><a href="../modules/dd-ddm.html">dd-ddm</a></li>
<li><a href="../modules/dd-ddm-base.html">dd-ddm-base</a></li>
<li><a href="../modules/dd-ddm-drop.html">dd-ddm-drop</a></li>
<li><a href="../modules/dd-delegate.html">dd-delegate</a></li>
<li><a href="../modules/dd-drag.html">dd-drag</a></li>
<li><a href="../modules/dd-drop.html">dd-drop</a></li>
<li><a href="../modules/dd-drop-plugin.html">dd-drop-plugin</a></li>
<li><a href="../modules/dd-plugin.html">dd-plugin</a></li>
<li><a href="../modules/dd-proxy.html">dd-proxy</a></li>
<li><a href="../modules/dd-scroll.html">dd-scroll</a></li>
<li><a href="../modules/dial.html">dial</a></li>
<li><a href="../modules/dom.html">dom</a></li>
<li><a href="../modules/dom-base.html">dom-base</a></li>
<li><a href="../modules/dom-screen.html">dom-screen</a></li>
<li><a href="../modules/dom-style.html">dom-style</a></li>
<li><a href="../modules/dump.html">dump</a></li>
<li><a href="../modules/editor.html">editor</a></li>
<li><a href="../modules/editor-base.html">editor-base</a></li>
<li><a href="../modules/editor-bidi.html">editor-bidi</a></li>
<li><a href="../modules/editor-br.html">editor-br</a></li>
<li><a href="../modules/editor-lists.html">editor-lists</a></li>
<li><a href="../modules/editor-para.html">editor-para</a></li>
<li><a href="../modules/editor-para-base.html">editor-para-base</a></li>
<li><a href="../modules/editor-para-ie.html">editor-para-ie</a></li>
<li><a href="../modules/editor-tab.html">editor-tab</a></li>
<li><a href="../modules/escape.html">escape</a></li>
<li><a href="../modules/event.html">event</a></li>
<li><a href="../modules/event-base.html">event-base</a></li>
<li><a href="../modules/event-contextmenu.html">event-contextmenu</a></li>
<li><a href="../modules/event-custom.html">event-custom</a></li>
<li><a href="../modules/event-custom-base.html">event-custom-base</a></li>
<li><a href="../modules/event-custom-complex.html">event-custom-complex</a></li>
<li><a href="../modules/event-delegate.html">event-delegate</a></li>
<li><a href="../modules/event-flick.html">event-flick</a></li>
<li><a href="../modules/event-focus.html">event-focus</a></li>
<li><a href="../modules/event-gestures.html">event-gestures</a></li>
<li><a href="../modules/event-hover.html">event-hover</a></li>
<li><a href="../modules/event-key.html">event-key</a></li>
<li><a href="../modules/event-mouseenter.html">event-mouseenter</a></li>
<li><a href="../modules/event-mousewheel.html">event-mousewheel</a></li>
<li><a href="../modules/event-move.html">event-move</a></li>
<li><a href="../modules/event-outside.html">event-outside</a></li>
<li><a href="../modules/event-resize.html">event-resize</a></li>
<li><a href="../modules/event-simulate.html">event-simulate</a></li>
<li><a href="../modules/event-synthetic.html">event-synthetic</a></li>
<li><a href="../modules/event-touch.html">event-touch</a></li>
<li><a href="../modules/event-valuechange.html">event-valuechange</a></li>
<li><a href="../modules/exec-command.html">exec-command</a></li>
<li><a href="../modules/features.html">features</a></li>
<li><a href="../modules/file.html">file</a></li>
<li><a href="../modules/file-flash.html">file-flash</a></li>
<li><a href="../modules/file-html5.html">file-html5</a></li>
<li><a href="../modules/frame.html">frame</a></li>
<li><a href="../modules/get.html">get</a></li>
<li><a href="../modules/get-nodejs.html">get-nodejs</a></li>
<li><a href="../modules/graphics.html">graphics</a></li>
<li><a href="../modules/handlebars.html">handlebars</a></li>
<li><a href="../modules/handlebars-base.html">handlebars-base</a></li>
<li><a href="../modules/handlebars-compiler.html">handlebars-compiler</a></li>
<li><a href="../modules/highlight.html">highlight</a></li>
<li><a href="../modules/highlight-accentfold.html">highlight-accentfold</a></li>
<li><a href="../modules/highlight-base.html">highlight-base</a></li>
<li><a href="../modules/history.html">history</a></li>
<li><a href="../modules/history-base.html">history-base</a></li>
<li><a href="../modules/history-hash.html">history-hash</a></li>
<li><a href="../modules/history-hash-ie.html">history-hash-ie</a></li>
<li><a href="../modules/history-html5.html">history-html5</a></li>
<li><a href="../modules/imageloader.html">imageloader</a></li>
<li><a href="../modules/intl.html">intl</a></li>
<li><a href="../modules/io.html">io</a></li>
<li><a href="../modules/io-base.html">io-base</a></li>
<li><a href="../modules/io-form.html">io-form</a></li>
<li><a href="../modules/io-queue.html">io-queue</a></li>
<li><a href="../modules/io-upload-iframe.html">io-upload-iframe</a></li>
<li><a href="../modules/io-xdr.html">io-xdr</a></li>
<li><a href="../modules/json.html">json</a></li>
<li><a href="../modules/json-parse.html">json-parse</a></li>
<li><a href="../modules/json-stringify.html">json-stringify</a></li>
<li><a href="../modules/jsonp.html">jsonp</a></li>
<li><a href="../modules/jsonp-url.html">jsonp-url</a></li>
<li><a href="../modules/loader.html">loader</a></li>
<li><a href="../modules/loader-base.html">loader-base</a></li>
<li><a href="../modules/matrix.html">matrix</a></li>
<li><a href="../modules/model.html">model</a></li>
<li><a href="../modules/model-list.html">model-list</a></li>
<li><a href="../modules/node.html">node</a></li>
<li><a href="../modules/node-base.html">node-base</a></li>
<li><a href="../modules/node-core.html">node-core</a></li>
<li><a href="../modules/node-data.html">node-data</a></li>
<li><a href="../modules/node-deprecated.html">node-deprecated</a></li>
<li><a href="../modules/node-event-delegate.html">node-event-delegate</a></li>
<li><a href="../modules/node-event-html5.html">node-event-html5</a></li>
<li><a href="../modules/node-event-simulate.html">node-event-simulate</a></li>
<li><a href="../modules/node-flick.html">node-flick</a></li>
<li><a href="../modules/node-focusmanager.html">node-focusmanager</a></li>
<li><a href="../modules/node-load.html">node-load</a></li>
<li><a href="../modules/node-menunav.html">node-menunav</a></li>
<li><a href="../modules/node-pluginhost.html">node-pluginhost</a></li>
<li><a href="../modules/node-screen.html">node-screen</a></li>
<li><a href="../modules/node-style.html">node-style</a></li>
<li><a href="../modules/oop.html">oop</a></li>
<li><a href="../modules/overlay.html">overlay</a></li>
<li><a href="../modules/panel.html">panel</a></li>
<li><a href="../modules/parallel.html">parallel</a></li>
<li><a href="../modules/pjax.html">pjax</a></li>
<li><a href="../modules/pjax-base.html">pjax-base</a></li>
<li><a href="../modules/pjax-plugin.html">pjax-plugin</a></li>
<li><a href="../modules/plugin.html">plugin</a></li>
<li><a href="../modules/pluginhost.html">pluginhost</a></li>
<li><a href="../modules/pluginhost-base.html">pluginhost-base</a></li>
<li><a href="../modules/pluginhost-config.html">pluginhost-config</a></li>
<li><a href="../modules/profiler.html">profiler</a></li>
<li><a href="../modules/querystring.html">querystring</a></li>
<li><a href="../modules/querystring-parse.html">querystring-parse</a></li>
<li><a href="../modules/querystring-parse-simple.html">querystring-parse-simple</a></li>
<li><a href="../modules/querystring-stringify.html">querystring-stringify</a></li>
<li><a href="../modules/querystring-stringify-simple.html">querystring-stringify-simple</a></li>
<li><a href="../modules/queue-promote.html">queue-promote</a></li>
<li><a href="../modules/range-slider.html">range-slider</a></li>
<li><a href="../modules/recordset.html">recordset</a></li>
<li><a href="../modules/recordset-base.html">recordset-base</a></li>
<li><a href="../modules/recordset-filter.html">recordset-filter</a></li>
<li><a href="../modules/recordset-indexer.html">recordset-indexer</a></li>
<li><a href="../modules/recordset-sort.html">recordset-sort</a></li>
<li><a href="../modules/resize.html">resize</a></li>
<li><a href="../modules/resize-contrain.html">resize-contrain</a></li>
<li><a href="../modules/resize-plugin.html">resize-plugin</a></li>
<li><a href="../modules/resize-proxy.html">resize-proxy</a></li>
<li><a href="../modules/rollup.html">rollup</a></li>
<li><a href="../modules/router.html">router</a></li>
<li><a href="../modules/scrollview.html">scrollview</a></li>
<li><a href="../modules/scrollview-base.html">scrollview-base</a></li>
<li><a href="../modules/scrollview-base-ie.html">scrollview-base-ie</a></li>
<li><a href="../modules/scrollview-list.html">scrollview-list</a></li>
<li><a href="../modules/scrollview-paginator.html">scrollview-paginator</a></li>
<li><a href="../modules/scrollview-scrollbars.html">scrollview-scrollbars</a></li>
<li><a href="../modules/selection.html">selection</a></li>
<li><a href="../modules/selector-css2.html">selector-css2</a></li>
<li><a href="../modules/selector-css3.html">selector-css3</a></li>
<li><a href="../modules/selector-native.html">selector-native</a></li>
<li><a href="../modules/shim-plugin.html">shim-plugin</a></li>
<li><a href="../modules/slider.html">slider</a></li>
<li><a href="../modules/slider-base.html">slider-base</a></li>
<li><a href="../modules/slider-value-range.html">slider-value-range</a></li>
<li><a href="../modules/sortable.html">sortable</a></li>
<li><a href="../modules/sortable-scroll.html">sortable-scroll</a></li>
<li><a href="../modules/stylesheet.html">stylesheet</a></li>
<li><a href="../modules/substitute.html">substitute</a></li>
<li><a href="../modules/swf.html">swf</a></li>
<li><a href="../modules/swfdetect.html">swfdetect</a></li>
<li><a href="../modules/tabview.html">tabview</a></li>
<li><a href="../modules/test.html">test</a></li>
<li><a href="../modules/test-console.html">test-console</a></li>
<li><a href="../modules/text.html">text</a></li>
<li><a href="../modules/text-accentfold.html">text-accentfold</a></li>
<li><a href="../modules/text-wordbreak.html">text-wordbreak</a></li>
<li><a href="../modules/transition.html">transition</a></li>
<li><a href="../modules/uploader.html">uploader</a></li>
<li><a href="../modules/uploader-deprecated.html">uploader-deprecated</a></li>
<li><a href="../modules/uploader-flash.html">uploader-flash</a></li>
<li><a href="../modules/uploader-html5.html">uploader-html5</a></li>
<li><a href="../modules/uploader-queue.html">uploader-queue</a></li>
<li><a href="../modules/view.html">view</a></li>
<li><a href="../modules/view-node-map.html">view-node-map</a></li>
<li><a href="../modules/widget.html">widget</a></li>
<li><a href="../modules/widget-anim.html">widget-anim</a></li>
<li><a href="../modules/widget-autohide.html">widget-autohide</a></li>
<li><a href="../modules/widget-base.html">widget-base</a></li>
<li><a href="../modules/widget-base-ie.html">widget-base-ie</a></li>
<li><a href="../modules/widget-buttons.html">widget-buttons</a></li>
<li><a href="../modules/widget-child.html">widget-child</a></li>
<li><a href="../modules/widget-htmlparser.html">widget-htmlparser</a></li>
<li><a href="../modules/widget-locale.html">widget-locale</a></li>
<li><a href="../modules/widget-modality.html">widget-modality</a></li>
<li><a href="../modules/widget-parent.html">widget-parent</a></li>
<li><a href="../modules/widget-position.html">widget-position</a></li>
<li><a href="../modules/widget-position-align.html">widget-position-align</a></li>
<li><a href="../modules/widget-position-constrain.html">widget-position-constrain</a></li>
<li><a href="../modules/widget-skin.html">widget-skin</a></li>
<li><a href="../modules/widget-stack.html">widget-stack</a></li>
<li><a href="../modules/widget-stdmod.html">widget-stdmod</a></li>
<li><a href="../modules/widget-uievents.html">widget-uievents</a></li>
<li><a href="../modules/yql.html">yql</a></li>
<li><a href="../modules/yui.html">yui</a></li>
<li><a href="../modules/yui-base.html">yui-base</a></li>
<li><a href="../modules/yui-later.html">yui-later</a></li>
<li><a href="../modules/yui-log.html">yui-log</a></li>
<li><a href="../modules/yui-throttle.html">yui-throttle</a></li>
<li><a href="../modules/yui3.html">yui3</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>
</div>
<div class="apidocs">
<div id="docs-main">
<div class="content">
<h1>datatype Module</h1>
<div class="box clearfix meta">
<a class="button link-docs" href="/yui/docs/datatype">User Guide & Examples</a>
<div class="foundat">
Defined in: <a href="../files/datatype_js_datatype-date-format.js.html#l1"><code>datatype/js/datatype-date-format.js:1</code></a>
</div>
</div>
<div class="box intro">
<p>The DataType Utility provides type-conversion and string-formatting
convenience methods for various JavaScript object types.</p>
</div>
<div class="yui3-g">
<div class="yui3-u-1-2">
<p>This module provides the following classes:</p>
<ul class="module-classes">
<li class="module-class">
<a href="../classes/DataType.Date.html">
DataType.Date
</a>
</li>
<li class="module-class">
<a href="../classes/DataType.Date.Locale.html">
DataType.Date.Locale
</a>
</li>
<li class="module-class">
<a href="../classes/DataType.Number.html">
DataType.Number
</a>
</li>
<li class="module-class">
<a href="../classes/DataType.XML.html">
DataType.XML
</a>
</li>
</ul>
</div>
<div class="yui3-u-1-2">
<p>This module is a rollup of the following modules:</p>
<ul class="module-submodules">
<li class="module-submodule">
<a href="../modules/datatype-date.html">
datatype-date
</a>
<div class="module-submodule-description">
Date submodule.
</div>
</li>
<li class="module-submodule">
<a href="../modules/datatype-date-format.html">
datatype-date-format
</a>
<div class="module-submodule-description">
Format date submodule implements strftime formatters for javascript based on the
Open Group specification defined at
http://www.opengroup.org/onlinepubs/007908799/xsh/strftime.html
This implementation does not include modified conversion specifiers (i.e., Ex and Ox)
</div>
</li>
<li class="module-submodule">
<a href="../modules/datatype-date-math.html">
datatype-date-math
</a>
<div class="module-submodule-description">
Datatype Date Math submodule.
</div>
</li>
<li class="module-submodule">
<a href="../modules/datatype-date-parse.html">
datatype-date-parse
</a>
<div class="module-submodule-description">
Parse number submodule.
</div>
</li>
<li class="module-submodule">
<a href="../modules/datatype-number.html">
datatype-number
</a>
<div class="module-submodule-description">
Number submodule.
</div>
</li>
<li class="module-submodule">
<a href="../modules/datatype-number-format.html">
datatype-number-format
</a>
<div class="module-submodule-description">
Format number submodule.
</div>
</li>
<li class="module-submodule">
<a href="../modules/datatype-number-parse.html">
datatype-number-parse
</a>
<div class="module-submodule-description">
Parse number submodule.
</div>
</li>
<li class="module-submodule">
<a href="../modules/datatype-xml.html">
datatype-xml
</a>
<div class="module-submodule-description">
XML submodule.
</div>
</li>
<li class="module-submodule">
<a href="../modules/datatype-xml-format.html">
datatype-xml-format
</a>
<div class="module-submodule-description">
Format XML submodule.
</div>
</li>
<li class="module-submodule">
<a href="../modules/datatype-xml-parse.html">
datatype-xml-parse
</a>
<div class="module-submodule-description">
Parse XML submodule.
</div>
</li>
</ul>
</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>
|
myodd/boost/libs/geometry/doc/doxy/doxygen_output/html_by_doxygen/structboost_1_1geometry_1_1resolve__variant_1_1touches_3_01boost_1_1variant_3_01_b_o_o_s_t___v_a4499bbe750524c5d9c8ad77ad610a065.html | FFMG/myoddweb.piger | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Boost.Geometry (aka GGL, Generic Geometry Library)</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head>
<table cellpadding="2" width="100%">
<tbody>
<tr>
<td valign="top">
<img alt="Boost.Geometry" src="images/ggl-logo-big.png" height="80" width="200">
</td>
<td valign="top" align="right">
<a href="http://www.boost.org">
<img alt="Boost C++ Libraries" src="images/accepted_by_boost.png" height="80" width="230" border="0">
</a>
</td>
</tr>
</tbody>
</table>
<!-- Generated by Doxygen 1.8.6 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></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 id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceboost.html">boost</a></li><li class="navelem"><a class="el" href="namespaceboost_1_1geometry.html">geometry</a></li><li class="navelem"><a class="el" href="namespaceboost_1_1geometry_1_1resolve__variant.html">resolve_variant</a></li><li class="navelem"><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1touches_3_01boost_1_1variant_3_01_b_o_o_s_t___v_a545b3fd92fe46940db1d1af61e24f6e7.html">touches< boost::variant< BOOST_VARIANT_ENUM_PARAMS(T1)>, boost::variant< BOOST_VARIANT_ENUM_PARAMS(T2)> ></a></li><li class="navelem"><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1touches_3_01boost_1_1variant_3_01_b_o_o_s_t___v_a46f469291f04b797045d6debec17a1fd.html">visitor</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">boost::geometry::resolve_variant::touches< boost::variant< BOOST_VARIANT_ENUM_PARAMS(T1)>, boost::variant< BOOST_VARIANT_ENUM_PARAMS(T2)> >::visitor Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1touches_3_01boost_1_1variant_3_01_b_o_o_s_t___v_a46f469291f04b797045d6debec17a1fd.html">boost::geometry::resolve_variant::touches< boost::variant< BOOST_VARIANT_ENUM_PARAMS(T1)>, boost::variant< BOOST_VARIANT_ENUM_PARAMS(T2)> >::visitor</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1touches_3_01boost_1_1variant_3_01_b_o_o_s_t___v_a46f469291f04b797045d6debec17a1fd.html#a08b83ca48296e3b79804c89d2208b95d">operator()</a>(Geometry1 const &geometry1, Geometry2 const &geometry2) const </td><td class="entry"><a class="el" href="structboost_1_1geometry_1_1resolve__variant_1_1touches_3_01boost_1_1variant_3_01_b_o_o_s_t___v_a46f469291f04b797045d6debec17a1fd.html">boost::geometry::resolve_variant::touches< boost::variant< BOOST_VARIANT_ENUM_PARAMS(T1)>, boost::variant< BOOST_VARIANT_ENUM_PARAMS(T2)> >::visitor</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<hr size="1">
<table width="100%">
<tbody>
<tr>
<td align="left"><small>
<p>April 2, 2011</p>
</small></td>
<td align="right">
<small>
Copyright © 2007-2011 Barend Gehrels, Amsterdam, the Netherlands<br>
Copyright © 2008-2011 Bruno Lalande, Paris, France<br>
Copyright © 2009-2010 Mateusz Loskot, London, UK<br>
</small>
</td>
</tr>
</tbody>
</table>
<address style="text-align: right;"><small>
Documentation is generated by <a href="http://www.doxygen.org/index.html">Doxygen</a>
</small></address>
</body>
</html> |
components/com_kunena/template/custom/css/kunena.forum.css | kartach/netaktiv | @charset "utf-8";
/**
* Kunena Component
* @package Kunena.Template.Blue_Eagle
*
* @copyright (C) 2008 - 2016 Kunena Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
*
* Based on FireBoard Component
* @copyright (C) 2006 - 2007 Best Of Joomla All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link http://www.bestofjoomla.com
*
**/
/* ------------------------- FONT SIZES FOR BLUE EAGLE
PX EM PCT PT
6px .5em 50% 5pt
7px .583em 58.3% 5pt
8px .667em 66.7% 6pt
9px .75em 75% 7pt
10px .833em 83.3% 8pt
11px .917em 91.7% 8pt
12px 1em 100% 9pt (Base size)
13px 1.083em 108.3% 10pt
14px 1.167em 116.7% 11pt
15px 1.25em 125% 11pt
16px 1.333em 133.3% 12pt
17px 1.417em 141.7% 13pt
18px 1.5em 150% 14pt
19px 1.583em 158.3% 14pt
20px 1.667em 166.7% 15pt
21px 1.75em 175% 16pt
22px 1.833em 183.3% 17pt
23px 1.917em 191.7% 17pt
24px 2em 200% 18pt
----------------------------------------------------------*/
/*
----------------------------------------------------------------------------------------------- */
/* MAIN STYLES
----------------------------------------------------------------------------------------------- */
#Kunena {
padding: 0;
margin: 0;
line-height: 1.333em;
}
#Kunena table tr th,
#Kunena table tr td,
#Kunena div,
#Kunena p,
#Kunena span,
#Kunena ul li,
#Kunena ul li a {
font-size: 1em;
}
#Kunena sup {
vertical-align: super;
}
#Kunena sub {
vertical-align: sub;
}
#Kunena ul li,
#Kunena ul li a {
background: none;
margin: 0;
padding: 0;
}
/* Fix .visible-desktop in Bootstrap based templates */
#Kunena td.visible-desktop {
display: table-cell !important;
}
/* Fix form layout issues in Bootstrap based templates */
#Kunena form,
#Kunena select,
#Kunena textarea,
#Kunena input {
margin: 0;
width: auto;
height: auto;
}
/* Resets for Gantry */
#Kunena h1,
#Kunena h2,
#Kunena h3,
#Kunena h4 {
border: 0;
box-shadow: none;
text-shadow: none;
}
#Kunena .clr {
clear: both;
height: 1px;
overflow: hidden;
}
#Kunena .fltlft {
float: left;
}
#Kunena .fltrt {
float: right;
}
#Kunena .kright {
text-align: right;
}
#Kunena .kleft {
text-align: left;
}
#Kunena .kcenter {
text-align: center;
}
#Kunena .nowrap {
white-space: nowrap;
}
#Kunena .divider {
margin: 0 3px;
}
#Kunena .hidden {
overflow: hidden;
}
#Kunena a {
text-decoration: none;
font-weight: normal;
}
#Kunena a:link,
#Kunena a:visited,
#Kunena a:active {
}
#Kunena a:focus {
outline: none;
}
#Kunena a:hover {
}
#Kunena .overflow {
display: table;
table-layout: fixed;
width: 100%;
}
#Kunena .kxs {
/* 9px */
font-size: .75em;
}
#Kunena .kms {
/* 10px */
font-size: .833em;
}
#Kunena .ks {
/* 11px */
font-size: .917em;
}
#Kunena .km {
/* 12px */
font-size: 1em;
}
#Kunena .kl {
/* 16px */
font-size: 1.333em;
}
#Kunena .kxl {
/* 17px */
font-size: 1.417em;
}
#Kunena .kxxl {
/* 20px */
font-size: 1.667em;
}
#Kunena input.ksmall {
width: 25%;
}
#Kunena input.kmedium {
width: 45%;
}
#Kunena input.klarge {
width: 95%;
}
#Kunena textarea,
#Kunena textarea.kmedium {
font-size: 12px;
width: 95%;
height: 10em;
}
#Kunena textarea.ksmall {
height: 5em;
}
#Kunena textarea.klarge {
height: 20em;
}
#Kunena .knewchar {
font-weight: bold;
margin-left: 3px;
font-size: .75em;
vertical-align: top;
white-space: nowrap;
}
#Kunena table {
width: 100%;
border-collapse: collapse;
padding: 0;
margin: 0;
}
/* Block styling
----------------------------------------------------------------------------------------------- */
#Kunena div.kblock {
display: table;
table-layout: fixed;
width: 100%;
border: none;
margin: 5px 0 0 0;
clear: both;
border-bottom: 1px solid;
}
#Kunena .kblock div.kheader {
border-bottom: 2px solid;
padding: 0 10px 0 10px;
}
#Kunena .kheader h2,
#Kunena .kheader h2 a {
font-weight: bold;
margin-bottom: 0;
padding: 0;
}
#Kunena div.kblock div.ktitle {
text-align: left;
display: table-row;
width: 100%;
margin: 0;
word-wrap: break-word;
overflow: hidden;
}
#Kunena div.kblock div.ktitle h1,
#Kunena div.kblock div.ktitle h2 {
border: none;
display: block;
line-height: 1.9em;
font-size: 1.333em;
text-indent: 0;
margin: 0 10px;
padding: 2px 0;
width: auto;
}
#Kunena div.kblock span.ktoggler {
float: right;
top: 1px;
right: -10px;
height: 1px;
position: relative;
}
#Kunena .ktoggler.close a:hover {
color: #ff0000;
background: url("../images/expand.gif") no-repeat scroll 0 0 transparent;
}
#Kunena .ktoggler.open a:hover {
color: #ff0000;
background: url("../images/shrink.gif") no-repeat scroll 0 0 transparent;
}
#Kunena div.kblock span.select-toggle {
float: right;
top: 5px;
right: 8px;
height: 1px;
position: relative;
}
#Kunena div.kblock div.kcontainer {
display: table-row;
}
#Kunena div.kblock div.kbody {
border-style: solid;
border-width: 0 1px;
overflow: hidden;
word-wrap: break-word;
}
#Kunena div.kblock label {
clear: both;
/*display: block;*/
}
#Kunena div.kblock div.khelprulescontent,
#Kunena div.kblock div.kfheadercontent {
vertical-align: top;
padding: 15px;
/*border: 1px solid;*/
}
#Kunena div.kblock div.khelprulesjump {
border: 1px solid;
}
#Kunena div.kblock div.kactions {
padding: 5px 10px;
line-height: 13px;
}
#Kunena table.kblock {
width: 100%;
margin: 5px 0 0 0;
clear: both;
border-spacing: 0;
}
#Kunena tr.krow0 td {
padding: 4px 8px;
}
#Kunena tr.krow1 td {
padding: 4px 8px;
}
#Kunena tr.krow2 td {
padding: 4px 8px;
}
#Kunena table.kblock .kcol {
padding: 4px 8px;
}
#Kunena .kcol-annid {
text-align: center;
width: 5%;
}
#Kunena .kcol-anndate {
width: 15%;
}
#Kunena .kcol-anntitle {
width: 50%;
}
#Kunena .kcol-annpublish {
text-align: center;
width: 10%;
}
#Kunena .kcol-annedit {
text-align: center;
width: 10%;
}
#Kunena .kcol-anndelete {
text-align: center;
width: 10%;
}
#Kunena table.kblocktable .knewchar {
font-size: .583em;
}
#Kunena tr.ksth {
font-size: 1em;
}
#Kunena tr.ksth th {
padding: 3px 5px;
text-align: center;
}
#Kunena td#kpost-buttons {
text-align: center;
}
#Kunena tr.krow1 td.kcc-row1,
#Kunena tr.krow2 td.kcc-row1 {
background: none;
}
#Kunena td.kcol-ktopicreplies {
text-align: center;
width: 1%;
}
#Kunena td.kcol-ktopicreplies strong {
display: block;
font-size: 2.091em;
font-weight: normal;
margin: 4px 0;
}
#Kunena span.kcat-topics,
#Kunena span.kcat-replies {
text-align: center;
font-size: 1em;
}
#Kunena span.kcat-topics-number,
#Kunena span.kcat-replies-number {
display: block;
font-size: 1.417em;
margin: 5px 0;
}
#Kunena .ktopic-latest-post,
#Kunena .ktopic-date {
font-size: .917em;
}
#Kunena a.ktopic-title {
font-weight: bold;
font-size: 1.25em;
}
#Kunena div.ktopic-title-cover {
text-align: left;
}
#Kunena div.ktopic-details {
clear: left;
font-size: .977em;
}
#Kunena .klatest-avatar,
#Kunena .ktopic-latest-post-avatar {
display: block;
height: auto;
width: 36px;
padding: 1px;
margin: 4px 6px 2px 0;
border: 1px solid;
float: left;
}
#Kunena img.klist-avatar,
#Kunena .klist-avatar {
height: auto;
width: 36px;
border: 0;
}
#Kunena .klatest-post-info {
display: block;
}
#Kunena .kcredits {
height: 31px;
line-height: 26px;
/*font-size: .833em;*/
}
#Kunena td.kcredits-kintro {
vertical-align: middle;
padding: 0 15px;
}
#Kunena .kfooter {
font-size: .833em;
}
#Kunena .kfooter-time {
}
#Kunena .kalert {
}
#Kunena td.kcol-first {
border-left: none;
border-bottom: 1px solid;
padding: 4px 8px;
vertical-align: middle;
white-space: nowrap;
}
#Kunena td.kcol-mid {
border-left: 1px solid;
border-bottom: 1px solid;
padding: 4px 8px;
vertical-align: middle;
}
#Kunena td.kcol-last {
border-left: 1px solid;
border-bottom: 1px solid;
padding: 4px 8px;
vertical-align: middle;
}
#Kunena td.ktopicmodule {
padding: 0;
}
#Kunena td.ktopicmoderation {
width: 1%;
vertical-align: middle;
}
#Kunena td.kcol-ktopiclastpost {
font-size: .917em;
width: 25%;
vertical-align: middle;
}
/* COLOR ADMINISTRATOR AND MODERATOR
----------------------------------------------------------------------------------------------- */
#Kunena .kwho-admin {
}
#Kunena .kwho-globalmoderator {
}
#Kunena .kwho-moderator {
}
#Kunena .kwho-user {
}
#Kunena .kwho-guest {
}
#Kunena .kwho-banned {
}
#Kunena .kwho-blocked {
}
/* MENU
----------------------------------------------------------------------------------------------- */
#Kunena #ktop {
margin: 0;
border: 0 solid;
border-bottom-width: 3px;
vertical-align: bottom;
line-height: 0;
}
#Kunena #ktop span.ktoggler {
margin: -16px 0;
padding: 1px 1px 0;
}
#Kunena #ktopmenu {
margin: 0.33em 0;
display: inline;
}
#Kunena #ktab {
margin: 0 20px 0 0;
top: 0;
}
#Kunena #ktab ul {
margin: 0;
padding: 0;
list-style: none;
display: inline-block;
}
#Kunena #ktab ul ul {
margin: -2px 2px;
padding: 0;
list-style: none;
float: left;
}
#Kunena #ktab li,
#Kunena #ktab div.moduletable ul.menu li {
display: inline;
float: left;
margin: 2px 2px 0 0 !important;
padding: 0;
border: 0;
}
#ktab div.moduletable {
background: none;
margin-bottom: 0;
}
#ktab div.moduletable ul.menu,
#ktab div.moduletable ul.menu li a,
#ktab div.moduletable ul.menu li a span {
background-image: none !important;
font-size: 1em;
line-height: 2em;
}
#Kunena #ktab a {
margin: 0;
padding: 0 10px;
text-decoration: none;
border: 0;
display: block;
float: left;
border-radius: 5px 5px 0 0;
-moz-border-radius: 5px 5px 0 0;
-webkit-border-radius: 5px 5px 0 0;
font-size: 1em;
line-height: 2.3em;
text-indent: 0;
}
#Kunena #ktab a span {
display: block;
font-size: 1em;
line-height: 2.3em;
text-indent: 0;
padding: 0;
}
#Kunena #ktab a:hover,
#Kunena #ktab li.Kunena-item-active a {
background-position: right bottom;
}
#Kunena #ktab a:hover span,
#Kunena #ktab li.Kunena-item-active a span {
background-position: left bottom;
font-style: normal;
text-decoration: none;
}
#Kunena select#searchlist {
margin-bottom: 10px;
float: left;
}
#Kunena select,
#Kunena select:focus,
#Kunena select:hover {
/* background: none repeat scroll 0 0; */
/*font-size: .917em;*/
border: 1px solid;
padding: 0;
}
#Kunena td.td-1 {
vertical-align: top;
}
/* Using a Joomla menu module */
#Kunena div.moduletable {
margin: 0;
padding: 0;
border: none;
}
#Kunena #ktab ul.menu li.active a {
/* Do not specify background color: template parameter */
}
#Kunena option {
background: none repeat scroll 0 0;
font-size: .917em;
padding: 0 10px 0 2px;
}
#Kunena .button,
#Kunena .kbutton {
background: none repeat scroll 0 0;
font-size: .917em;
border: 1px solid;
padding: 0 4px;
margin-right: 10px;
}
#Kunena .kbutton-back {
}
#Kunena .kbutton-container {
margin-top: 20px;
text-align: center;
}
#Kunena .kbutton-container input.kbutton,
#Kunena .kbutton-container .kbutton,
#Kunena .kbutton-container .kbutton:hover,
#Kunena .kbutton-container .kbutton:focus {
font-size: 1em;
font-weight: bold;
padding: 4px;
}
#Kunena input.kinput {
border: 1px solid;
}
#Kunena table.klist-bottom td {
padding: 0 5px;
height: 20px;
line-height: 20px;
text-align: center;
}
#Kunena table.klist-bottom td.klist-moderators {
text-align: left;
}
#Kunena .kbutton:hover,
#Kunena .kbutton:focus {
background: none repeat scroll 0 0;
font-size: .917em;
border: 1px solid;
padding: 0 4px;
}
#Kunena .klist-actions {
border: 1px solid;
margin-top: -1px;
}
#Kunena .klist-actions td {
vertical-align: middle;
padding: 0 10px;
white-space: nowrap;
}
#Kunena .klist-actions-bottom {
border: 1px solid;
margin-bottom: -1px;
}
#Kunena .klist-actions-info {
float: left;
font-weight: bold;
height: 28px;
line-height: 28px;
padding-left: 15px;
padding-right: 10px;
}
#Kunena .klist-actions-info a {
text-decoration: underline;
}
#Kunena .klist-pages {
border-left: 1px solid;
float: right;
font-size: 1.333em;
font-weight: bold;
height: 28px;
line-height: 28px;
padding-left: 10px;
padding-right: 5px;
}
#Kunena .klist-times {
border-left: 1px solid;
height: 28px;
line-height: 28px;
padding-left: 5px;
padding-right: 10px;
}
#Kunena a.klist-pages-link:link,
#Kunena a.klist-pages-link:visited {
text-decoration: underline;
}
#Kunena .klist-pages-link {
padding: 0 5px;
}
#Kunena .klist-actions-info-all {
font-weight: bold;
height: 28px;
line-height: 28px;
padding-left: 15px;
padding-right: 10px;
}
#Kunena .klist-actions-goto {
height: 28px;
padding: 0 2px 0 2px;
width: 1%;
vertical-align: middle;
}
#Kunena .klist-actions-forum {
border-left: 1px solid;
height: 28px;
padding: 1px 4px 1px 4px;
white-space: nowrap;
vertical-align: middle;
width: 10%;
}
#Kunena .klist-pages-all {
border-left: 1px solid;
font-size: 1.333em;
font-weight: bold;
height: 28px;
line-height: 28px;
padding-left: 5px;
padding-right: 3px;
vertical-align: middle;
text-align: right;
}
#Kunena .klist-times-all {
width: 1%;
border-left: 1px solid;
height: 28px;
line-height: 28px;
padding-left: 5px;
padding-right: 5px;
}
#Kunena .klist-jump-all {
width: 1%;
border-left: 1px solid;
height: 20px;
line-height: 20px;
padding-left: 5px;
padding-right: 5px;
white-space: nowrap;
}
#Kunena .klist-jump-all form {
display: table;
}
#Kunena .klist-times-all .inputboxusl {
/*font-size: .833em;*/
margin: 0;
padding: 0;
width: 100px;
}
#Kunena .klist-jump-all form .inputbox {
/*font-size: .833em;*/
margin: 0;
padding: 0;
width: 150px;
}
#Kunena .klist-pages-all table tr td {
height: 28px;
line-height: 28px;
white-space: nowrap;
}
#Kunena td.klist-jump-all input.kjumpgo {
display: none;
}
#Kunena .klist-top {
background: none;
border: 1px solid;
margin: -1px 0 0;
width: 100%;
}
#Kunena .klist-bottom {
background: none;
border: 1px solid;
margin: 0 0 5px;
min-height: 2.33em;
padding: 1px 5px;
padding-bottom: 10px !important;
}
#Kunena .klist-moderators {
clear: left;
}
#Kunena .klist-markallcatsread {
min-height: 27px;
padding: 0;
overflow: hidden;
border: 1px solid;
}
#Kunena .klist-markallcatsread input.kbutton {
margin: 8px;
}
#Kunena .klist-categories {
border-left: 1px solid;
/* height: 28px;
line-height: 28px; */
padding: 0 5px 0 10px;
white-space: nowrap;
margin: 0;
}
#Kunena div.bannergroup {
text-align: center;
}
/*---------- Pagination ------------- */
#Kunena ul.kpagination {
border: 0;
margin: 0;
padding: 0 5px 0 0;
}
#Kunena .kpagination li {
border: 0;
margin: 0;
padding: 0;
font-size: .667em;
list-style-type: none;
line-height: .667em;
display: inline-block;
}
#Kunena #kflattable ul.kpagination {
width: auto;
font-size: 1.167em;
line-height: 1.167em;
}
#Kunena .kpagination a {
border: solid 1px;
}
#Kunena .kpagination li.page {
margin-right: 2px;
}
#Kunena .kpagination li.more {
padding: 4px 2px;
font-weight: bold;
}
#Kunena .kpagination .active {
border: solid 1px;
font-weight: bold;
padding: 3px 5px;
margin: 2px;
}
#Kunena .kpagination a:link,
#Kunena .kpagination a:visited {
padding: 0 5px;
margin: 2px;
text-decoration: none;
}
#Kunena #kflattable .kpagination a:link,
#Kunena #kflattable .kpagination a:visited {
margin: 0;
}
#Kunena .kpagination a:hover {
border: solid 1px;
}
/* Inline pagination in topics */
#Kunena div.ktopic-title-cover ul.kpagination {
padding-top: 2px;
text-align: left;
/* display:inline; */
}
#Kunena div.ktopic-title-cover ul.kpagination li {
font-size: .833em;
}
#Kunena div.ktopic-title-cover ul.kpagination li.page {
float: left;
padding: 4px 3px 0 0;
}
#Kunena div.ktopic-title-cover ul.kpagination a {
border: solid 1px;
}
#Kunena div.ktopic-title-cover ul.kpagination a:hover {
border: solid 1px;
}
#Kunena #kflattable ul.kpagination li {
margin: 0;
}
#Kunena span.ktopic-posted-time {
display: block;
float: left;
font-size: .917em;
padding-right: 2px;
}
#Kunena span.ktopic-category {
float: left;
clear: left;
font-size: .917em;
}
#Kunena span.ktopic-views {
text-align: center;
}
#Kunena span.ktopic-views-number {
display: block;
font-size: 1.455em;
margin: 5px 0;
text-align: center;
}
#Kunena span.ktopic-by {
float: left;
}
#Kunena span.ktopic-locked {
margin-left: 3px;
text-align: left;
}
/* HEADER
----------------------------------------------------------------------------------------------- */
#Kunena td.kprofileboxcnt {
text-align: left;
width: 95%;
vertical-align: middle;
padding: 5px;
}
#Kunena td.kprofileboxcnt ul {
margin: 5px 0 5px 5px;
padding-left: 0;
}
#Kunena td.kprofileboxcnt ul.kprofilebox-link {
margin: 5px 0;
}
#Kunena td.kprofileboxcnt ul.kprofilebox-link li {
height: 10px;
line-height: 10px;
font-size: .917em;
margin-top: 5px;
padding-left: 10px !important;
}
#Kunena td.kprofileboxcnt ul li {
list-style-type: none;
display: block;
background: 0 none;
}
#Kunena td.kprofileboxcnt ul.kprofilebox-welcome li {
padding: 2px;
}
#Kunena td.kprofileboxcnt ul.kprofilebox-welcome li input.kbutton {
margin: 0;
}
#Kunena td.kprofileboxcnt ul.kprofilebox-welcome li input.kbutton:hover {
}
#Kunena .kpbox {
margin: 0 !important;
padding: 0;
}
#Kunena div#kforum-head {
padding: 5px 10px;
vertical-align: middle;
border-left: 1px solid;
border-right: 1px solid;
border-bottom: 1px solid;
}
#Kunena table#kforumsearch input.kbutton {
margin: 10px;
}
#Kunena div#kmoderatorslist div.kbody {
border: 1px solid;
height: 25px;
line-height: 25px;
margin: -6px 0 0;
padding: 5px;
}
#Kunena div.kmoderatorslist-jump form#jumpto {
margin: 5px;
}
#Kunena table.kblock .kcol-search-subject {
width: 70%;
}
#Kunena table.kblock .kcol-search-author {
width: 10%;
}
#Kunena table.kblock .kcol-search-date {
width: 20%;
}
/* SEARCH
----------------------------------------------------------------------------------------------- */
#Kunena fieldset {
border: 1px solid;
padding: 15px;
margin-bottom: 15px;
}
#Kunena fieldset legend {
font-size: 1.182em;
padding-left: 5px;
padding-right: 5px;
margin: 0 0 0 -5px;
font-weight: bold;
}
#Kunena select#catids option {
padding-left: 5px;
}
#Kunena label.searchlabel {
display: block;
margin-bottom: 5px;
margin-right: 100px;
}
#Kunena input#keywords,
#Kunena input#username {
/*width:250px;*/
margin-right: 10px;
}
#Kunena select#catids {
float: left;
margin-bottom: 20px;
}
#Kunena label#childforums-lbl {
float: left;
clear: left;
}
#Kunena fieldset#search-posts-date select,
#Kunena fieldset#search-posts-sort select {
margin-right: 10px;
}
#Kunena fieldset#search-posts-start select {
margin-left: 10px;
}
#Kunena div.ksearchresult-desc {
padding: 5px;
}
#Kunena div#ksearchresult div.resultmsg {
padding: 15px 0;
clear: left;
}
#Kunena div#ksearchresult span.kmsgtitle a {
font-weight: bold;
}
#Kunena div#ksearchresult span.kmsgdate {
float: left;
}
#Kunena div#ksearchresult div.kresult-title {
border-bottom: 1px solid;
overflow: hidden;
padding-bottom: 5px;
}
#Kunena div#ksearchresult td.resultmsg {
padding: 0 10px 10px;
}
#Kunena div#ksearchresult div.resultcat {
padding: 5px 0 0 0;
border-top: 1px dotted;
}
#Kunena div.kadvsearch td.kcol-first,
#Kunena div.kadvsearch td.kcol-mid {
width: 50%;
vertical-align: top;
}
/* PROFILEBOX AND LOGINBOX
----------------------------------------------------------------------------------------------- */
#Kunena ul.kprofilebox-link {
float: right;
}
#Kunena ul.kprofilebox-link li {
background: url("../images/icons/arrow.png") no-repeat left !important;
padding-left: 12px;
display: inline;
padding-right: 10px;
}
#Kunena .kprofilebox-left {
width: 5%;
padding: 8px;
border-right: 1px solid;
vertical-align: middle;
}
#Kunena .kprofilebox-right {
border-left: 1px solid;
padding: 8px;
}
#Kunena .klink-block {
padding-top: 5px;
}
#Kunena div.kpbox {
border-bottom: 1px solid;
}
/* CATEGORY LIST
----------------------------------------------------------------------------------------------- */
#Kunena td.kmycount,
#Kunena td.kcol-kcattopics,
#Kunena td.kcol-kcatreplies,
#Kunena td.kcol-ktopicicon,
#Kunena td.kcol-ktopicviews {
white-space: nowrap;
text-align: center;
width: 1%;
vertical-align: middle;
}
.kcol-ktopicicon img {
border: 0 none;
}
#Kunena td.kcol-kcatlastpost {
width: 25%;
text-align: left;
vertical-align: middle;
}
#Kunena td.kcol-knoposts {
width: 25%;
text-align: center;
vertical-align: middle;
}
#Kunena td.kcol-category-icon {
width: 1%;
}
#Kunena #kblock4,
#Kunena #kblock1,
#Kunena .k-bt-cvr1 {
margin-top: 5px;
}
#Kunena table.kblocktable {
border: 0 solid;
text-align: left;
}
#Kunena h1,
#Kunena h2 {
text-align: left;
display: block;
width: 100%;
line-height: 1.5em;
font-size: 1.333em;
padding-top: 2px;
min-height: 1.6em;
margin-top: 0;
margin-bottom: 0;
font-weight: bold;
text-transform: none;
}
#Kunena h2 a {
font-weight: bold;
}
#Kunena h1 a:hover,
#Kunena h2 a:hover {
text-decoration: underline;
}
#Kunena h1 a:link,
#Kunena h1 a:active,
#Kunena h1 a:visited {
}
#Kunena h2 span.kright {
float: right;
margin: 0 10px;
}
#Kunena h2 span.kheadbtn {
margin: 0 !important;
}
#Kunena h2 span.kheadbtn a {
font-size: 11px !important;
line-height: 23px;
border: 1px solid;
padding: 1px 3px 3px;
}
#Kunena h2 span.kheadbtn:hover a {
text-decoration: none;
border: 1px solid;
}
#Kunena div.ktitle-desc {
margin-top: -3px;
padding: 0 0 6px;
}
#Kunena .kcheckbox {
float: right;
margin-right: -14px;
width: 20px;
}
#Kunena div.kfavorite {
background: url("../images/icons/favoritestar.png") no-repeat left top;
height: 18px;
width: 18px;
display: inline-block;
margin: -25px 4px 0;
float: right;
}
#Kunena .ktitle,
#Kunena a.ktitle {
font-weight: bold;
display: block;
text-decoration: none;
float: left;
}
#Kunena .ktitle a {
font-weight: bold;
text-decoration: none;
}
#Kunena div.kthead-title a {
font-size: .917em;
display: inline-block;
float: left;
padding-bottom: 0;
margin-bottom: 3px;
font-weight: bold;
}
#Kunena div.kthead-desc,
#Kunena div.kthead-moderators {
clear: left;
line-height: 1.2em;
}
#Kunena div.kthead-moderators {
margin-top: 5px;
font-size: .833em;
}
#Kunena div.kthead-desc a {
font-weight: bold;
}
#Kunena div.kthead-desc a:hover {
text-decoration: underline;
}
#Kunena div.kthead-child {
clear: left;
border-top: 1px dotted;
margin-top: 4px;
}
#Kunena table.kcc-table tr td {
border: 0 solid;
}
#Kunena div.kcc-childcat-title {
width: 100%;
display: inline-block;
vertical-align: top;
padding-top: 4px;
line-height: 2em;
text-transform: uppercase;
font-size: .833em;
}
#Kunena div.kcc-table {
display: inline;
}
#Kunena span.kchildcount {
margin-left: 2px;
margin-right: 6px;
display: inline;
font-size: 0.833em;
line-height: 17px;
}
#Kunena div.klatest-subject,
#Kunena div.klatest-subject-by {
margin-left: 5px;
}
#Kunena div.kcc-subcat {
float: left;
display: inline-block;
vertical-align: top;
padding-top: 2px;
}
#Kunena div.kcc-subcat a {
font-size: .917em;
vertical-align: bottom;
}
/* SHOW CATEGORY
----------------------------------------------------------------------------------------------- */
#Kunena img.stickyicon,
#Kunena img.attachicon {
float: right;
border: 0;
margin: 2px;
}
#Kunena img.catavatar {
width: 20px;
height: 20px;
margin-left: 4px;
border: 1px solid;
}
#Kunena .kcontenttablespacer {
border-left: 0;
border-right: 0;
border-bottom: 1px solid;
line-height: 0.5em;
}
#Kunena .krow1-stickymsg {
}
#Kunena .krow2-stickymsg {
}
/* VIEW PAGE
-------------------------------------------------------------------- */
#Kunena div.kmsg-header {
border-bottom: 2px solid;
padding: 0;
}
#Kunena div.kmsg-header h2 {
font-size: .917em;
padding: 3px 0;
margin-bottom: 0;
}
#Kunena div.kmsg-header-top span.kmsgdate-top,
#Kunena div.kmsg-header-bottom span.kmsgdate-bottom,
#Kunena div.kmsg-header-right span.kmsgdate-right,
#Kunena div.kmsg-header-left span.kmsgdate-left {
width: 180px;
text-align: center;
line-height: 1.8em;
padding-left: 10px;
}
#Kunena div.kmsg-header-top span.kmsg-title-top,
#Kunena div.kmsg-header-bottom span.kmsg-title-bottom,
#Kunena div.kmsg-header-left span.kmsg-title-left,
#Kunena div.kmsg-header-right span.kmsg-title-right {
/*padding-left:15px;*/
margin-left: 5px;
}
#Kunena div.kmsg-header-top span.kmsg-id-top,
#Kunena div.kmsg-header-bottom span.kmsg-id-bottom,
#Kunena div.kmsg-header-left span.kmsg-id-left,
#Kunena div.kmsg-header-right span.kmsg-id-right {
float: right;
margin: 0 10px 0 0;
padding: 0
}
#Kunena span.kpost-thankyou {
float: right;
margin-right: 15px;
font-size: 0.917em;
}
#Kunena div.kpost-thankyou {
margin-top: 4px;
}
#Kunena span.kmsgusertype {
font-weight: normal;
text-decoration: none;
font-style: italic;
}
#Kunena span.kavatar img {
border: 1px solid;
padding: 1px;
margin: 5px;
max-width: 100px;
max-height: 150px;
}
#Kunena span.kmsgtitle,
#Kunena span.kmsgtitle-new {
font-weight: bold;
text-decoration: none;
background: url("../images/msgtitleicon.gif") no-repeat left center;
padding-left: 25px;
line-height: 22px;
font-size: 1.333em;
float: left;
}
#Kunena span.kmsgtitle-new {
background: url("../images/msgtitlenew.gif") no-repeat left center;
}
#Kunena table.kmsg th.kmsg-date {
vertical-align: middle !important;
}
#Kunena th.kmsg-date span.ktopbottom,
#Kunena th.kmsg-date span.kheader-right {
float: left;
margin: 2px 25px;
}
#Kunena span.kmsgdate {
font-weight: normal;
text-decoration: none;
padding-left: 5px;
/*font-size: .833em;*/
white-space: nowrap;
/*float: left;*/
}
#Kunena div.kmsgbody {
display: table;
table-layout: fixed;
width: 100%;
padding: 10px 0 0 0;
margin-top: 5px;
min-height: 180px;
}
#Kunena div.kmsgbody div.kmsgtext {
word-wrap: break-word;
overflow: hidden;
}
#Kunena td.kmessage-right div.kmsgbody,
#Kunena td.kmessage-left div.kmsgbody,
#Kunena td.kmessage-top div.kmsgbody,
#Kunena td.kmessage-bottom div.kmsgbody {
width: 97%;
}
#Kunena div.kmsgbody div.kmsgtext img {
max-width: 100% !important;
max-height: 800px;
}
#Kunena div.kmsgbody div.kmsgtext ul > li {
list-style-type: disc;
}
#Kunena div.kmsgattach {
overflow: hidden;
padding: 8px;
margin-top: 8px;
background: none;
border: 1px dotted;
display: block;
}
#Kunena ul.kfile-attach,
#Kunena ul.kfile-attach-editing {
margin: 0 0 8px 0;
padding: 0;
}
#Kunena ul.kfile-attach li {
list-style-type: none;
margin-top: 10px;
padding-left: 30px;
background: url("../images/icons/attachment.png") no-repeat;
height: 32px;
line-height: 32px;
width: auto;
float: left;
}
#Kunena ul.kfile-attach li span {
padding-left: 10px;
vertical-align: top;
font-size: .833em;
}
#Kunena ul.kfile-attach-editing li span {
vertical-align: top;
padding-left: 2px;
}
#Kunena ul.kfile-attach-editing li {
list-style-type: none;
margin-top: 10px;
line-height: 32px;
}
#Kunena ul.kfile-attach li a img,
#Kunena ul.kfile-attach-editing li a img {
max-width: 32px;
max-height: 32px;
margin-left: 10px;
}
#Kunena span.kmsgtext-xs {
font-size: 0.5em;
}
#Kunena span.kmsgtext-s {
font-size: 0.75em;
}
#Kunena span.kmsgtext-m {
font-size: 1em;
}
#Kunena span.kmsgtext-l {
font-size: 1.25em;
}
#Kunena span.kmsgtext-xl {
font-size: 1.50em;
}
#Kunena span.kmsgtext-xxl {
font-size: 2em;
}
#Kunena div.kmsgtext pre,
#Kunena div.kmsgtext code {
border: 1px solid;
border-left-width: 5px;
font-weight: normal;
line-height: 1.5;
margin: 3px 0 10px 0;
padding: 10px 15px;
overflow: auto;
width: auto;
word-wrap: normal;
max-height: 25em;
}
#Kunena table.kmsg th a {
float: right;
}
#Kunena div.kmessage-editmarkup-cover {
padding-top: 5px;
text-align: right;
border-bottom: 1px dotted;
}
#Kunena span.kmessage-editmarkup {
background: no-repeat left center;
height: 16px;
border-left: 1px dotted;
border-right: 1px dotted;
border-top: 1px dotted;
padding: 2px 5px 2px 5px;
margin-left: 3px;
font-size: .75em;
}
#Kunena span.kmessage-informmarkup {
height: 16px;
border-left: 1px dotted;
border-right: 1px dotted;
border-top: 1px dotted;
padding: 2px 5px 2px 5px;
margin-left: 3px;
font-size: .75em;
}
#Kunena div.kmsgsignature {
border-top: 1px dotted;
font-size: .833em;
margin: 15px 0;
padding: 5px 0;
text-align: left;
}
#Kunena div.kmsgsignature img {
max-width: 100%;
max-height: 100px;
}
#Kunena div.kmessage-buttons-cover {
float: right;
}
#Kunena div.kmessage-buttons-row {
text-align: left;
height: 15px;
margin: 3px 0;
line-height: 14px;
white-space: nowrap;
font-size: .917em;
}
#Kunena div.kmessage-thankyou {
border-top: 1px dotted;
clear: both;
}
#Kunena .kreply-form {
border: 1px solid;
padding: 0.5em;
}
#Kunena .kreply-form .inputbox {
border: 1px solid;
margin: 2px 0;
}
#Kunena div.kmsgtext-article,
#Kunena div.kmsgtext-quote,
#Kunena div.kmsgtext-hide,
#Kunena div.kmsgtext-confidential {
display: block;
border: 1px dotted;
margin: 5px 0;
padding: 5px;
font-style: italic;
}
#Kunena div.kmsgtext-article {
}
#Kunena div.kmsgtext-hide {
}
#Kunena div.kmsgtext-confidential {
}
#Kunena div.khide {
background: url("../images/bullet-tips.gif") no-repeat scroll 5px center;
border: 1px dotted;
font-size: 1.3em;
padding: 10px 10px 10px 25px;
}
#Kunena .kmsgimage {
display: inline;
padding: 0 5px;
}
/* AVATAR POSITION
----------------------------------------------------------------------- */
#Kunena div.kmsgtitle {
/*border-bottom:1px solid;
padding-bottom: 5px;*/
}
/* right
----------------------------------------*/
#Kunena td.kprofile-right {
width: 170px;
min-width: 170px;
border-bottom: 1px solid;
border-left: 1px solid;
vertical-align: top;
}
#Kunena td.kmessage-right {
width: 100%;
overflow: hidden;
padding: 10px 10px 0 10px;
vertical-align: top;
}
#Kunena td.kbuttonbar-right {
vertical-align: bottom;
width: 100%;
height: 1em;
margin: 3px;
border-bottom: 1px solid;
padding: 3px 10px;
}
/* left
----------------------------------------*/
#Kunena td.kprofile-left {
vertical-align: top;
width: 170px;
min-width: 170px;
border-bottom: 1px solid;
border-right: 1px solid;
}
#Kunena td.kmessage-left {
overflow: hidden;
width: 100%;
padding: 10px 10px 0 10px;
vertical-align: top !important;
}
#Kunena td.kbuttonbar-left {
vertical-align: bottom;
width: 100%;
height: 1em;
margin: 3px;
border-bottom: 1px solid;
padding: 3px 10px;
}
#Kunena .kunapproved td {
}
#Kunena .kdeleted td {
}
#Kunena div.kprofile {
text-align: center;
padding: 5px;
}
/* User info on posts
----------------------------------------*/
/* Left and right layouts */
#Kunena ul.kpost-profile li {
padding: 0;
}
#Kunena ul.kpost-profile {
margin: 8px 0;
padding: 0;
text-align: center;
line-height: 1.5em;
}
#Kunena ul.kpost-profile li {
list-style-type: none;
display: block;
padding-bottom: 1px;
text-align: center !important;
}
#Kunena ul.kpost-profile li.kpost-username {
font-size: 1.333em;
}
#Kunena ul.kpost-profile li.kpost-usertype {
}
#Kunena ul.kpost-profile li.kpost-avatar {
}
#Kunena ul.kpost-profile li.kpost-userrank {
}
#Kunena ul.kpost-profile li.kpost-userrank-img {
}
#Kunena ul.kpost-profile li.kpost-userrank-img img {
vertical-align: text-top;
}
#Kunena ul.kpost-profile li.kpost-online-img {
}
#Kunena ul.kpost-profile li.kpost-online-img img {
vertical-align: text-top;
}
#Kunena ul.kpost-profile li.kpost-karma {
}
#Kunena li.kpost-karma span.kmsgkarma {
}
#Kunena span.kkarma-minus {
background: url("../media/iconsets/profile/default/default.png") no-repeat 0 -294px;
height: 14px;
width: 14px;
display: inline-block;
margin: -2px 0;
}
#Kunena span.kkarma-plus {
background: url("../media/iconsets/profile/default/default.png") no-repeat 0 -313px;
height: 14px;
width: 14px;
display: inline-block;
margin: -2px 0;
}
#Kunena li.kpost-userposts {
margin: 0;
}
#Kunena ul.kpost-profile li.kpost-smallicons {
margin: 0 auto;
width: 90%;
}
#Kunena ul.kpost-profile li.kpost-personal {
text-align: center;
font-style: italic;
}
/* Top and bottom layouts */
#Kunena ul#kpost-profiletop {
margin: 0;
padding: 0;
}
#Kunena ul#kpost-profiletop li {
list-style-type: none;
display: block;
padding: 0;
}
#Kunena ul#kpost-profiletop li.kpost-avatar {
float: left;
clear: left;
margin-right: 5px;
}
#Kunena ul#kpost-profiletop li.kpost-userrank {
padding-right: 5px;
}
#Kunena ul#kpost-profiletop li.kpost-smallicons {
float: right;
width: auto;
padding-top: 5px;
}
#Kunena ul#kpost-profiletop li.kpost-personal {
text-align: center;
font-style: italic;
float: right;
width: 40%;
padding-top: 5px;
}
/* top
----------------------------------------*/
#Kunena ul#kpost-profiletop li.kpost-userrank-img {
display: block;
}
#Kunena td.kprofile-top {
vertical-align: top;
border-bottom: 1px solid;
padding: 5px;
}
#Kunena td.kmessage-top {
width: 100%;
padding: 10px 10px 0 10px;
}
#Kunena td.kbuttonbar-top {
width: 100%;
margin: 3px;
border-bottom: 1px solid;
padding: 3px 10px;
}
#Kunena div.ktopbottom-avatar {
float: left;
}
#Kunena div.kprofile-mid {
padding: 0 5px;
display: inline;
text-align: left;
vertical-align: middle;
float: left;
}
#Kunena div.kprofile-right {
display: inline;
vertical-align: middle;
float: right;
width: 15%;
text-align: right;
}
#Kunena div.kpersonal {
padding: 0 20px;
display: inline;
text-align: left;
vertical-align: middle;
float: left;
}
/* bottom
----------------------------------------*/
#Kunena td.kprofile-bottom {
vertical-align: bottom;
border-bottom: 1px solid;
border-top: 1px solid;
padding: 5px;
}
#Kunena td.kmessage-bottom {
width: 100%;
overflow: hidden;
padding: 10px 10px 0 10px;
}
#Kunena td.kbuttonbar-bottom {
width: 100%;
margin: 3px;
padding: 3px 10px;
}
/* Stats on main page */
#Kunena ul#kstatslistleft,
#Kunena ul#kstatslistright {
margin: 0;
padding: 0;
}
#Kunena ul#kstatslistleft li,
#Kunena ul#kstatslistright li {
list-style-type: none;
display: block;
margin-left: 0;
padding: 1px 0 1px 0;
background: none;
line-height: 1.333em;
}
#Kunena ul#kstatslistright li strong a {
font-weight: bold;
}
/*
POST PAGE
-------------------------------------------------------------------- */
#Kunena #kpost-message .postinput {
width: 94%;
border: 1px solid;
padding: 3px 5px;
}
#Kunena #kpost-message .postinput:hover,
#Kunena #kpost-message .postinput:focus {
width: 94%;
border: 1px solid;
padding: 3px 5px;
}
#Kunena #kpostmessage tr.krow2 td.kcol-ktopicicons table {
width: 95%;
}
#Kunena #kpostmessage tr.krow2 td.kcol-ktopicicons td {
border: 1px solid;
width: 99%;
}
#Kunena #kpostmessage tr.krow1 .kpostbuttonset td.kposthint {
border: 1px solid;
padding: 2px 5px;
}
#Kunena table#kpostmessage .kposthint .kinputbox {
border: 0 solid;
width: 99%;
}
#Kunena .kpostbuttonset {
width: 95%;
margin: 2px;
border: 1px solid;
}
#Kunena tr.krow1 .kpostbuttons {
border: 1px solid;
}
#Kunena table#kpostmessage .ktxtarea {
overflow: auto;
/* IMPORTANT: height must be set in px */
height: 200px;
border: 1px solid;
}
#Kunena table.kreview-table td.author {
width: 15%;
text-align: center;
}
#Kunena td.kcaptcha {
text-align: left;
vertical-align: middle;
height: 35px;
}
#Kunena div#khistory td.kauthor,
#Kunena div#ksearchresult td.kresultauthor {
text-align: center;
}
#Kunena div#khistory td.khistorymsg {
text-align: left;
padding: 10px;
}
#Kunena div#khistory span.khistory-msgdate {
float: left;
padding-left: 10px;
}
#Kunena div#khistory tr.ksth a {
float: right;
padding-right: 10px;
}
/* ---- Post Previews ---- */
#Kunena textarea#kbbcode-message {
width: 95%;
float: left;
}
#Kunena #kbbcode-preview {
/* IMPORTANT: do not set height - controlled by js */
border: 1px solid;
overflow: scroll;
}
#Kunena div.kbbcode-preview-bottom {
/* IMPORTANT: do not set height - controlled by js */
float: left;
clear: left;
width: 95%;
margin-top: 10px;
}
#Kunena div.kbbcode-preview-right {
/* IMPORTANT: do not set height - controlled by js */
float: right;
width: 48%;
margin-right: 10px;
}
#Kunena #kpostmessage tr.krow1 .kpostbuttonset td,
#Kunena #kpostmessage tr.krow2 .kpostbuttonset td {
border-bottom: 1px solid;
}
#Kunena #kpost-message td.kcol-first {
width: 15%;
text-align: right;
vertical-align: middle;
}
#Kunena #kpost-result div {
border: 1px solid;
font-size: 1em;
}
#Kunena #kpost-buttons {
padding: 4px;
}
#Kunena #kpost-buttons .kbutton {
padding: 4px;
font-weight: bold;
font-size: 1em;
}
#Kunena div#kcolor-palette,
#Kunena div#link,
#Kunena div#image,
#Kunena div#video {
border-bottom: 1px solid;
margin-bottom: 5px;
padding-bottom: 5px;
}
/* FORUM ICON BUTTONS
----------------------------------------------------------------------------------------------- */
#Kunena .kicon-button {
text-transform: uppercase;
/* We need to use fixed font size: button does not grow */
font-size: 11px;
text-decoration: none;
cursor: pointer;
line-height: 145%;
display: inline-block;
background-image: url("../media/iconsets/buttons/default/default.png") !important;
background-repeat: repeat-x;
border: none;
margin: 0 5px;
}
/*
#Kunena a.kicon-button:hover {
background-position: 0 -480px !important;
}
*/
#Kunena .kicon-button span {
background-color: inherit;
background-image: inherit;
background-repeat: no-repeat;
border: 0;
display: inline-block;
margin: 0 -5px;
}
#Kunena .kicon-button span span {
height: 18px;
display: inline-block;
margin: 0;
padding: 0 7px 0 20px;
background-repeat: no-repeat;
}
#Kunena a.kicon-button span span:hover {
text-decoration: underline;
}
/* Need the hover states to fix Beez in Joomla 1.6 */
#Kunena .kbuttonuser,
#Kunena .kbuttonuser:hover {
background-position: 0 -360px;
}
#Kunena .kbuttononline-yes,
#Kunena .kbuttonmod,
#Kunena .kbuttononline-yes:hover,
#Kunena .kbuttonmod:hover {
background-position: 0 -200px;
}
#Kunena .kbuttononline-no,
#Kunena .kbuttongen,
#Kunena .kbuttoncomm,
#Kunena .kbuttononline-no:hover,
#Kunena .kbuttongen:hover,
#Kunena .kbuttoncomm:hover {
background-position: 0 -480px;
}
#Kunena .kbuttononline-yes span span,
#Kunena .kbuttonmod span span,
#Kunena .kbuttononline-yes span span:hover,
#Kunena .kbuttonmod span span:hover {
background-position: right -220px;
}
#Kunena .kbuttonuser span span,
#Kunena .kbuttonuser span span:hover {
background-position: right -380px;
}
#Kunena .kbuttononline-no span span,
#Kunena .kbuttongen span span,
#Kunena .kbuttoncomm span span,
#Kunena .kbuttononline-no span span:hover,
#Kunena .kbuttongen span span:hover,
#Kunena .kbuttoncomm span span:hover {
background-position: right -500px;
}
#Kunena .kbuttononline-yes span span,
#Kunena .kbuttononline-no span span {
padding: 0 7px;
height: 15px;
}
#Kunena .kbuttononline-yes span.online-yes {
background-position: 0 0;
}
#Kunena .kbuttononline-no span.online-no {
background-position: 0 -400px;
}
#Kunena .kbuttoncomm span.reply {
background-position: 0 -460px;
}
#Kunena .kbuttoncomm span.quote {
background-position: 0 -440px;
}
#Kunena .kbuttoncomm span.newtopic {
background-position: 0 -420px;
}
#Kunena .kbuttonuser span.layout-flat {
background-position: 0 -240px
}
#Kunena .kbuttonuser span.layout-flat span {
padding: 0 7px;
}
#Kunena .kbuttonuser span.layout-threaded {
background-position: 0 -240px
}
#Kunena .kbuttonuser span.layout-threaded span {
padding: 0 7px;
}
#Kunena .kbuttonuser span.layout-indented {
background-position: 0 -240px
}
#Kunena .kbuttonuser span.layout-indented span {
padding: 0 7px;
}
#Kunena .kbuttonuser span.thankyou {
background-position: 0 -340px;
}
#Kunena .kbuttonuser span.favorite {
background-position: 0 -260px;
}
#Kunena .kbuttonuser span.subscribe {
background-position: 0 -320px;
}
#Kunena .kbuttonuser span.markread {
background-position: 0 -300px;
}
#Kunena .kbuttonuser span.report {
background-position: 0 -320px;
}
#Kunena .kbuttonmod span.merge {
background-position: 0 -100px;
}
#Kunena .kbuttonmod span.edit {
background-position: 0 -60px;
}
#Kunena .kbuttonmod span.delete {
background-position: 0 -40px;
}
#Kunena .kbuttonmod span.permdelete {
background-position: 0 -40px;
}
#Kunena .kbuttonmod span.undelete {
background-position: 0 -20px;
}
#Kunena .kbuttonmod span.move {
background-position: 0 -140px;
}
#Kunena .kbuttonmod span.sticky {
background-position: 0 -180px;
}
#Kunena .kbuttonmod span.lock {
background-position: 0 -80px;
}
#Kunena .kbuttonmod span.split {
background-position: 0 -160px;
}
#Kunena .kbuttonmod span.approve {
background-position: 0 -180px;
}
#Kunena .kbuttonmod span.moderate {
background-position: 0 -120px;
}
#Kunena .kbuttonmod span.unthankyou {
background-position: 0 -40px;
}
/* Goto Up/down buttons */
#Kunena a.kbuttongoto {
}
#Kunena a.kbuttongoto span.top {
background: url("../images/icons/top_arrow.gif") no-repeat left top;
height: 18px;
width: 18px;
display: block;
}
#Kunena a.kbuttongoto span.bottom {
background: url("../images/icons/bottom_arrow.gif") no-repeat left top;
height: 18px;
width: 18px;
display: block;
}
#Kunena div#kreport-container {
/*border:1px solid;*/
height: 1%;
overflow: auto;
padding: 10px 10px 30px;
}
#Kunena form.kform-report,
#Kunena form.kform-report label,
#Kunena form.kform-report input,
#Kunena form.kform-report textarea {
float: left;
clear: both;
}
#Kunena form.kform-report label {
margin-top: 15px;
}
#Kunena form.kform-report input,
#Kunena form.kform-report textarea {
border: 1px solid;
}
#Kunena div.kreportstatus {
text-align: center;
margin: 30px 0;
}
/*
BBCODE BUTTONS
-------------------------------------------------------------------- */
#Kunena img.kbbcode {
cursor: pointer;
margin-top: 4px;
margin-right: 1px;
padding: 0;
}
#Kunena img.kbbcode:hover {
cursor: pointer;
margin-top: 4px;
margin-right: 1px;
padding: 0;
}
#Kunena .kbbcode-colortable {
cursor: pointer;
width: 100%;
margin-left: auto;
margin-right: auto;
}
#Kunena div#kbbcode-size-options {
margin: 2px 0 0;
}
#Kunena div#kbbcode-size-options span {
vertical-align: middle;
display: inline-block;
line-height: 24px;
}
#Kunena div#kbbcode-size-options span:hover {
cursor: pointer;
padding: 0;
}
#Kunena table.kpostbuttonset tr td.kpostbuttons select.kslcbox {
position: relative;
bottom: 5px;
}
#Kunena #kbbcode-toolbar {
list-style: none inside;
height: 18px;
margin: 2px 0 2px;
padding: 0;
position: relative;
}
#Kunena #kbbcode-toolbar li {
float: left;
list-style: none none !important;
margin: 0;
padding: 0;
}
#Kunena #kbbcode-toolbar li a {
background-repeat: no-repeat;
display: block;
height: 18px;
width: 18px;
margin-right: 2px;
}
#Kunena #kbbcode-toolbar li a:hover {
cursor: pointer;
padding: 0;
}
#Kunena #kbbcode-toolbar li span {
display: none;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-separator1,
#Kunena ul#kbbcode-toolbar li a#kbbcode-separator2,
#Kunena ul#kbbcode-toolbar li a#kbbcode-separator3,
#Kunena ul#kbbcode-toolbar li a#kbbcode-separator4,
#Kunena ul#kbbcode-toolbar li a#kbbcode-separator5,
#Kunena ul#kbbcode-toolbar li a#kbbcode-separator6,
#Kunena ul#kbbcode-toolbar li a#kbbcode-separator7,
#Kunena ul#kbbcode-toolbar li a#kbbcode-separator8 {
background-position: -400px 0;
width: 8px;
cursor: default;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-bold-button {
background-position: 0 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-italic-button {
background-position: -18px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-underline-button {
background-position: -36px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-strike-button {
background-position: -54px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-sub-button {
background-position: -72px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-sup-button {
background-position: -90px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-size-button {
background-position: -108px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-color-button {
background-position: -126px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-spoiler-button {
background-position: -144px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-hide-button {
background-position: -162px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-ulist-button {
background-position: -180px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-olist-button {
background-position: -198px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-list-button {
background-position: -216px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-left-button {
background-position: -234px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-center-button {
background-position: -252px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-right-button {
background-position: -270px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-quote-button {
background-position: -288px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-code-button {
background-position: -306px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-image-button {
background-position: -324px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-link-button {
background-position: -342px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-table-button {
background-position: 0 -18px;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-module-button {
background-position: -18px -18px;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-ebay-button {
background-position: -360px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-video-button {
background-position: -378px 0;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-map-button {
background-position: -72px -18px;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-attach-button {
background-position: -36px -18px;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-gallery-button {
background-position: -54px -18px;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-poll-button {
background-position: -90px -18px;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-previewbottom-button {
background-position: -252px -18px;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-previewright-button {
background-position: -270px -18px;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-help-button {
background-position: -396px -18px;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-smilies-button {
display: none;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-hr-button {
display: none;
}
#Kunena ul#kbbcode-toolbar li a#kbbcode-tweet-button {
display: none;
}
#Kunena .kspoiler {
cursor: pointer;
}
#Kunena .kattachment .hasTip {
display: inline;
}
#Kunena .kattachment .kbutton {
/* font-size: 1em; */
}
#Kunena #kattachments {
line-height: 18px;
}
#Kunena #kattachments a {
background-repeat: no-repeat;
display: inline-block;
height: 18px;
width: 18px;
margin-right: 2px;
}
#Kunena #kattachments a {
background-position: -216px -18px;
}
/* Define default image if not set in admin config */
#Kunena #kbbcode-toolbar li a,
#Kunena #kattachments a {
background-image: url("../media/iconsets/editor/default/default.png");
}
/*
Multi file upload for bbcode editor
-------------------------------------------------------------------- */
#kfilename {
}
#Kunena .kfile-input-textbox {
/* float: left; */
display: inline-block;
}
#kupload {
}
#Kunena .kfile-hide {
position: relative;
width: 100px;
height: 23px;
overflow: hidden;
}
#Kunena .kfile-input-button,
#Kunena .kfile-input-button:hover,
#Kunena .kfile-input-button:focus {
top: 0;
background: none;
font-size: .833em !important;
border: 1px solid;
padding: 3px 6px;
cursor: pointer;
}
#Kunena .kfile-input-button:hover,
#Kunena .kfile-input-button:focus {
background: none;
border: 1px solid;
}
#Kunena .kattachment-remove,
#Kunena .kattachment-insert {
background: none;
font-size: .917em !important;
border: 1px solid;
padding: 3px 6px;
}
#Kunena .kattachment-remove:hover,
#Kunena .kattachment-insert:hover {
font-size: 0.917em !important;
padding: 3px 6px;
}
#Kunena .kattachment-insert {
margin-left: 20px;
}
#Kunena .kfile-input {
font-size: 23px;
position: absolute;
right: 0;
top: -10px;
/* CSS3 standard */
opacity: 0;
/* For IE */
filter: alpha(opacity=0);
}
#Kunena #kbbcode-filelist {
padding: 0;
list-style: none;
margin: 0;
}
#Kunena #kbbcode-filelist .file-invalid {
cursor: pointer;
padding-left: 48px;
line-height: 24px;
margin-bottom: 1px;
}
#Kunena #kbbcode-filelist .file-invalid span {
padding: 1px;
}
#Kunena #kbbcode-filelist .file {
line-height: 2em;
padding-left: 22px;
}
#Kunena #kbbcode-filelist .file span,
#Kunena #kbbcode-filelist .file a {
padding: 0 4px;
}
#Kunena #kbbcode-filelist .file .file-size {
}
#Kunena #kbbcode-filelist .file .file-error {
}
#Kunena #kbbcode-filelist .file .file-progress {
width: 125px;
height: 12px;
vertical-align: middle;
}
/*
POLLS
-------------------------------------------------------------------- */
label.kpoll-title-lbl {
display: inline-block;
margin: 10px 15px 10px 5px;
}
label.kpoll-term-lbl {
display: inline-block;
margin: 10px 15px 10px 30px;
}
#kpoll-text-help {
font-weight: bold;
padding: 0 10px;
margin: 3px;
}
#kpoll-text-help p {
padding: 5px 10px;
}
#kpoll-form-vote fieldset {
border: 0 none;
margin: 0;
padding: 0;
}
#kpoll-form-vote legend {
text-indent: -9999px;
}
#kpoll-form-vote ul {
margin: 0 0 0 20px;
padding: 0;
}
#kpoll-form-vote ul li {
line-height: 30px;
list-style: none none !important;
}
#kpoll-btns {
margin: 0;
}
#Kunena div.kpolldesc td.kpoll-option {
text-align: left;
width: 60%;
padding: 3px 8px;
}
#Kunena div.kpolldesc td.kpoll-bar {
text-align: left;
width: 20%;
}
#Kunena div.kpolldesc td.kpoll-number,
#Kunena div.kpolldesc td.kpoll-percent {
text-align: center;
width: 10%;
}
#Kunena #kpoll-button-vote {
margin: 20px 20px 20px 30px;
}
/* PATHWAY
----------------------------------------------------------------------------------------------- */
#Kunena .kforum-pathway {
padding: 5px;
line-height: 18px;
margin: -5px 0 0;
border-left: 1px solid;
border-right: 1px solid;
}
#Kunena .kforum-pathway-bottom {
padding: 3px;
line-height: 18px;
margin: -1px 0 5px 0;
border: 1px solid;
}
#Kunena .kforum-pathway-bottom img {
vertical-align: text-bottom;
}
#Kunena .path-element-first {
font-weight: normal;
height: 18px;
line-height: 18px;
background: url("../images/pathway_start.gif") no-repeat left center;
display: inline;
padding: 1px 3px 1px 22px;
}
#Kunena .path-element-first a:link,
#Kunena .path-element-first a:visited {
font-weight: normal;
text-decoration: none;
background: none;
}
#Kunena .path-element-last,
#Kunena .path-element-last a:link {
font-weight: bold;
text-decoration: none;
text-indent: 5px;
display: inline;
}
#Kunena .kforum-pathway .path-element,
#Kunena .kforum-pathway-bottom .path-element {
background: url("../images/icons/arrow.png") no-repeat left center;
padding-left: 12px;
display: inline;
font-weight: normal;
height: 18px;
line-height: 18px;
padding-right: 3px;
}
#Kunena .kforum-pathway .path-element-last,
#Kunena .kforum-pathway-bottom .path-element-last {
height: 18px;
line-height: 18px;
background: url("../images/pathway_finallink.gif") no-repeat left center;
padding: 1px 5px 1px 37px;
}
#Kunena .path-element-users {
display: inline;
margin-top: 21px;
}
/*
FORUM HEADER DESCRIPTION
-------------------------------------------------------------------- */
#Kunena .kforum-headerdesc {
padding: 3px;
line-height: 18px;
margin: -1px 0 0 0;
border: 1px solid;
}
#Kunena .kforum-headerdesc td {
padding: 8px;
}
/*
HELP, RULES, UPLOAD AVATAR, ANNOUNCEMENT
-------------------------------------------------------------------- */
#Kunena div.kannouncement h2 {
table-layout: fixed;
word-wrap: break-word;
}
#Kunena div#kannouncement .kanndesc {
padding: 5px 10px;
}
#Kunena img.calendar {
margin: 5px 0 -5px 5px;
}
#Kunena td.kuadesc,
#Kunena td.kcreditsdesc {
vertical-align: top;
padding: 15px;
/*border: 1px solid;*/
}
#Kunena td.kcreditsdesc div.kfooter {
text-align: center;
}
#Kunena .kcredits-intro {
margin: 5px;
padding: 15px 30px;
text-align: left;
border: 1px solid;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
}
#Kunena .kteam {
margin: 0;
padding: 0;
}
#Kunena .kteammember {
list-style-type: circle;
margin: 0 10px;
padding: 0;
text-align: left;
background: transparent none;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
}
#Kunena .kcredits-more {
padding: 10px 20px;
margin: 15px;
border: 1px solid;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
}
#Kunena .kcredits-language {
padding: 10px 20px;
border: 1px solid;
margin: 15px;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
}
#Kunena .kstatsicon {
background: url("../images/icons/stats.png") no-repeat center top;
width: 32px;
height: 32px;
}
#Kunena div#searchuser_tbody div.search-user {
padding: 5px 10px;
float: left;
}
#Kunena div#searchuser_tbody div.userlist-jump {
float: right;
}
#Kunena tr.userlist th {
padding: 3px;
text-align: center;
}
#Kunena div#userlist_tbody td,
#Kunena table#kuserlist_bottom th {
padding: 4px 8px;
}
#Kunena div#userlist-tbody td {
text-align: center;
}
#Kunena table#kuserlist-bottom div {
text-align: center;
padding: 3px;
}
/* STATISTICS PAGE
------------------------------------------------------------------- */
#Kunena tr.ksth th.kname {
width: 50%;
text-align: left;
}
#Kunena tr.ksth th.kbar {
width: 40%;
}
#Kunena tr.ksth th.knr {
width: 10%;
}
#Kunena div.kwhoisonline td.kcol-first,
#Kunena div.kgenstats td.kcol-first,
#Kunena div.kfrontstats td.kcol-first {
width: 1%;
}
#Kunena div.kgenstats th {
text-align: left !important;
}
#Kunena div.kedituser td.kcol-first,
#Kunena div.keditavatar td.kcol-first,
#Kunena div.keditprofile td.kcol-first,
#Kunena div.keditsettings td.kcol-first {
width: 120px;
}
#Kunena div.klogin div.kbody,
#Kunena div.kinfomessage div.kbody {
padding: 15px;
text-align: center;
}
/* WHO IS ONLINE
------------------------------------------------------------------- */
#Kunena .kwhoicon {
background: url("../images/icons/who_is_online.png") no-repeat center top;
width: 32px;
height: 32px;
}
#Kunena .kwholegend {
border-top: 1px dotted;
width: 100%;
margin-top: 5px;
padding-top: 5px;
}
#Kunena .kwhoonline {
border-bottom: 1px dotted;
width: 100%;
padding-bottom: 5px;
}
#Kunena #kwhoispage td.td-3 {
text-align: left;
}
/* MODERATOR PAGE
-------------------------------------------------------------------- */
#Kunena div#kmod-container {
/*border: 1px solid;*/
margin: 0;
padding: 10px 10px 30px 10px;
overflow: hidden;
height: 1%;
clear: left;
}
#Kunena div#kmod-container div {
padding: 5px 0;
}
#Kunena div#kmod-leftcol {
width: 47%;
float: left;
clear: left;
}
#Kunena div#kmod-rightcol {
width: 47%;
float: right;
}
#Kunena div.kmoderate-message {
border: 1px solid;
padding: 5px !important;
margin: 5px 0;
display: inline-block;
width: 98%;
}
#Kunena div.kmoderate-message h4 {
margin: 0;
padding: 0;
}
#Kunena div.kmoderate-message div.kmessage-avatar {
float: left;
padding: 5px 5px 0 0;
}
#Kunena div.kmoderate-message div.kmessage-msgtext {
margin-left: 42px;
}
#Kunena td.krowmoderation input.kbutton {
margin: 0 0 0 5px;;
}
#Kunena table#kaddban td.kcol-first {
width: 35%;
}
#Kunena table#kaddban td.kcol-mid textarea {
width: 100%;
height: 50px;
}
#Kunena table#kaddban td.kcol-mid input {
width: 100%;
}
#Kunena table#kforumsearch th {
padding: 0;
}
#Kunena td.krowmoderation {
text-align: right;
}
#Kunena div.banhistory th.kid {
width: 2%;
}
#Kunena div.banhistory th.kbanfrom {
width: 14%;
}
#Kunena div.banhistory th.kbanstart,
#Kunena div.banhistory th.kbanexpire,
#Kunena div.banhistory th.kbancreate {
width: 20%;
}
#Kunena div.banhistory th.kbanmodify {
width: 24%;
}
/* PROFILE
-------------------------------------------------------------------- */
#Kunena .kicon-profile {
width: 16px;
height: 16px;
display: inline-block;
vertical-align: text-top;
margin-right: 3px;
background: url("../media/iconsets/profile/default/default.png") no-repeat;
}
#Kunena span.kicon-profile-website,
#Kunena span.kicon-profile-pm {
vertical-align: top;
margin-top: 3px;
}
#Kunena .kicon-profile-aim {
background-position: 0 0;
}
#Kunena .kicon-profile-bebo {
background-position: 0 -21px;
}
#Kunena .kicon-profile-birthdate {
background-position: 0 -42px;
}
#Kunena .kicon-profile-blogspot {
background-position: 0 -63px;
}
#Kunena .kicon-profile-delicious {
background-position: 0 -84px;
}
#Kunena .kicon-profile-digg {
background-position: 0 -105px;
}
#Kunena .kicon-profile-email {
background-position: 0 -126px;
}
#Kunena .kicon-profile-facebook {
background-position: 0 -147px;
}
#Kunena .kicon-profile-gender-female {
background-position: 0 -168px;
}
#Kunena .kicon-profile-flickr {
background-position: 0 -189px;
}
#Kunena .kicon-profile-friendfeed {
background-position: 0 -210px;
}
#Kunena .kicon-profile-gender-unknown {
background-position: 0 -231px;
}
#Kunena .kicon-profile-gtalk {
background-position: 0 -252px;
}
#Kunena .kicon-profile-icq {
background-position: 0 -273px;
}
#Kunena .kicon-profile-karmaminus {
background-position: 0 -294px;
}
#Kunena .kicon-profile-karmaplus {
background-position: 0 -313px;
}
#Kunena .kicon-profile-linkedin {
background-position: 0 -332px;
}
#Kunena .kicon-profile-location {
background-position: 0 -353px;
}
#Kunena .kicon-profile-gender-male {
background-position: 0 -374px;
}
#Kunena .kicon-profile-msn {
background-position: 0 -395px;
}
#Kunena .kicon-profile-myspace {
background-position: 0 -416px;
}
#Kunena .kicon-profile-pm {
background-position: 0 -437px;
}
#Kunena .kicon-profile-remind {
background-position: 0 -458px;
}
#Kunena .kicon-profile-skype {
background-position: 0 -479px;
}
#Kunena .kicon-profile-twitter {
background-position: 0 -500px;
}
#Kunena .kicon-profile-website {
background-position: 0 -521px;
}
#Kunena .kicon-profile-yim {
background-position: 0 -542px;
}
#Kunena .kicon-profile-aim-off {
background-position: 0 -563px;
}
#Kunena .kicon-profile-bebo-off {
background-position: 0 -584px;
}
#Kunena .kicon-profile-birthday-off {
background-position: 0 -605px;
}
#Kunena .kicon-profile-blogspot-off {
background-position: 0 -626px;
}
#Kunena .kicon-profile-delicious-off {
background-position: 0 -647px;
}
#Kunena .kicon-profile-digg-off {
background-position: 0 -668px;
}
#Kunena .kicon-profile-facebook-off {
background-position: 0 -689px;
}
#Kunena .kicon-profile-flickr-off {
background-position: 0 -710px;
}
#Kunena .kicon-profile-friendfeed-off {
background-position: 0 -731px;
}
#Kunena .kicon-profile-gender-off {
background-position: 0 -752px;
}
#Kunena .kicon-profile-gtalk-off {
background-position: 0 -773px;
}
#Kunena .kicon-profile-icq-off {
background-position: 0 -794px;
}
#Kunena .kicon-profile-linkedin-off {
background-position: 0 -815px;
}
#Kunena .kicon-profile-msn-off {
background-position: 0 -836px;
}
#Kunena .kicon-profile-myspace-off {
background-position: 0 -857px;
}
#Kunena .kicon-profile-pm-off {
background-position: 0 -878px;
}
#Kunena .kicon-profile-remind-off {
background-position: 0 -899px;
}
#Kunena .kicon-profile-skype-off {
background-position: 0 -920px;
}
#Kunena .kicon-profile-twitter-off {
background-position: 0 -941px;
}
#Kunena .kicon-profile-website-off {
background-position: 0 -962px;
}
#Kunena .kicon-profile-yim-off {
background-position: 0 -983px;
}
#Kunena div#kprofile-leftcol {
width: 200px;
font-size: 1em;
float: left; /*margin-right: 10px;*/
}
#Kunena div.kavatar-lg {
width: 200px;
height: 200px;
border: 1px solid;
display: table-cell;
vertical-align: middle;
text-align: center;
}
#Kunena div.kavatar-lg img {
}
#Kunena div#kprofile-stats {
margin-top: 15px;
}
#Kunena div#kprofile-stats ul {
margin: 0 0 0 3px;
padding: 0;
}
#Kunena div#kprofile-stats ul li {
list-style-type: none;
padding-top: 5px;
clear: both;
font-size: .917em;
white-space: normal;
}
div#kprofile-stats ul li span.krankname {
display: block;
margin-right: 5px;
font-weight: bold;
float: left;
}
#Kunena div#kprofile-rightcol {
/*display:inline-block;
float:left;
margin-left:10px;
width:75%;*/
}
#Kunena table#kprofile td.kcol-left {
padding: 10px 10px 30px;
vertical-align: top;
}
#Kunena table#kprofile td.kcol-right {
border-left: 0;
padding: 10px 10px 30px;
vertical-align: top;
}
#Kunena div#kprofile-rightcoltop {
width: 100%;
}
#Kunena div.kprofile-rightcol1 {
width: 45%;
}
#Kunena div.kprofile-rightcol1 ul {
margin: 0;
padding: 0;
}
#Kunena div.kprofile-rightcol1 ul li,
#Kunena div.kprofile-rightcol2 ul li {
list-style-type: none !important;
background: 0 none;
padding-bottom: 8px;
padding-left: 0;
}
#Kunena div#kprofile-stats ul li {
list-style-type: none !important;
background: 0 none;
padding-left: 0;
}
#Kunena li.bd a {
margin-left: 10px;
}
#Kunena div.kiconrow {
padding-right: 10px;
padding-bottom: 5px;
float: left;
}
#Kunena div.kiconrow span,
#Kunena div.kiconprofile span {
background-repeat: no-repeat;
display: block;
float: left;
margin: 0 5px 5px 0;
border: 0 none;
}
#Kunena div.kiconprofile span.birthday {
background-image: none;
border: 0 none;
}
#Kunena div.clrline {
clear: both;
border-top: 1px solid;
margin: 15px 0 20px 0;
line-height: 10px;
}
#Kunena div#kprofile-rightcolbot {
}
#Kunena div.kprofile-rightcol1 h4 {
margin: 10px 0 0 0;
padding: 0;
font-size: 1em;
font-weight: bold;
}
#Kunena div.kprofile-rightcol1 p {
margin: 0;
padding: 0;
}
#Kunena div.kprofile-rightcol2 {
float: right;
width: 45%;
margin-left: 10px;
}
#Kunena div.kprofile-rightcol2 ul {
margin: 0;
padding: 0;
}
#Kunena div.kprofile-rightcol2 ul li {
list-style-type: none !important;
padding-bottom: 8px;
}
#Kunena div.kprofile-rightcol2 ul li span.website {
float: left;
margin-right: 5px;
}
#Kunena dd.kprofile-modtools h4 {
margin-bottom: 5px;
margin-left: 5px;
}
#Kunena dd.kprofile-modtools ul li span {
margin-right: 15px;
}
#Kunena dd.kprofile-modtools ul li {
padding-bottom: 5px;
}
#Kunena li.usertype {
font-weight: bold;
}
#Kunena li.kprofile-rank {
}
#Kunena li.kprofile-rank img {
}
/* Tabs
----------------------------------*/
#Kunena #kprofile-tabs {
width: 100%;
margin-top: 0;
}
#Kunena dl.tabs {
float: left;
margin: 10px 0 -1px 0;
z-index: 50;
}
#Kunena dl.tabs dt {
float: left;
padding: 4px 6px;
border-left: 1px solid;
border-right: 1px solid;
border-top: 1px solid;
margin: 0;
}
#Kunena dl.tabs dt.open {
border-bottom: 1px solid;
z-index: 100;
}
#Kunena div.current {
clear: both;
border: 1px solid;
padding: 10px 10px;
overflow: hidden;
}
#Kunena div.current dd {
padding: 0;
margin: 0;
}
#Kunena dt.kprofile-modbtn {
}
#Kunena dd.kprofile-modtools ul {
padding: 0;
margin: 0 0 0 5px;
}
#Kunena dd.kprofile-modtools ul li {
list-style-type: none;
}
#Kunena dd.kprofile-modtools .kcheckbox {
float: left;
clear: left;
}
#Kunena dd.kprofile-modtools label {
float: left;
clear: right;
margin: 3px 10px 10px 5px;
}
#Kunena input.kbutton {
margin: 10px 0 0 5px;
}
#Kunena form#jumpto {
margin: 5px;
}
#Kunena form#jumpto input.kbutton {
margin: 0;
}
#Kunena table.klist-top td.klist-markallcatsread input.kbutton {
vertical-align: middle;
margin: 5px;
}
/* SLIDERS
----------------------------------------------------------------------------------------------- */
#Kunena span#kprofilebox-status {
font-weight: bold;
display: block;
height: 14px;
width: 15px;
}
#Kunena #kprofilebox-toggle {
display: block;
height: 15px;
width: 15px;
margin-right: 1px;
margin-top: -14px;
border: 1px solid;
}
#Kunena a.close {
display: block;
background: url("../images/shrink.gif") no-repeat;
height: 15px;
width: 15px;
}
#Kunena a.open {
display: block;
background: url("../images/expand.gif") no-repeat;
height: 15px;
width: 15px;
}
/* FOOTER
----------------------------------------------------------------------------------------------- */
#Kunena .kcredits {
text-align: center;
}
#Kunena .kfooter {
text-align: center;
}
#Kunena img.rsslink {
float: right;
margin-top: 10px;
margin-right: 3px;
}
/* Mootools Autocompleter CSS classes
----------------------------------------------------------------------------------------------- */
/* DO NOT ADD #Kunena into these rules! */
ul.autocompleter-choices {
position: absolute;
margin: 0;
padding: 0;
list-style: none;
border: 1px solid;
text-align: left;
z-index: 50;
}
ul.autocompleter-choices li {
position: relative;
margin: -2px 0 0 0;
padding: 0.2em 1.5em 0.2em 1em;
display: block;
float: none !important;
cursor: pointer;
font-weight: normal;
white-space: nowrap;
font-size: 1em;
line-height: 1.5em;
}
ul.autocompleter-choices li.kautocompleter-selected {
}
ul.autocompleter-choices span.kautocompleter-queried {
display: inline;
float: none;
font-weight: bold;
margin: 0;
padding: 0;
}
ul.autocompleter-choices li.kautocompleter-selected span.kautocompleter-queried {
}
/* for form-validation
------------------------------------------------------ */
#Kunena #kpost-message .invalid {
border: 1px solid !important;
}
/* SHOW ICONS
----------------------------------------------------------------------------------------------- */
#Kunena span.kicon {
background: none;
border: 0;
margin: 0;
padding: 0;
display: inline-block;
}
#Kunena span.ktopicattach {
background: url("../images/icons/attachment.png") no-repeat left center;
margin: 2px;
width: 32px;
height: 32px;
float: right;
}
#Kunena span.kfavoritestar {
background: url("../images/icons/favoritestar.png") no-repeat left center;
width: 16px;
height: 16px;
}
#Kunena span.kfavoritestar-grey {
background: url("../images/icons/favoritestar-grey.png") no-repeat left center;
width: 16px;
height: 16px;
}
#Kunena span.ktopiclocked,
#Kunena span.kforumlocked {
background: url("../images/icons/lock_sm.png") no-repeat left center;
width: 16px;
height: 16px;
}
#Kunena span.kforumbottom {
background: url("../images/icons/bottom_arrow.gif") no-repeat left center;
width: 18px;
height: 15px;
}
#Kunena span.kforumtop {
background: url("../images/icons/top_arrow.gif") no-repeat left center;
width: 18px;
height: 15px;
}
#Kunena span.krss {
background: url("../images/icons/rss.png") no-repeat left center;
width: 24px;
height: 24px;
margin: 5px 5px 0 -29px;
}
#Kunena div.krss-block {
float: right;
}
#Kunena span.kforummoderated {
background: url("../images/icons/tmoder.gif") no-repeat left center;
width: 16px;
height: 16px;
}
#Kunena span.kreadforum,
#Kunena span.knotloginforum {
background: url("../images/icons/folder_nonew.png") no-repeat left center;
width: 32px;
height: 32px;
}
#Kunena span.kunreadforum {
background: url("../images/icons/folder.png") no-repeat left center;
width: 32px;
height: 32px;
}
#Kunena span.kreadforum-sm,
#Kunena span.knotloginforum-sm {
background: url("../images/icons/folder_nonew_sm.png") no-repeat left center;
width: 12px;
height: 12px;
margin-right: 3px;
vertical-align: middle;
}
#Kunena span.kunreadforum-sm {
background: url("../images/icons/folder_sm.png") no-repeat left center;
width: 12px;
height: 12px;
margin-right: 3px;
vertical-align: middle;
}
.kgooglemap {
width: 100%;
display: block;
height: 480px;
overflow: hidden;
position: relative;
}
.kgooglemap img {
max-width: none !important;
}
/* Fix for Atomic Template */
#ktab .joomla-nav {
background-color: transparent;
border: 0 none;
}
/* Threaded view
----------------------------------------------------------------------------------------------- */
#Kunena .ktree {
width: 15px;
height: 27px;
margin: -9px 0;
display: inline-block;
background: url("../images/treenodes-ltr.png") no-repeat left center;
}
#Kunena .ktree-crossedge {
background-position: -45px 0;
}
#Kunena .ktree-lastedge {
background-position: -75px 0;
}
#Kunena .ktree-root {
background-position: -15px 0;
}
#Kunena .ktree-single {
background-position: 0 0;
}
#Kunena .ktree-leaf {
background-position: -90px 0;
}
#Kunena .ktree-node {
background-position: -60px 0;
}
#Kunena .ktree-edge {
background-position: -30px 0;
}
#Kunena .ktree-gap {
background-position: -105px 0;
}
#Kunena .ktree-empty {
background: none;
}
/* Fix Atomic Joomla 1.6 template*/
.span-16 {
width: 100% !important;
}
/* Fix Joomla 1.6 & 1.7 image border */
#Kunena a img {
border: none;
}
/* Fix ol li numbers */
#Kunena ol li {
list-style-position: inside;
}
/* kunena Poll*/
#Kunena div.kpolldesc img.jr-forum-stat-bar {
height: 20px !important;
max-height: 20px !important;
}
img.kstats-bar {
height: 20px !important;
max-height: 20px !important;
}
/* Fix avatar on bootstrap templates */
#Kunena img.kavatar {
height: auto !important;
max-width: inherit !important;
}
/* Fix bad bug (chrome) */
#Kunena img {
max-width: none !important;
}
#Kunena ul.kteam,
#Kunena ul.kpost-profile {
list-style: none;
}
|
wp-content/themes/quark/editor-style.css | ithebear/throughthebrvnches | /*
Theme Name: Quark
Description: Used to style the TinyMCE editor.
*/
/* ==========================================================================
Font Awesome icon font. http://gregoryloucas.github.com/Font-Awesome-More
========================================================================== */
@import "css/font-awesome.min.css";
/* ==========================================================================
Basic page styles
========================================================================== */
html {
font-size: 100%;
}
html .mceContentBody {
max-width: 790px;
}
body {
color: #333;
font: 16px/1.5 'PT Sans', Helvetica, Arial, sans-serif;
font-size: 1rem;
font-style: normal;
font-weight: 400;
text-rendering: optimizeLegibility;
vertical-align: baseline;
}
/* ==========================================================================
Header
========================================================================== */
h1, h2, h3, h4, h5, h6 {
font-family: 'Arvo', Georgia, "Times New Roman", Times, serif;
font-style: normal;
font-weight: 400;
color: #333;
margin-top: 0;
}
h1 {
margin-bottom: 10px;
margin-bottom: 0.625rem;
font-size: 48px;
font-size: 3rem;
line-height: 1.25;
}
h2 {
margin-bottom: 8px;
margin-bottom: .5rem;
font-size: 36px;
font-size: 2.25rem;
line-height: 1.1666;
}
h3 {
margin-bottom: 6px;
margin-bottom: 0.375rem;
font-size: 28px;
font-size: 1.75rem;
line-height: 1.2857;
}
h4 {
margin-bottom: 5px;
margin-bottom: 0.3125rem;
font-size: 24px;
font-size: 1.5rem;
line-height: 1.25;
}
h5 {
margin-bottom: 5px;
margin-bottom: 0.3125rem;
font-size: 16px;
font-size: 1rem;
line-height: 1.25;
}
h6 {
margin-bottom: 5px;
margin-bottom: 0.3125rem;
font-size: 14px;
font-size: .875rem;
line-height: 1.2142;
}
hr {
background-color: #ccc;
border: 0;
height: 1px;
margin: 24px;
margin-bottom: 1.5rem;
}
/* ==========================================================================
Text elements
========================================================================== */
p {
margin: 0 0 1.5rem 0;
font-size: 16px;
font-size: 1rem; /* 16px / 16 */
line-height: 1.5;
}
ul, ol {
margin: 0 0 24px 0;
margin: 0 0 1.5rem 0;
font-size: 16px;
font-size: 1rem; /* 16px / 16 */
line-height: 1.5;
}
ul {
list-style: disc outside;
}
ol {
list-style: decimal outside;
}
ul ul,
ol ol,
ul ol,
ol ul {
margin-bottom: 0;
}
li {
margin: 0 0 0 28px;
margin: 0 0 0 1.75rem;
}
dl {
margin: 0 24px;
margin: 0 1.5rem;
}
dt {
font-family: 'PT Sans', Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: 700;
}
dd {
line-height: 1.5;
margin-bottom: 24px;
margin-bottom: 1.5rem;
}
b, strong {
font-family: 'PT Sans', Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: 700;
}
em {
font-family: 'PT Sans', Helvetica, Arial, sans-serif;
font-style: italic;
font-weight: 400;
}
cite {
font-family: 'PT Sans', Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: 400;
border: none;
}
big {
font-size: 22px;
font-size: 1.375rem;
}
.mceContentBody blockquote {
font-family: 'PT Sans', Helvetica, Arial, sans-serif;
font-style: italic;
font-weight: 400;
font-size: 24px;
font-size: 1.5rem; /* 24px / 16px */
border-left: 5px solid #333;
margin: 0 0 18px 20px;
padding: 0 0 0 16px;
padding: 0 0 0 1rem;
}
.mceContentBody blockquote.pull-right {
border-left: 0 none;
border-right: 5px solid #333;
margin: 0 20px 18px 0;
margin: 0 1.25rem 1.125rem 0;
padding: 0 16px 0 0;
padding: 0 1rem 0 0;
float: none;
}
.mceContentBody blockquote.pull-right p,
.mceContentBody blockquote.pull-right small {
text-align: right;
}
pre {
border-radius: 3px;
color: #555;
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
font-size: 12px;
font-size: 0.75rem; /* 12px / 16px */
padding: 0 3px 2px;
overflow: auto;
}
code,
kbd,
samp,
var {
background-color: #f7f7f9;
border: 1px solid #e1e1e8;
padding: 2px 4px;
}
abbr,
acronym,
dfn {
border-bottom: 1px dotted #666;
cursor: help;
}
address {
font-family: 'PT Sans', Helvetica, Arial, sans-serif;
font-style: italic;
font-weight: 400;
display: block;
}
del {
color: #333;
}
ins {
background: none repeat scroll 0 0 #FFF9C0;
text-decoration: none;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
inzt[type="text"],
textarea {
font-family: inherit;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-size: 16px;
font-size: 1rem;
line-height: 1.8;
padding: 8px;
padding: 0.5rem;
width: 100%;
}
/* ==========================================================================
Links
========================================================================== */
a,
a em,
a strong {
color: #333;
outline: none;
}
a:visited {
color: #666;
}
a:focus {
outline: thin dotted;
color: #2997ab;
}
a:hover, a:active {
outline: 0;
color: #2997ab;
}
/* ==========================================================================
Alignment
========================================================================== */
.alignleft {
display: inline;
float: left;
margin: 0 20px 16px 0;
margin: 0 1.25rem 1rem 0;
}
.alignright {
display: inline;
float: right;
margin: 0 0 16px 20px;
margin: 0 0 1rem 1.25rem;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 16px;
margin-bottom: 1rem;
}
/* ==========================================================================
Tables
========================================================================== */
table {
border-bottom: 1px solid #ccc;
font-size: 14px;
font-size: 0.875rem;
line-height: 2;
margin: 0 0 24px;
margin: 0 0 1.5rem;
width: 100%;
}
tr th {
color: #636363;
font-family: 'PT Sans', Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: 700;
line-height: 2;
text-align: left;
}
td {
border-top: 1px solid #ccc !important;
padding: 6px 10px 6px 0;
}
/* ==========================================================================
Images
========================================================================== */
img {
border: 0;
max-width: 100%;
height: auto;
}
img.size-full {
width: auto/9; /* Prevent stretching of full-size images in IE8 */
}
img[class*="wp-image-"] {
height: auto;
max-width: 100%;
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.mceWPnextpage {
border-radius: 0;
box-shadow: none;
}
img.wp-smiley {
border: 0;
border-radius: 0;
box-shadow: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
}
.wp-caption {
font-family: 'PT Sans', Helvetica, Arial, sans-serif;
font-style: italic;
font-weight: 400;
font-size: 14px;
font-size: 0.875rem; /* 14px / 16px */
line-height: 1.5;
color: #777;
text-align: center;
}
.wp-caption-dt {
margin: 0;
}
.wp-caption .wp-caption-text,
.wp-caption-dd {
font-family: 'PT Sans', Helvetica, Arial, sans-serif;
font-style: italic;
font-weight: 400;
font-size: 14px;
font-size: 0.875rem; /* 14px / 16px */
line-height: 1.5;
color: #777;
text-align: center;
} |
external/mediaelement/build/a11y/a11y.css | exponentcms/exponent-cms | .mejs-video-description-button > button,
.mejs__video-description-button > button,
.mejs-audio-description-button > button,
.mejs__audio-description-button > button {
background-repeat: no-repeat;
background-size: contain;
opacity: 0.7;
}
.mejs-video-description-button.video-description-on > button,
.mejs__video-description-button.video-description-on > button,
.mejs-audio-description-button.audio-description-on > button,
.mejs__audio-description-button.audio-description-on > button {
opacity: 1;
}
.mejs-video-description-button > button,
.mejs__video-description-button > button {
background-image: url('video-description-icon.svg');
}
.mejs-audio-description-button > button,
.mejs__audio-description-button > button {
background-image: url('audio-description-icon.svg');
}
.mejs-volume-button.hidden,
.mejs__volume-button.hidden {
display: none;
}
.mejs-audio-description-player,
.mejs__audio-description-player {
display: none;
}
|
release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/share/doc/arm-arm-none-eabi/html/as.html/Nolist.html | hajuuk/asuswrt | <html lang="en">
<head>
<title>Nolist - Using as</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Using as">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Pseudo-Ops.html#Pseudo-Ops" title="Pseudo Ops">
<link rel="prev" href="Noaltmacro.html#Noaltmacro" title="Noaltmacro">
<link rel="next" href="Octa.html#Octa" title="Octa">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
This file documents the GNU Assembler "as".
Copyright (C) 1991-2013 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 no Invariant Sections, with no Front-Cover Texts, and with no
Back-Cover Texts. A copy of the license is included in the
section entitled ``GNU Free Documentation License''.
-->
<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="Nolist"></a>
<p>
Next: <a rel="next" accesskey="n" href="Octa.html#Octa">Octa</a>,
Previous: <a rel="previous" accesskey="p" href="Noaltmacro.html#Noaltmacro">Noaltmacro</a>,
Up: <a rel="up" accesskey="u" href="Pseudo-Ops.html#Pseudo-Ops">Pseudo Ops</a>
<hr>
</div>
<h3 class="section">7.84 <code>.nolist</code></h3>
<p><a name="index-g_t_0040code_007bnolist_007d-directive-411"></a><a name="index-listing-control_002c-turning-off-412"></a>Control (in conjunction with the <code>.list</code> directive) whether or
not assembly listings are generated. These two directives maintain an
internal counter (which is zero initially). <code>.list</code> increments the
counter, and <code>.nolist</code> decrements it. Assembly listings are
generated whenever the counter is greater than zero.
</body></html>
|
release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/share/doc/arm-arm-none-eabi/html/as.html/ARC-Directives.html | hajuuk/asuswrt | <html lang="en">
<head>
<title>ARC Directives - Using as</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Using as">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="ARC_002dDependent.html#ARC_002dDependent" title="ARC-Dependent">
<link rel="prev" href="ARC-Floating-Point.html#ARC-Floating-Point" title="ARC Floating Point">
<link rel="next" href="ARC-Opcodes.html#ARC-Opcodes" title="ARC Opcodes">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
This file documents the GNU Assembler "as".
Copyright (C) 1991-2013 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 no Invariant Sections, with no Front-Cover Texts, and with no
Back-Cover Texts. A copy of the license is included in the
section entitled ``GNU Free Documentation License''.
-->
<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="ARC-Directives"></a>
<p>
Next: <a rel="next" accesskey="n" href="ARC-Opcodes.html#ARC-Opcodes">ARC Opcodes</a>,
Previous: <a rel="previous" accesskey="p" href="ARC-Floating-Point.html#ARC-Floating-Point">ARC Floating Point</a>,
Up: <a rel="up" accesskey="u" href="ARC_002dDependent.html#ARC_002dDependent">ARC-Dependent</a>
<hr>
</div>
<h4 class="subsection">9.3.4 ARC Machine Directives</h4>
<p><a name="index-machine-directives_002c-ARC-596"></a><a name="index-ARC-machine-directives-597"></a>The ARC version of <code>as</code> supports the following additional
machine directives:
<a name="index-g_t_0040code_007b2byte_007d-directive_002c-ARC-598"></a>
<dl><dt><code>.2byte </code><var>expressions</var><dd>*TODO*
<p><a name="index-g_t_0040code_007b3byte_007d-directive_002c-ARC-599"></a><br><dt><code>.3byte </code><var>expressions</var><dd>*TODO*
<p><a name="index-g_t_0040code_007b4byte_007d-directive_002c-ARC-600"></a><br><dt><code>.4byte </code><var>expressions</var><dd>*TODO*
<p><a name="index-g_t_0040code_007bextAuxRegister_007d-directive_002c-ARC-601"></a><br><dt><code>.extAuxRegister </code><var>name</var><code>,</code><var>address</var><code>,</code><var>mode</var><dd>The ARCtangent A4 has extensible auxiliary register space. The
auxiliary registers can be defined in the assembler source code by
using this directive. The first parameter is the <var>name</var> of the
new auxiallry register. The second parameter is the <var>address</var> of
the register in the auxiliary register memory map for the variant of
the ARC. The third parameter specifies the <var>mode</var> in which the
register can be operated is and it can be one of:
<dl>
<dt><code>r (readonly)</code><br><dt><code>w (write only)</code><br><dt><code>r|w (read or write)</code><dd></dl>
<p>For example:
<pre class="smallexample"> .extAuxRegister mulhi,0x12,w
</pre>
<p>This specifies an extension auxiliary register called <em>mulhi</em>
which is at address 0x12 in the memory space and which is only
writable.
<p><a name="index-g_t_0040code_007bextCondCode_007d-directive_002c-ARC-602"></a><br><dt><code>.extCondCode </code><var>suffix</var><code>,</code><var>value</var><dd>The condition codes on the ARCtangent A4 are extensible and can be
specified by means of this assembler directive. They are specified
by the suffix and the value for the condition code. They can be used to
specify extra condition codes with any values. For example:
<pre class="smallexample"> .extCondCode is_busy,0x14
add.is_busy r1,r2,r3
bis_busy _main
</pre>
<p><a name="index-g_t_0040code_007bextCoreRegister_007d-directive_002c-ARC-603"></a><br><dt><code>.extCoreRegister </code><var>name</var><code>,</code><var>regnum</var><code>,</code><var>mode</var><code>,</code><var>shortcut</var><dd>Specifies an extension core register <var>name</var> for the application.
This allows a register <var>name</var> with a valid <var>regnum</var> between 0
and 60, with the following as valid values for <var>mode</var>
<dl>
<dt>‘<samp><em>r</em><span class="samp"> (readonly)</span></samp>’<br><dt>‘<samp><em>w</em><span class="samp"> (write only)</span></samp>’<br><dt>‘<samp><em>r|w</em><span class="samp"> (read or write)</span></samp>’<dd></dl>
<p>The other parameter gives a description of the register having a
<var>shortcut</var> in the pipeline. The valid values are:
<dl>
<dt><code>can_shortcut</code><br><dt><code>cannot_shortcut</code><dd></dl>
<p>For example:
<pre class="smallexample"> .extCoreRegister mlo,57,r,can_shortcut
</pre>
<p>This defines an extension core register mlo with the value 57 which
can shortcut the pipeline.
<p><a name="index-g_t_0040code_007bextInstruction_007d-directive_002c-ARC-604"></a><br><dt><code>.extInstruction </code><var>name</var><code>,</code><var>opcode</var><code>,</code><var>subopcode</var><code>,</code><var>suffixclass</var><code>,</code><var>syntaxclass</var><dd>The ARCtangent A4 allows the user to specify extension instructions.
The extension instructions are not macros. The assembler creates
encodings for use of these instructions according to the specification
by the user. The parameters are:
<ul>
<li><var>name</var>
Name of the extension instruction
<li><var>opcode</var>
Opcode to be used. (Bits 27:31 in the encoding). Valid values
0x10-0x1f or 0x03
<li><var>subopcode</var>
Subopcode to be used. Valid values are from 0x09-0x3f. However the
correct value also depends on <var>syntaxclass</var>
<li><var>suffixclass</var>
Determines the kinds of suffixes to be allowed. Valid values are
<code>SUFFIX_NONE</code>, <code>SUFFIX_COND</code>,
<code>SUFFIX_FLAG</code> which indicates the absence or presence of
conditional suffixes and flag setting by the extension instruction.
It is also possible to specify that an instruction sets the flags and
is conditional by using <code>SUFFIX_CODE</code> | <code>SUFFIX_FLAG</code>.
<li><var>syntaxclass</var>
Determines the syntax class for the instruction. It can have the
following values:
<dl>
<dt><code>SYNTAX_2OP:</code><dd>2 Operand Instruction
<br><dt><code>SYNTAX_3OP:</code><dd>3 Operand Instruction
</dl>
<p>In addition there could be modifiers for the syntax class as described
below:
<ul>
Syntax Class Modifiers are:
<li><code>OP1_MUST_BE_IMM</code>:
Modifies syntax class SYNTAX_3OP, specifying that the first operand
of a three-operand instruction must be an immediate (i.e., the result
is discarded). OP1_MUST_BE_IMM is used by bitwise ORing it with
SYNTAX_3OP as given in the example below. This could usually be used
to set the flags using specific instructions and not retain results.
<li><code>OP1_IMM_IMPLIED</code>:
Modifies syntax class SYNTAX_20P, it specifies that there is an
implied immediate destination operand which does not appear in the
syntax. For example, if the source code contains an instruction like:
<pre class="smallexample"> inst r1,r2
</pre>
<p>it really means that the first argument is an implied immediate (that
is, the result is discarded). This is the same as though the source
code were: inst 0,r1,r2. You use OP1_IMM_IMPLIED by bitwise ORing it
with SYNTAX_20P.
</ul>
</ul>
<p>For example, defining 64-bit multiplier with immediate operands:
<pre class="smallexample"> .extInstruction mp64,0x14,0x0,SUFFIX_COND | SUFFIX_FLAG ,
SYNTAX_3OP|OP1_MUST_BE_IMM
</pre>
<p>The above specifies an extension instruction called mp64 which has 3 operands,
sets the flags, can be used with a condition code, for which the
first operand is an immediate. (Equivalent to discarding the result
of the operation).
<pre class="smallexample"> .extInstruction mul64,0x14,0x00,SUFFIX_COND, SYNTAX_2OP|OP1_IMM_IMPLIED
</pre>
<p>This describes a 2 operand instruction with an implicit first
immediate operand. The result of this operation would be discarded.
<p><a name="index-g_t_0040code_007bhalf_007d-directive_002c-ARC-605"></a><br><dt><code>.half </code><var>expressions</var><dd>*TODO*
<p><a name="index-g_t_0040code_007blong_007d-directive_002c-ARC-606"></a><br><dt><code>.long </code><var>expressions</var><dd>*TODO*
<p><a name="index-g_t_0040code_007boption_007d-directive_002c-ARC-607"></a><br><dt><code>.option </code><var>arc|arc5|arc6|arc7|arc8</var><dd>The <code>.option</code> directive must be followed by the desired core
version. Again <code>arc</code> is an alias for
<code>arc6</code>.
<p>Note: the <code>.option</code> directive overrides the command line option
<code>-marc</code>; a warning is emitted when the version is not consistent
between the two - even for the implicit default core version
(arc6).
<p><a name="index-g_t_0040code_007bshort_007d-directive_002c-ARC-608"></a><br><dt><code>.short </code><var>expressions</var><dd>*TODO*
<p><a name="index-g_t_0040code_007bword_007d-directive_002c-ARC-609"></a><br><dt><code>.word </code><var>expressions</var><dd>*TODO*
</dl>
</body></html>
|
release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/share/doc/arm-arm-none-eabi/html/gdb/GNU-Free-Documentation-License.html | hajuuk/asuswrt | <html lang="en">
<head>
<title>GNU Free Documentation License - 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="prev" href="Copying.html#Copying" title="Copying">
<link rel="next" href="Concept-Index.html#Concept-Index" title="Concept Index">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
Copyright (C) 1988-2013 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="GNU-Free-Documentation-License"></a>
<p>
Next: <a rel="next" accesskey="n" href="Concept-Index.html#Concept-Index">Concept Index</a>,
Previous: <a rel="previous" accesskey="p" href="Copying.html#Copying">Copying</a>,
Up: <a rel="up" accesskey="u" href="index.html#Top">Top</a>
<hr>
</div>
<h2 class="appendix">Appendix M GNU Free Documentation License</h2>
<!-- The GNU Free Documentation License. -->
<div align="center">Version 1.3, 3 November 2008</div>
<!-- This file is intended to be included within another document, -->
<!-- hence no sectioning command or @node. -->
<pre class="display"> Copyright © 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
<a href="http://fsf.org/">http://fsf.org/</a>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
</pre>
<ol type=1 start=0>
<li>PREAMBLE
<p>The purpose of this License is to make a manual, textbook, or other
functional and useful document <dfn>free</dfn> in the sense of freedom: to
assure everyone the effective freedom to copy and redistribute it,
with or without modifying it, either commercially or noncommercially.
Secondarily, this License preserves for the author and publisher a way
to get credit for their work, while not being considered responsible
for modifications made by others.
<p>This License is a kind of “copyleft”, which means that derivative
works of the document must themselves be free in the same sense. It
complements the GNU General Public License, which is a copyleft
license designed for free software.
<p>We have designed this License in order to use it for manuals for free
software, because free software needs free documentation: a free
program should come with manuals providing the same freedoms that the
software does. But this License is not limited to software manuals;
it can be used for any textual work, regardless of subject matter or
whether it is published as a printed book. We recommend this License
principally for works whose purpose is instruction or reference.
<li>APPLICABILITY AND DEFINITIONS
<p>This License applies to any manual or other work, in any medium, that
contains a notice placed by the copyright holder saying it can be
distributed under the terms of this License. Such a notice grants a
world-wide, royalty-free license, unlimited in duration, to use that
work under the conditions stated herein. The “Document”, below,
refers to any such manual or work. Any member of the public is a
licensee, and is addressed as “you”. You accept the license if you
copy, modify or distribute the work in a way requiring permission
under copyright law.
<p>A “Modified Version” of the Document means any work containing the
Document or a portion of it, either copied verbatim, or with
modifications and/or translated into another language.
<p>A “Secondary Section” is a named appendix or a front-matter section
of the Document that deals exclusively with the relationship of the
publishers or authors of the Document to the Document's overall
subject (or to related matters) and contains nothing that could fall
directly within that overall subject. (Thus, if the Document is in
part a textbook of mathematics, a Secondary Section may not explain
any mathematics.) The relationship could be a matter of historical
connection with the subject or with related matters, or of legal,
commercial, philosophical, ethical or political position regarding
them.
<p>The “Invariant Sections” are certain Secondary Sections whose titles
are designated, as being those of Invariant Sections, in the notice
that says that the Document is released under this License. If a
section does not fit the above definition of Secondary then it is not
allowed to be designated as Invariant. The Document may contain zero
Invariant Sections. If the Document does not identify any Invariant
Sections then there are none.
<p>The “Cover Texts” are certain short passages of text that are listed,
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
the Document is released under this License. A Front-Cover Text may
be at most 5 words, and a Back-Cover Text may be at most 25 words.
<p>A “Transparent” copy of the Document means a machine-readable copy,
represented in a format whose specification is available to the
general public, that is suitable for revising the document
straightforwardly with generic text editors or (for images composed of
pixels) generic paint programs or (for drawings) some widely available
drawing editor, and that is suitable for input to text formatters or
for automatic translation to a variety of formats suitable for input
to text formatters. A copy made in an otherwise Transparent file
format whose markup, or absence of markup, has been arranged to thwart
or discourage subsequent modification by readers is not Transparent.
An image format is not Transparent if used for any substantial amount
of text. A copy that is not “Transparent” is called “Opaque”.
<p>Examples of suitable formats for Transparent copies include plain
<span class="sc">ascii</span> without markup, Texinfo input format, LaTeX input
format, <acronym>SGML</acronym> or <acronym>XML</acronym> using a publicly available
<acronym>DTD</acronym>, and standard-conforming simple <acronym>HTML</acronym>,
PostScript or <acronym>PDF</acronym> designed for human modification. Examples
of transparent image formats include <acronym>PNG</acronym>, <acronym>XCF</acronym> and
<acronym>JPG</acronym>. Opaque formats include proprietary formats that can be
read and edited only by proprietary word processors, <acronym>SGML</acronym> or
<acronym>XML</acronym> for which the <acronym>DTD</acronym> and/or processing tools are
not generally available, and the machine-generated <acronym>HTML</acronym>,
PostScript or <acronym>PDF</acronym> produced by some word processors for
output purposes only.
<p>The “Title Page” means, for a printed book, the title page itself,
plus such following pages as are needed to hold, legibly, the material
this License requires to appear in the title page. For works in
formats which do not have any title page as such, “Title Page” means
the text near the most prominent appearance of the work's title,
preceding the beginning of the body of the text.
<p>The “publisher” means any person or entity that distributes copies
of the Document to the public.
<p>A section “Entitled XYZ” means a named subunit of the Document whose
title either is precisely XYZ or contains XYZ in parentheses following
text that translates XYZ in another language. (Here XYZ stands for a
specific section name mentioned below, such as “Acknowledgements”,
“Dedications”, “Endorsements”, or “History”.) To “Preserve the Title”
of such a section when you modify the Document means that it remains a
section “Entitled XYZ” according to this definition.
<p>The Document may include Warranty Disclaimers next to the notice which
states that this License applies to the Document. These Warranty
Disclaimers are considered to be included by reference in this
License, but only as regards disclaiming warranties: any other
implication that these Warranty Disclaimers may have is void and has
no effect on the meaning of this License.
<li>VERBATIM COPYING
<p>You may copy and distribute the Document in any medium, either
commercially or noncommercially, provided that this License, the
copyright notices, and the license notice saying this License applies
to the Document are reproduced in all copies, and that you add no other
conditions whatsoever to those of this License. You may not use
technical measures to obstruct or control the reading or further
copying of the copies you make or distribute. However, you may accept
compensation in exchange for copies. If you distribute a large enough
number of copies you must also follow the conditions in section 3.
<p>You may also lend copies, under the same conditions stated above, and
you may publicly display copies.
<li>COPYING IN QUANTITY
<p>If you publish printed copies (or copies in media that commonly have
printed covers) of the Document, numbering more than 100, and the
Document's license notice requires Cover Texts, you must enclose the
copies in covers that carry, clearly and legibly, all these Cover
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
the back cover. Both covers must also clearly and legibly identify
you as the publisher of these copies. The front cover must present
the full title with all words of the title equally prominent and
visible. You may add other material on the covers in addition.
Copying with changes limited to the covers, as long as they preserve
the title of the Document and satisfy these conditions, can be treated
as verbatim copying in other respects.
<p>If the required texts for either cover are too voluminous to fit
legibly, you should put the first ones listed (as many as fit
reasonably) on the actual cover, and continue the rest onto adjacent
pages.
<p>If you publish or distribute Opaque copies of the Document numbering
more than 100, you must either include a machine-readable Transparent
copy along with each Opaque copy, or state in or with each Opaque copy
a computer-network location from which the general network-using
public has access to download using public-standard network protocols
a complete Transparent copy of the Document, free of added material.
If you use the latter option, you must take reasonably prudent steps,
when you begin distribution of Opaque copies in quantity, to ensure
that this Transparent copy will remain thus accessible at the stated
location until at least one year after the last time you distribute an
Opaque copy (directly or through your agents or retailers) of that
edition to the public.
<p>It is requested, but not required, that you contact the authors of the
Document well before redistributing any large number of copies, to give
them a chance to provide you with an updated version of the Document.
<li>MODIFICATIONS
<p>You may copy and distribute a Modified Version of the Document under
the conditions of sections 2 and 3 above, provided that you release
the Modified Version under precisely this License, with the Modified
Version filling the role of the Document, thus licensing distribution
and modification of the Modified Version to whoever possesses a copy
of it. In addition, you must do these things in the Modified Version:
<ol type=A start=1>
<li>Use in the Title Page (and on the covers, if any) a title distinct
from that of the Document, and from those of previous versions
(which should, if there were any, be listed in the History section
of the Document). You may use the same title as a previous version
if the original publisher of that version gives permission.
<li>List on the Title Page, as authors, one or more persons or entities
responsible for authorship of the modifications in the Modified
Version, together with at least five of the principal authors of the
Document (all of its principal authors, if it has fewer than five),
unless they release you from this requirement.
<li>State on the Title page the name of the publisher of the
Modified Version, as the publisher.
<li>Preserve all the copyright notices of the Document.
<li>Add an appropriate copyright notice for your modifications
adjacent to the other copyright notices.
<li>Include, immediately after the copyright notices, a license notice
giving the public permission to use the Modified Version under the
terms of this License, in the form shown in the Addendum below.
<li>Preserve in that license notice the full lists of Invariant Sections
and required Cover Texts given in the Document's license notice.
<li>Include an unaltered copy of this License.
<li>Preserve the section Entitled “History”, Preserve its Title, and add
to it an item stating at least the title, year, new authors, and
publisher of the Modified Version as given on the Title Page. If
there is no section Entitled “History” in the Document, create one
stating the title, year, authors, and publisher of the Document as
given on its Title Page, then add an item describing the Modified
Version as stated in the previous sentence.
<li>Preserve the network location, if any, given in the Document for
public access to a Transparent copy of the Document, and likewise
the network locations given in the Document for previous versions
it was based on. These may be placed in the “History” section.
You may omit a network location for a work that was published at
least four years before the Document itself, or if the original
publisher of the version it refers to gives permission.
<li>For any section Entitled “Acknowledgements” or “Dedications”, Preserve
the Title of the section, and preserve in the section all the
substance and tone of each of the contributor acknowledgements and/or
dedications given therein.
<li>Preserve all the Invariant Sections of the Document,
unaltered in their text and in their titles. Section numbers
or the equivalent are not considered part of the section titles.
<li>Delete any section Entitled “Endorsements”. Such a section
may not be included in the Modified Version.
<li>Do not retitle any existing section to be Entitled “Endorsements” or
to conflict in title with any Invariant Section.
<li>Preserve any Warranty Disclaimers.
</ol>
<p>If the Modified Version includes new front-matter sections or
appendices that qualify as Secondary Sections and contain no material
copied from the Document, you may at your option designate some or all
of these sections as invariant. To do this, add their titles to the
list of Invariant Sections in the Modified Version's license notice.
These titles must be distinct from any other section titles.
<p>You may add a section Entitled “Endorsements”, provided it contains
nothing but endorsements of your Modified Version by various
parties—for example, statements of peer review or that the text has
been approved by an organization as the authoritative definition of a
standard.
<p>You may add a passage of up to five words as a Front-Cover Text, and a
passage of up to 25 words as a Back-Cover Text, to the end of the list
of Cover Texts in the Modified Version. Only one passage of
Front-Cover Text and one of Back-Cover Text may be added by (or
through arrangements made by) any one entity. If the Document already
includes a cover text for the same cover, previously added by you or
by arrangement made by the same entity you are acting on behalf of,
you may not add another; but you may replace the old one, on explicit
permission from the previous publisher that added the old one.
<p>The author(s) and publisher(s) of the Document do not by this License
give permission to use their names for publicity for or to assert or
imply endorsement of any Modified Version.
<li>COMBINING DOCUMENTS
<p>You may combine the Document with other documents released under this
License, under the terms defined in section 4 above for modified
versions, provided that you include in the combination all of the
Invariant Sections of all of the original documents, unmodified, and
list them all as Invariant Sections of your combined work in its
license notice, and that you preserve all their Warranty Disclaimers.
<p>The combined work need only contain one copy of this License, and
multiple identical Invariant Sections may be replaced with a single
copy. If there are multiple Invariant Sections with the same name but
different contents, make the title of each such section unique by
adding at the end of it, in parentheses, the name of the original
author or publisher of that section if known, or else a unique number.
Make the same adjustment to the section titles in the list of
Invariant Sections in the license notice of the combined work.
<p>In the combination, you must combine any sections Entitled “History”
in the various original documents, forming one section Entitled
“History”; likewise combine any sections Entitled “Acknowledgements”,
and any sections Entitled “Dedications”. You must delete all
sections Entitled “Endorsements.”
<li>COLLECTIONS OF DOCUMENTS
<p>You may make a collection consisting of the Document and other documents
released under this License, and replace the individual copies of this
License in the various documents with a single copy that is included in
the collection, provided that you follow the rules of this License for
verbatim copying of each of the documents in all other respects.
<p>You may extract a single document from such a collection, and distribute
it individually under this License, provided you insert a copy of this
License into the extracted document, and follow this License in all
other respects regarding verbatim copying of that document.
<li>AGGREGATION WITH INDEPENDENT WORKS
<p>A compilation of the Document or its derivatives with other separate
and independent documents or works, in or on a volume of a storage or
distribution medium, is called an “aggregate” if the copyright
resulting from the compilation is not used to limit the legal rights
of the compilation's users beyond what the individual works permit.
When the Document is included in an aggregate, this License does not
apply to the other works in the aggregate which are not themselves
derivative works of the Document.
<p>If the Cover Text requirement of section 3 is applicable to these
copies of the Document, then if the Document is less than one half of
the entire aggregate, the Document's Cover Texts may be placed on
covers that bracket the Document within the aggregate, or the
electronic equivalent of covers if the Document is in electronic form.
Otherwise they must appear on printed covers that bracket the whole
aggregate.
<li>TRANSLATION
<p>Translation is considered a kind of modification, so you may
distribute translations of the Document under the terms of section 4.
Replacing Invariant Sections with translations requires special
permission from their copyright holders, but you may include
translations of some or all Invariant Sections in addition to the
original versions of these Invariant Sections. You may include a
translation of this License, and all the license notices in the
Document, and any Warranty Disclaimers, provided that you also include
the original English version of this License and the original versions
of those notices and disclaimers. In case of a disagreement between
the translation and the original version of this License or a notice
or disclaimer, the original version will prevail.
<p>If a section in the Document is Entitled “Acknowledgements”,
“Dedications”, or “History”, the requirement (section 4) to Preserve
its Title (section 1) will typically require changing the actual
title.
<li>TERMINATION
<p>You may not copy, modify, sublicense, or distribute the Document
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense, or distribute it is void, and
will automatically terminate your rights under this License.
<p>However, if you cease all violation of this License, then your license
from a particular copyright holder is reinstated (a) provisionally,
unless and until the copyright holder explicitly and finally
terminates your license, and (b) permanently, if the copyright holder
fails to notify you of the violation by some reasonable means prior to
60 days after the cessation.
<p>Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
<p>Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, receipt of a copy of some or all of the same material does
not give you any rights to use it.
<li>FUTURE REVISIONS OF THIS LICENSE
<p>The Free Software Foundation may publish new, revised versions
of the GNU Free Documentation License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns. See
<a href="http://www.gnu.org/copyleft/">http://www.gnu.org/copyleft/</a>.
<p>Each version of the License is given a distinguishing version number.
If the Document specifies that a particular numbered version of this
License “or any later version” applies to it, you have the option of
following the terms and conditions either of that specified version or
of any later version that has been published (not as a draft) by the
Free Software Foundation. If the Document does not specify a version
number of this License, you may choose any version ever published (not
as a draft) by the Free Software Foundation. If the Document
specifies that a proxy can decide which future versions of this
License can be used, that proxy's public statement of acceptance of a
version permanently authorizes you to choose that version for the
Document.
<li>RELICENSING
<p>“Massive Multiauthor Collaboration Site” (or “MMC Site”) means any
World Wide Web server that publishes copyrightable works and also
provides prominent facilities for anybody to edit those works. A
public wiki that anybody can edit is an example of such a server. A
“Massive Multiauthor Collaboration” (or “MMC”) contained in the
site means any set of copyrightable works thus published on the MMC
site.
<p>“CC-BY-SA” means the Creative Commons Attribution-Share Alike 3.0
license published by Creative Commons Corporation, a not-for-profit
corporation with a principal place of business in San Francisco,
California, as well as future copyleft versions of that license
published by that same organization.
<p>“Incorporate” means to publish or republish a Document, in whole or
in part, as part of another Document.
<p>An MMC is “eligible for relicensing” if it is licensed under this
License, and if all works that were first published under this License
somewhere other than this MMC, and subsequently incorporated in whole
or in part into the MMC, (1) had no cover texts or invariant sections,
and (2) were thus incorporated prior to November 1, 2008.
<p>The operator of an MMC Site may republish an MMC contained in the site
under CC-BY-SA on the same site at any time before August 1, 2009,
provided the MMC is eligible for relicensing.
</ol>
<h3 class="heading">ADDENDUM: How to use this License for your documents</h3>
<p>To use this License in a document you have written, include a copy of
the License in the document and put the following copyright and
license notices just after the title page:
<pre class="smallexample"> Copyright (C) <var>year</var> <var>your name</var>.
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 no Invariant Sections, no Front-Cover Texts, and no Back-Cover
Texts. A copy of the license is included in the section entitled ``GNU
Free Documentation License''.
</pre>
<p>If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
replace the “with<small class="dots">...</small>Texts.” line with this:
<pre class="smallexample"> with the Invariant Sections being <var>list their titles</var>, with
the Front-Cover Texts being <var>list</var>, and with the Back-Cover Texts
being <var>list</var>.
</pre>
<p>If you have Invariant Sections without Cover Texts, or some other
combination of the three, merge those two alternatives to suit the
situation.
<p>If your document contains nontrivial examples of program code, we
recommend releasing these examples in parallel under your choice of
free software license, such as the GNU General Public License,
to permit their use in free software.
<!-- Local Variables: -->
<!-- ispell-local-pdict: "ispell-dict" -->
<!-- End: -->
</body></html>
|
sites/all/themes/tb_mollise/css/ie7.css | HanGee/Portal_drupal | /**
* IE 7 Compatibility Tweaks
*/
/* forms.css */
input.form-submit,
a.button {
}
#comment-form textarea {
}
#comment-form .form-textarea-wrapper {
}
/* navigation */
#slideshow-wrapper {
position: relative;
z-index: 1;
}
#header-wrapper {
position: relative;
z-index: 5;
}
div.resizable-textarea textarea {
margin-top: 0;
padding: 5px 3px 5px 4px;
width: 98%;
} |
lib/poi-3.17/docs/apidocs/org/apache/poi/ss/usermodel/charts/class-use/ChartAxis.html | TonyClark/ESL | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<TITLE>
Uses of Interface org.apache.poi.ss.usermodel.charts.ChartAxis (POI API Documentation)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Interface org.apache.poi.ss.usermodel.charts.ChartAxis (POI API Documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/poi/ss/usermodel/charts//class-useChartAxis.html" target="_top"><B>FRAMES</B></A>
<A HREF="ChartAxis.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>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Interface<br>org.apache.poi.ss.usermodel.charts.ChartAxis</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.poi.ss.usermodel"><B>org.apache.poi.ss.usermodel</B></A></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.poi.ss.usermodel.charts"><B>org.apache.poi.ss.usermodel.charts</B></A></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.poi.xssf.usermodel"><B>org.apache.poi.xssf.usermodel</B></A></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.poi.xssf.usermodel.charts"><B>org.apache.poi.xssf.usermodel.charts</B></A></TD>
<TD> </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.poi.ss.usermodel"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A> in <A HREF="../../../../../../../org/apache/poi/ss/usermodel/package-summary.html">org.apache.poi.ss.usermodel</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/poi/ss/usermodel/package-summary.html">org.apache.poi.ss.usermodel</A> that return types with arguments of type <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.util.List<? extends <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A>></CODE></FONT></TD>
<TD><CODE><B>Chart.</B><B><A HREF="../../../../../../../org/apache/poi/ss/usermodel/Chart.html#getAxis()">getAxis</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/poi/ss/usermodel/package-summary.html">org.apache.poi.ss.usermodel</A> with parameters of type <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A></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>Chart.</B><B><A HREF="../../../../../../../org/apache/poi/ss/usermodel/Chart.html#plot(org.apache.poi.ss.usermodel.charts.ChartData, org.apache.poi.ss.usermodel.charts.ChartAxis...)">plot</A></B>(<A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartData.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartData</A> data,
<A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A>... axis)</CODE>
<BR>
Plots specified data on the chart.</TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.poi.ss.usermodel.charts"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A> in <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/package-summary.html">org.apache.poi.ss.usermodel.charts</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Subinterfaces of <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A> in <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/package-summary.html">org.apache.poi.ss.usermodel.charts</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> interface</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ValueAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ValueAxis</A></B></CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/package-summary.html">org.apache.poi.ss.usermodel.charts</A> that return <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A></CODE></FONT></TD>
<TD><CODE><B>ChartAxisFactory.</B><B><A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxisFactory.html#createCategoryAxis(org.apache.poi.ss.usermodel.charts.AxisPosition)">createCategoryAxis</A></B>(<A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/AxisPosition.html" title="enum in org.apache.poi.ss.usermodel.charts">AxisPosition</A> pos)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A></CODE></FONT></TD>
<TD><CODE><B>ChartAxisFactory.</B><B><A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxisFactory.html#createDateAxis(org.apache.poi.ss.usermodel.charts.AxisPosition)">createDateAxis</A></B>(<A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/AxisPosition.html" title="enum in org.apache.poi.ss.usermodel.charts">AxisPosition</A> pos)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/package-summary.html">org.apache.poi.ss.usermodel.charts</A> with parameters of type <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A></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>ChartAxis.</B><B><A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html#crossAxis(org.apache.poi.ss.usermodel.charts.ChartAxis)">crossAxis</A></B>(<A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A> axis)</CODE>
<BR>
Declare this axis cross another axis.</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>ChartData.</B><B><A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartData.html#fillChart(org.apache.poi.ss.usermodel.Chart, org.apache.poi.ss.usermodel.charts.ChartAxis...)">fillChart</A></B>(<A HREF="../../../../../../../org/apache/poi/ss/usermodel/Chart.html" title="interface in org.apache.poi.ss.usermodel">Chart</A> chart,
<A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A>... axis)</CODE>
<BR>
Fills a charts with data specified by implementation.</TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.poi.xssf.usermodel"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A> in <A HREF="../../../../../../../org/apache/poi/xssf/usermodel/package-summary.html">org.apache.poi.xssf.usermodel</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/poi/xssf/usermodel/package-summary.html">org.apache.poi.xssf.usermodel</A> with parameters of type <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A></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>XSSFChart.</B><B><A HREF="../../../../../../../org/apache/poi/xssf/usermodel/XSSFChart.html#plot(org.apache.poi.ss.usermodel.charts.ChartData, org.apache.poi.ss.usermodel.charts.ChartAxis...)">plot</A></B>(<A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartData.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartData</A> data,
<A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A>... chartAxis)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.poi.xssf.usermodel.charts"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A> in <A HREF="../../../../../../../org/apache/poi/xssf/usermodel/charts/package-summary.html">org.apache.poi.xssf.usermodel.charts</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../../../org/apache/poi/xssf/usermodel/charts/package-summary.html">org.apache.poi.xssf.usermodel.charts</A> that implement <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../../org/apache/poi/xssf/usermodel/charts/XSSFCategoryAxis.html" title="class in org.apache.poi.xssf.usermodel.charts">XSSFCategoryAxis</A></B></CODE>
<BR>
Category axis type.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../../org/apache/poi/xssf/usermodel/charts/XSSFChartAxis.html" title="class in org.apache.poi.xssf.usermodel.charts">XSSFChartAxis</A></B></CODE>
<BR>
Base class for all axis types.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../../org/apache/poi/xssf/usermodel/charts/XSSFDateAxis.html" title="class in org.apache.poi.xssf.usermodel.charts">XSSFDateAxis</A></B></CODE>
<BR>
Date axis type.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../../org/apache/poi/xssf/usermodel/charts/XSSFValueAxis.html" title="class in org.apache.poi.xssf.usermodel.charts">XSSFValueAxis</A></B></CODE>
<BR>
Value axis type.</TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/poi/xssf/usermodel/charts/package-summary.html">org.apache.poi.xssf.usermodel.charts</A> with parameters of type <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A></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>XSSFValueAxis.</B><B><A HREF="../../../../../../../org/apache/poi/xssf/usermodel/charts/XSSFValueAxis.html#crossAxis(org.apache.poi.ss.usermodel.charts.ChartAxis)">crossAxis</A></B>(<A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A> axis)</CODE>
<BR>
</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>XSSFCategoryAxis.</B><B><A HREF="../../../../../../../org/apache/poi/xssf/usermodel/charts/XSSFCategoryAxis.html#crossAxis(org.apache.poi.ss.usermodel.charts.ChartAxis)">crossAxis</A></B>(<A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A> axis)</CODE>
<BR>
</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>XSSFDateAxis.</B><B><A HREF="../../../../../../../org/apache/poi/xssf/usermodel/charts/XSSFDateAxis.html#crossAxis(org.apache.poi.ss.usermodel.charts.ChartAxis)">crossAxis</A></B>(<A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A> axis)</CODE>
<BR>
</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>XSSFScatterChartData.</B><B><A HREF="../../../../../../../org/apache/poi/xssf/usermodel/charts/XSSFScatterChartData.html#fillChart(org.apache.poi.ss.usermodel.Chart, org.apache.poi.ss.usermodel.charts.ChartAxis...)">fillChart</A></B>(<A HREF="../../../../../../../org/apache/poi/ss/usermodel/Chart.html" title="interface in org.apache.poi.ss.usermodel">Chart</A> chart,
<A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A>... axis)</CODE>
<BR>
</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>XSSFLineChartData.</B><B><A HREF="../../../../../../../org/apache/poi/xssf/usermodel/charts/XSSFLineChartData.html#fillChart(org.apache.poi.ss.usermodel.Chart, org.apache.poi.ss.usermodel.charts.ChartAxis...)">fillChart</A></B>(<A HREF="../../../../../../../org/apache/poi/ss/usermodel/Chart.html" title="interface in org.apache.poi.ss.usermodel">Chart</A> chart,
<A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts">ChartAxis</A>... axis)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/poi/ss/usermodel/charts/ChartAxis.html" title="interface in org.apache.poi.ss.usermodel.charts"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/poi/ss/usermodel/charts//class-useChartAxis.html" target="_top"><B>FRAMES</B></A>
<A HREF="ChartAxis.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>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2017 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
lib/mockito-1.9.5/javadoc/org/mockito/class-use/Matchers.html | robertsmieja/Gw2InfoViewer | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_35) on Sat Oct 06 21:59:22 CEST 2012 -->
<TITLE>
Uses of Class org.mockito.Matchers (Mockito 1.9.5 API)
</TITLE>
<META NAME="date" CONTENT="2012-10-06">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.mockito.Matchers (Mockito 1.9.5 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="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../org/mockito/Matchers.html" title="class in org.mockito"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</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>
<!-- Note there is a weird javadoc task bug if using the double quote char \" that causes an 'illegal package name' error -->
<!-- using the beautify plugin for jQuery from https://bitbucket.org/larscorneliussen/beautyofcode/ -->
<script type="text/javascript">
var shBaseURL = '../../../js/sh-2.1.382/';
</script>
<script type="text/javascript" src="../../../js/jquery-1.7.min.js"></script>
<script type="text/javascript" src="../../../js/jquery.beautyOfCode-min.js"></script>
<script type="text/javascript">
/* Apply beautification of code */
var usingOldIE = false;
if($.browser.msie && parseInt($.browser.version) < 9) usingOldIE = true;
if(!usingOldIE) {
$.beautyOfCode.init({
theme : 'Eclipse',
brushes: ['Java']
});
/* Add name & version to header */
$(function() {
$('td.NavBarCell1[colspan=2]').each(function(index, element) {
var jqueryTD = $(element);
jqueryTD.after(
$('<td><em><strong>Mockito 1.9.5 API</strong></em></td>').attr('class','NavBarCell1').attr('id','mockito-version-header')
);
jqueryTD.removeAttr('colspan');
})
})
}
</script>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?org/mockito//class-useMatchers.html" target="_top"><B>FRAMES</B></A>
<A HREF="Matchers.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>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.mockito.Matchers</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../org/mockito/Matchers.html" title="class in org.mockito">Matchers</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.mockito"><B>org.mockito</B></A></TD>
<TD>Mockito is a mock library for java - see Mockito class for for usage. </TD>
</TR>
</TABLE>
<P>
<A NAME="org.mockito"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../org/mockito/Matchers.html" title="class in org.mockito">Matchers</A> in <A HREF="../../../org/mockito/package-summary.html">org.mockito</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../org/mockito/Matchers.html" title="class in org.mockito">Matchers</A> in <A HREF="../../../org/mockito/package-summary.html">org.mockito</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/mockito/BDDMockito.html" title="class in org.mockito">BDDMockito</A></B></CODE>
<BR>
Behavior Driven Development style of writing tests uses <b>//given //when //then</b> comments as fundamental parts of your test methods.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/mockito/Mockito.html" title="class in org.mockito">Mockito</A></B></CODE>
<BR>
<p align="left"><img src="logo.jpg"/></TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../org/mockito/Matchers.html" title="class in org.mockito"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</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>
<!-- Note there is a weird javadoc task bug if using the double quote char \" that causes an 'illegal package name' error -->
<!-- using the beautify plugin for jQuery from https://bitbucket.org/larscorneliussen/beautyofcode/ -->
<script type="text/javascript">
var shBaseURL = '../../../js/sh-2.1.382/';
</script>
<script type="text/javascript" src="../../../js/jquery-1.7.min.js"></script>
<script type="text/javascript" src="../../../js/jquery.beautyOfCode-min.js"></script>
<script type="text/javascript">
/* Apply beautification of code */
var usingOldIE = false;
if($.browser.msie && parseInt($.browser.version) < 9) usingOldIE = true;
if(!usingOldIE) {
$.beautyOfCode.init({
theme : 'Eclipse',
brushes: ['Java']
});
/* Add name & version to header */
$(function() {
$('td.NavBarCell1[colspan=2]').each(function(index, element) {
var jqueryTD = $(element);
jqueryTD.after(
$('<td><em><strong>Mockito 1.9.5 API</strong></em></td>').attr('class','NavBarCell1').attr('id','mockito-version-header')
);
jqueryTD.removeAttr('colspan');
})
})
}
</script>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?org/mockito//class-useMatchers.html" target="_top"><B>FRAMES</B></A>
<A HREF="Matchers.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>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
bedrock/privacy/templates/privacy/notices/mozilla-vpn.html | pascalchevrel/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 https://mozilla.org/MPL/2.0/.
#}
{% extends "privacy/notices/base-notice-headings.html" %}
{% set body_id = "mozilla-vpn" %}
{% block article_header_logo %}{{ static('protocol/img/logos/mozilla/vpn/logo-word-hor-stack.svg') }}{% endblock %}
|
src/main/c/win32/WpdPack/docs/html/wpcap__tut5_8txt.html | mgodave/Jpcap | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>WinPcap: wpcap_tut5.txt File Reference</title>
<link href="style.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.1 -->
<div class="tabs">
<ul>
<li><a href="main.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li id="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
</ul></div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>Globals</span></a></li>
</ul></div>
<h1>wpcap_tut5.txt File Reference</h1><table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
</table>
<hr>
<p align="right"><img border="0" src="winpcap_small.gif" align="absbottom" width="91" height="27">
documentation. Copyright (c) 2002-2005 Politecnico di Torino. Copyright (c) 2005-2007
CACE Technologies. All rights reserved.</p>
|
LayoutTests/ietestcenter/Javascript/15.2.3.6-1.html | youfoh/webkit-efl | <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../fast/js/resources/js-test-pre.js"></script>
</head>
<body>
<p id="description"></p>
<div id="console"></div>
<script src="resources/ie-test-pre.js"></script>
<script src="TestCases/15.2.3.6-1.js"></script>
<script src="resources/ie-test-post.js"></script>
<script src="../../fast/js/resources/js-test-post.js"></script>
</body>
</html>
|
LayoutTests/sputnik/Conformance/12_Statement/12.10_The_with_Statement/S12.10_A1.7_T5.html | youfoh/webkit-efl | <html>
<head>
<meta charset='utf-8'>
<style>
.pass {
font-weight: bold;
color: green;
}
.fail {
font-weight: bold;
color: red;
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
function SputnikError(message)
{
this.message = message;
}
SputnikError.prototype.toString = function ()
{
return 'SputnikError: ' + this.message;
};
var sputnikException;
function testPrint(msg)
{
var span = document.createElement("span");
document.getElementById("console").appendChild(span); // insert it first so XHTML knows the namespace
span.innerHTML = msg + '<br />';
}
function escapeHTML(text)
{
return text.toString().replace(/&/g, "&").replace(/</g, "<");
}
function printTestPassed(msg)
{
testPrint('<span><span class="pass">PASS</span> ' + escapeHTML(msg) + '</span>');
}
function printTestFailed(msg)
{
testPrint('<span><span class="fail">FAIL</span> ' + escapeHTML(msg) + '</span>');
}
function testFailed(msg)
{
throw new SputnikError(msg);
}
var successfullyParsed = false;
</script>
</head>
<body>
<p>S12.10_A1.7_T5</p>
<div id='console'></div>
<script>
try {
/**
* @name: S12.10_A1.7_T5;
* @section: 12.10;
* @assertion: The with statement adds a computed object to the front of the
* scope chain of the current execution context;
* @description: Calling a function within "with" statement declared within the statement, leading to completion by exception;
*/
this.p1 = 1;
this.p2 = 2;
this.p3 = 3;
var result = "result";
var myObj = {p1: 'a',
p2: 'b',
p3: 'c',
value: 'myObj_value',
valueOf : function(){return 'obj_valueOf';},
parseInt : function(){return 'obj_parseInt';},
NaN : 'obj_NaN',
Infinity : 'obj_Infinity',
eval : function(){return 'obj_eval';},
parseFloat : function(){return 'obj_parseFloat';},
isNaN : function(){return 'obj_isNaN';},
isFinite : function(){return 'obj_isFinite';}
}
var del;
var st_p1 = "p1";
var st_p2 = "p2";
var st_p3 = "p3";
var st_parseInt = "parseInt";
var st_NaN = "NaN";
var st_Infinity = "Infinity";
var st_eval = "eval";
var st_parseFloat = "parseFloat";
var st_isNaN = "isNaN";
var st_isFinite = "isFinite";
try {
with(myObj){
var f = function(){
throw value;
st_p1 = p1;
st_p2 = p2;
st_p3 = p3;
st_parseInt = parseInt;
st_NaN = NaN;
st_Infinity = Infinity;
st_eval = eval;
st_parseFloat = parseFloat;
st_isNaN = isNaN;
st_isFinite = isFinite;
p1 = 'x1';
this.p2 = 'x2';
del = delete p3;
var p4 = 'x4';
p5 = 'x5';
var value = 'value';
}
f();
}
} catch(e){
result = e;
}
if(!(result === undefined)){
testFailed('#0: result === undefined. Actual: result ==='+ result );
}
if(!(p1 === 1)){
testFailed('#1: p1 === 1. Actual: p1 ==='+ p1 );
}
if(!(p2 === 2)){
testFailed('#2: p2 === 2. Actual: p2 ==='+ p2 );
}
if(!(p3 === 3)){
testFailed('#3: p3 === 3. Actual: p3 ==='+ p3 );
}
try {
p4;
testFailed('#4: p4 is not defined');
} catch(e) {
}
try {
p5;
testFailed('#5: p5 is not defined');
} catch(e) {
}
if(!(myObj.p1 === "a")){
testFailed('#6: myObj.p1 === "a". Actual: myObj.p1 ==='+ myObj.p1 );
}
if(!(myObj.p2 === "b")){
testFailed('#7: myObj.p2 === "b". Actual: myObj.p2 ==='+ myObj.p2 );
}
if(!(myObj.p3 === "c")){
testFailed('#8: myObj.p3 === "c". Actual: myObj.p3 ==='+ myObj.p3 );
}
if(!(myObj.p4 === undefined)){
testFailed('#9: myObj.p4 === undefined. Actual: myObj.p4 ==='+ myObj.p4 );
}
if(!(myObj.p5 === undefined)){
testFailed('#10: myObj.p5 === undefined. Actual: myObj.p5 ==='+ myObj.p5 );
}
if(!(st_parseInt === "parseInt")){
testFailed('#11: myObj.parseInt === "parseInt". Actual: myObj.parseInt ==='+ myObj.parseInt );
}
if(!(st_NaN === "NaN")){
testFailed('#12: st_NaN === "NaN". Actual: st_NaN ==='+ st_NaN );
}
if(!(st_Infinity === "Infinity")){
testFailed('#13: st_Infinity === "Infinity". Actual: st_Infinity ==='+ st_Infinity );
}
if(!(st_eval === "eval")){
testFailed('#14: st_eval === "eval". Actual: st_eval ==='+ st_eval );
}
if(!(st_parseFloat === "parseFloat")){
testFailed('#15: st_parseFloat === "parseFloat". Actual: st_parseFloat ==='+ st_parseFloat );
}
if(!(st_isNaN === "isNaN")){
testFailed('#16: st_isNaN === "isNaN". Actual: st_isNaN ==='+ st_isNaN );
}
if(!(st_isFinite === "isFinite")){
testFailed('#17: st_isFinite === "isFinite". Actual: st_isFinite ==='+ st_isFinite );
}
try{
value;
testFailed('#18: value is not defined');
}
catch(e){
}
if(!(myObj.value === "myObj_value")){
testFailed('#19: myObj.value === "myObj_value". Actual: myObj.value ==='+ myObj.value );
}
} catch (ex) {
sputnikException = ex;
}
var successfullyParsed = true;
</script>
<script>
if (!successfullyParsed)
printTestFailed('successfullyParsed is not set');
else if (sputnikException)
printTestFailed(sputnikException);
else
printTestPassed("");
testPrint('<br /><span class="pass">TEST COMPLETE</span>');
</script>
</body>
</html>
|
templates/shared/pricing/_storage-support.html | canonical-websites/www.ubuntu.com | <table>
<thead>
<tr>
<th> </th>
<th class="p-table__cell--highlight u-align--center">Storage Add-on</th>
</tr>
</thead>
<tbody>
<tr>
<td>Up to 32 TB usable</td>
<td class="p-table__cell--highlight u-align--center">$5,000/year</td>
</tr>
<tr>
<td>Up to 128 TB usable</td>
<td class="p-table__cell--highlight u-align--center">$15,000/year</td>
</tr>
<tr>
<td>Up to 512 TB usable</td>
<td class="p-table__cell--highlight u-align--center">$45,000/year</td>
</tr>
<tr>
<td>Up to 1,024 TB usable (1 PB)</td>
<td class="p-table__cell--highlight u-align--center">$75,000/year</td>
</tr>
<tr>
<td>Unlimited storage</td>
<td class="p-table__cell--highlight u-align--center">$250,000/year</td>
</tr>
<tr>
<td>Phone and web ticket support</td>
<td class="p-table__cell--highlight u-align--center">24 hours a day,<br />every day</td>
</tr>
<tr>
<td>Industry-leading cloud operations tooling (Ubuntu, MAAS, Juju)</td>
<td class="p-table__cell--highlight u-align--center">{{ image(url="https://assets.ubuntu.com/v1/f1a7515d-tick-darkaubergine.svg", alt="Yes", width="16", height="16", hi_def=True, loading="lazy",) | safe }}</td>
</tr>
<tr>
<td>Deploy, run, scale, upgrade</td>
<td class="p-table__cell--highlight u-align--center">{{ image(url="https://assets.ubuntu.com/v1/f1a7515d-tick-darkaubergine.svg", alt="Yes", width="16", height="16", hi_def=True, loading="lazy",) | safe }}</td>
</tr>
<tr>
<td>Landscape management</td>
<td class="p-table__cell--highlight u-align--center">{{ image(url="https://assets.ubuntu.com/v1/f1a7515d-tick-darkaubergine.svg", alt="Yes", width="16", height="16", hi_def=True, loading="lazy",) | safe }}</td>
</tr>
<tr>
<td>Livepatch</td>
<td class="p-table__cell--highlight u-align--center">{{ image(url="https://assets.ubuntu.com/v1/f1a7515d-tick-darkaubergine.svg", alt="Yes", width="16", height="16", hi_def=True, loading="lazy",) | safe }}</td>
</tr>
<tr>
<td>Knowledge Base</td>
<td class="p-table__cell--highlight u-align--center">{{ image(url="https://assets.ubuntu.com/v1/f1a7515d-tick-darkaubergine.svg", alt="Yes", width="16", height="16", hi_def=True, loading="lazy",) | safe }}</td>
</tr>
<tr>
<td>Production grade monitoring</td>
<td class="p-table__cell--highlight u-align--center">{{ image(url="https://assets.ubuntu.com/v1/f1a7515d-tick-darkaubergine.svg", alt="Yes", width="16", height="16", hi_def=True, loading="lazy",) | safe }}</td>
</tr>
</tbody>
</table>
|
docs/bindings/ocl_core_vector/vectors/Double16.t.html | liebharc/clFFT | <!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=struct.Double16.html">
</head>
<body>
<p>Redirecting to <a href="struct.Double16.html">struct.Double16.html</a>...</p>
<script>location.replace("struct.Double16.html" + location.search + location.hash);</script>
</body>
</html> |
externals/numeric_bindings/libs/numeric/bindings/doc/html/boost_numeric_bindings/reference/lapack/driver_routines/hpgvd.html | siconos/siconos | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>hpgvd</title>
<link rel="stylesheet" href="../../../../boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="../../../../index.html" title="Chapter 1. Boost.Numeric_Bindings">
<link rel="up" href="../driver_routines.html" title="Driver Routines">
<link rel="prev" href="hpgv.html" title="hpgv">
<link rel="next" href="hpgvx.html" title="hpgvx">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr><td valign="top"></td></tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="hpgv.html"><img src="../../../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../driver_routines.html"><img src="../../../../images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../images/home.png" alt="Home"></a><a accesskey="n" href="hpgvx.html"><img src="../../../../images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h5 class="title">
<a name="boost_numeric_bindings.reference.lapack.driver_routines.hpgvd"></a><a class="link" href="hpgvd.html" title="hpgvd">hpgvd</a>
</h5></div></div></div>
<a name="boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.prototype"></a><h6>
<a name="id824824"></a>
<a class="link" href="hpgvd.html#boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.prototype">Prototype</a>
</h6>
<p>
There is one prototype of <code class="computeroutput"><span class="identifier">hpgvd</span></code>
available, please see below.
</p>
<pre class="programlisting"><span class="identifier">hpgvd</span><span class="special">(</span> <span class="keyword">const</span> <span class="identifier">int_t</span> <span class="identifier">itype</span><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="identifier">jobz</span><span class="special">,</span> <span class="identifier">MatrixAP</span><span class="special">&</span> <span class="identifier">ap</span><span class="special">,</span>
<span class="identifier">MatrixBP</span><span class="special">&</span> <span class="identifier">bp</span><span class="special">,</span> <span class="identifier">VectorW</span><span class="special">&</span> <span class="identifier">w</span><span class="special">,</span> <span class="identifier">MatrixZ</span><span class="special">&</span> <span class="identifier">z</span> <span class="special">);</span>
</pre>
<p>
</p>
<a name="boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.description"></a><h6>
<a name="id825023"></a>
<a class="link" href="hpgvd.html#boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.description">Description</a>
</h6>
<p>
<code class="computeroutput"><span class="identifier">hpgvd</span></code> (short for $FRIENDLY_NAME)
provides a C++ interface to LAPACK routines SSPGVD, DSPGVD, CHPGVD, and
ZHPGVD. <code class="computeroutput"><span class="identifier">hpgvd</span></code> computes
all the eigenvalues and, optionally, the eigenvectors of a complex generalized
Hermitian-definite eigenproblem, of the form A*x<code class="literal">(lambda)*B*x,
A*Bx</code>(lambda)*x, or B*A*x=(lambda)*x. Here A and B are assumed
to be Hermitian, stored in packed format, and B is also positive definite.
If eigenvectors are desired, it uses a divide and conquer algorithm.
</p>
<p>
The divide and conquer algorithm makes very mild assumptions about floating
point arithmetic. It will work on machines with a guard digit in add/subtract,
or on those binary machines without guard digits which subtract like
the Cray X-MP, Cray Y-MP, Cray C-90, or Cray-2. It could conceivably
fail on hexadecimal or decimal machines without guard digits, but we
know of none.
</p>
<p>
The selection of the LAPACK routine is done during compile-time, and
is determined by the type of values contained in type <code class="computeroutput"><span class="identifier">MatrixAP</span></code>.
The type of values is obtained through the <code class="computeroutput"><span class="identifier">value_type</span></code>
meta-function <code class="computeroutput"><span class="keyword">typename</span> <span class="identifier">value_type</span><span class="special"><</span><span class="identifier">MatrixAP</span><span class="special">>::</span><span class="identifier">type</span></code>. The dispatching table below illustrates
to which specific routine the code path will be generated.
</p>
<div class="table">
<a name="boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.dispatching_of_hpgvd"></a><p class="title"><b>Table 1.113. Dispatching of hpgvd</b></p>
<div class="table-contents"><table class="table" summary="Dispatching of hpgvd">
<colgroup>
<col>
<col>
</colgroup>
<thead><tr>
<th>
<p>
Value type of MatrixAP
</p>
</th>
<th>
<p>
LAPACK routine
</p>
</th>
</tr></thead>
<tbody>
<tr>
<td>
<p>
<code class="computeroutput"><span class="keyword">float</span></code>
</p>
</td>
<td>
<p>
SSPGVD
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="keyword">double</span></code>
</p>
</td>
<td>
<p>
DSPGVD
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">complex</span><span class="special"><</span><span class="keyword">float</span><span class="special">></span></code>
</p>
</td>
<td>
<p>
CHPGVD
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">complex</span><span class="special"><</span><span class="keyword">double</span><span class="special">></span></code>
</p>
</td>
<td>
<p>
ZHPGVD
</p>
</td>
</tr>
</tbody>
</table></div>
</div>
<br class="table-break"><a name="boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.definition"></a><h6>
<a name="id825377"></a>
<a class="link" href="hpgvd.html#boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.definition">Definition</a>
</h6>
<p>
Defined in header <code class="computeroutput">boost/numeric/bindings/lapack/driver/hpgvd.hpp</code>.
</p>
<a name="boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.parameters_or_requirements_on_types"></a><h6>
<a name="id825416"></a>
<a class="link" href="hpgvd.html#boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.parameters_or_requirements_on_types">Parameters
or Requirements on Types</a>
</h6>
<div class="variablelist">
<p class="title"><b>Parameters</b></p>
<dl>
<dt><span class="term">MatrixA</span></dt>
<dd><p>
The definition of term 1
</p></dd>
<dt><span class="term">MatrixB</span></dt>
<dd><p>
The definition of term 2
</p></dd>
<dt><span class="term">MatrixC</span></dt>
<dd>
<p>
The definition of term 3.
</p>
<p>
Definitions may contain paragraphs.
</p>
</dd>
</dl>
</div>
<a name="boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.complexity"></a><h6>
<a name="id825503"></a>
<a class="link" href="hpgvd.html#boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.complexity">Complexity</a>
</h6>
<a name="boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.example"></a><h6>
<a name="id825530"></a>
<a class="link" href="hpgvd.html#boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.example">Example</a>
</h6>
<p>
</p>
<pre class="programlisting"><span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">numeric</span><span class="special">/</span><span class="identifier">bindings</span><span class="special">/</span><span class="identifier">lapack</span><span class="special">/</span><span class="identifier">driver</span><span class="special">/</span><span class="identifier">hpgvd</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span>
<span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">numeric</span><span class="special">::</span><span class="identifier">bindings</span><span class="special">;</span>
<span class="identifier">lapack</span><span class="special">::</span><span class="identifier">hpgvd</span><span class="special">(</span> <span class="identifier">x</span><span class="special">,</span> <span class="identifier">y</span><span class="special">,</span> <span class="identifier">z</span> <span class="special">);</span>
</pre>
<p>
</p>
<p>
this will output
</p>
<p>
</p>
<pre class="programlisting"><span class="special">[</span><span class="number">5</span><span class="special">]</span> <span class="number">0</span> <span class="number">1</span> <span class="number">2</span> <span class="number">3</span> <span class="number">4</span> <span class="number">5</span>
</pre>
<p>
</p>
<a name="boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.notes"></a><h6>
<a name="id825814"></a>
<a class="link" href="hpgvd.html#boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.notes">Notes</a>
</h6>
<a name="boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.see_also"></a><h6>
<a name="id825840"></a>
<a class="link" href="hpgvd.html#boost_numeric_bindings.reference.lapack.driver_routines.hpgvd.see_also">See
Also</a>
</h6>
<div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem">
Originating Fortran source files <a href="http://www.netlib.org/lapack/single/sspgvd.f" target="_top">sspgvd.f</a>,
<a href="http://www.netlib.org/lapack/double/dspgvd.f" target="_top">dspgvd.f</a>,
<a href="http://www.netlib.org/lapack/complex/chpgvd.f" target="_top">chpgvd.f</a>,
and <a href="http://www.netlib.org/lapack/complex16/zhpgvd.f" target="_top">zhpgvd.f</a>
at Netlib.
</li></ul></div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2002 -2009 Rutger ter Borg, Krešimir Fresl, Thomas Klimpel,
Toon Knapen, Karl Meerbergen<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="hpgv.html"><img src="../../../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../driver_routines.html"><img src="../../../../images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../images/home.png" alt="Home"></a><a accesskey="n" href="hpgvx.html"><img src="../../../../images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
externals/numeric_bindings/libs/numeric/bindings/doc/html/boost_numeric_bindings/reference/blas/level_2_blas/tpsv.html | siconos/siconos | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>tpsv</title>
<link rel="stylesheet" href="../../../../boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="../../../../index.html" title="Chapter 1. Boost.Numeric_Bindings">
<link rel="up" href="../level_2_blas.html" title="Level 2 BLAS">
<link rel="prev" href="tpmv.html" title="tpmv">
<link rel="next" href="trmv.html" title="trmv">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr><td valign="top"></td></tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="tpmv.html"><img src="../../../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../level_2_blas.html"><img src="../../../../images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../images/home.png" alt="Home"></a><a accesskey="n" href="trmv.html"><img src="../../../../images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h5 class="title">
<a name="boost_numeric_bindings.reference.blas.level_2_blas.tpsv"></a><a class="link" href="tpsv.html" title="tpsv">tpsv</a>
</h5></div></div></div>
<a name="boost_numeric_bindings.reference.blas.level_2_blas.tpsv.prototype"></a><h6>
<a name="id791028"></a>
<a class="link" href="tpsv.html#boost_numeric_bindings.reference.blas.level_2_blas.tpsv.prototype">Prototype</a>
</h6>
<p>
There is one prototype of <code class="computeroutput"><span class="identifier">tpsv</span></code>
available, please see below.
</p>
<pre class="programlisting"><span class="identifier">tpsv</span><span class="special">(</span> <span class="keyword">const</span> <span class="identifier">MatrixAP</span><span class="special">&</span> <span class="identifier">ap</span><span class="special">,</span> <span class="identifier">VectorX</span><span class="special">&</span> <span class="identifier">x</span> <span class="special">);</span>
</pre>
<p>
</p>
<a name="boost_numeric_bindings.reference.blas.level_2_blas.tpsv.description"></a><h6>
<a name="id791140"></a>
<a class="link" href="tpsv.html#boost_numeric_bindings.reference.blas.level_2_blas.tpsv.description">Description</a>
</h6>
<p>
<code class="computeroutput"><span class="identifier">tpsv</span></code> (short for triangular,
packed, solve system of equations) provides a C++ interface to BLAS routines
STPSV, DTPSV, CTPSV, and ZTPSV. <code class="computeroutput"><span class="identifier">tpsv</span></code>
solves one of the systems of equations
</p>
<p>
A*x = b, or A'*x = b, or conjg( A' )*x = b,
</p>
<p>
where b and x are n element vectors and A is an n by n unit, or non-unit,
upper or lower triangular matrix, supplied in packed form.
</p>
<p>
No test for singularity or near-singularity is included in this routine.
Such tests must be performed before calling this routine.
</p>
<p>
The selection of the BLAS routine is done during compile-time, and is
determined by the type of values contained in type <code class="computeroutput"><span class="identifier">MatrixAP</span></code>.
The type of values is obtained through the <code class="computeroutput"><span class="identifier">value_type</span></code>
meta-function <code class="computeroutput"><span class="keyword">typename</span> <span class="identifier">value_type</span><span class="special"><</span><span class="identifier">MatrixAP</span><span class="special">>::</span><span class="identifier">type</span></code>. Table X below illustrates to
which specific routine this dispatching will take place.
</p>
<div class="table">
<a name="boost_numeric_bindings.reference.blas.level_2_blas.tpsv.dispatching_of_tpsv_"></a><p class="title"><b>Table 1.76. Dispatching of tpsv.</b></p>
<div class="table-contents"><table class="table" summary="Dispatching of tpsv.">
<colgroup>
<col>
<col>
<col>
<col>
</colgroup>
<thead><tr>
<th>
<p>
Value type of MatrixAP
</p>
</th>
<th>
<p>
BLAS routine
</p>
</th>
<th>
<p>
CBLAS routine
</p>
</th>
<th>
<p>
CUBLAS routine
</p>
</th>
</tr></thead>
<tbody>
<tr>
<td>
<p>
<code class="computeroutput"><span class="keyword">float</span></code>
</p>
</td>
<td>
<p>
STPSV
</p>
</td>
<td>
<p>
cblas_stpsv
</p>
</td>
<td>
<p>
cublasStpsv
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="keyword">double</span></code>
</p>
</td>
<td>
<p>
DTPSV
</p>
</td>
<td>
<p>
cblas_dtpsv
</p>
</td>
<td>
<p>
Unavailable
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">complex</span><span class="special"><</span><span class="keyword">float</span><span class="special">></span></code>
</p>
</td>
<td>
<p>
CTPSV
</p>
</td>
<td>
<p>
cblas_ctpsv
</p>
</td>
<td>
<p>
cublasCtpsv
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">complex</span><span class="special"><</span><span class="keyword">double</span><span class="special">></span></code>
</p>
</td>
<td>
<p>
ZTPSV
</p>
</td>
<td>
<p>
cblas_ztpsv
</p>
</td>
<td>
<p>
Unavailable
</p>
</td>
</tr>
</tbody>
</table></div>
</div>
<br class="table-break"><p>
The original routines STPSV, DTPSV, CTPSV, and ZTPSV have seven arguments,
whereas <code class="computeroutput"><span class="identifier">tpsv</span></code> requires
two arguments.
</p>
<div class="table">
<a name="boost_numeric_bindings.reference.blas.level_2_blas.tpsv.deduction_of_arguments_of_tpsv_"></a><p class="title"><b>Table 1.77. Deduction of arguments of tpsv.</b></p>
<div class="table-contents"><table class="table" summary="Deduction of arguments of tpsv.">
<colgroup></colgroup>
<tbody></tbody>
</table></div>
</div>
<br class="table-break"><a name="boost_numeric_bindings.reference.blas.level_2_blas.tpsv.definition"></a><h6>
<a name="id791613"></a>
<a class="link" href="tpsv.html#boost_numeric_bindings.reference.blas.level_2_blas.tpsv.definition">Definition</a>
</h6>
<p>
Defined in header <code class="computeroutput">boost/numeric/bindings/blas/level2/tpsv.hpp</code>.
</p>
<a name="boost_numeric_bindings.reference.blas.level_2_blas.tpsv.parameters_or_requirements_on_types"></a><h6>
<a name="id791652"></a>
<a class="link" href="tpsv.html#boost_numeric_bindings.reference.blas.level_2_blas.tpsv.parameters_or_requirements_on_types">Parameters
or Requirements on Types</a>
</h6>
<div class="variablelist">
<p class="title"><b>Parameters</b></p>
<dl>
<dt><span class="term">MatrixA</span></dt>
<dd><p>
The definition of term 1
</p></dd>
<dt><span class="term">MatrixB</span></dt>
<dd><p>
The definition of term 2
</p></dd>
<dt><span class="term">MatrixC</span></dt>
<dd>
<p>
The definition of term 3.
</p>
<p>
Definitions may contain paragraphs.
</p>
</dd>
</dl>
</div>
<a name="boost_numeric_bindings.reference.blas.level_2_blas.tpsv.complexity"></a><h6>
<a name="id791738"></a>
<a class="link" href="tpsv.html#boost_numeric_bindings.reference.blas.level_2_blas.tpsv.complexity">Complexity</a>
</h6>
<a name="boost_numeric_bindings.reference.blas.level_2_blas.tpsv.example"></a><h6>
<a name="id791764"></a>
<a class="link" href="tpsv.html#boost_numeric_bindings.reference.blas.level_2_blas.tpsv.example">Example</a>
</h6>
<p>
</p>
<pre class="programlisting"><span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">numeric</span><span class="special">/</span><span class="identifier">bindings</span><span class="special">/</span><span class="identifier">blas</span><span class="special">/</span><span class="identifier">level2</span><span class="special">/</span><span class="identifier">tpsv</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span>
<span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">numeric</span><span class="special">::</span><span class="identifier">bindings</span><span class="special">;</span>
<span class="identifier">blas</span><span class="special">::</span><span class="identifier">tpsv</span><span class="special">(</span> <span class="identifier">x</span><span class="special">,</span> <span class="identifier">y</span><span class="special">,</span> <span class="identifier">z</span> <span class="special">);</span>
</pre>
<p>
</p>
<p>
this will output
</p>
<p>
</p>
<pre class="programlisting"><span class="special">[</span><span class="number">5</span><span class="special">]</span> <span class="number">0</span> <span class="number">1</span> <span class="number">2</span> <span class="number">3</span> <span class="number">4</span> <span class="number">5</span>
</pre>
<p>
</p>
<a name="boost_numeric_bindings.reference.blas.level_2_blas.tpsv.notes"></a><h6>
<a name="id792048"></a>
<a class="link" href="tpsv.html#boost_numeric_bindings.reference.blas.level_2_blas.tpsv.notes">Notes</a>
</h6>
<a name="boost_numeric_bindings.reference.blas.level_2_blas.tpsv.see_also"></a><h6>
<a name="id792072"></a>
<a class="link" href="tpsv.html#boost_numeric_bindings.reference.blas.level_2_blas.tpsv.see_also">See
Also</a>
</h6>
<div class="itemizedlist"><ul class="itemizedlist" type="disc"><li class="listitem">
Originating Fortran source files <a href="http://www.netlib.org/blas/stpsv.f" target="_top">stpsv.f</a>,
<a href="http://www.netlib.org/blas/dtpsv.f" target="_top">dtpsv.f</a>,
<a href="http://www.netlib.org/blas/ctpsv.f" target="_top">ctpsv.f</a>,
and <a href="http://www.netlib.org/blas/ztpsv.f" target="_top">ztpsv.f</a>
at Netlib.
</li></ul></div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2002 -2009 Rutger ter Borg, Krešimir Fresl, Thomas Klimpel,
Toon Knapen, Karl Meerbergen<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="tpmv.html"><img src="../../../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../level_2_blas.html"><img src="../../../../images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../images/home.png" alt="Home"></a><a accesskey="n" href="trmv.html"><img src="../../../../images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
src/main/webapp/static/js/plugin/easyui/themes/bootstrap/combo.css | xiaoxing598/itganhuo | .combo {
display: inline-block;
white-space: nowrap;
margin: 0;
padding: 0;
border-width: 1px;
border-style: solid;
overflow: hidden;
vertical-align: middle;
}
.combo .combo-text {
font-size: 12px;
border: 0px;
margin: 0;
padding: 0px 2px;
vertical-align: baseline;
}
.combo-arrow {
width: 18px;
height: 20px;
overflow: hidden;
display: inline-block;
vertical-align: top;
cursor: pointer;
opacity: 0.6;
filter: alpha(opacity=60);
}
.combo-arrow-hover {
opacity: 1.0;
filter: alpha(opacity=100);
}
.combo-panel {
overflow: auto;
}
.combo-arrow {
background: url('images/combo_arrow.png') no-repeat center center;
}
.combo-panel {
background-color: #ffffff;
}
.combo {
border-color: #D4D4D4;
background-color: #fff;
}
.combo-arrow {
background-color: #F2F2F2;
}
.combo-arrow-hover {
background-color: #e6e6e6;
}
.combo-arrow:hover {
background-color: #e6e6e6;
}
.textbox-invalid {
border-color: #ffa8a8;
background-color: #fff3f3;
}
|
src/addon/competency/pages/coursecompetencies/coursecompetencies.html | FMCorz/moodlemobile2 | <ion-header>
<ion-navbar core-back-button>
<ion-title>{{ 'addon.competency.coursecompetencies' | translate }}</ion-title>
</ion-navbar>
</ion-header>
<addon-competency-course class="core-avoid-header" [courseId]="courseId" [userId]="userId"></addon-competency-course> |
src/plugins/jmxweb/src/hawtio/app/themes/fonts/Open-Sans/stylesheet.css | zhouluoyang/openfire | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 19, 2011 08:48:44 AM America/New_York */
@font-face {
font-family: 'OpenSansLight';
src: url('OpenSans-Light-webfont.eot');
src: url('OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-Light-webfont.woff') format('woff'),
url('OpenSans-Light-webfont.ttf') format('truetype'),
url('OpenSans-Light-webfont.svg#OpenSansLight') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'OpenSansLightItalic';
src: url('OpenSans-LightItalic-webfont.eot');
src: url('OpenSans-LightItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-LightItalic-webfont.woff') format('woff'),
url('OpenSans-LightItalic-webfont.ttf') format('truetype'),
url('OpenSans-LightItalic-webfont.svg#OpenSansLightItalic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'OpenSansRegular';
src: url('OpenSans-Regular-webfont.eot');
src: url('OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-Regular-webfont.woff') format('woff'),
url('OpenSans-Regular-webfont.ttf') format('truetype'),
url('OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'OpenSansItalic';
src: url('OpenSans-Italic-webfont.eot');
src: url('OpenSans-Italic-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-Italic-webfont.woff') format('woff'),
url('OpenSans-Italic-webfont.ttf') format('truetype'),
url('OpenSans-Italic-webfont.svg#OpenSansItalic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'OpenSansSemibold';
src: url('OpenSans-Semibold-webfont.eot');
src: url('OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-Semibold-webfont.woff') format('woff'),
url('OpenSans-Semibold-webfont.ttf') format('truetype'),
url('OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'OpenSansSemiboldItalic';
src: url('OpenSans-SemiboldItalic-webfont.eot');
src: url('OpenSans-SemiboldItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-SemiboldItalic-webfont.woff') format('woff'),
url('OpenSans-SemiboldItalic-webfont.ttf') format('truetype'),
url('OpenSans-SemiboldItalic-webfont.svg#OpenSansSemiboldItalic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'OpenSansBold';
src: url('OpenSans-Bold-webfont.eot');
src: url('OpenSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-Bold-webfont.woff') format('woff'),
url('OpenSans-Bold-webfont.ttf') format('truetype'),
url('OpenSans-Bold-webfont.svg#OpenSansBold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'OpenSansBoldItalic';
src: url('OpenSans-BoldItalic-webfont.eot');
src: url('OpenSans-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-BoldItalic-webfont.woff') format('woff'),
url('OpenSans-BoldItalic-webfont.ttf') format('truetype'),
url('OpenSans-BoldItalic-webfont.svg#OpenSansBoldItalic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'OpenSansExtrabold';
src: url('OpenSans-ExtraBold-webfont.eot');
src: url('OpenSans-ExtraBold-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-ExtraBold-webfont.woff') format('woff'),
url('OpenSans-ExtraBold-webfont.ttf') format('truetype'),
url('OpenSans-ExtraBold-webfont.svg#OpenSansExtrabold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'OpenSansExtraboldItalic';
src: url('OpenSans-ExtraBoldItalic-webfont.eot');
src: url('OpenSans-ExtraBoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
url('OpenSans-ExtraBoldItalic-webfont.woff') format('woff'),
url('OpenSans-ExtraBoldItalic-webfont.ttf') format('truetype'),
url('OpenSans-ExtraBoldItalic-webfont.svg#OpenSansExtraboldItalic') format('svg');
font-weight: normal;
font-style: normal;
}
|
static/src/assets/bower_components/patternfly/dist/tests/notification-drawer-vertical-nav.html | sdellang/charta | <!DOCTYPE html>
<!--[if IE 9]><html lang="en-us" class="ie9 layout-pf layout-pf-fixed"><![endif]-->
<!--[if gt IE 9]><!-->
<html lang="en-us" class="layout-pf layout-pf-fixed">
<!--<![endif]-->
<head>
<title>Notification Drawer for Vertical Navigation - PatternFly</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="../../dist/img/favicon.ico">
<!-- iPad retina icon -->
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../dist/img/apple-touch-icon-precomposed-152.png">
<!-- iPad retina icon (iOS < 7) -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../dist/img/apple-touch-icon-precomposed-144.png">
<!-- iPad non-retina icon -->
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../dist/img/apple-touch-icon-precomposed-76.png">
<!-- iPad non-retina icon (iOS < 7) -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/img/apple-touch-icon-precomposed-72.png">
<!-- iPhone 6 Plus icon -->
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../dist/img/apple-touch-icon-precomposed-180.png">
<!-- iPhone retina icon (iOS < 7) -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/img/apple-touch-icon-precomposed-114.png">
<!-- iPhone non-retina icon (iOS < 7) -->
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../../dist/img/apple-touch-icon-precomposed-57.png">
<link rel="stylesheet" href="../../dist/css/patternfly.min.css" >
<link rel="stylesheet" href="../../dist/css/patternfly-additions.min.css" >
<link href="tests.css" rel="stylesheet" media="screen, print">
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.0/jquery.matchHeight-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
<script src="../../dist/js/patternfly.min.js"></script>
</head>
<div class="toast-notifications-list-pf">
<div class="toast-pf alert alert-warning alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">
<span class="pficon pficon-close"></span>
</button>
<span class="pficon pficon-warning-triangle-o"></span>
These examples are included for development testing purposes. For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
</div>
</div>
<body class="cards-pf">
<nav class="navbar navbar-pf-vertical">
<div class="navbar-header">
<button type="button" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="/" class="navbar-brand">
<img class="navbar-brand-icon" src="../../dist/img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="../../dist/img/brand-alt.svg" alt="PatternFly Enterprise Application" />
</a>
</div>
<nav class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="#" target="_blank" class="nav-item-iconic nav-item-iconic-new-window"><span title="Launch" class="fa fa-external-link"></span></a></li>
</ul>
<ul class="nav navbar-nav navbar-right navbar-iconic">
<li class="drawer-pf-trigger dropdown">
<a class="nav-item-iconic drawer-pf-trigger-icon">
<span class="fa fa-bell" title="Notifications"></span><!-- In case of all notifications read, the icon should be fa-bell-o -->
</a>
</li>
<li class="dropdown">
<a class="dropdown-toggle nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span title="Help" class="fa pficon-help"></span>
<span class="caret"></span>
</a>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
<li><a href="#">Help</a></li>
<li><a href="#">About</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle nav-item-iconic" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span title="Username" class="fa pficon-user"></span>
<span class="caret"></span>
</a>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
<li><a href="#">Preferences</a></li>
<li><a href="#">Logout</a></li>
</ul>
</li>
</ul>
<div class="drawer-pf hide drawer-pf-notifications-non-clickable">
<div class="drawer-pf-title">
<a class="drawer-pf-toggle-expand"></a>
<h3 class="text-center">Notifications Drawer</h3>
</div>
<div class="panel-group" id="notification-drawer-accordion">
<div class="panel panel-default">
<div class="panel-heading" data-component="collapse-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseOne">
Notification Tab 1
</a>
</h4>
<span class="panel-counter">5 New Events</span>
</div>
<div id="fixedCollapseOne" class="panel-collapse collapse in">
<div class="panel-body">
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-info pull-left"></span>
<span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight21" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight21">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-ok pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight31" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight31">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-warning-triangle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight41" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight41">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-error-circle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
</div>
<div class="drawer-pf-action">
<button class="btn btn-link btn-block">Mark All Read</button>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" data-component="collapse-heading">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseTwo">
Notification Tab 2
</a>
</h4>
<span class="panel-counter">5 New Events</span>
</div>
<div id="fixedCollapseTwo" class="panel-collapse collapse">
<div class="panel-body">
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-info pull-left"></span>
<span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight22" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight22">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-ok pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight32" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight32">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-warning-triangle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight42" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight42">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-error-circle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-info pull-left"></span>
<span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight23" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight23">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-ok pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight33" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight33">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-warning-triangle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight43" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight43">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-error-circle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-info pull-left"></span>
<span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight24" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight24">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-ok pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight34" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight34">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-warning-triangle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight44" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight44">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-error-circle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-loading text-center">
<span class="spinner spinner-xs spinner-inline"></span> Loading More
</div>
</div>
<div class="drawer-pf-action">
<button class="btn btn-link btn-block">Mark All Read</button>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" data-component="collapse-heading">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseThree">
Notification Tab 3
</a>
</h4>
<span class="panel-counter">5 New Events</span>
</div>
<div id="fixedCollapseThree" class="panel-collapse collapse">
<div class="panel-body">
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-info pull-left"></span>
<span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight25">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-ok pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight35">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-warning-triangle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight45" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight45">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-error-circle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight16">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-info pull-left"></span>
<span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight26" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight26">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-ok pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight36" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight36">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-warning-triangle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight46" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight46">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-error-circle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight17">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-info pull-left"></span>
<span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification unread">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight27" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight27">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-ok pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight37" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight37">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-warning-triangle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
<div class="drawer-pf-notification">
<div class="dropdown pull-right dropdown-kebab-pf">
<button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight47" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="fa fa-ellipsis-v"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight47">
<li><a href="#">Action</a></li>
<li><a href="#">Another action</a></li>
<li><a href="#">Something else here</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Separated link</a></li>
</ul>
</div>
<span class="pficon pficon-error-circle-o pull-left"></span>
<span class="drawer-pf-notification-message">Another Event Notification</span>
<div class="drawer-pf-notification-info">
<span class="date">3/31/16</span>
<span class="time">12:12:44 PM</span>
</div>
</div>
</div>
<div class="drawer-pf-action">
<button class="btn btn-link btn-block">Mark All Read</button>
</div>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function() {
// Show/Hide Notifications Drawer
$('.drawer-pf-trigger').click(function() {
var $drawer = $('.drawer-pf');
$(this).toggleClass('open');
if ($drawer.hasClass('hide')) {
$drawer.removeClass('hide');
setTimeout(function () {
if (window.dispatchEvent) {
window.dispatchEvent(new Event('resize'));
}
// Special case for IE
if ($(document).fireEvent) {
$(document).fireEvent('onresize');
}
}, 100);
} else {
$drawer.addClass('hide');
}
});
$('.drawer-pf-toggle-expand').click(function() {
var $drawer = $('.drawer-pf');
var $drawerNotifications = $drawer.find('.drawer-pf-notification');
if ($drawer.hasClass('drawer-pf-expanded')) {
$drawer.removeClass('drawer-pf-expanded');
$drawerNotifications.removeClass('expanded-notification');
} else {
$drawer.addClass('drawer-pf-expanded');
$drawerNotifications.addClass('expanded-notification');
}
});
// Mark All Read
$('.panel-collapse').each(function (index, panel) {
var $panel = $(panel);
$panel.on('click', '.drawer-pf-action .btn', function() {
$panel.find('.unread').removeClass('unread');
$(panel.parentElement).find('.panel-counter').text('0 New Events');
});
});
$('#notification-drawer-accordion').initCollapseHeights('.panel-body');
});
</script>
</nav>
</nav> <!--/.navbar-->
<div class="nav-pf-vertical
nav-pf-vertical-with-sub-menus
">
<ul class="list-group">
<li class="list-group-item">
<a>
<span class="fa fa-dashboard" data-toggle="tooltip" title="Dashboard"></span>
<span class="list-group-item-value">Dashboard</span>
</a>
</li>
<li class="list-group-item">
<a>
<span class="fa fa-shield" data-toggle="tooltip" title="Dolor"></span>
<span class="list-group-item-value">Dolor</span>
</a>
</li>
<li class="list-group-item active secondary-nav-item-pf" data-target="#ipsum-secondary">
<a>
<span class="fa fa-space-shuttle" data-toggle="tooltip" title="Ipsum"></span>
<span class="list-group-item-value">Ipsum</span>
</a>
<div id="-secondary" class="nav-pf-secondary-nav">
<div class="nav-item-pf-header">
<a class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
<span>Ipsum</span>
</div>
<ul class="list-group">
<li class="list-group-item active " data-target="#ipsum-intellegam-tertiary">
<a>
<span class="list-group-item-value">Intellegam</span>
</a>
</li>
<li class="list-group-item " data-target="#ipsum-copiosae-tertiary">
<a>
<span class="list-group-item-value">Copiosae</span>
</a>
</li>
<li class="list-group-item " data-target="#ipsum-patrioque-tertiary">
<a>
<span class="list-group-item-value">Patrioque</span>
</a>
</li>
</ul>
</div>
</li>
<li class="list-group-item secondary-nav-item-pf" data-target="#amet-secondary">
<a>
<span class="fa fa-paper-plane" data-toggle="tooltip" title="Amet"></span>
<span class="list-group-item-value">Amet</span>
</a>
<div id="amet-secondary" class="nav-pf-secondary-nav">
<div class="nav-item-pf-header">
<a class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
<span>Amet</span>
</div>
<ul class="list-group">
<li class="list-group-item " data-target="#amet-detracto-tertiary">
<a>
<span class="list-group-item-value">Detracto Suscipiantur</span>
</a>
</li>
<li class="list-group-item " data-target="#amet-mediocrem-tertiary">
<a>
<span class="list-group-item-value">Mediocrem</span>
</a>
</li>
<li class="list-group-item " data-target="#amet-corrumpit-tertiary">
<a>
<span class="list-group-item-value">Corrumpit Cupidatat Proident Deserunt</span>
</a>
</li>
</ul>
</div>
</li>
<li class="list-group-item">
<a>
<span class="fa fa-graduation-cap" data-toggle="tooltip" title="Adipscing"></span>
<span class="list-group-item-value">Adipscing</span>
</a>
</li>
<li class="list-group-item">
<a>
<span class="fa fa-gamepad" data-toggle="tooltip" title="Lorem"></span>
<span class="list-group-item-value">Lorem</span>
</a>
</li>
</ul>
</div>
<div class="container-fluid container-cards-pf container-pf-nav-pf-vertical
">
<div class="row row-cards-pf">
<!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row -->
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card-pf card-pf-accented card-pf-aggregate-status">
<h2 class="card-pf-title">
<span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
</h2>
<div class="card-pf-body">
<p class="card-pf-aggregate-status-notifications">
<span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card-pf card-pf-accented card-pf-aggregate-status">
<h2 class="card-pf-title">
<a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
</h2>
<div class="card-pf-body">
<p class="card-pf-aggregate-status-notifications">
<span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
<span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card-pf card-pf-accented card-pf-aggregate-status">
<h2 class="card-pf-title">
<a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
</h2>
<div class="card-pf-body">
<p class="card-pf-aggregate-status-notifications">
<span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card-pf card-pf-accented card-pf-aggregate-status">
<h2 class="card-pf-title">
<a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
</h2>
<div class="card-pf-body">
<p class="card-pf-aggregate-status-notifications">
<a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
</p>
</div>
</div>
</div>
</div><!-- /row -->
<div class="row row-cards-pf">
<!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row -->
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
<h2 class="card-pf-title">
<span class="fa fa-rebel"></span>
<span class="card-pf-aggregate-status-count">0</span> Ipsum
</h2>
<div class="card-pf-body">
<p class="card-pf-aggregate-status-notifications">
<span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
<h2 class="card-pf-title">
<a href="#">
<span class="fa fa-paper-plane"></span>
<span class="card-pf-aggregate-status-count">20</span> Amet
</a>
</h2>
<div class="card-pf-body">
<p class="card-pf-aggregate-status-notifications">
<span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
<h2 class="card-pf-title">
<a href="#">
<span class="pficon pficon-cluster"></span>
<span class="card-pf-aggregate-status-count">9</span> Adipiscing
</a>
</h2>
<div class="card-pf-body">
<p class="card-pf-aggregate-status-notifications">
<span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
<h2 class="card-pf-title">
<a href="#">
<span class="pficon pficon-image"></span>
<span class="card-pf-aggregate-status-count">12</span> Lorem
</a>
</h2>
<div class="card-pf-body">
<p class="card-pf-aggregate-status-notifications">
<a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
</p>
</div>
</div>
</div>
</div>
<div class="row row-cards-pf">
<!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row -->
<div class="col-xs-12 col-sm-6">
<div class="card-pf">
<div class="card-pf-heading">
<h2 class="card-pf-title">
Top Utilized Clusters
</h2>
</div>
<div class="card-pf-body">
<div class="progress-description">
RHOS6-Controller
</div>
<div class="progress progress-label-top-right">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;" data-toggle="tooltip" title="95% Used">
<span><strong>190.0 of 200.0 GB</strong> Used</span>
</div>
<div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
<span class="sr-only">5% Available</span>
</div>
</div>
<div class="progress-description">
CFMEQE-Cluster
</div>
<div class="progress progress-label-top-right">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Used">
<span><strong>100.0 of 200.0 GB</strong> Used</span>
</div>
<div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
<span class="sr-only">50% Available</span>
</div>
</div>
<div class="progress-description">
RHOS-Undercloud
</div>
<div class="progress progress-label-top-right">
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;" data-toggle="tooltip" title="70% Used">
<span><strong>140.0 of 200.0 GB</strong> Used</span>
</div>
<div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
<span class="sr-only">30% Available</span>
</div>
</div>
<div class="progress-description">
RHEL6-Controller
</div>
<div class="progress progress-label-top-right">
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;" data-toggle="tooltip" title="76.5% Used">
<span><strong>153.0 of 200.0 GB</strong> Used</span>
</div>
<div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
<span class="sr-only">23.5% Available</span>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6">
<div class="card-pf">
<div class="card-pf-heading">
<h2 class="card-pf-title">
Quotas
</h2>
</div>
<div class="card-pf-body">
<div class="progress-container progress-description-left progress-label-right">
<div class="progress-description">
CPU
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
<span><strong>115 of 460</strong> MHz</span>
</div>
<div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
<span class="sr-only">75% Available</span>
</div>
</div>
</div>
<div class="progress-container progress-description-left progress-label-right">
<div class="progress-description">
Memory
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
<span><strong>8 of 16</strong> GB</span>
</div>
<div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
<span class="sr-only">50% Available</span>
</div>
</div>
</div>
<div class="progress-container progress-description-left progress-label-right">
<div class="progress-description">
Pods
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
<span><strong>5 of 8</strong> Total</span>
</div>
<div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
<span class="sr-only">37.5% Available</span>
</div>
</div>
</div>
<div class="progress-container progress-description-left progress-label-right">
<div class="progress-description">
Services
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
<span><strong>2 of 2</strong> Total</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!-- /row -->
<div class="row row-cards-pf">
<div class="col-md-12">
<div class="card-pf card-pf-utilization">
<div class="card-pf-heading">
<p class="card-pf-heading-details">Last 30 days</p>
<h2 class="card-pf-title">
Utilization
</h2>
</div>
<div class="card-pf-body">
<div class="row">
<div class="col-xs-12 col-sm-4 col-md-4">
<h3 class="card-pf-subtitle">CPU</h3>
<p class="card-pf-utilization-details">
<span class="card-pf-utilization-card-details-count">50</span>
<span class="card-pf-utilization-card-details-description">
<span class="card-pf-utilization-card-details-line-1">Available</span>
<span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
</span>
</p>
<div id="chart-pf-donut-1"></div>
<div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
<script>
var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
donutConfig.bindto = '#chart-pf-donut-1';
donutConfig.color = {
pattern: ["#cc0000","#D1D1D1"]
};
donutConfig.data = {
type: "donut",
columns: [
["Used", 95],
["Available", 5]
],
groups: [
["used", "available"]
],
order: null
};
donutConfig.tooltip = {
contents: function (d) {
return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
'</span>';
}
};
var chart1 = c3.generate(donutConfig);
var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
donutChartTitle.text("");
donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
sparklineConfig.bindto = '#chart-pf-sparkline-1';
sparklineConfig.data = {
columns: [
['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
],
type: 'area'
};
var chart2 = c3.generate(sparklineConfig);
</script>
</div>
<div class="col-xs-12 col-sm-4 col-md-4">
<h3 class="card-pf-subtitle">Memory</h3>
<p class="card-pf-utilization-details">
<span class="card-pf-utilization-card-details-count">256</span>
<span class="card-pf-utilization-card-details-description">
<span class="card-pf-utilization-card-details-line-1">Available</span>
<span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
</span>
</p>
<div id="chart-pf-donut-2"></div>
<div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
<script>
var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
donutConfig.bindto = '#chart-pf-donut-2';
donutConfig.color = {
pattern: ["#3f9c35","#D1D1D1"]
};
donutConfig.data = {
type: "donut",
columns: [
["Used", 41],
["Available", 59]
],
groups: [
["used", "available"]
],
order: null
};
donutConfig.tooltip = {
contents: function (d) {
return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
'</span>';
}
};
var chart3 = c3.generate(donutConfig);
var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
donutChartTitle.text("");
donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
sparklineConfig.bindto = '#chart-pf-sparkline-2';
sparklineConfig.data = {
columns: [
['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
],
type: 'area'
};
var chart4 = c3.generate(sparklineConfig);
</script>
</div>
<div class="col-xs-12 col-sm-4 col-md-4">
<h3 class="card-pf-subtitle">Network</h3>
<p class="card-pf-utilization-details">
<span class="card-pf-utilization-card-details-count">200</span>
<span class="card-pf-utilization-card-details-description">
<span class="card-pf-utilization-card-details-line-1">Available</span>
<span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
</span>
</p>
<div id="chart-pf-donut-3"></div>
<div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
<script>
var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
donutConfig.bindto = '#chart-pf-donut-3';
donutConfig.color = {
pattern: ["#EC7A08","#D1D1D1"]
};
donutConfig.data = {
type: "donut",
columns: [
["Used", 85],
["Available", 15]
],
groups: [
["used", "available"]
],
order: null
};
donutConfig.tooltip = {
contents: function (d) {
return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
'</span>';
}
};
var chart5 = c3.generate(donutConfig);
var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
donutChartTitle.text("");
donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
sparklineConfig.bindto = '#chart-pf-sparkline-3';
sparklineConfig.data = {
columns: [
['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
],
type: 'area'
};
var chart6 = c3.generate(sparklineConfig);
</script>
</div>
</div>
</div>
</div>
</div>
</div><!-- /row -->
<div class="row row-cards-pf">
<div class="col-xs-12 col-sm-4 col-md-4">
<div class="card-pf card-pf-utilization">
<h2 class="card-pf-title">
Network
</h2>
<div class="card-pf-body">
<p class="card-pf-utilization-details">
<span class="card-pf-utilization-card-details-count">200</span>
<span class="card-pf-utilization-card-details-description">
<span class="card-pf-utilization-card-details-line-1">Available</span>
<span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
</span>
</p>
<div id="chart-pf-donut-4"></div>
<div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
<script>
var c3ChartDefaults = $().c3ChartDefaults();
var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
donutConfig.bindto = '#chart-pf-donut-4';
donutConfig.color = {
pattern: ["#EC7A08","#D1D1D1"]
};
donutConfig.data = {
type: "donut",
columns: [
["Used", 85],
["Available", 15]
],
groups: [
["used", "available"]
],
order: null
};
donutConfig.tooltip = {
contents: function (d) {
return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
'</span>';
}
};
var chart1 = c3.generate(donutConfig);
var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
donutChartTitle.text("");
donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
sparklineConfig.bindto = '#chart-pf-sparkline-4';
sparklineConfig.data = {
columns: [
['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
],
type: 'area'
};
var chart2 = c3.generate(sparklineConfig);
</script>
</div>
</div>
</div>
</div><!-- /row -->
<div class="row row-cards-pf">
<!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row -->
<div class="col-xs-12 col-sm-6 col-md-5">
<div class="card-pf">
<div class="card-pf-heading">
<div class="dropdown card-pf-time-frame-filter">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
Last 30 Days <span class="caret"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" role="menu">
<li class="selected"><a href="#">Last 30 Days</a></li>
<li><a href="#">Last 60 Days</a></li>
<li><a href="#">Last 90 Days</a></li>
</ul>
</div>
<h2 class="card-pf-title">
Card Title
</h2>
</div>
<div class="card-pf-body">
<p>[card contents]</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-7">
<div class="card-pf">
<h2 class="card-pf-title">
Card Title
</h2>
<div class="card-pf-body">
<p>[card contents]</p>
</div>
<div class="card-pf-footer">
<div class="dropdown card-pf-time-frame-filter">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
Last 30 Days <span class="caret"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" role="menu">
<li class="selected"><a href="#">Last 30 Days</a></li>
<li><a href="#">Last 60 Days</a></li>
<li><a href="#">Last 90 Days</a></li>
</ul>
</div>
<p>
<a href="#" class="card-pf-link-with-icon">
<span class="pficon pficon-add-circle-o"></span>Add New Cluster
</a>
</p>
</div>
</div>
</div>
</div><!-- /row -->
<div class="row row-cards-pf">
<!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row -->
<div class="col-xs-12 col-sm-5 col-md-5">
<div class="card-pf">
<h2 class="card-pf-title">
Card Title
</h2>
<div class="card-pf-body">
<p>[card contents]</p>
</div>
<div class="card-pf-footer">
<div class="dropdown card-pf-time-frame-filter">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
Last 30 Days <span class="caret"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" role="menu">
<li class="selected"><a href="#">Last 30 Days</a></li>
<li><a href="#">Last 60 Days</a></li>
<li><a href="#">Last 90 Days</a></li>
</ul>
</div>
<p>
<a href="#" class="card-pf-link-with-icon">
<span class="pficon pficon-flag"></span>View CPU Events
</a>
</p>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-7 col-md-7">
<div class="card-pf">
<h2 class="card-pf-title">
Card Title
</h2>
<div class="card-pf-body">
<p>[card contents]</p>
</div>
</div>
</div>
</div>
<div class="row row-cards-pf">
<!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row -->
<div class="col-xs-6 col-sm-8 col-md-8">
<div class="card-pf">
<div class="card-pf-body">
<p>[card contents]</p>
</div>
<div class="card-pf-footer">
<p><a href="#">Footer link</a></p>
</div>
</div>
</div>
<div class="col-xs-6 col-sm-4 col-md-4">
<div class="card-pf">
<div class="card-pf-body">
<p>[card contents]</p>
</div>
<div class="card-pf-footer">
<p><a href="#">Footer link</a></p>
</div>
</div>
</div>
</div><!-- /row -->
<div class="row row-cards-pf">
<!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row -->
<div class="col-xs-6 col-sm-6 col-md-6">
<div class="card-pf">
<div class="card-pf-body">
<p>[card contents]</p>
</div>
</div>
</div>
<div class="col-xs-6 col-sm-6 col-md-6">
<div class="card-pf">
<div class="card-pf-body">
<p>[card contents]</p>
</div>
</div>
</div>
</div><!-- /row -->
</div>
<script>
$(document).ready(function() {
// matchHeight the contents of each .card-pf and then the .card-pf itself
$(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
$(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
$(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
$(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
// Initialize the vertical navigation
$().setupVerticalNavigation(true);
});
</script>
</body>
</html>
|
web/src/main/webapp/bower_components/patternfly/tests-src/basic.html | redhat-kontinuity/catapult | ---
categories: [Layouts]
css-extra: false
layout: layout
title: Basic
resource: true
full-page: true
url-js-extra: '//cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js'
weight: 1
---
{% include widgets/layouts/navbar-primary.html %}
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li>{{ page.title }}</li>
</ol>
<h1>{{ page.title }}</h1>
{% include widgets/datatable.html %}
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eget eros tincidunt, semper ante nec, dapibus ante.</p>
</div><!-- /col -->
</div><!-- /row -->
</div><!-- /container -->
<script>
// Initialize Datatables
$(document).ready( function() {
$('.datatable').dataTable();
});
</script>
|
Documentation/html/search/properties_61.html | cloudjanak/OCMapView | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head><title></title>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="search.css"/>
<script type="text/javascript" src="search.js"></script>
</head>
<body class="SRPage">
<div id="SRIndex">
<div class="SRStatus" id="Loading">Loading...</div>
<div class="SRResult" id="SR_annotations">
<div class="SREntry">
<a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../interface_o_c_map_view.html#a654acca9d6d98620c7135e73e01c314c" target="_parent">annotations</a>
<span class="SRScope">OCMapView</span>
</div>
</div>
<div class="SRResult" id="SR_annotationsincluster">
<div class="SREntry">
<a id="Item1" onkeydown="return searchResults.Nav(event,1)" onkeypress="return searchResults.Nav(event,1)" onkeyup="return searchResults.Nav(event,1)" class="SRSymbol" href="../interface_o_c_annotation.html#a20afdd82c3c2a07249518649250d4877" target="_parent">annotationsInCluster</a>
<span class="SRScope">OCAnnotation</span>
</div>
</div>
<div class="SRResult" id="SR_annotationstoignore">
<div class="SREntry">
<a id="Item2" onkeydown="return searchResults.Nav(event,2)" onkeypress="return searchResults.Nav(event,2)" onkeyup="return searchResults.Nav(event,2)" class="SRSymbol" href="../interface_o_c_map_view.html#a685d404c082069cd0011c57c25e69c62" target="_parent">annotationsToIgnore</a>
<span class="SRScope">OCMapView</span>
</div>
</div>
<div class="SRStatus" id="Searching">Searching...</div>
<div class="SRStatus" id="NoMatches">No Matches</div>
<script type="text/javascript"><!--
document.getElementById("Loading").style.display="none";
document.getElementById("NoMatches").style.display="none";
var searchResults = new SearchResults("searchResults");
searchResults.Search();
--></script>
</div>
</body>
</html>
|
third_party/WebKit/LayoutTests/http/tests/cachestorage/serviceworker/cache-keys.html | danakj/chromium | <!DOCTYPE html>
<title>Cache.keys</title>
<link rel="help" href="https://slightlyoff.github.io/ServiceWorker/spec/service_worker/#cache-keys">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../serviceworker/resources/test-helpers.js"></script>
<script>
service_worker_test('../script-tests/cache-keys.js');
</script>
|
chromium/src/third_party/httpcomponents-client/binary-distribution/javadoc/org/apache/http/impl/cookie/class-use/NetscapeDraftHeaderParser.html | espadrine/opera | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_22) on Sun Oct 21 11:03:15 GMT+01:00 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class org.apache.http.impl.cookie.NetscapeDraftHeaderParser (HttpComponents Client 4.2.2 API)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Uses of Class org.apache.http.impl.cookie.NetscapeDraftHeaderParser (HttpComponents Client 4.2.2 API)";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/http/impl/cookie/NetscapeDraftHeaderParser.html" title="class in org.apache.http.impl.cookie"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/http/impl/cookie/class-use/NetscapeDraftHeaderParser.html" target="_top"><B>FRAMES</B></A>
<A HREF="NetscapeDraftHeaderParser.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>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.http.impl.cookie.NetscapeDraftHeaderParser</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../../../org/apache/http/impl/cookie/NetscapeDraftHeaderParser.html" title="class in org.apache.http.impl.cookie">NetscapeDraftHeaderParser</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.http.impl.cookie"><B>org.apache.http.impl.cookie</B></A></TD>
<TD>Default implementations for interfaces in
<A HREF="../../../../../../org/apache/http/cookie/package-summary.html"><CODE>org.apache.http.cookie</CODE></A>. </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.http.impl.cookie"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../org/apache/http/impl/cookie/NetscapeDraftHeaderParser.html" title="class in org.apache.http.impl.cookie">NetscapeDraftHeaderParser</A> in <A HREF="../../../../../../org/apache/http/impl/cookie/package-summary.html">org.apache.http.impl.cookie</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../../../../../org/apache/http/impl/cookie/package-summary.html">org.apache.http.impl.cookie</A> declared as <A HREF="../../../../../../org/apache/http/impl/cookie/NetscapeDraftHeaderParser.html" title="class in org.apache.http.impl.cookie">NetscapeDraftHeaderParser</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../org/apache/http/impl/cookie/NetscapeDraftHeaderParser.html" title="class in org.apache.http.impl.cookie">NetscapeDraftHeaderParser</A></CODE></FONT></TD>
<TD><CODE><B>NetscapeDraftHeaderParser.</B><B><A HREF="../../../../../../org/apache/http/impl/cookie/NetscapeDraftHeaderParser.html#DEFAULT">DEFAULT</A></B></CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/http/impl/cookie/NetscapeDraftHeaderParser.html" title="class in org.apache.http.impl.cookie"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</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">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/http/impl/cookie/class-use/NetscapeDraftHeaderParser.html" target="_top"><B>FRAMES</B></A>
<A HREF="NetscapeDraftHeaderParser.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>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 1999-2012 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
|
Product/Website/Store/Store.Web/Joy/Theme/Default/Cover.css | mind0n/hive | div.cover
{
border:solid 1px orange;
text-align:center;
font:12px arial;
}
div.cover .content
{
}
div.cover .background
{
width:100%;
height:100%;
background:#f3f3f3;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=75);
opacity:0.75;
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.