path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
resources/templates/theme_path/red/sample.html
tokushima/rhaco2
RED
static/plugin/jquery-mobile/docs/content/content-themes.html
madeinnordeste/open-rsvp
<!DOCTYPE html> <html class="ui-mobile-rendering"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery Mobile Docs - Content Themes</title> <link rel="stylesheet" href="../../css/themes/default/jquery.mobile.css" /> <link rel="stylesheet" href="../_assets/css/jqm-docs.css"/> <script data-main="../../js/jquery.mobile.docs" src="../../external/requirejs/require.js"></script> <script src="../../js/jquery.js"></script> </head> <body> <div data-role="page" class="type-interior"> <div data-role="header" data-theme="f"> <h1>Theming content</h1> <a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a> </div><!-- /header --> <div data-role="content"> <div class="content-primary"> <h2>Theming the content area</h2> <p>The main content area of a page (container with the <code> data-role="content"</code> attribute) should be themed by adding the <code> data-theme</code> attribute to the <code> data-role="page"</code> container to ensure that the background colors are applied to the full page, regardless of the content length. (If you add the <code> data-theme</code> attribute to the content container, the background color will stop after the content. So there may be a gap in color between the content and fixed footer.)</p> <p>Additionally, the content area of a collapsible can be themed to match the theme of the collapsible header using the <code>data-content-theme</code> attribute.</p> <code> &lt;div data-role=&quot;page&quot; <strong> data-theme=&quot;a&quot;</strong> <strong>data-content-theme=&quot;a&quot;</strong>&gt; </code> <h2>Theming collapsible blocks</h2> <p>To set the color of the collapsible header, add the <code> data-theme</code> attribute to the collapsible container. The icon and body are not currently themable through data attributes, but can be styled directly with custom css.</p> <code> &lt;div data-role=&quot;collapsible&quot; data-collapsed=&quot;true&quot; <strong> data-theme=&quot;a&quot;&gt;</strong> </code> <h2>Themed examples</h2> <p><strong>A</strong> theme swatch on content &amp; collapsible</p> <div class="ui-body ui-body-a"> <h1>H1 Heading</h1> <p>This is a paragraph that contains <strong>strong</strong>, <em>emphasized</em> and <a href="index.html">linked</a> text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.</p> <div data-role="collapsible" data-collapsed="true" data-theme="a"> <h3>I'm a themed collapsible</h3> <p>I have <code> data-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div><!-- /collapsible --> <div data-role="collapsible" data-theme="a" data-content-theme="a"> <h3>I'm a themed collapsible with a themed content</h3> <p>I have <code> data-content-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div> </div><!-- /themed container --> <p><strong>B</strong> theme swatch on content &amp; collapsible</p> <div class="ui-body ui-body-b"> <h1>H1 Heading</h1> <p>This is a paragraph that contains <strong>strong</strong>, <em>emphasized</em> and <a href="index.html">linked</a> text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.</p> <div data-role="collapsible" data-collapsed="true" data-theme="b"> <h3>I'm a themed collapsible</h3> <p>I have <code> data-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div><!-- /collapsible --> <div data-role="collapsible" data-theme="b" data-content-theme="b"> <h3>I'm a themed collapsible with a themed content</h3> <p>I have <code> data-content-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div> </div><!-- /themed container --> <p><strong>C</strong> theme swatch on content &amp; collapsible</p> <div class="ui-body ui-body-c"> <h1>H1 Heading</h1> <p>This is a paragraph that contains <strong>strong</strong>, <em>emphasized</em> and <a href="index.html">linked</a> text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.</p> <div data-role="collapsible" data-collapsed="true" data-theme="c"> <h3>I'm a themed collapsible</h3> <p>I have <code> data-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div><!-- /collapsible --> <div data-role="collapsible" data-theme="c" data-content-theme="c"> <h3>I'm a themed collapsible with a themed content</h3> <p>I have <code> data-content-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div> </div><!-- /themed container --> <p><strong>D</strong> theme swatch on content &amp; collapsible</p> <div class="ui-body ui-body-d"> <h1>H1 Heading</h1> <p>This is a paragraph that contains <strong>strong</strong>, <em>emphasized</em> and <a href="index.html">linked</a> text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.</p> <div data-role="collapsible" data-collapsed="true" data-theme="d"> <h3>I'm a themed collapsible</h3> <p>I have <code> data-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div><!-- /collapsible --> <div data-role="collapsible" data-theme="d" data-content-theme="d"> <h3>I'm a themed collapsible with a themed content</h3> <p>I have <code> data-content-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div> </div><!-- /themed container --> <p><strong>E</strong> theme swatch on content &amp; collapsible</p> <div class="ui-body ui-body-e"> <h1>H1 Heading</h1> <p>This is a paragraph that contains <strong>strong</strong>, <em>emphasized</em> and <a href="index.html">linked</a> text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.</p> <div data-role="collapsible" data-collapsed="true" data-theme="e"> <h3>I'm a themed collapsible</h3> <p>I have <code> data-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div><!-- /collapsible --> <div data-role="collapsible" data-theme="e" data-content-theme="e"> <h3>I'm a themed collapsible with a themed content</h3> <p>I have <code> data-content-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div> </div><!-- /themed container --> </div><!--/content-primary --> <div class="content-secondary"> <div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="d"> <h3>More in this section</h3> <ul data-role="listview" data-theme="c" data-dividertheme="d"> <li data-role="list-divider">Content Formatting</li> <li><a href="content-html.html">Basic HTML styles</a></li> <li><a href="content-grids.html">Layout grids (columns)</a></li> <li><a href="content-collapsible.html">Collapsible content blocks</a></li> <li><a href="content-collapsible-set.html">Collapsible sets (accordions)</a></li> <li data-theme="a"><a href="content-themes.html">Theming content</a></li> </ul> </div> </div> </div><!-- /content --> <div data-role="footer" class="footer-docs" data-theme="c"> <p>&copy; 2011 The jQuery Project</p> </div> </div><!-- /page --> </body> </html>
controllers/phpdocx/lib/openoffice/openoffice.org/basis3.4/share/config/wizard/web/preview.html
ex1usive-m4d/TemplateDocx
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--*********************************************************** * * 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. * ***********************************************************--> <html> <head> <title>Unbenanntes Dokument</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link href="style.css" rel="stylesheet" type="text/css"> </head> <body background="images/background.gif"> <table width="177" height="100" border="0" align="center"> <tbody> <tr> <td width="12" height="20" class="ccolor">&nbsp;</td> <td width="12" class="ccolor">&nbsp;</td> <td width="149" class="toctitle">Site title</td> <td width="12" class="ccolor">&nbsp;</td> <td width="12" class="ccolor">&nbsp;</td> </tr> <tr> <td height="80" class="ccolor">&nbsp;</td> <td class="tcolor">&nbsp;</td> <td class="tcolor"> <span class="doctitle">Document</span><br> <span class="doccreationdate">Creation Date</span><br> <span class="doclastchangeddate">Last Change Date</span><br> <span class="docfilename">Filename</span></td> <td class="tcolor">&nbsp;</td> <td class="ccolor">&nbsp;</td> </tr> <tr> <td width="12" height="20" class="ccolor">&nbsp;</td> <td width="12" class="ccolor">&nbsp;</td> <td width="149" class="ccolor">&nbsp;</td> <td width="12" class="ccolor">&nbsp;</td> <td width="12" class="ccolor">&nbsp;</td> </tr> </tbody> </table> </body> </html>
tools/share/doc/gcc/Warning-Options.html
ExploreEmbedded/Tit-Windows
<html lang="en"> <head> <title>Warning Options - Using the GNU Compiler Collection (GCC)</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Using the GNU Compiler Collection (GCC)"> <meta name="generator" content="makeinfo 4.13"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Invoking-GCC.html#Invoking-GCC" title="Invoking GCC"> <link rel="prev" href="Language-Independent-Options.html#Language-Independent-Options" title="Language Independent Options"> <link rel="next" href="Debugging-Options.html#Debugging-Options" title="Debugging Options"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- Copyright (C) 1988-2014 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with the Invariant Sections being ``Funding Free Software'', the Front-Cover Texts being (a) (see below), and with the Back-Cover Texts being (b) (see below). A copy of the license is included in the section entitled ``GNU Free Documentation License''. (a) The FSF's Front-Cover Text is: A GNU Manual (b) The FSF's Back-Cover Text is: You have freedom to copy and modify this GNU Manual, like GNU software. Copies published by the Free Software Foundation raise funds for GNU development.--> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> </head> <body> <div class="node"> <a name="Warning-Options"></a> <p> Next:&nbsp;<a rel="next" accesskey="n" href="Debugging-Options.html#Debugging-Options">Debugging Options</a>, Previous:&nbsp;<a rel="previous" accesskey="p" href="Language-Independent-Options.html#Language-Independent-Options">Language Independent Options</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Invoking-GCC.html#Invoking-GCC">Invoking GCC</a> <hr> </div> <h3 class="section">3.8 Options to Request or Suppress Warnings</h3> <p><a name="index-options-to-control-warnings-265"></a><a name="index-warning-messages-266"></a><a name="index-messages_002c-warning-267"></a><a name="index-suppressing-warnings-268"></a> Warnings are diagnostic messages that report constructions that are not inherently erroneous but that are risky or suggest there may have been an error. <p>The following language-independent options do not enable specific warnings but control the kinds of diagnostics produced by GCC. <a name="index-syntax-checking-269"></a> <dl><dt><code>-fsyntax-only</code><dd><a name="index-fsyntax_002donly-270"></a>Check the code for syntax errors, but don't do anything beyond that. <br><dt><code>-fmax-errors=</code><var>n</var><dd><a name="index-fmax_002derrors-271"></a>Limits the maximum number of error messages to <var>n</var>, at which point GCC bails out rather than attempting to continue processing the source code. If <var>n</var> is 0 (the default), there is no limit on the number of error messages produced. If <samp><span class="option">-Wfatal-errors</span></samp> is also specified, then <samp><span class="option">-Wfatal-errors</span></samp> takes precedence over this option. <br><dt><code>-w</code><dd><a name="index-w-272"></a>Inhibit all warning messages. <br><dt><code>-Werror</code><dd><a name="index-Werror-273"></a><a name="index-Wno_002derror-274"></a>Make all warnings into errors. <br><dt><code>-Werror=</code><dd><a name="index-Werror_003d-275"></a><a name="index-Wno_002derror_003d-276"></a>Make the specified warning into an error. The specifier for a warning is appended; for example <samp><span class="option">-Werror=switch</span></samp> turns the warnings controlled by <samp><span class="option">-Wswitch</span></samp> into errors. This switch takes a negative form, to be used to negate <samp><span class="option">-Werror</span></samp> for specific warnings; for example <samp><span class="option">-Wno-error=switch</span></samp> makes <samp><span class="option">-Wswitch</span></samp> warnings not be errors, even when <samp><span class="option">-Werror</span></samp> is in effect. <p>The warning message for each controllable warning includes the option that controls the warning. That option can then be used with <samp><span class="option">-Werror=</span></samp> and <samp><span class="option">-Wno-error=</span></samp> as described above. (Printing of the option in the warning message can be disabled using the <samp><span class="option">-fno-diagnostics-show-option</span></samp> flag.) <p>Note that specifying <samp><span class="option">-Werror=</span></samp><var>foo</var> automatically implies <samp><span class="option">-W</span></samp><var>foo</var>. However, <samp><span class="option">-Wno-error=</span></samp><var>foo</var> does not imply anything. <br><dt><code>-Wfatal-errors</code><dd><a name="index-Wfatal_002derrors-277"></a><a name="index-Wno_002dfatal_002derrors-278"></a>This option causes the compiler to abort compilation on the first error occurred rather than trying to keep going and printing further error messages. </dl> <p>You can request many specific warnings with options beginning with &lsquo;<samp><span class="samp">-W</span></samp>&rsquo;, for example <samp><span class="option">-Wimplicit</span></samp> to request warnings on implicit declarations. Each of these specific warning options also has a negative form beginning &lsquo;<samp><span class="samp">-Wno-</span></samp>&rsquo; to turn off warnings; for example, <samp><span class="option">-Wno-implicit</span></samp>. This manual lists only one of the two forms, whichever is not the default. For further language-specific options also refer to <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a> and <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a>. <p>When an unrecognized warning option is requested (e.g., <samp><span class="option">-Wunknown-warning</span></samp>), GCC emits a diagnostic stating that the option is not recognized. However, if the <samp><span class="option">-Wno-</span></samp> form is used, the behavior is slightly different: no diagnostic is produced for <samp><span class="option">-Wno-unknown-warning</span></samp> unless other diagnostics are being produced. This allows the use of new <samp><span class="option">-Wno-</span></samp> options with old compilers, but if something goes wrong, the compiler warns that an unrecognized option is present. <dl> <dt><code>-Wpedantic</code><dt><code>-pedantic</code><dd><a name="index-pedantic-279"></a><a name="index-Wpedantic-280"></a>Issue all the warnings demanded by strict ISO C and ISO C++; reject all programs that use forbidden extensions, and some other programs that do not follow ISO C and ISO C++. For ISO C, follows the version of the ISO C standard specified by any <samp><span class="option">-std</span></samp> option used. <p>Valid ISO C and ISO C++ programs should compile properly with or without this option (though a rare few require <samp><span class="option">-ansi</span></samp> or a <samp><span class="option">-std</span></samp> option specifying the required version of ISO C). However, without this option, certain GNU extensions and traditional C and C++ features are supported as well. With this option, they are rejected. <p><samp><span class="option">-Wpedantic</span></samp> does not cause warning messages for use of the alternate keywords whose names begin and end with &lsquo;<samp><span class="samp">__</span></samp>&rsquo;. Pedantic warnings are also disabled in the expression that follows <code>__extension__</code>. However, only system header files should use these escape routes; application programs should avoid them. See <a href="Alternate-Keywords.html#Alternate-Keywords">Alternate Keywords</a>. <p>Some users try to use <samp><span class="option">-Wpedantic</span></samp> to check programs for strict ISO C conformance. They soon find that it does not do quite what they want: it finds some non-ISO practices, but not all&mdash;only those for which ISO C <em>requires</em> a diagnostic, and some others for which diagnostics have been added. <p>A feature to report any failure to conform to ISO C might be useful in some instances, but would require considerable additional work and would be quite different from <samp><span class="option">-Wpedantic</span></samp>. We don't have plans to support such a feature in the near future. <p>Where the standard specified with <samp><span class="option">-std</span></samp> represents a GNU extended dialect of C, such as &lsquo;<samp><span class="samp">gnu90</span></samp>&rsquo; or &lsquo;<samp><span class="samp">gnu99</span></samp>&rsquo;, there is a corresponding <dfn>base standard</dfn>, the version of ISO C on which the GNU extended dialect is based. Warnings from <samp><span class="option">-Wpedantic</span></samp> are given where they are required by the base standard. (It does not make sense for such warnings to be given only for features not in the specified GNU C dialect, since by definition the GNU dialects of C include all features the compiler supports with the given option, and there would be nothing to warn about.) <br><dt><code>-pedantic-errors</code><dd><a name="index-pedantic_002derrors-281"></a>Like <samp><span class="option">-Wpedantic</span></samp>, except that errors are produced rather than warnings. <br><dt><code>-Wall</code><dd><a name="index-Wall-282"></a><a name="index-Wno_002dall-283"></a>This enables all the warnings about constructions that some users consider questionable, and that are easy to avoid (or modify to prevent the warning), even in conjunction with macros. This also enables some language-specific warnings described in <a href="C_002b_002b-Dialect-Options.html#C_002b_002b-Dialect-Options">C++ Dialect Options</a> and <a href="Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options.html#Objective_002dC-and-Objective_002dC_002b_002b-Dialect-Options">Objective-C and Objective-C++ Dialect Options</a>. <p><samp><span class="option">-Wall</span></samp> turns on the following warning flags: <pre class="smallexample"> -Waddress -Warray-bounds <span class="roman">(only with</span> <samp><span class="option">-O2</span></samp><span class="roman">)</span> -Wc++11-compat -Wchar-subscripts -Wenum-compare <span class="roman">(in C/ObjC; this is on by default in C++)</span> -Wimplicit-int <span class="roman">(C and Objective-C only)</span> -Wimplicit-function-declaration <span class="roman">(C and Objective-C only)</span> -Wcomment -Wformat -Wmain <span class="roman">(only for C/ObjC and unless</span> <samp><span class="option">-ffreestanding</span></samp><span class="roman">)</span> -Wmaybe-uninitialized -Wmissing-braces <span class="roman">(only for C/ObjC)</span> -Wnonnull -Wopenmp-simd -Wparentheses -Wpointer-sign -Wreorder -Wreturn-type -Wsequence-point -Wsign-compare <span class="roman">(only in C++)</span> -Wstrict-aliasing -Wstrict-overflow=1 -Wswitch -Wtrigraphs -Wuninitialized -Wunknown-pragmas -Wunused-function -Wunused-label -Wunused-value -Wunused-variable -Wvolatile-register-var </pre> <p>Note that some warning flags are not implied by <samp><span class="option">-Wall</span></samp>. Some of them warn about constructions that users generally do not consider questionable, but which occasionally you might wish to check for; others warn about constructions that are necessary or hard to avoid in some cases, and there is no simple way to modify the code to suppress the warning. Some of them are enabled by <samp><span class="option">-Wextra</span></samp> but many of them must be enabled individually. <br><dt><code>-Wextra</code><dd><a name="index-W-284"></a><a name="index-Wextra-285"></a><a name="index-Wno_002dextra-286"></a>This enables some extra warning flags that are not enabled by <samp><span class="option">-Wall</span></samp>. (This option used to be called <samp><span class="option">-W</span></samp>. The older name is still supported, but the newer name is more descriptive.) <pre class="smallexample"> -Wclobbered -Wempty-body -Wignored-qualifiers -Wmissing-field-initializers -Wmissing-parameter-type <span class="roman">(C only)</span> -Wold-style-declaration <span class="roman">(C only)</span> -Woverride-init -Wsign-compare -Wtype-limits -Wuninitialized -Wunused-parameter <span class="roman">(only with</span> <samp><span class="option">-Wunused</span></samp> <span class="roman">or</span> <samp><span class="option">-Wall</span></samp><span class="roman">)</span> -Wunused-but-set-parameter <span class="roman">(only with</span> <samp><span class="option">-Wunused</span></samp> <span class="roman">or</span> <samp><span class="option">-Wall</span></samp><span class="roman">)</span> </pre> <p>The option <samp><span class="option">-Wextra</span></samp> also prints warning messages for the following cases: <ul> <li>A pointer is compared against integer zero with &lsquo;<samp><span class="samp">&lt;</span></samp>&rsquo;, &lsquo;<samp><span class="samp">&lt;=</span></samp>&rsquo;, &lsquo;<samp><span class="samp">&gt;</span></samp>&rsquo;, or &lsquo;<samp><span class="samp">&gt;=</span></samp>&rsquo;. <li>(C++ only) An enumerator and a non-enumerator both appear in a conditional expression. <li>(C++ only) Ambiguous virtual bases. <li>(C++ only) Subscripting an array that has been declared &lsquo;<samp><span class="samp">register</span></samp>&rsquo;. <li>(C++ only) Taking the address of a variable that has been declared &lsquo;<samp><span class="samp">register</span></samp>&rsquo;. <li>(C++ only) A base class is not initialized in a derived class's copy constructor. </ul> <br><dt><code>-Wchar-subscripts</code><dd><a name="index-Wchar_002dsubscripts-287"></a><a name="index-Wno_002dchar_002dsubscripts-288"></a>Warn if an array subscript has type <code>char</code>. This is a common cause of error, as programmers often forget that this type is signed on some machines. This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wcomment</code><dd><a name="index-Wcomment-289"></a><a name="index-Wno_002dcomment-290"></a>Warn whenever a comment-start sequence &lsquo;<samp><span class="samp">/*</span></samp>&rsquo; appears in a &lsquo;<samp><span class="samp">/*</span></samp>&rsquo; comment, or whenever a Backslash-Newline appears in a &lsquo;<samp><span class="samp">//</span></samp>&rsquo; comment. This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wno-coverage-mismatch</code><dd><a name="index-Wno_002dcoverage_002dmismatch-291"></a>Warn if feedback profiles do not match when using the <samp><span class="option">-fprofile-use</span></samp> option. If a source file is changed between compiling with <samp><span class="option">-fprofile-gen</span></samp> and with <samp><span class="option">-fprofile-use</span></samp>, the files with the profile feedback can fail to match the source file and GCC cannot use the profile feedback information. By default, this warning is enabled and is treated as an error. <samp><span class="option">-Wno-coverage-mismatch</span></samp> can be used to disable the warning or <samp><span class="option">-Wno-error=coverage-mismatch</span></samp> can be used to disable the error. Disabling the error for this warning can result in poorly optimized code and is useful only in the case of very minor changes such as bug fixes to an existing code-base. Completely disabling the warning is not recommended. <br><dt><code>-Wno-cpp</code><dd><span class="roman">(C, Objective-C, C++, Objective-C++ and Fortran only)</span> <p>Suppress warning messages emitted by <code>#warning</code> directives. <br><dt><code>-Wdouble-promotion </code><span class="roman">(C, C++, Objective-C and Objective-C++ only)</span><dd><a name="index-Wdouble_002dpromotion-292"></a><a name="index-Wno_002ddouble_002dpromotion-293"></a>Give a warning when a value of type <code>float</code> is implicitly promoted to <code>double</code>. CPUs with a 32-bit &ldquo;single-precision&rdquo; floating-point unit implement <code>float</code> in hardware, but emulate <code>double</code> in software. On such a machine, doing computations using <code>double</code> values is much more expensive because of the overhead required for software emulation. <p>It is easy to accidentally do computations with <code>double</code> because floating-point literals are implicitly of type <code>double</code>. For example, in: <pre class="smallexample"> float area(float radius) { return 3.14159 * radius * radius; } </pre> <p>the compiler performs the entire computation with <code>double</code> because the floating-point literal is a <code>double</code>. <br><dt><code>-Wformat</code><dt><code>-Wformat=</code><var>n</var><dd><a name="index-Wformat-294"></a><a name="index-Wno_002dformat-295"></a><a name="index-ffreestanding-296"></a><a name="index-fno_002dbuiltin-297"></a><a name="index-Wformat_003d-298"></a>Check calls to <code>printf</code> and <code>scanf</code>, etc., to make sure that the arguments supplied have types appropriate to the format string specified, and that the conversions specified in the format string make sense. This includes standard functions, and others specified by format attributes (see <a href="Function-Attributes.html#Function-Attributes">Function Attributes</a>), in the <code>printf</code>, <code>scanf</code>, <code>strftime</code> and <code>strfmon</code> (an X/Open extension, not in the C standard) families (or other target-specific families). Which functions are checked without format attributes having been specified depends on the standard version selected, and such checks of functions without the attribute specified are disabled by <samp><span class="option">-ffreestanding</span></samp> or <samp><span class="option">-fno-builtin</span></samp>. <p>The formats are checked against the format features supported by GNU libc version 2.2. These include all ISO C90 and C99 features, as well as features from the Single Unix Specification and some BSD and GNU extensions. Other library implementations may not support all these features; GCC does not support warning about features that go beyond a particular library's limitations. However, if <samp><span class="option">-Wpedantic</span></samp> is used with <samp><span class="option">-Wformat</span></samp>, warnings are given about format features not in the selected standard version (but not for <code>strfmon</code> formats, since those are not in any version of the C standard). See <a href="C-Dialect-Options.html#C-Dialect-Options">Options Controlling C Dialect</a>. <dl> <dt><code>-Wformat=1</code><dt><code>-Wformat</code><dd><a name="index-Wformat-299"></a><a name="index-Wformat_003d1-300"></a>Option <samp><span class="option">-Wformat</span></samp> is equivalent to <samp><span class="option">-Wformat=1</span></samp>, and <samp><span class="option">-Wno-format</span></samp> is equivalent to <samp><span class="option">-Wformat=0</span></samp>. Since <samp><span class="option">-Wformat</span></samp> also checks for null format arguments for several functions, <samp><span class="option">-Wformat</span></samp> also implies <samp><span class="option">-Wnonnull</span></samp>. Some aspects of this level of format checking can be disabled by the options: <samp><span class="option">-Wno-format-contains-nul</span></samp>, <samp><span class="option">-Wno-format-extra-args</span></samp>, and <samp><span class="option">-Wno-format-zero-length</span></samp>. <samp><span class="option">-Wformat</span></samp> is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wno-format-contains-nul</code><dd><a name="index-Wno_002dformat_002dcontains_002dnul-301"></a><a name="index-Wformat_002dcontains_002dnul-302"></a>If <samp><span class="option">-Wformat</span></samp> is specified, do not warn about format strings that contain NUL bytes. <br><dt><code>-Wno-format-extra-args</code><dd><a name="index-Wno_002dformat_002dextra_002dargs-303"></a><a name="index-Wformat_002dextra_002dargs-304"></a>If <samp><span class="option">-Wformat</span></samp> is specified, do not warn about excess arguments to a <code>printf</code> or <code>scanf</code> format function. The C standard specifies that such arguments are ignored. <p>Where the unused arguments lie between used arguments that are specified with &lsquo;<samp><span class="samp">$</span></samp>&rsquo; operand number specifications, normally warnings are still given, since the implementation could not know what type to pass to <code>va_arg</code> to skip the unused arguments. However, in the case of <code>scanf</code> formats, this option suppresses the warning if the unused arguments are all pointers, since the Single Unix Specification says that such unused arguments are allowed. <br><dt><code>-Wno-format-zero-length</code><dd><a name="index-Wno_002dformat_002dzero_002dlength-305"></a><a name="index-Wformat_002dzero_002dlength-306"></a>If <samp><span class="option">-Wformat</span></samp> is specified, do not warn about zero-length formats. The C standard specifies that zero-length formats are allowed. <br><dt><code>-Wformat=2</code><dd><a name="index-Wformat_003d2-307"></a>Enable <samp><span class="option">-Wformat</span></samp> plus additional format checks. Currently equivalent to <samp><span class="option">-Wformat -Wformat-nonliteral -Wformat-security -Wformat-y2k</span></samp>. <br><dt><code>-Wformat-nonliteral</code><dd><a name="index-Wformat_002dnonliteral-308"></a><a name="index-Wno_002dformat_002dnonliteral-309"></a>If <samp><span class="option">-Wformat</span></samp> is specified, also warn if the format string is not a string literal and so cannot be checked, unless the format function takes its format arguments as a <code>va_list</code>. <br><dt><code>-Wformat-security</code><dd><a name="index-Wformat_002dsecurity-310"></a><a name="index-Wno_002dformat_002dsecurity-311"></a>If <samp><span class="option">-Wformat</span></samp> is specified, also warn about uses of format functions that represent possible security problems. At present, this warns about calls to <code>printf</code> and <code>scanf</code> functions where the format string is not a string literal and there are no format arguments, as in <code>printf (foo);</code>. This may be a security hole if the format string came from untrusted input and contains &lsquo;<samp><span class="samp">%n</span></samp>&rsquo;. (This is currently a subset of what <samp><span class="option">-Wformat-nonliteral</span></samp> warns about, but in future warnings may be added to <samp><span class="option">-Wformat-security</span></samp> that are not included in <samp><span class="option">-Wformat-nonliteral</span></samp>.) <br><dt><code>-Wformat-y2k</code><dd><a name="index-Wformat_002dy2k-312"></a><a name="index-Wno_002dformat_002dy2k-313"></a>If <samp><span class="option">-Wformat</span></samp> is specified, also warn about <code>strftime</code> formats that may yield only a two-digit year. </dl> <br><dt><code>-Wnonnull</code><dd><a name="index-Wnonnull-314"></a><a name="index-Wno_002dnonnull-315"></a>Warn about passing a null pointer for arguments marked as requiring a non-null value by the <code>nonnull</code> function attribute. <p><samp><span class="option">-Wnonnull</span></samp> is included in <samp><span class="option">-Wall</span></samp> and <samp><span class="option">-Wformat</span></samp>. It can be disabled with the <samp><span class="option">-Wno-nonnull</span></samp> option. <br><dt><code>-Winit-self </code><span class="roman">(C, C++, Objective-C and Objective-C++ only)</span><dd><a name="index-Winit_002dself-316"></a><a name="index-Wno_002dinit_002dself-317"></a>Warn about uninitialized variables that are initialized with themselves. Note this option can only be used with the <samp><span class="option">-Wuninitialized</span></samp> option. <p>For example, GCC warns about <code>i</code> being uninitialized in the following snippet only when <samp><span class="option">-Winit-self</span></samp> has been specified: <pre class="smallexample"> int f() { int i = i; return i; } </pre> <p>This warning is enabled by <samp><span class="option">-Wall</span></samp> in C++. <br><dt><code>-Wimplicit-int </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wimplicit_002dint-318"></a><a name="index-Wno_002dimplicit_002dint-319"></a>Warn when a declaration does not specify a type. This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wimplicit-function-declaration </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wimplicit_002dfunction_002ddeclaration-320"></a><a name="index-Wno_002dimplicit_002dfunction_002ddeclaration-321"></a>Give a warning whenever a function is used before being declared. In C99 mode (<samp><span class="option">-std=c99</span></samp> or <samp><span class="option">-std=gnu99</span></samp>), this warning is enabled by default and it is made into an error by <samp><span class="option">-pedantic-errors</span></samp>. This warning is also enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wimplicit </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wimplicit-322"></a><a name="index-Wno_002dimplicit-323"></a>Same as <samp><span class="option">-Wimplicit-int</span></samp> and <samp><span class="option">-Wimplicit-function-declaration</span></samp>. This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wignored-qualifiers </code><span class="roman">(C and C++ only)</span><dd><a name="index-Wignored_002dqualifiers-324"></a><a name="index-Wno_002dignored_002dqualifiers-325"></a>Warn if the return type of a function has a type qualifier such as <code>const</code>. For ISO C such a type qualifier has no effect, since the value returned by a function is not an lvalue. For C++, the warning is only emitted for scalar types or <code>void</code>. ISO C prohibits qualified <code>void</code> return types on function definitions, so such return types always receive a warning even without this option. <p>This warning is also enabled by <samp><span class="option">-Wextra</span></samp>. <br><dt><code>-Wmain</code><dd><a name="index-Wmain-326"></a><a name="index-Wno_002dmain-327"></a>Warn if the type of &lsquo;<samp><span class="samp">main</span></samp>&rsquo; is suspicious. &lsquo;<samp><span class="samp">main</span></samp>&rsquo; should be a function with external linkage, returning int, taking either zero arguments, two, or three arguments of appropriate types. This warning is enabled by default in C++ and is enabled by either <samp><span class="option">-Wall</span></samp> or <samp><span class="option">-Wpedantic</span></samp>. <br><dt><code>-Wmissing-braces</code><dd><a name="index-Wmissing_002dbraces-328"></a><a name="index-Wno_002dmissing_002dbraces-329"></a>Warn if an aggregate or union initializer is not fully bracketed. In the following example, the initializer for &lsquo;<samp><span class="samp">a</span></samp>&rsquo; is not fully bracketed, but that for &lsquo;<samp><span class="samp">b</span></samp>&rsquo; is fully bracketed. This warning is enabled by <samp><span class="option">-Wall</span></samp> in C. <pre class="smallexample"> int a[2][2] = { 0, 1, 2, 3 }; int b[2][2] = { { 0, 1 }, { 2, 3 } }; </pre> <p>This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wmissing-include-dirs </code><span class="roman">(C, C++, Objective-C and Objective-C++ only)</span><dd><a name="index-Wmissing_002dinclude_002ddirs-330"></a><a name="index-Wno_002dmissing_002dinclude_002ddirs-331"></a>Warn if a user-supplied include directory does not exist. <br><dt><code>-Wparentheses</code><dd><a name="index-Wparentheses-332"></a><a name="index-Wno_002dparentheses-333"></a>Warn if parentheses are omitted in certain contexts, such as when there is an assignment in a context where a truth value is expected, or when operators are nested whose precedence people often get confused about. <p>Also warn if a comparison like &lsquo;<samp><span class="samp">x&lt;=y&lt;=z</span></samp>&rsquo; appears; this is equivalent to &lsquo;<samp><span class="samp">(x&lt;=y ? 1 : 0) &lt;= z</span></samp>&rsquo;, which is a different interpretation from that of ordinary mathematical notation. <p>Also warn about constructions where there may be confusion to which <code>if</code> statement an <code>else</code> branch belongs. Here is an example of such a case: <pre class="smallexample"> { if (a) if (b) foo (); else bar (); } </pre> <p>In C/C++, every <code>else</code> branch belongs to the innermost possible <code>if</code> statement, which in this example is <code>if (b)</code>. This is often not what the programmer expected, as illustrated in the above example by indentation the programmer chose. When there is the potential for this confusion, GCC issues a warning when this flag is specified. To eliminate the warning, add explicit braces around the innermost <code>if</code> statement so there is no way the <code>else</code> can belong to the enclosing <code>if</code>. The resulting code looks like this: <pre class="smallexample"> { if (a) { if (b) foo (); else bar (); } } </pre> <p>Also warn for dangerous uses of the GNU extension to <code>?:</code> with omitted middle operand. When the condition in the <code>?</code>: operator is a boolean expression, the omitted value is always 1. Often programmers expect it to be a value computed inside the conditional expression instead. <p>This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wsequence-point</code><dd><a name="index-Wsequence_002dpoint-334"></a><a name="index-Wno_002dsequence_002dpoint-335"></a>Warn about code that may have undefined semantics because of violations of sequence point rules in the C and C++ standards. <p>The C and C++ standards define the order in which expressions in a C/C++ program are evaluated in terms of <dfn>sequence points</dfn>, which represent a partial ordering between the execution of parts of the program: those executed before the sequence point, and those executed after it. These occur after the evaluation of a full expression (one which is not part of a larger expression), after the evaluation of the first operand of a <code>&amp;&amp;</code>, <code>||</code>, <code>? :</code> or <code>,</code> (comma) operator, before a function is called (but after the evaluation of its arguments and the expression denoting the called function), and in certain other places. Other than as expressed by the sequence point rules, the order of evaluation of subexpressions of an expression is not specified. All these rules describe only a partial order rather than a total order, since, for example, if two functions are called within one expression with no sequence point between them, the order in which the functions are called is not specified. However, the standards committee have ruled that function calls do not overlap. <p>It is not specified when between sequence points modifications to the values of objects take effect. Programs whose behavior depends on this have undefined behavior; the C and C++ standards specify that &ldquo;Between the previous and next sequence point an object shall have its stored value modified at most once by the evaluation of an expression. Furthermore, the prior value shall be read only to determine the value to be stored.&rdquo;. If a program breaks these rules, the results on any particular implementation are entirely unpredictable. <p>Examples of code with undefined behavior are <code>a = a++;</code>, <code>a[n] = b[n++]</code> and <code>a[i++] = i;</code>. Some more complicated cases are not diagnosed by this option, and it may give an occasional false positive result, but in general it has been found fairly effective at detecting this sort of problem in programs. <p>The standard is worded confusingly, therefore there is some debate over the precise meaning of the sequence point rules in subtle cases. Links to discussions of the problem, including proposed formal definitions, may be found on the GCC readings page, at <a href="http://gcc.gnu.org/readings.html">http://gcc.gnu.org/readings.html</a>. <p>This warning is enabled by <samp><span class="option">-Wall</span></samp> for C and C++. <br><dt><code>-Wno-return-local-addr</code><dd><a name="index-Wno_002dreturn_002dlocal_002daddr-336"></a><a name="index-Wreturn_002dlocal_002daddr-337"></a>Do not warn about returning a pointer (or in C++, a reference) to a variable that goes out of scope after the function returns. <br><dt><code>-Wreturn-type</code><dd><a name="index-Wreturn_002dtype-338"></a><a name="index-Wno_002dreturn_002dtype-339"></a>Warn whenever a function is defined with a return type that defaults to <code>int</code>. Also warn about any <code>return</code> statement with no return value in a function whose return type is not <code>void</code> (falling off the end of the function body is considered returning without a value), and about a <code>return</code> statement with an expression in a function whose return type is <code>void</code>. <p>For C++, a function without return type always produces a diagnostic message, even when <samp><span class="option">-Wno-return-type</span></samp> is specified. The only exceptions are &lsquo;<samp><span class="samp">main</span></samp>&rsquo; and functions defined in system headers. <p>This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wswitch</code><dd><a name="index-Wswitch-340"></a><a name="index-Wno_002dswitch-341"></a>Warn whenever a <code>switch</code> statement has an index of enumerated type and lacks a <code>case</code> for one or more of the named codes of that enumeration. (The presence of a <code>default</code> label prevents this warning.) <code>case</code> labels outside the enumeration range also provoke warnings when this option is used (even if there is a <code>default</code> label). This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wswitch-default</code><dd><a name="index-Wswitch_002ddefault-342"></a><a name="index-Wno_002dswitch_002ddefault-343"></a>Warn whenever a <code>switch</code> statement does not have a <code>default</code> case. <br><dt><code>-Wswitch-enum</code><dd><a name="index-Wswitch_002denum-344"></a><a name="index-Wno_002dswitch_002denum-345"></a>Warn whenever a <code>switch</code> statement has an index of enumerated type and lacks a <code>case</code> for one or more of the named codes of that enumeration. <code>case</code> labels outside the enumeration range also provoke warnings when this option is used. The only difference between <samp><span class="option">-Wswitch</span></samp> and this option is that this option gives a warning about an omitted enumeration code even if there is a <code>default</code> label. <br><dt><code>-Wsync-nand </code><span class="roman">(C and C++ only)</span><dd><a name="index-Wsync_002dnand-346"></a><a name="index-Wno_002dsync_002dnand-347"></a>Warn when <code>__sync_fetch_and_nand</code> and <code>__sync_nand_and_fetch</code> built-in functions are used. These functions changed semantics in GCC 4.4. <br><dt><code>-Wtrigraphs</code><dd><a name="index-Wtrigraphs-348"></a><a name="index-Wno_002dtrigraphs-349"></a>Warn if any trigraphs are encountered that might change the meaning of the program (trigraphs within comments are not warned about). This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wunused-but-set-parameter</code><dd><a name="index-Wunused_002dbut_002dset_002dparameter-350"></a><a name="index-Wno_002dunused_002dbut_002dset_002dparameter-351"></a>Warn whenever a function parameter is assigned to, but otherwise unused (aside from its declaration). <p>To suppress this warning use the &lsquo;<samp><span class="samp">unused</span></samp>&rsquo; attribute (see <a href="Variable-Attributes.html#Variable-Attributes">Variable Attributes</a>). <p>This warning is also enabled by <samp><span class="option">-Wunused</span></samp> together with <samp><span class="option">-Wextra</span></samp>. <br><dt><code>-Wunused-but-set-variable</code><dd><a name="index-Wunused_002dbut_002dset_002dvariable-352"></a><a name="index-Wno_002dunused_002dbut_002dset_002dvariable-353"></a>Warn whenever a local variable is assigned to, but otherwise unused (aside from its declaration). This warning is enabled by <samp><span class="option">-Wall</span></samp>. <p>To suppress this warning use the &lsquo;<samp><span class="samp">unused</span></samp>&rsquo; attribute (see <a href="Variable-Attributes.html#Variable-Attributes">Variable Attributes</a>). <p>This warning is also enabled by <samp><span class="option">-Wunused</span></samp>, which is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wunused-function</code><dd><a name="index-Wunused_002dfunction-354"></a><a name="index-Wno_002dunused_002dfunction-355"></a>Warn whenever a static function is declared but not defined or a non-inline static function is unused. This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wunused-label</code><dd><a name="index-Wunused_002dlabel-356"></a><a name="index-Wno_002dunused_002dlabel-357"></a>Warn whenever a label is declared but not used. This warning is enabled by <samp><span class="option">-Wall</span></samp>. <p>To suppress this warning use the &lsquo;<samp><span class="samp">unused</span></samp>&rsquo; attribute (see <a href="Variable-Attributes.html#Variable-Attributes">Variable Attributes</a>). <br><dt><code>-Wunused-local-typedefs </code><span class="roman">(C, Objective-C, C++ and Objective-C++ only)</span><dd><a name="index-Wunused_002dlocal_002dtypedefs-358"></a>Warn when a typedef locally defined in a function is not used. This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wunused-parameter</code><dd><a name="index-Wunused_002dparameter-359"></a><a name="index-Wno_002dunused_002dparameter-360"></a>Warn whenever a function parameter is unused aside from its declaration. <p>To suppress this warning use the &lsquo;<samp><span class="samp">unused</span></samp>&rsquo; attribute (see <a href="Variable-Attributes.html#Variable-Attributes">Variable Attributes</a>). <br><dt><code>-Wno-unused-result</code><dd><a name="index-Wunused_002dresult-361"></a><a name="index-Wno_002dunused_002dresult-362"></a>Do not warn if a caller of a function marked with attribute <code>warn_unused_result</code> (see <a href="Function-Attributes.html#Function-Attributes">Function Attributes</a>) does not use its return value. The default is <samp><span class="option">-Wunused-result</span></samp>. <br><dt><code>-Wunused-variable</code><dd><a name="index-Wunused_002dvariable-363"></a><a name="index-Wno_002dunused_002dvariable-364"></a>Warn whenever a local variable or non-constant static variable is unused aside from its declaration. This warning is enabled by <samp><span class="option">-Wall</span></samp>. <p>To suppress this warning use the &lsquo;<samp><span class="samp">unused</span></samp>&rsquo; attribute (see <a href="Variable-Attributes.html#Variable-Attributes">Variable Attributes</a>). <br><dt><code>-Wunused-value</code><dd><a name="index-Wunused_002dvalue-365"></a><a name="index-Wno_002dunused_002dvalue-366"></a>Warn whenever a statement computes a result that is explicitly not used. To suppress this warning cast the unused expression to &lsquo;<samp><span class="samp">void</span></samp>&rsquo;. This includes an expression-statement or the left-hand side of a comma expression that contains no side effects. For example, an expression such as &lsquo;<samp><span class="samp">x[i,j]</span></samp>&rsquo; causes a warning, while &lsquo;<samp><span class="samp">x[(void)i,j]</span></samp>&rsquo; does not. <p>This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wunused</code><dd><a name="index-Wunused-367"></a><a name="index-Wno_002dunused-368"></a>All the above <samp><span class="option">-Wunused</span></samp> options combined. <p>In order to get a warning about an unused function parameter, you must either specify <samp><span class="option">-Wextra -Wunused</span></samp> (note that <samp><span class="option">-Wall</span></samp> implies <samp><span class="option">-Wunused</span></samp>), or separately specify <samp><span class="option">-Wunused-parameter</span></samp>. <br><dt><code>-Wuninitialized</code><dd><a name="index-Wuninitialized-369"></a><a name="index-Wno_002duninitialized-370"></a>Warn if an automatic variable is used without first being initialized or if a variable may be clobbered by a <code>setjmp</code> call. In C++, warn if a non-static reference or non-static &lsquo;<samp><span class="samp">const</span></samp>&rsquo; member appears in a class without constructors. <p>If you want to warn about code that uses the uninitialized value of the variable in its own initializer, use the <samp><span class="option">-Winit-self</span></samp> option. <p>These warnings occur for individual uninitialized or clobbered elements of structure, union or array variables as well as for variables that are uninitialized or clobbered as a whole. They do not occur for variables or elements declared <code>volatile</code>. Because these warnings depend on optimization, the exact variables or elements for which there are warnings depends on the precise optimization options and version of GCC used. <p>Note that there may be no warning about a variable that is used only to compute a value that itself is never used, because such computations may be deleted by data flow analysis before the warnings are printed. <br><dt><code>-Wmaybe-uninitialized</code><dd><a name="index-Wmaybe_002duninitialized-371"></a><a name="index-Wno_002dmaybe_002duninitialized-372"></a>For an automatic variable, if there exists a path from the function entry to a use of the variable that is initialized, but there exist some other paths for which the variable is not initialized, the compiler emits a warning if it cannot prove the uninitialized paths are not executed at run time. These warnings are made optional because GCC is not smart enough to see all the reasons why the code might be correct in spite of appearing to have an error. Here is one example of how this can happen: <pre class="smallexample"> { int x; switch (y) { case 1: x = 1; break; case 2: x = 4; break; case 3: x = 5; } foo (x); } </pre> <p class="noindent">If the value of <code>y</code> is always 1, 2 or 3, then <code>x</code> is always initialized, but GCC doesn't know this. To suppress the warning, you need to provide a default case with assert(0) or similar code. <p><a name="index-g_t_0040code_007blongjmp_007d-warnings-373"></a>This option also warns when a non-volatile automatic variable might be changed by a call to <code>longjmp</code>. These warnings as well are possible only in optimizing compilation. <p>The compiler sees only the calls to <code>setjmp</code>. It cannot know where <code>longjmp</code> will be called; in fact, a signal handler could call it at any point in the code. As a result, you may get a warning even when there is in fact no problem because <code>longjmp</code> cannot in fact be called at the place that would cause a problem. <p>Some spurious warnings can be avoided if you declare all the functions you use that never return as <code>noreturn</code>. See <a href="Function-Attributes.html#Function-Attributes">Function Attributes</a>. <p>This warning is enabled by <samp><span class="option">-Wall</span></samp> or <samp><span class="option">-Wextra</span></samp>. <br><dt><code>-Wunknown-pragmas</code><dd><a name="index-Wunknown_002dpragmas-374"></a><a name="index-Wno_002dunknown_002dpragmas-375"></a><a name="index-warning-for-unknown-pragmas-376"></a><a name="index-unknown-pragmas_002c-warning-377"></a><a name="index-pragmas_002c-warning-of-unknown-378"></a>Warn when a <code>#pragma</code> directive is encountered that is not understood by GCC. If this command-line option is used, warnings are even issued for unknown pragmas in system header files. This is not the case if the warnings are only enabled by the <samp><span class="option">-Wall</span></samp> command-line option. <br><dt><code>-Wno-pragmas</code><dd><a name="index-Wno_002dpragmas-379"></a><a name="index-Wpragmas-380"></a>Do not warn about misuses of pragmas, such as incorrect parameters, invalid syntax, or conflicts between pragmas. See also <samp><span class="option">-Wunknown-pragmas</span></samp>. <br><dt><code>-Wstrict-aliasing</code><dd><a name="index-Wstrict_002daliasing-381"></a><a name="index-Wno_002dstrict_002daliasing-382"></a>This option is only active when <samp><span class="option">-fstrict-aliasing</span></samp> is active. It warns about code that might break the strict aliasing rules that the compiler is using for optimization. The warning does not catch all cases, but does attempt to catch the more common pitfalls. It is included in <samp><span class="option">-Wall</span></samp>. It is equivalent to <samp><span class="option">-Wstrict-aliasing=3</span></samp> <br><dt><code>-Wstrict-aliasing=n</code><dd><a name="index-Wstrict_002daliasing_003dn-383"></a>This option is only active when <samp><span class="option">-fstrict-aliasing</span></samp> is active. It warns about code that might break the strict aliasing rules that the compiler is using for optimization. Higher levels correspond to higher accuracy (fewer false positives). Higher levels also correspond to more effort, similar to the way <samp><span class="option">-O</span></samp> works. <samp><span class="option">-Wstrict-aliasing</span></samp> is equivalent to <samp><span class="option">-Wstrict-aliasing=3</span></samp>. <p>Level 1: Most aggressive, quick, least accurate. Possibly useful when higher levels do not warn but <samp><span class="option">-fstrict-aliasing</span></samp> still breaks the code, as it has very few false negatives. However, it has many false positives. Warns for all pointer conversions between possibly incompatible types, even if never dereferenced. Runs in the front end only. <p>Level 2: Aggressive, quick, not too precise. May still have many false positives (not as many as level 1 though), and few false negatives (but possibly more than level 1). Unlike level 1, it only warns when an address is taken. Warns about incomplete types. Runs in the front end only. <p>Level 3 (default for <samp><span class="option">-Wstrict-aliasing</span></samp>): Should have very few false positives and few false negatives. Slightly slower than levels 1 or 2 when optimization is enabled. Takes care of the common pun+dereference pattern in the front end: <code>*(int*)&amp;some_float</code>. If optimization is enabled, it also runs in the back end, where it deals with multiple statement cases using flow-sensitive points-to information. Only warns when the converted pointer is dereferenced. Does not warn about incomplete types. <br><dt><code>-Wstrict-overflow</code><dt><code>-Wstrict-overflow=</code><var>n</var><dd><a name="index-Wstrict_002doverflow-384"></a><a name="index-Wno_002dstrict_002doverflow-385"></a>This option is only active when <samp><span class="option">-fstrict-overflow</span></samp> is active. It warns about cases where the compiler optimizes based on the assumption that signed overflow does not occur. Note that it does not warn about all cases where the code might overflow: it only warns about cases where the compiler implements some optimization. Thus this warning depends on the optimization level. <p>An optimization that assumes that signed overflow does not occur is perfectly safe if the values of the variables involved are such that overflow never does, in fact, occur. Therefore this warning can easily give a false positive: a warning about code that is not actually a problem. To help focus on important issues, several warning levels are defined. No warnings are issued for the use of undefined signed overflow when estimating how many iterations a loop requires, in particular when determining whether a loop will be executed at all. <dl> <dt><code>-Wstrict-overflow=1</code><dd>Warn about cases that are both questionable and easy to avoid. For example, with <samp><span class="option">-fstrict-overflow</span></samp>, the compiler simplifies <code>x + 1 &gt; x</code> to <code>1</code>. This level of <samp><span class="option">-Wstrict-overflow</span></samp> is enabled by <samp><span class="option">-Wall</span></samp>; higher levels are not, and must be explicitly requested. <br><dt><code>-Wstrict-overflow=2</code><dd>Also warn about other cases where a comparison is simplified to a constant. For example: <code>abs (x) &gt;= 0</code>. This can only be simplified when <samp><span class="option">-fstrict-overflow</span></samp> is in effect, because <code>abs (INT_MIN)</code> overflows to <code>INT_MIN</code>, which is less than zero. <samp><span class="option">-Wstrict-overflow</span></samp> (with no level) is the same as <samp><span class="option">-Wstrict-overflow=2</span></samp>. <br><dt><code>-Wstrict-overflow=3</code><dd>Also warn about other cases where a comparison is simplified. For example: <code>x + 1 &gt; 1</code> is simplified to <code>x &gt; 0</code>. <br><dt><code>-Wstrict-overflow=4</code><dd>Also warn about other simplifications not covered by the above cases. For example: <code>(x * 10) / 5</code> is simplified to <code>x * 2</code>. <br><dt><code>-Wstrict-overflow=5</code><dd>Also warn about cases where the compiler reduces the magnitude of a constant involved in a comparison. For example: <code>x + 2 &gt; y</code> is simplified to <code>x + 1 &gt;= y</code>. This is reported only at the highest warning level because this simplification applies to many comparisons, so this warning level gives a very large number of false positives. </dl> <br><dt><code>-Wsuggest-attribute=</code><span class="roman">[</span><code>pure</code><span class="roman">|</span><code>const</code><span class="roman">|</span><code>noreturn</code><span class="roman">|</span><code>format</code><span class="roman">]</span><dd><a name="index-Wsuggest_002dattribute_003d-386"></a><a name="index-Wno_002dsuggest_002dattribute_003d-387"></a>Warn for cases where adding an attribute may be beneficial. The attributes currently supported are listed below. <dl> <dt><code>-Wsuggest-attribute=pure</code><dt><code>-Wsuggest-attribute=const</code><dt><code>-Wsuggest-attribute=noreturn</code><dd><a name="index-Wsuggest_002dattribute_003dpure-388"></a><a name="index-Wno_002dsuggest_002dattribute_003dpure-389"></a><a name="index-Wsuggest_002dattribute_003dconst-390"></a><a name="index-Wno_002dsuggest_002dattribute_003dconst-391"></a><a name="index-Wsuggest_002dattribute_003dnoreturn-392"></a><a name="index-Wno_002dsuggest_002dattribute_003dnoreturn-393"></a> Warn about functions that might be candidates for attributes <code>pure</code>, <code>const</code> or <code>noreturn</code>. The compiler only warns for functions visible in other compilation units or (in the case of <code>pure</code> and <code>const</code>) if it cannot prove that the function returns normally. A function returns normally if it doesn't contain an infinite loop or return abnormally by throwing, calling <code>abort()</code> or trapping. This analysis requires option <samp><span class="option">-fipa-pure-const</span></samp>, which is enabled by default at <samp><span class="option">-O</span></samp> and higher. Higher optimization levels improve the accuracy of the analysis. <br><dt><code>-Wsuggest-attribute=format</code><dt><code>-Wmissing-format-attribute</code><dd><a name="index-Wsuggest_002dattribute_003dformat-394"></a><a name="index-Wmissing_002dformat_002dattribute-395"></a><a name="index-Wno_002dsuggest_002dattribute_003dformat-396"></a><a name="index-Wno_002dmissing_002dformat_002dattribute-397"></a><a name="index-Wformat-398"></a><a name="index-Wno_002dformat-399"></a> Warn about function pointers that might be candidates for <code>format</code> attributes. Note these are only possible candidates, not absolute ones. GCC guesses that function pointers with <code>format</code> attributes that are used in assignment, initialization, parameter passing or return statements should have a corresponding <code>format</code> attribute in the resulting type. I.e. the left-hand side of the assignment or initialization, the type of the parameter variable, or the return type of the containing function respectively should also have a <code>format</code> attribute to avoid the warning. <p>GCC also warns about function definitions that might be candidates for <code>format</code> attributes. Again, these are only possible candidates. GCC guesses that <code>format</code> attributes might be appropriate for any function that calls a function like <code>vprintf</code> or <code>vscanf</code>, but this might not always be the case, and some functions for which <code>format</code> attributes are appropriate may not be detected. </dl> <br><dt><code>-Warray-bounds</code><dd><a name="index-Wno_002darray_002dbounds-400"></a><a name="index-Warray_002dbounds-401"></a>This option is only active when <samp><span class="option">-ftree-vrp</span></samp> is active (default for <samp><span class="option">-O2</span></samp> and above). It warns about subscripts to arrays that are always out of bounds. This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wno-div-by-zero</code><dd><a name="index-Wno_002ddiv_002dby_002dzero-402"></a><a name="index-Wdiv_002dby_002dzero-403"></a>Do not warn about compile-time integer division by zero. Floating-point division by zero is not warned about, as it can be a legitimate way of obtaining infinities and NaNs. <br><dt><code>-Wsystem-headers</code><dd><a name="index-Wsystem_002dheaders-404"></a><a name="index-Wno_002dsystem_002dheaders-405"></a><a name="index-warnings-from-system-headers-406"></a><a name="index-system-headers_002c-warnings-from-407"></a>Print warning messages for constructs found in system header files. Warnings from system headers are normally suppressed, on the assumption that they usually do not indicate real problems and would only make the compiler output harder to read. Using this command-line option tells GCC to emit warnings from system headers as if they occurred in user code. However, note that using <samp><span class="option">-Wall</span></samp> in conjunction with this option does <em>not</em> warn about unknown pragmas in system headers&mdash;for that, <samp><span class="option">-Wunknown-pragmas</span></samp> must also be used. <br><dt><code>-Wtrampolines</code><dd><a name="index-Wtrampolines-408"></a><a name="index-Wno_002dtrampolines-409"></a> Warn about trampolines generated for pointers to nested functions. <p>A trampoline is a small piece of data or code that is created at run time on the stack when the address of a nested function is taken, and is used to call the nested function indirectly. For some targets, it is made up of data only and thus requires no special treatment. But, for most targets, it is made up of code and thus requires the stack to be made executable in order for the program to work properly. <br><dt><code>-Wfloat-equal</code><dd><a name="index-Wfloat_002dequal-410"></a><a name="index-Wno_002dfloat_002dequal-411"></a>Warn if floating-point values are used in equality comparisons. <p>The idea behind this is that sometimes it is convenient (for the programmer) to consider floating-point values as approximations to infinitely precise real numbers. If you are doing this, then you need to compute (by analyzing the code, or in some other way) the maximum or likely maximum error that the computation introduces, and allow for it when performing comparisons (and when producing output, but that's a different problem). In particular, instead of testing for equality, you should check to see whether the two values have ranges that overlap; and this is done with the relational operators, so equality comparisons are probably mistaken. <br><dt><code>-Wtraditional </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wtraditional-412"></a><a name="index-Wno_002dtraditional-413"></a>Warn about certain constructs that behave differently in traditional and ISO C. Also warn about ISO C constructs that have no traditional C equivalent, and/or problematic constructs that should be avoided. <ul> <li>Macro parameters that appear within string literals in the macro body. In traditional C macro replacement takes place within string literals, but in ISO C it does not. <li>In traditional C, some preprocessor directives did not exist. Traditional preprocessors only considered a line to be a directive if the &lsquo;<samp><span class="samp">#</span></samp>&rsquo; appeared in column 1 on the line. Therefore <samp><span class="option">-Wtraditional</span></samp> warns about directives that traditional C understands but ignores because the &lsquo;<samp><span class="samp">#</span></samp>&rsquo; does not appear as the first character on the line. It also suggests you hide directives like &lsquo;<samp><span class="samp">#pragma</span></samp>&rsquo; not understood by traditional C by indenting them. Some traditional implementations do not recognize &lsquo;<samp><span class="samp">#elif</span></samp>&rsquo;, so this option suggests avoiding it altogether. <li>A function-like macro that appears without arguments. <li>The unary plus operator. <li>The &lsquo;<samp><span class="samp">U</span></samp>&rsquo; integer constant suffix, or the &lsquo;<samp><span class="samp">F</span></samp>&rsquo; or &lsquo;<samp><span class="samp">L</span></samp>&rsquo; floating-point constant suffixes. (Traditional C does support the &lsquo;<samp><span class="samp">L</span></samp>&rsquo; suffix on integer constants.) Note, these suffixes appear in macros defined in the system headers of most modern systems, e.g. the &lsquo;<samp><span class="samp">_MIN</span></samp>&rsquo;/&lsquo;<samp><span class="samp">_MAX</span></samp>&rsquo; macros in <code>&lt;limits.h&gt;</code>. Use of these macros in user code might normally lead to spurious warnings, however GCC's integrated preprocessor has enough context to avoid warning in these cases. <li>A function declared external in one block and then used after the end of the block. <li>A <code>switch</code> statement has an operand of type <code>long</code>. <li>A non-<code>static</code> function declaration follows a <code>static</code> one. This construct is not accepted by some traditional C compilers. <li>The ISO type of an integer constant has a different width or signedness from its traditional type. This warning is only issued if the base of the constant is ten. I.e. hexadecimal or octal values, which typically represent bit patterns, are not warned about. <li>Usage of ISO string concatenation is detected. <li>Initialization of automatic aggregates. <li>Identifier conflicts with labels. Traditional C lacks a separate namespace for labels. <li>Initialization of unions. If the initializer is zero, the warning is omitted. This is done under the assumption that the zero initializer in user code appears conditioned on e.g. <code>__STDC__</code> to avoid missing initializer warnings and relies on default initialization to zero in the traditional C case. <li>Conversions by prototypes between fixed/floating-point values and vice versa. The absence of these prototypes when compiling with traditional C causes serious problems. This is a subset of the possible conversion warnings; for the full set use <samp><span class="option">-Wtraditional-conversion</span></samp>. <li>Use of ISO C style function definitions. This warning intentionally is <em>not</em> issued for prototype declarations or variadic functions because these ISO C features appear in your code when using libiberty's traditional C compatibility macros, <code>PARAMS</code> and <code>VPARAMS</code>. This warning is also bypassed for nested functions because that feature is already a GCC extension and thus not relevant to traditional C compatibility. </ul> <br><dt><code>-Wtraditional-conversion </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wtraditional_002dconversion-414"></a><a name="index-Wno_002dtraditional_002dconversion-415"></a>Warn if a prototype causes a type conversion that is different from what would happen to the same argument in the absence of a prototype. This includes conversions of fixed point to floating and vice versa, and conversions changing the width or signedness of a fixed-point argument except when the same as the default promotion. <br><dt><code>-Wdeclaration-after-statement </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wdeclaration_002dafter_002dstatement-416"></a><a name="index-Wno_002ddeclaration_002dafter_002dstatement-417"></a>Warn when a declaration is found after a statement in a block. This construct, known from C++, was introduced with ISO C99 and is by default allowed in GCC. It is not supported by ISO C90 and was not supported by GCC versions before GCC 3.0. See <a href="Mixed-Declarations.html#Mixed-Declarations">Mixed Declarations</a>. <br><dt><code>-Wundef</code><dd><a name="index-Wundef-418"></a><a name="index-Wno_002dundef-419"></a>Warn if an undefined identifier is evaluated in an &lsquo;<samp><span class="samp">#if</span></samp>&rsquo; directive. <br><dt><code>-Wno-endif-labels</code><dd><a name="index-Wno_002dendif_002dlabels-420"></a><a name="index-Wendif_002dlabels-421"></a>Do not warn whenever an &lsquo;<samp><span class="samp">#else</span></samp>&rsquo; or an &lsquo;<samp><span class="samp">#endif</span></samp>&rsquo; are followed by text. <br><dt><code>-Wshadow</code><dd><a name="index-Wshadow-422"></a><a name="index-Wno_002dshadow-423"></a>Warn whenever a local variable or type declaration shadows another variable, parameter, type, or class member (in C++), or whenever a built-in function is shadowed. Note that in C++, the compiler warns if a local variable shadows an explicit typedef, but not if it shadows a struct/class/enum. <br><dt><code>-Wlarger-than=</code><var>len</var><dd><a name="index-Wlarger_002dthan_003d_0040var_007blen_007d-424"></a><a name="index-Wlarger_002dthan_002d_0040var_007blen_007d-425"></a>Warn whenever an object of larger than <var>len</var> bytes is defined. <br><dt><code>-Wframe-larger-than=</code><var>len</var><dd><a name="index-Wframe_002dlarger_002dthan-426"></a>Warn if the size of a function frame is larger than <var>len</var> bytes. The computation done to determine the stack frame size is approximate and not conservative. The actual requirements may be somewhat greater than <var>len</var> even if you do not get a warning. In addition, any space allocated via <code>alloca</code>, variable-length arrays, or related constructs is not included by the compiler when determining whether or not to issue a warning. <br><dt><code>-Wno-free-nonheap-object</code><dd><a name="index-Wno_002dfree_002dnonheap_002dobject-427"></a><a name="index-Wfree_002dnonheap_002dobject-428"></a>Do not warn when attempting to free an object that was not allocated on the heap. <br><dt><code>-Wstack-usage=</code><var>len</var><dd><a name="index-Wstack_002dusage-429"></a>Warn if the stack usage of a function might be larger than <var>len</var> bytes. The computation done to determine the stack usage is conservative. Any space allocated via <code>alloca</code>, variable-length arrays, or related constructs is included by the compiler when determining whether or not to issue a warning. <p>The message is in keeping with the output of <samp><span class="option">-fstack-usage</span></samp>. <ul> <li>If the stack usage is fully static but exceeds the specified amount, it's: <pre class="smallexample"> warning: stack usage is 1120 bytes </pre> <li>If the stack usage is (partly) dynamic but bounded, it's: <pre class="smallexample"> warning: stack usage might be 1648 bytes </pre> <li>If the stack usage is (partly) dynamic and not bounded, it's: <pre class="smallexample"> warning: stack usage might be unbounded </pre> </ul> <br><dt><code>-Wunsafe-loop-optimizations</code><dd><a name="index-Wunsafe_002dloop_002doptimizations-430"></a><a name="index-Wno_002dunsafe_002dloop_002doptimizations-431"></a>Warn if the loop cannot be optimized because the compiler cannot assume anything on the bounds of the loop indices. With <samp><span class="option">-funsafe-loop-optimizations</span></samp> warn if the compiler makes such assumptions. <br><dt><code>-Wno-pedantic-ms-format </code><span class="roman">(MinGW targets only)</span><dd><a name="index-Wno_002dpedantic_002dms_002dformat-432"></a><a name="index-Wpedantic_002dms_002dformat-433"></a>When used in combination with <samp><span class="option">-Wformat</span></samp> and <samp><span class="option">-pedantic</span></samp> without GNU extensions, this option disables the warnings about non-ISO <code>printf</code> / <code>scanf</code> format width specifiers <code>I32</code>, <code>I64</code>, and <code>I</code> used on Windows targets, which depend on the MS runtime. <br><dt><code>-Wpointer-arith</code><dd><a name="index-Wpointer_002darith-434"></a><a name="index-Wno_002dpointer_002darith-435"></a>Warn about anything that depends on the &ldquo;size of&rdquo; a function type or of <code>void</code>. GNU C assigns these types a size of 1, for convenience in calculations with <code>void *</code> pointers and pointers to functions. In C++, warn also when an arithmetic operation involves <code>NULL</code>. This warning is also enabled by <samp><span class="option">-Wpedantic</span></samp>. <br><dt><code>-Wtype-limits</code><dd><a name="index-Wtype_002dlimits-436"></a><a name="index-Wno_002dtype_002dlimits-437"></a>Warn if a comparison is always true or always false due to the limited range of the data type, but do not warn for constant expressions. For example, warn if an unsigned variable is compared against zero with &lsquo;<samp><span class="samp">&lt;</span></samp>&rsquo; or &lsquo;<samp><span class="samp">&gt;=</span></samp>&rsquo;. This warning is also enabled by <samp><span class="option">-Wextra</span></samp>. <br><dt><code>-Wbad-function-cast </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wbad_002dfunction_002dcast-438"></a><a name="index-Wno_002dbad_002dfunction_002dcast-439"></a>Warn whenever a function call is cast to a non-matching type. For example, warn if <code>int malloc()</code> is cast to <code>anything *</code>. <br><dt><code>-Wc++-compat </code><span class="roman">(C and Objective-C only)</span><dd>Warn about ISO C constructs that are outside of the common subset of ISO C and ISO C++, e.g. request for implicit conversion from <code>void *</code> to a pointer to non-<code>void</code> type. <br><dt><code>-Wc++11-compat </code><span class="roman">(C++ and Objective-C++ only)</span><dd>Warn about C++ constructs whose meaning differs between ISO C++ 1998 and ISO C++ 2011, e.g., identifiers in ISO C++ 1998 that are keywords in ISO C++ 2011. This warning turns on <samp><span class="option">-Wnarrowing</span></samp> and is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wcast-qual</code><dd><a name="index-Wcast_002dqual-440"></a><a name="index-Wno_002dcast_002dqual-441"></a>Warn whenever a pointer is cast so as to remove a type qualifier from the target type. For example, warn if a <code>const char *</code> is cast to an ordinary <code>char *</code>. <p>Also warn when making a cast that introduces a type qualifier in an unsafe way. For example, casting <code>char **</code> to <code>const char **</code> is unsafe, as in this example: <pre class="smallexample"> /* p is char ** value. */ const char **q = (const char **) p; /* Assignment of readonly string to const char * is OK. */ *q = "string"; /* Now char** pointer points to read-only memory. */ **p = 'b'; </pre> <br><dt><code>-Wcast-align</code><dd><a name="index-Wcast_002dalign-442"></a><a name="index-Wno_002dcast_002dalign-443"></a>Warn whenever a pointer is cast such that the required alignment of the target is increased. For example, warn if a <code>char *</code> is cast to an <code>int *</code> on machines where integers can only be accessed at two- or four-byte boundaries. <br><dt><code>-Wwrite-strings</code><dd><a name="index-Wwrite_002dstrings-444"></a><a name="index-Wno_002dwrite_002dstrings-445"></a>When compiling C, give string constants the type <code>const char[</code><var>length</var><code>]</code> so that copying the address of one into a non-<code>const</code> <code>char *</code> pointer produces a warning. These warnings help you find at compile time code that can try to write into a string constant, but only if you have been very careful about using <code>const</code> in declarations and prototypes. Otherwise, it is just a nuisance. This is why we did not make <samp><span class="option">-Wall</span></samp> request these warnings. <p>When compiling C++, warn about the deprecated conversion from string literals to <code>char *</code>. This warning is enabled by default for C++ programs. <br><dt><code>-Wclobbered</code><dd><a name="index-Wclobbered-446"></a><a name="index-Wno_002dclobbered-447"></a>Warn for variables that might be changed by &lsquo;<samp><span class="samp">longjmp</span></samp>&rsquo; or &lsquo;<samp><span class="samp">vfork</span></samp>&rsquo;. This warning is also enabled by <samp><span class="option">-Wextra</span></samp>. <br><dt><code>-Wconditionally-supported </code><span class="roman">(C++ and Objective-C++ only)</span><dd><a name="index-Wconditionally_002dsupported-448"></a><a name="index-Wno_002dconditionally_002dsupported-449"></a>Warn for conditionally-supported (C++11 [intro.defs]) constructs. <br><dt><code>-Wconversion</code><dd><a name="index-Wconversion-450"></a><a name="index-Wno_002dconversion-451"></a>Warn for implicit conversions that may alter a value. This includes conversions between real and integer, like <code>abs (x)</code> when <code>x</code> is <code>double</code>; conversions between signed and unsigned, like <code>unsigned ui = -1</code>; and conversions to smaller types, like <code>sqrtf (M_PI)</code>. Do not warn for explicit casts like <code>abs ((int) x)</code> and <code>ui = (unsigned) -1</code>, or if the value is not changed by the conversion like in <code>abs (2.0)</code>. Warnings about conversions between signed and unsigned integers can be disabled by using <samp><span class="option">-Wno-sign-conversion</span></samp>. <p>For C++, also warn for confusing overload resolution for user-defined conversions; and conversions that never use a type conversion operator: conversions to <code>void</code>, the same type, a base class or a reference to them. Warnings about conversions between signed and unsigned integers are disabled by default in C++ unless <samp><span class="option">-Wsign-conversion</span></samp> is explicitly enabled. <br><dt><code>-Wno-conversion-null </code><span class="roman">(C++ and Objective-C++ only)</span><dd><a name="index-Wconversion_002dnull-452"></a><a name="index-Wno_002dconversion_002dnull-453"></a>Do not warn for conversions between <code>NULL</code> and non-pointer types. <samp><span class="option">-Wconversion-null</span></samp> is enabled by default. <br><dt><code>-Wzero-as-null-pointer-constant </code><span class="roman">(C++ and Objective-C++ only)</span><dd><a name="index-Wzero_002das_002dnull_002dpointer_002dconstant-454"></a><a name="index-Wno_002dzero_002das_002dnull_002dpointer_002dconstant-455"></a>Warn when a literal '0' is used as null pointer constant. This can be useful to facilitate the conversion to <code>nullptr</code> in C++11. <br><dt><code>-Wdate-time</code><dd><a name="index-Wdate_002dtime-456"></a><a name="index-Wno_002ddate_002dtime-457"></a>Warn when macros <code>__TIME__</code>, <code>__DATE__</code> or <code>__TIMESTAMP__</code> are encountered as they might prevent bit-wise-identical reproducible compilations. <br><dt><code>-Wdelete-incomplete </code><span class="roman">(C++ and Objective-C++ only)</span><dd><a name="index-Wdelete_002dincomplete-458"></a><a name="index-Wno_002ddelete_002dincomplete-459"></a>Warn when deleting a pointer to incomplete type, which may cause undefined behavior at runtime. This warning is enabled by default. <br><dt><code>-Wuseless-cast </code><span class="roman">(C++ and Objective-C++ only)</span><dd><a name="index-Wuseless_002dcast-460"></a><a name="index-Wno_002duseless_002dcast-461"></a>Warn when an expression is casted to its own type. <br><dt><code>-Wempty-body</code><dd><a name="index-Wempty_002dbody-462"></a><a name="index-Wno_002dempty_002dbody-463"></a>Warn if an empty body occurs in an &lsquo;<samp><span class="samp">if</span></samp>&rsquo;, &lsquo;<samp><span class="samp">else</span></samp>&rsquo; or &lsquo;<samp><span class="samp">do while</span></samp>&rsquo; statement. This warning is also enabled by <samp><span class="option">-Wextra</span></samp>. <br><dt><code>-Wenum-compare</code><dd><a name="index-Wenum_002dcompare-464"></a><a name="index-Wno_002denum_002dcompare-465"></a>Warn about a comparison between values of different enumerated types. In C++ enumeral mismatches in conditional expressions are also diagnosed and the warning is enabled by default. In C this warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wjump-misses-init </code><span class="roman">(C, Objective-C only)</span><dd><a name="index-Wjump_002dmisses_002dinit-466"></a><a name="index-Wno_002djump_002dmisses_002dinit-467"></a>Warn if a <code>goto</code> statement or a <code>switch</code> statement jumps forward across the initialization of a variable, or jumps backward to a label after the variable has been initialized. This only warns about variables that are initialized when they are declared. This warning is only supported for C and Objective-C; in C++ this sort of branch is an error in any case. <p><samp><span class="option">-Wjump-misses-init</span></samp> is included in <samp><span class="option">-Wc++-compat</span></samp>. It can be disabled with the <samp><span class="option">-Wno-jump-misses-init</span></samp> option. <br><dt><code>-Wsign-compare</code><dd><a name="index-Wsign_002dcompare-468"></a><a name="index-Wno_002dsign_002dcompare-469"></a><a name="index-warning-for-comparison-of-signed-and-unsigned-values-470"></a><a name="index-comparison-of-signed-and-unsigned-values_002c-warning-471"></a><a name="index-signed-and-unsigned-values_002c-comparison-warning-472"></a>Warn when a comparison between signed and unsigned values could produce an incorrect result when the signed value is converted to unsigned. This warning is also enabled by <samp><span class="option">-Wextra</span></samp>; to get the other warnings of <samp><span class="option">-Wextra</span></samp> without this warning, use <samp><span class="option">-Wextra -Wno-sign-compare</span></samp>. <br><dt><code>-Wsign-conversion</code><dd><a name="index-Wsign_002dconversion-473"></a><a name="index-Wno_002dsign_002dconversion-474"></a>Warn for implicit conversions that may change the sign of an integer value, like assigning a signed integer expression to an unsigned integer variable. An explicit cast silences the warning. In C, this option is enabled also by <samp><span class="option">-Wconversion</span></samp>. <br><dt><code>-Wfloat-conversion</code><dd><a name="index-Wfloat_002dconversion-475"></a><a name="index-Wno_002dfloat_002dconversion-476"></a>Warn for implicit conversions that reduce the precision of a real value. This includes conversions from real to integer, and from higher precision real to lower precision real values. This option is also enabled by <samp><span class="option">-Wconversion</span></samp>. <br><dt><code>-Wsizeof-pointer-memaccess</code><dd><a name="index-Wsizeof_002dpointer_002dmemaccess-477"></a><a name="index-Wno_002dsizeof_002dpointer_002dmemaccess-478"></a>Warn for suspicious length parameters to certain string and memory built-in functions if the argument uses <code>sizeof</code>. This warning warns e.g. about <code>memset (ptr, 0, sizeof (ptr));</code> if <code>ptr</code> is not an array, but a pointer, and suggests a possible fix, or about <code>memcpy (&amp;foo, ptr, sizeof (&amp;foo));</code>. This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Waddress</code><dd><a name="index-Waddress-479"></a><a name="index-Wno_002daddress-480"></a>Warn about suspicious uses of memory addresses. These include using the address of a function in a conditional expression, such as <code>void func(void); if (func)</code>, and comparisons against the memory address of a string literal, such as <code>if (x == "abc")</code>. Such uses typically indicate a programmer error: the address of a function always evaluates to true, so their use in a conditional usually indicate that the programmer forgot the parentheses in a function call; and comparisons against string literals result in unspecified behavior and are not portable in C, so they usually indicate that the programmer intended to use <code>strcmp</code>. This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wlogical-op</code><dd><a name="index-Wlogical_002dop-481"></a><a name="index-Wno_002dlogical_002dop-482"></a>Warn about suspicious uses of logical operators in expressions. This includes using logical operators in contexts where a bit-wise operator is likely to be expected. <br><dt><code>-Waggregate-return</code><dd><a name="index-Waggregate_002dreturn-483"></a><a name="index-Wno_002daggregate_002dreturn-484"></a>Warn if any functions that return structures or unions are defined or called. (In languages where you can return an array, this also elicits a warning.) <br><dt><code>-Wno-aggressive-loop-optimizations</code><dd><a name="index-Wno_002daggressive_002dloop_002doptimizations-485"></a><a name="index-Waggressive_002dloop_002doptimizations-486"></a>Warn if in a loop with constant number of iterations the compiler detects undefined behavior in some statement during one or more of the iterations. <br><dt><code>-Wno-attributes</code><dd><a name="index-Wno_002dattributes-487"></a><a name="index-Wattributes-488"></a>Do not warn if an unexpected <code>__attribute__</code> is used, such as unrecognized attributes, function attributes applied to variables, etc. This does not stop errors for incorrect use of supported attributes. <br><dt><code>-Wno-builtin-macro-redefined</code><dd><a name="index-Wno_002dbuiltin_002dmacro_002dredefined-489"></a><a name="index-Wbuiltin_002dmacro_002dredefined-490"></a>Do not warn if certain built-in macros are redefined. This suppresses warnings for redefinition of <code>__TIMESTAMP__</code>, <code>__TIME__</code>, <code>__DATE__</code>, <code>__FILE__</code>, and <code>__BASE_FILE__</code>. <br><dt><code>-Wstrict-prototypes </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wstrict_002dprototypes-491"></a><a name="index-Wno_002dstrict_002dprototypes-492"></a>Warn if a function is declared or defined without specifying the argument types. (An old-style function definition is permitted without a warning if preceded by a declaration that specifies the argument types.) <br><dt><code>-Wold-style-declaration </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wold_002dstyle_002ddeclaration-493"></a><a name="index-Wno_002dold_002dstyle_002ddeclaration-494"></a>Warn for obsolescent usages, according to the C Standard, in a declaration. For example, warn if storage-class specifiers like <code>static</code> are not the first things in a declaration. This warning is also enabled by <samp><span class="option">-Wextra</span></samp>. <br><dt><code>-Wold-style-definition </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wold_002dstyle_002ddefinition-495"></a><a name="index-Wno_002dold_002dstyle_002ddefinition-496"></a>Warn if an old-style function definition is used. A warning is given even if there is a previous prototype. <br><dt><code>-Wmissing-parameter-type </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wmissing_002dparameter_002dtype-497"></a><a name="index-Wno_002dmissing_002dparameter_002dtype-498"></a>A function parameter is declared without a type specifier in K&amp;R-style functions: <pre class="smallexample"> void foo(bar) { } </pre> <p>This warning is also enabled by <samp><span class="option">-Wextra</span></samp>. <br><dt><code>-Wmissing-prototypes </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wmissing_002dprototypes-499"></a><a name="index-Wno_002dmissing_002dprototypes-500"></a>Warn if a global function is defined without a previous prototype declaration. This warning is issued even if the definition itself provides a prototype. Use this option to detect global functions that do not have a matching prototype declaration in a header file. This option is not valid for C++ because all function declarations provide prototypes and a non-matching declaration will declare an overload rather than conflict with an earlier declaration. Use <samp><span class="option">-Wmissing-declarations</span></samp> to detect missing declarations in C++. <br><dt><code>-Wmissing-declarations</code><dd><a name="index-Wmissing_002ddeclarations-501"></a><a name="index-Wno_002dmissing_002ddeclarations-502"></a>Warn if a global function is defined without a previous declaration. Do so even if the definition itself provides a prototype. Use this option to detect global functions that are not declared in header files. In C, no warnings are issued for functions with previous non-prototype declarations; use <samp><span class="option">-Wmissing-prototype</span></samp> to detect missing prototypes. In C++, no warnings are issued for function templates, or for inline functions, or for functions in anonymous namespaces. <br><dt><code>-Wmissing-field-initializers</code><dd><a name="index-Wmissing_002dfield_002dinitializers-503"></a><a name="index-Wno_002dmissing_002dfield_002dinitializers-504"></a><a name="index-W-505"></a><a name="index-Wextra-506"></a><a name="index-Wno_002dextra-507"></a>Warn if a structure's initializer has some fields missing. For example, the following code causes such a warning, because <code>x.h</code> is implicitly zero: <pre class="smallexample"> struct s { int f, g, h; }; struct s x = { 3, 4 }; </pre> <p>This option does not warn about designated initializers, so the following modification does not trigger a warning: <pre class="smallexample"> struct s { int f, g, h; }; struct s x = { .f = 3, .g = 4 }; </pre> <p>This warning is included in <samp><span class="option">-Wextra</span></samp>. To get other <samp><span class="option">-Wextra</span></samp> warnings without this one, use <samp><span class="option">-Wextra -Wno-missing-field-initializers</span></samp>. <br><dt><code>-Wno-multichar</code><dd><a name="index-Wno_002dmultichar-508"></a><a name="index-Wmultichar-509"></a>Do not warn if a multicharacter constant (&lsquo;<samp><span class="samp">'FOOF'</span></samp>&rsquo;) is used. Usually they indicate a typo in the user's code, as they have implementation-defined values, and should not be used in portable code. <br><dt><code>-Wnormalized=&lt;none|id|nfc|nfkc&gt;</code><dd><a name="index-Wnormalized_003d-510"></a><a name="index-NFC-511"></a><a name="index-NFKC-512"></a><a name="index-character-set_002c-input-normalization-513"></a>In ISO C and ISO C++, two identifiers are different if they are different sequences of characters. However, sometimes when characters outside the basic ASCII character set are used, you can have two different character sequences that look the same. To avoid confusion, the ISO 10646 standard sets out some <dfn>normalization rules</dfn> which when applied ensure that two sequences that look the same are turned into the same sequence. GCC can warn you if you are using identifiers that have not been normalized; this option controls that warning. <p>There are four levels of warning supported by GCC. The default is <samp><span class="option">-Wnormalized=nfc</span></samp>, which warns about any identifier that is not in the ISO 10646 &ldquo;C&rdquo; normalized form, <dfn>NFC</dfn>. NFC is the recommended form for most uses. <p>Unfortunately, there are some characters allowed in identifiers by ISO C and ISO C++ that, when turned into NFC, are not allowed in identifiers. That is, there's no way to use these symbols in portable ISO C or C++ and have all your identifiers in NFC. <samp><span class="option">-Wnormalized=id</span></samp> suppresses the warning for these characters. It is hoped that future versions of the standards involved will correct this, which is why this option is not the default. <p>You can switch the warning off for all characters by writing <samp><span class="option">-Wnormalized=none</span></samp>. You should only do this if you are using some other normalization scheme (like &ldquo;D&rdquo;), because otherwise you can easily create bugs that are literally impossible to see. <p>Some characters in ISO 10646 have distinct meanings but look identical in some fonts or display methodologies, especially once formatting has been applied. For instance <code>\u207F</code>, &ldquo;SUPERSCRIPT LATIN SMALL LETTER N&rdquo;, displays just like a regular <code>n</code> that has been placed in a superscript. ISO 10646 defines the <dfn>NFKC</dfn> normalization scheme to convert all these into a standard form as well, and GCC warns if your code is not in NFKC if you use <samp><span class="option">-Wnormalized=nfkc</span></samp>. This warning is comparable to warning about every identifier that contains the letter O because it might be confused with the digit 0, and so is not the default, but may be useful as a local coding convention if the programming environment cannot be fixed to display these characters distinctly. <br><dt><code>-Wno-deprecated</code><dd><a name="index-Wno_002ddeprecated-514"></a><a name="index-Wdeprecated-515"></a>Do not warn about usage of deprecated features. See <a href="Deprecated-Features.html#Deprecated-Features">Deprecated Features</a>. <br><dt><code>-Wno-deprecated-declarations</code><dd><a name="index-Wno_002ddeprecated_002ddeclarations-516"></a><a name="index-Wdeprecated_002ddeclarations-517"></a>Do not warn about uses of functions (see <a href="Function-Attributes.html#Function-Attributes">Function Attributes</a>), variables (see <a href="Variable-Attributes.html#Variable-Attributes">Variable Attributes</a>), and types (see <a href="Type-Attributes.html#Type-Attributes">Type Attributes</a>) marked as deprecated by using the <code>deprecated</code> attribute. <br><dt><code>-Wno-overflow</code><dd><a name="index-Wno_002doverflow-518"></a><a name="index-Woverflow-519"></a>Do not warn about compile-time overflow in constant expressions. <br><dt><code>-Wopenmp-simd</code><dd><a name="index-Wopenm_002dsimd-520"></a>Warn if the vectorizer cost model overrides the OpenMP or the Cilk Plus simd directive set by user. The <samp><span class="option">-fsimd-cost-model=unlimited</span></samp> can be used to relax the cost model. <br><dt><code>-Woverride-init </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Woverride_002dinit-521"></a><a name="index-Wno_002doverride_002dinit-522"></a><a name="index-W-523"></a><a name="index-Wextra-524"></a><a name="index-Wno_002dextra-525"></a>Warn if an initialized field without side effects is overridden when using designated initializers (see <a href="Designated-Inits.html#Designated-Inits">Designated Initializers</a>). <p>This warning is included in <samp><span class="option">-Wextra</span></samp>. To get other <samp><span class="option">-Wextra</span></samp> warnings without this one, use <samp><span class="option">-Wextra -Wno-override-init</span></samp>. <br><dt><code>-Wpacked</code><dd><a name="index-Wpacked-526"></a><a name="index-Wno_002dpacked-527"></a>Warn if a structure is given the packed attribute, but the packed attribute has no effect on the layout or size of the structure. Such structures may be mis-aligned for little benefit. For instance, in this code, the variable <code>f.x</code> in <code>struct bar</code> is misaligned even though <code>struct bar</code> does not itself have the packed attribute: <pre class="smallexample"> struct foo { int x; char a, b, c, d; } __attribute__((packed)); struct bar { char z; struct foo f; }; </pre> <br><dt><code>-Wpacked-bitfield-compat</code><dd><a name="index-Wpacked_002dbitfield_002dcompat-528"></a><a name="index-Wno_002dpacked_002dbitfield_002dcompat-529"></a>The 4.1, 4.2 and 4.3 series of GCC ignore the <code>packed</code> attribute on bit-fields of type <code>char</code>. This has been fixed in GCC 4.4 but the change can lead to differences in the structure layout. GCC informs you when the offset of such a field has changed in GCC 4.4. For example there is no longer a 4-bit padding between field <code>a</code> and <code>b</code> in this structure: <pre class="smallexample"> struct foo { char a:4; char b:8; } __attribute__ ((packed)); </pre> <p>This warning is enabled by default. Use <samp><span class="option">-Wno-packed-bitfield-compat</span></samp> to disable this warning. <br><dt><code>-Wpadded</code><dd><a name="index-Wpadded-530"></a><a name="index-Wno_002dpadded-531"></a>Warn if padding is included in a structure, either to align an element of the structure or to align the whole structure. Sometimes when this happens it is possible to rearrange the fields of the structure to reduce the padding and so make the structure smaller. <br><dt><code>-Wredundant-decls</code><dd><a name="index-Wredundant_002ddecls-532"></a><a name="index-Wno_002dredundant_002ddecls-533"></a>Warn if anything is declared more than once in the same scope, even in cases where multiple declaration is valid and changes nothing. <br><dt><code>-Wnested-externs </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wnested_002dexterns-534"></a><a name="index-Wno_002dnested_002dexterns-535"></a>Warn if an <code>extern</code> declaration is encountered within a function. <br><dt><code>-Wno-inherited-variadic-ctor</code><dd><a name="index-Winherited_002dvariadic_002dctor-536"></a><a name="index-Wno_002dinherited_002dvariadic_002dctor-537"></a>Suppress warnings about use of C++11 inheriting constructors when the base class inherited from has a C variadic constructor; the warning is on by default because the ellipsis is not inherited. <br><dt><code>-Winline</code><dd><a name="index-Winline-538"></a><a name="index-Wno_002dinline-539"></a>Warn if a function that is declared as inline cannot be inlined. Even with this option, the compiler does not warn about failures to inline functions declared in system headers. <p>The compiler uses a variety of heuristics to determine whether or not to inline a function. For example, the compiler takes into account the size of the function being inlined and the amount of inlining that has already been done in the current function. Therefore, seemingly insignificant changes in the source program can cause the warnings produced by <samp><span class="option">-Winline</span></samp> to appear or disappear. <br><dt><code>-Wno-invalid-offsetof </code><span class="roman">(C++ and Objective-C++ only)</span><dd><a name="index-Wno_002dinvalid_002doffsetof-540"></a><a name="index-Winvalid_002doffsetof-541"></a>Suppress warnings from applying the &lsquo;<samp><span class="samp">offsetof</span></samp>&rsquo; macro to a non-POD type. According to the 1998 ISO C++ standard, applying &lsquo;<samp><span class="samp">offsetof</span></samp>&rsquo; to a non-POD type is undefined. In existing C++ implementations, however, &lsquo;<samp><span class="samp">offsetof</span></samp>&rsquo; typically gives meaningful results even when applied to certain kinds of non-POD types (such as a simple &lsquo;<samp><span class="samp">struct</span></samp>&rsquo; that fails to be a POD type only by virtue of having a constructor). This flag is for users who are aware that they are writing nonportable code and who have deliberately chosen to ignore the warning about it. <p>The restrictions on &lsquo;<samp><span class="samp">offsetof</span></samp>&rsquo; may be relaxed in a future version of the C++ standard. <br><dt><code>-Wno-int-to-pointer-cast</code><dd><a name="index-Wno_002dint_002dto_002dpointer_002dcast-542"></a><a name="index-Wint_002dto_002dpointer_002dcast-543"></a>Suppress warnings from casts to pointer type of an integer of a different size. In C++, casting to a pointer type of smaller size is an error. <samp><span class="option">Wint-to-pointer-cast</span></samp> is enabled by default. <br><dt><code>-Wno-pointer-to-int-cast </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wno_002dpointer_002dto_002dint_002dcast-544"></a><a name="index-Wpointer_002dto_002dint_002dcast-545"></a>Suppress warnings from casts from a pointer to an integer type of a different size. <br><dt><code>-Winvalid-pch</code><dd><a name="index-Winvalid_002dpch-546"></a><a name="index-Wno_002dinvalid_002dpch-547"></a>Warn if a precompiled header (see <a href="Precompiled-Headers.html#Precompiled-Headers">Precompiled Headers</a>) is found in the search path but can't be used. <br><dt><code>-Wlong-long</code><dd><a name="index-Wlong_002dlong-548"></a><a name="index-Wno_002dlong_002dlong-549"></a>Warn if &lsquo;<samp><span class="samp">long long</span></samp>&rsquo; type is used. This is enabled by either <samp><span class="option">-Wpedantic</span></samp> or <samp><span class="option">-Wtraditional</span></samp> in ISO C90 and C++98 modes. To inhibit the warning messages, use <samp><span class="option">-Wno-long-long</span></samp>. <br><dt><code>-Wvariadic-macros</code><dd><a name="index-Wvariadic_002dmacros-550"></a><a name="index-Wno_002dvariadic_002dmacros-551"></a>Warn if variadic macros are used in pedantic ISO C90 mode, or the GNU alternate syntax when in pedantic ISO C99 mode. This is default. To inhibit the warning messages, use <samp><span class="option">-Wno-variadic-macros</span></samp>. <br><dt><code>-Wvarargs</code><dd><a name="index-Wvarargs-552"></a><a name="index-Wno_002dvarargs-553"></a>Warn upon questionable usage of the macros used to handle variable arguments like &lsquo;<samp><span class="samp">va_start</span></samp>&rsquo;. This is default. To inhibit the warning messages, use <samp><span class="option">-Wno-varargs</span></samp>. <br><dt><code>-Wvector-operation-performance</code><dd><a name="index-Wvector_002doperation_002dperformance-554"></a><a name="index-Wno_002dvector_002doperation_002dperformance-555"></a>Warn if vector operation is not implemented via SIMD capabilities of the architecture. Mainly useful for the performance tuning. Vector operation can be implemented <code>piecewise</code>, which means that the scalar operation is performed on every vector element; <code>in parallel</code>, which means that the vector operation is implemented using scalars of wider type, which normally is more performance efficient; and <code>as a single scalar</code>, which means that vector fits into a scalar type. <br><dt><code>-Wno-virtual-move-assign</code><dd><a name="index-Wvirtual_002dmove_002dassign-556"></a><a name="index-Wno_002dvirtual_002dmove_002dassign-557"></a>Suppress warnings about inheriting from a virtual base with a non-trivial C++11 move assignment operator. This is dangerous because if the virtual base is reachable along more than one path, it will be moved multiple times, which can mean both objects end up in the moved-from state. If the move assignment operator is written to avoid moving from a moved-from object, this warning can be disabled. <br><dt><code>-Wvla</code><dd><a name="index-Wvla-558"></a><a name="index-Wno_002dvla-559"></a>Warn if variable length array is used in the code. <samp><span class="option">-Wno-vla</span></samp> prevents the <samp><span class="option">-Wpedantic</span></samp> warning of the variable length array. <br><dt><code>-Wvolatile-register-var</code><dd><a name="index-Wvolatile_002dregister_002dvar-560"></a><a name="index-Wno_002dvolatile_002dregister_002dvar-561"></a>Warn if a register variable is declared volatile. The volatile modifier does not inhibit all optimizations that may eliminate reads and/or writes to register variables. This warning is enabled by <samp><span class="option">-Wall</span></samp>. <br><dt><code>-Wdisabled-optimization</code><dd><a name="index-Wdisabled_002doptimization-562"></a><a name="index-Wno_002ddisabled_002doptimization-563"></a>Warn if a requested optimization pass is disabled. This warning does not generally indicate that there is anything wrong with your code; it merely indicates that GCC's optimizers are unable to handle the code effectively. Often, the problem is that your code is too big or too complex; GCC refuses to optimize programs when the optimization itself is likely to take inordinate amounts of time. <br><dt><code>-Wpointer-sign </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wpointer_002dsign-564"></a><a name="index-Wno_002dpointer_002dsign-565"></a>Warn for pointer argument passing or assignment with different signedness. This option is only supported for C and Objective-C. It is implied by <samp><span class="option">-Wall</span></samp> and by <samp><span class="option">-Wpedantic</span></samp>, which can be disabled with <samp><span class="option">-Wno-pointer-sign</span></samp>. <br><dt><code>-Wstack-protector</code><dd><a name="index-Wstack_002dprotector-566"></a><a name="index-Wno_002dstack_002dprotector-567"></a>This option is only active when <samp><span class="option">-fstack-protector</span></samp> is active. It warns about functions that are not protected against stack smashing. <br><dt><code>-Woverlength-strings</code><dd><a name="index-Woverlength_002dstrings-568"></a><a name="index-Wno_002doverlength_002dstrings-569"></a>Warn about string constants that are longer than the &ldquo;minimum maximum&rdquo; length specified in the C standard. Modern compilers generally allow string constants that are much longer than the standard's minimum limit, but very portable programs should avoid using longer strings. <p>The limit applies <em>after</em> string constant concatenation, and does not count the trailing NUL. In C90, the limit was 509 characters; in C99, it was raised to 4095. C++98 does not specify a normative minimum maximum, so we do not diagnose overlength strings in C++. <p>This option is implied by <samp><span class="option">-Wpedantic</span></samp>, and can be disabled with <samp><span class="option">-Wno-overlength-strings</span></samp>. <br><dt><code>-Wunsuffixed-float-constants </code><span class="roman">(C and Objective-C only)</span><dd><a name="index-Wunsuffixed_002dfloat_002dconstants-570"></a> Issue a warning for any floating constant that does not have a suffix. When used together with <samp><span class="option">-Wsystem-headers</span></samp> it warns about such constants in system header files. This can be useful when preparing code to use with the <code>FLOAT_CONST_DECIMAL64</code> pragma from the decimal floating-point extension to C99. </dl> </body></html>
client/app/vendor/_order-form.html
ibari/zibzoo
<div class="reveal-order-form"> <h4>{{item.name}}</h4> <p class="item-price">{{item.price | currency}}</p> <p class="item-description">{{item.description}}</p> <div class="row"> <ul class="button-group quantity-bar left"> <li> <a class="button" ng-click="decrement()"><i class="fa fa-minus"></i></a> </li> <li><input type="text" value="{{quantity}}" ng-model="quantity" /></li> <li> <a class="button" ng-click="increment()"><i class="fa fa-plus"></i></a> </li> </ul> <button class="button right" ng-click="addToCart()">Add To Cart</button> </div> <a class="close-reveal-modal" ng-click="cancel()">&#215;</a> </div>
yejin/templates/login_qufu.html
JavieChan/nanshaCity
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="renderer" content="webkit"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>区府管理后台登录</title> <link rel="stylesheet" href="/static/css/login.css" /> <script type="text/javascript" src="/static/js/lib/jquery.min.js"></script> <script type="text/javascript" src="/static/js/atagscloud.min.js"></script> <script type="text/javascript"> $(function(){ $('#atagscloud').activiTag(); // login $('.lg_submit').click(function(){ if($('input[name=name]').val()==''){$('form h2 i').text('请输入用户名!'); return false;} if($('input[name=password]').val()==''){$('form h2 i').text('请输入密码!'); return false;} $('form').submit(); }); }); </script> </head> <body> <div id="atagscloud"> <!--<a href="javascript:;" class="blue" style="bottom: 0px; left: 640px; opacity: 0.3; z-index: 10;"><span><em>无线城市</em></span></a>--> <!--<a href="javascript:;" class="orange" style="bottom: 28px; left: 140px; opacity: 0.4; z-index: 11;"><span><em>众拓科技</em></span></a>--> <!--<a href="javascript:;" class="blue" style="bottom: 40px; left: 347px; opacity: 0.6; z-index: 12;"><span><em>智能小区</em></span></a>--> <!--<a href="javascript:;" class="orange" style="bottom: 80px; left: 500px; opacity: 0.4; z-index: 13;"><span><em>厦门鼓浪屿wiFi覆盖</em></span></a>--> <!--<a href="javascript:;" class="blue" style="bottom: 130px; left: 652px; opacity: 0.3; z-index: 14;"><span><em>白云皮具批发市场</em></span></a>--> <!--<a href="javascript:;" class="orange" style="bottom: 176px; left: 95px; opacity: 0.6; z-index: 15;"><span><em>南横村出租房</em></span></a>--> <!--<a href="javascript:;" class="blue" style="bottom: 263px; left: 147px; opacity: 1; z-index: 16;"><span><em>十二道科技</em></span></a>--> <!--<a href="javascript:;" class="orange" style="bottom: 234px; left: 317px; opacity: 1; z-index: 17;"><span><em>番禺女子学院</em></span></a>--> <!--<a href="javascript:;" class="blue" style="bottom: 300px; left: 321px; opacity: 0.4; z-index: 18;"><span><em>热砂科技</em></span></a>--> <!--<a href="javascript:;" class="orange" style="bottom: 146px; left: 256px; opacity: 1; z-index: 19;"><span><em>风信子无线覆盖</em></span></a>--> <!--<a href="javascript:;" class="blue" style="bottom: 162px; left: 454px; opacity: 1; z-index: 20;"><span><em>南沙无线城市</em></span></a>--> </div> <div class="lg_header"> <div class="lg_wrapper"> <h1>区府管理后台</h1> </div> </div> <div class="lg_banner"> <div class="lg_wrapper"> <form action="/login" method="post"> ${xsrf_form_html()} <h2>登录<i> % if reason: ${reason} % endif</i> </h2> <ul> <li><label><i class="userIco"></i>账号:</label><input type="text" name="name" value="${ins.get_secure_cookie('name')}"/></li> <li><label><i class="pwdIco"></i>密码:</label><input type="password" name="password" /></li> </ul> <p><label> % if ins.get_secure_cookie('remember'): <input type="checkbox" name="remember" checked/>记住账号</label> % else: <input type="checkbox" name="remember"/>记住账号</label> % endif <a href="javascript:;">无法登录?</a></p> <div> <button type="submit" class="lg_submit">登录</button> <button type="button" class="lg_free">试用</button> </div> </form> </div> </div> <div class="lg_wrapper lg_services"> <!--<h2><span>我们能为您提供的</span></h2>--> <ul> <li><i class="sev_a"></i><span>微信、网页、短信<br>多种可增值认证方式</span></li> <li><i class="sev_b"></i><span>用户上网数据<br>筛选搜集</span></li> <li><i class="sev_c"></i><span>用户感知分析<br>WiFi大数据建立</span></li> <li><i class="sev_d"></i><span>微信、网页等丰富的<br>广告营销方式</span></li> <li><i class="sev_e"></i><span>分级管理<br>独立分配下级管理权限</span></li> </ul> </div> <div class="lg_wrapper lg_footer"> <p>粤ICP备16031487号-1</p> </div> </body> </html>
assets/js/lib/angular-1.0.1/docs-1.0.1/partials/api/ng.directive:ngInit.html
xuluan/star
<h1><code ng:non-bindable="">ngInit</code> <span class="hint">(directive in module <code ng:non-bindable="">ng</code> )</span> </h1> <div><h2 id="Description">Description</h2> <div class="description"><p>The <code>ngInit</code> directive specifies initialization tasks to be executed before the template enters execution mode during bootstrap.</p></div> <h2 id="Usage">Usage</h2> <div class="usage">as attribute<pre class="prettyprint linenums">&lt;ANY ng-init="{expression}"&gt; ... &lt;/ANY&gt;</pre> as class<pre class="prettyprint linenums">&lt;ANY class="ng-init: {expression};"&gt; ... &lt;/ANY&gt;</pre> <h3 id="Parameters">Parameters</h3> <ul class="parameters"><li><code ng:non-bindable="">ngInit – {expression} – </code> <p><a href="guide/expression">Expression</a> to eval.</p></li> </ul> </div> <h2 id="Example">Example</h2> <div class="example"><h3>Source</h3> <div source-edit="" source-edit-deps="angular.js" source-edit-html="index.html-113" source-edit-css="" source-edit-js="" source-edit-unit="" source-edit-scenario="scenario.js-114"></div> <div class="tabbable"><div class="tab-pane" title="index.html"> <pre class="prettyprint linenums" ng-set-text="index.html-113" ng-html-wrap=" angular.js"></pre> <script type="text/ng-template" id="index.html-113"> <div ng-init="greeting='Hello'; person='World'"> {{greeting}} {{person}}! </div> </script> </div> <div class="tab-pane" title="End to end test"> <pre class="prettyprint linenums" ng-set-text="scenario.js-114"></pre> <script type="text/ng-template" id="scenario.js-114"> it('should check greeting', function() { expect(binding('greeting')).toBe('Hello'); expect(binding('person')).toBe('World'); }); </script> </div> </div><h3>Demo</h3> <div class="well doc-example-live" ng-embed-app="" ng-set-html="index.html-113" ng-eval-javascript=""></div></div> </div>
m101x_intro_mean/4/samples/chapter-4-examples/B-examples/templates/nav_bar.html
andrisazens/edx
<div class="nav-bar"> <div class="nav-bar-contents"> <div class="logo"> <img src="/mean-retail-logo.png" /> </div> <div class="title"> MEAN Retail </div> <div class="user-info"> <div class="checkout" ng-show="user.user"> <a ng-href="#/checkout"> <i class="fa fa-shopping-cart"></i> </a> </div> <div class="user" ng-show="user.user"> <img ng-src="{{user.user.profile.picture}}" /> </div> <div class="login" ng-show="!user.user"> <a href="/auth/facebook?redirect=%2FB-examples"> <img src="//i.stack.imgur.com/LKMP7.png"> </a> </div> </div> </div> </div>
upgrade/files/11.0.4-12.0.0.B1/files/template/embed_embedly_integration.html
unaio/una
<script> (function(w, d){ var id='embedly-platform', n = 'script'; if (!d.getElementById(id)){ w.embedly = w.embedly || function() {(w.embedly.q = w.embedly.q || []).push(arguments);}; var e = d.createElement(n); e.id = id; e.async=1; e.src = ('https:' === document.location.protocol ? 'https' : 'http') + '://cdn.embedly.com/widgets/platform.js'; var s = d.getElementsByTagName(n)[0]; s.parentNode.insertBefore(e, s); } })(window, document); <bx_if:key> $(document).ready(function () { embedly("defaults", { cards: {key: '__key__'}, controls: 0 }); embedly('on', 'card.resize', function(iframe){ var $card = $(iframe); var $card_parent = $card.parents('.fr-embedly'); $card_parent.css('height', $card.height()); }); }); </bx_if:key> </script>
vendor/smarty/smarty/development/Smarty3Doc/Smarty/Compiler/Smarty_Internal_Compile_Assign.html
YuheiNakasaka/sharememo
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs For Class Smarty_Internal_Compile_Assign</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="class-name">Class Smarty_Internal_Compile_Assign</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-descendents">Descendents</a> | <a href="#sec-vars">Vars</a> | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Smarty Internal Plugin Compile Assign Class</p> <p class="notes"> Located in <a class="field" href="_libs---sysplugins---smarty_internal_compile_assign.php.html">/libs/sysplugins/smarty_internal_compile_assign.php</a> (line <span class="field">18</span>) </p> <pre><a href="../../Smarty/Compiler/Smarty_Internal_CompileBase.html">Smarty_Internal_CompileBase</a> | --Smarty_Internal_Compile_Assign</pre> </div> </div> <a name="sec-descendents"></a> <div class="info-box"> <div class="info-box-title">Direct descendents</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Descendents</span> | <a href="#sec-vars">Vars</a> | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <table cellpadding="2" cellspacing="0" class="class-table"> <tr> <th class="class-table-header">Class</th> <th class="class-table-header">Description</th> </tr> <tr> <td style="padding-right: 2em"><a href="../../Smarty/Compiler/Smarty_Internal_Compile_Append.html">Smarty_Internal_Compile_Append</a></td> <td> Smarty Internal Plugin Compile Append Class </td> </tr> </table> </div> </div> <a name="sec-method-summary"></a> <div class="info-box"> <div class="info-box-title">Method Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-descendents">Descendents</a> | <a href="#sec-vars">Vars</a> | <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="method-summary"> <div class="method-definition"> <span class="method-result">string</span> <a href="#compile" title="details" class="method-name">compile</a> (<span class="var-type">array</span>&nbsp;<span class="var-name">$args</span>, <span class="var-type">object</span>&nbsp;<span class="var-name">$compiler</span>, <span class="var-type">array</span>&nbsp;<span class="var-name">$parameter</span>) </div> </div> </div> </div> <a name="sec-vars"></a> <div class="info-box"> <div class="info-box-title">Variables</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-descendents">Descendents</a> | <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <h4>Inherited Variables</h4> <A NAME='inherited_vars'><!-- --></A> <p>Inherited from <span class="classname"><a href="../../Smarty/Compiler/Smarty_Internal_CompileBase.html">Smarty_Internal_CompileBase</a></span></p> <blockquote> <span class="var-title"> <span class="var-name"><a href="../../Smarty/Compiler/Smarty_Internal_CompileBase.html#var$optional_attributes">Smarty_Internal_CompileBase::$optional_attributes</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Smarty/Compiler/Smarty_Internal_CompileBase.html#var$option_flags">Smarty_Internal_CompileBase::$option_flags</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Smarty/Compiler/Smarty_Internal_CompileBase.html#var$required_attributes">Smarty_Internal_CompileBase::$required_attributes</a></span><br> </span> <span class="var-title"> <span class="var-name"><a href="../../Smarty/Compiler/Smarty_Internal_CompileBase.html#var$shorttag_order">Smarty_Internal_CompileBase::$shorttag_order</a></span><br> </span> </blockquote> </div> </div> <a name="sec-methods"></a> <div class="info-box"> <div class="info-box-title">Methods</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-descendents">Descendents</a> | <a href="#sec-vars">Vars</a> <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) </div> <div class="info-box-body"> <A NAME='method_detail'></A> <a name="methodcompile" id="compile"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">compile</span> (line <span class="line-number">28</span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Compiles code for the {assign} tag</p> <ul class="tags"> <li><span class="field">return:</span> compiled code</li> <li><span class="field">access:</span> public</li> </ul> <div class="method-signature"> <span class="method-result">string</span> <span class="method-name"> compile </span> (<span class="var-type">array</span>&nbsp;<span class="var-name">$args</span>, <span class="var-type">object</span>&nbsp;<span class="var-name">$compiler</span>, <span class="var-type">array</span>&nbsp;<span class="var-name">$parameter</span>) </div> <ul class="parameters"> <li> <span class="var-type">array</span> <span class="var-name">$args</span><span class="var-description">: array with attributes from parser</span> </li> <li> <span class="var-type">object</span> <span class="var-name">$compiler</span><span class="var-description">: compiler object</span> </li> <li> <span class="var-type">array</span> <span class="var-name">$parameter</span><span class="var-description">: array with compilation parameter</span> </li> </ul> <hr class="separator" /> <div class="notes">Redefined in descendants as:</div> <ul class="redefinitions"> <li> <a href="../../Smarty/Compiler/Smarty_Internal_Compile_Append.html#methodcompile">Smarty_Internal_Compile_Append::compile()</a> : Compiles code for the {append} tag </li> </ul> </div> <h4>Inherited Methods</h4> <a name='inherited_methods'><!-- --></a> <!-- =========== Summary =========== --> <p>Inherited From <span class="classname"><a href="../../Smarty/Compiler/Smarty_Internal_CompileBase.html">Smarty_Internal_CompileBase</a></span></p> <blockquote> <span class="method-name"><a href="../../Smarty/Compiler/Smarty_Internal_CompileBase.html#methodcloseTag">Smarty_Internal_CompileBase::closeTag()</a></span><br> <span class="method-name"><a href="../../Smarty/Compiler/Smarty_Internal_CompileBase.html#methodgetAttributes">Smarty_Internal_CompileBase::getAttributes()</a></span><br> <span class="method-name"><a href="../../Smarty/Compiler/Smarty_Internal_CompileBase.html#methodopenTag">Smarty_Internal_CompileBase::openTag()</a></span><br> </blockquote> </div> </div> <p class="notes" id="credit"> Documentation generated on Sat, 24 Sep 2011 20:23:39 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.1</a> </p> </div></body> </html>
widgets/assets/css/Map/minimap.css
ketuker/oil-palm-cultivation-thesis
.leaflet-control-minimap { border:solid rgba(0, 0, 0, 1.0) 2px; box-shadow: 0 1px 5px rgba(0,0,0,0.65); border-radius: 3px; background: #f8f8f9; transition: all .2s; } .leaflet-control-minimap a { background-color: rgba(120, 120, 120, 1.0); background-repeat: no-repeat; z-index: 99999; transition: all .2s; } .leaflet-control-minimap a.minimized-bottomright { -webkit-transform: rotate(180deg); transform: rotate(180deg); border-radius: 0px; } .leaflet-control-minimap a.minimized-topleft { -webkit-transform: rotate(0deg); transform: rotate(0deg); border-radius: 0px; } .leaflet-control-minimap a.minimized-bottomleft { -webkit-transform: rotate(270deg); transform: rotate(270deg); border-radius: 0px; } .leaflet-control-minimap a.minimized-topright { -webkit-transform: rotate(90deg); transform: rotate(90deg); border-radius: 0px; } .leaflet-control-minimap-toggle-display{ background-image: url("images/toggle.svg"); background-size: cover; position: absolute; border-radius: 3px 0px 0px 0px; } .leaflet-oldie .leaflet-control-minimap-toggle-display{ background-image: url("images/toggle.png"); } .leaflet-control-minimap-toggle-display-bottomright { bottom: 0; right: 0; } .leaflet-control-minimap-toggle-display-topleft{ top: 0; left: 0; -webkit-transform: rotate(180deg); transform: rotate(180deg); } .leaflet-control-minimap-toggle-display-bottomleft{ bottom: 0; left: 0; -webkit-transform: rotate(90deg); transform: rotate(90deg); } .leaflet-control-minimap-toggle-display-topright{ top: 0; right: 0; -webkit-transform: rotate(270deg); transform: rotate(270deg); } /* Old IE */ .leaflet-oldie .leaflet-control-minimap { border: 1px solid #999; } .leaflet-oldie .leaflet-control-minimap a { background-color: #fff; } .leaflet-oldie .leaflet-control-minimap a.minimized { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); }
src/deps/boost/libs/regex/doc/html/boost_regex/install.html
mxrrow/zaicoin
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Building and Installing the Library</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> <link rel="home" href="../index.html" title="Boost.Regex"> <link rel="up" href="../index.html" title="Boost.Regex"> <link rel="prev" href="configuration/tuning.html" title="Algorithm Tuning"> <link rel="next" href="introduction_and_overview.html" title="Introduction and Overview"> </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="configuration/tuning.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="introduction_and_overview.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section boost_regex_install"> <div class="titlepage"><div><div><h2 class="title" style="clear: both"> <a name="boost_regex.install"></a><a class="link" href="install.html" title="Building and Installing the Library">Building and Installing the Library</a> </h2></div></div></div> <p> When you extract the library from its zip file, you must preserve its internal directory structure (for example by using the -d option when extracting). If you didn't do that when extracting, then you'd better stop reading this, delete the files you just extracted, and try again! </p> <p> This library should not need configuring before use; most popular compilers/standard libraries/platforms are already supported "as is". If you do experience configuration problems, or just want to test the configuration with your compiler, then the process is the same as for all of boost; see the <a href="../../../../config/index.html" target="_top">configuration library documentation</a>. </p> <p> The library will encase all code inside namespace boost. </p> <p> Unlike some other template libraries, this library consists of a mixture of template code (in the headers) and static code and data (in cpp files). Consequently it is necessary to build the library's support code into a library or archive file before you can use it, instructions for specific platforms are as follows: </p> <h5> <a name="boost_regex.install.h0"></a> <span class="phrase"><a name="boost_regex.install.building_with_bjam"></a></span><a class="link" href="install.html#boost_regex.install.building_with_bjam">Building with bjam</a> </h5> <p> This is now the preferred method for building and installing this library, please refer to the <a href="../../../../../more/getting_started.html" target="_top">getting started guide</a> for more information. </p> <h5> <a name="boost_regex.install.h1"></a> <span class="phrase"><a name="boost_regex.install.building_with_unicode_and_icu_support"></a></span><a class="link" href="install.html#boost_regex.install.building_with_unicode_and_icu_support">Building With Unicode and ICU Support</a> </h5> <p> Boost.Regex is now capable of performing a configuration check to test whether ICU is already installed in your compiler's search paths. When you build you should see a message like this: </p> <pre class="programlisting"><span class="identifier">Performing</span> <span class="identifier">configuration</span> <span class="identifier">checks</span> <span class="special">-</span> <span class="identifier">has_icu</span> <span class="identifier">builds</span> <span class="special">:</span> <span class="identifier">yes</span> </pre> <p> Whick means that ICU has been found, and support for it will be enabled in the library build. </p> <div class="tip"><table border="0" summary="Tip"> <tr> <td rowspan="2" align="center" valign="top" width="25"><img alt="[Tip]" src="../../../../../doc/src/images/tip.png"></td> <th align="left">Tip</th> </tr> <tr><td align="left" valign="top"><p> If you don't want the regex library to use ICU then build with the "--disable-icu" command line option. </p></td></tr> </table></div> <p> If instead you see: </p> <pre class="programlisting"><span class="identifier">Performing</span> <span class="identifier">configuration</span> <span class="identifier">checks</span> <span class="special">-</span> <span class="identifier">has_icu</span> <span class="identifier">builds</span> <span class="special">:</span> <span class="identifier">no</span> </pre> <p> Then ICU was not found and support for it will not be compiled into the library. If you think that it should have been found, then you will need to take a look at the contents of the file <span class="emphasis"><em>boost-root/bin.v2/config.log</em></span> for the actual error messages obtained when the build carried out the configuration check. You will then need to fix these errors by ensuring your compiler gets invoked with the correct options, for example: </p> <pre class="programlisting">bjam include=some-include-path --toolset=toolset-name install</pre> <p> will add "some-include-path" to your compilers header include path, or if ICU has been built with non-standard names for it's binaries, then: </p> <pre class="programlisting">bjam -sICU_LINK="linker-options-for-icu" --toolset=toolset-name install</pre> <p> Will use <span class="emphasis"><em>"linker-options-for-icu"</em></span> when linking the library rather than the default ICU binary names. </p> <p> You might also need to use the options "cxxflags=-option" and "linkflags=-option" to set compiler and linker specific options. </p> <div class="important"><table border="0" summary="Important"> <tr> <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../../../../../doc/src/images/important.png"></td> <th align="left">Important</th> </tr> <tr><td align="left" valign="top"><p> Configuration results are cached - if you try rebuilding with different compiler options then add an "-a" to the bjam command line to force all targets to be rebuilt. </p></td></tr> </table></div> <p> If ICU is not already in your compiler's path, but instead headers, libraries and binaries are located at <span class="emphasis"><em>path-to-icu/include</em></span>, <span class="emphasis"><em>path-to-icu/lib</em></span> and <span class="emphasis"><em>path-to-icu/bin</em></span> respectively then you need to set the environment variable <code class="computeroutput"><span class="identifier">ICU_PATH</span></code> to point to the root directory of your ICU installation: this typically happens if you're building with MSVC. For example if ICU was installed to <code class="computeroutput"><span class="identifier">c</span><span class="special">:\</span><span class="identifier">download</span><span class="special">\</span><span class="identifier">icu</span></code> you might use: </p> <pre class="programlisting">bjam -sICU_PATH=c:\download\icu --toolset=toolset-name install</pre> <div class="important"><table border="0" summary="Important"> <tr> <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../../../../../doc/src/images/important.png"></td> <th align="left">Important</th> </tr> <tr><td align="left" valign="top"><p> ICU is a C++ library just like Boost is, as such your copy of ICU must have been built with the same C++ compiler (and compiler version) that you are using to build Boost. Boost.Regex will not work correctly unless you ensure that this is the case: it is up to you to ensure that the version of ICU you are using is binary compatible with the toolset you use to build Boost. </p></td></tr> </table></div> <p> And finally, if you want to build/test with multiple compiler versions, all with different ICU builds, then the only way to achieve that currently is to modify your user-config.jam so that each toolset has the necessary compiler/linker options set so that ICU is found automatically by the configuration step (providing the ICU binaries use the standard names, all you have to add is the appropriate header-include and linker-search paths). </p> <h5> <a name="boost_regex.install.h2"></a> <span class="phrase"><a name="boost_regex.install.building_from_source"></a></span><a class="link" href="install.html#boost_regex.install.building_from_source">Building from Source</a> </h5> <p> The Regex library is "just a bunch of source files": nothing special is required to build them. </p> <p> You can either build the files under boost-path/libs/regex/src/*.cpp as a library, or add them directly to your project. This is particularly useful if you need to use specific compiler options not supported by the default Boost build. </p> <p> There are two #defines you should be aware of: </p> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> BOOST_HAS_ICU should be defined if you want ICU support compiled in. </li> <li class="listitem"> BOOST_REGEX_DYN_LINK should be defined if you are building a DLL on Windows. </li> </ul></div> <div class="important"><table border="0" summary="Important"> <tr> <td rowspan="2" align="center" valign="top" width="25"><img alt="[Important]" src="../../../../../doc/src/images/important.png"></td> <th align="left">Important</th> </tr> <tr><td align="left" valign="top"><p> The makefiles that were supplied with Boost.Regex are now deprecated and will be removed in the next release. </p></td></tr> </table></div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 1998-2010 John Maddock<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="configuration/tuning.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="introduction_and_overview.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
dist/css/AdminLTE.css
njcalimlim/ITPROJECT1
/*! * AdminLTE v2.4.0 * Author: Almsaeed Studio * Website: Almsaeed Studio <https://adminlte.io> * License: Open source - MIT * Please visit http://opensource.org/licenses/MIT for more information */ /* * Core: General Layout Style * ------------------------- */ html, body { height: 100%; } .layout-boxed html, .layout-boxed body { height: 100%; } body { font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400; overflow-x: hidden; overflow-y: auto; } /* Layout */ .wrapper { height: 100%; position: relative; overflow-x: hidden; overflow-y: auto; } .wrapper:before, .wrapper:after { content: " "; display: table; } .wrapper:after { clear: both; } .wrapper:before, .wrapper:after { content: " "; display: table; } .wrapper:after { clear: both; } .layout-boxed .wrapper { max-width: 1250px; margin: 0 auto; min-height: 100%; box-shadow: 0 0 8px rgba(0, 0, 0, 0.5); position: relative; } .layout-boxed { background: url('../img/boxed-bg.jpg') repeat fixed; } /* * Content Wrapper - contains the main content */ .content-wrapper, .main-footer { -webkit-transition: -webkit-transform 0.3s ease-in-out, margin 0.3s ease-in-out; -moz-transition: -moz-transform 0.3s ease-in-out, margin 0.3s ease-in-out; -o-transition: -o-transform 0.3s ease-in-out, margin 0.3s ease-in-out; transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out; margin-left: 230px; z-index: 820; } .layout-top-nav .content-wrapper, .layout-top-nav .main-footer { margin-left: 0; } @media (max-width: 767px) { .content-wrapper, .main-footer { margin-left: 0; } } @media (min-width: 768px) { .sidebar-collapse .content-wrapper, .sidebar-collapse .main-footer { margin-left: 0; } } @media (max-width: 767px) { .sidebar-open .content-wrapper, .sidebar-open .main-footer { -webkit-transform: translate(230px, 0); -ms-transform: translate(230px, 0); -o-transform: translate(230px, 0); transform: translate(230px, 0); } } .content-wrapper { min-height: 100%; background-color: #ffffff; z-index: 800; } .main-footer { background: #fff; padding: 15px; color: #444; border-top: 1px solid #d2d6de; } /* Fixed layout */ .fixed .main-header, .fixed .main-sidebar, .fixed .left-side { position: fixed; } .fixed .main-header { top: 0; right: 0; left: 0; } .fixed .content-wrapper, .fixed .right-side { padding-top: 50px; } @media (max-width: 767px) { .fixed .content-wrapper, .fixed .right-side { padding-top: 100px; } } .fixed.layout-boxed .wrapper { max-width: 100%; } .fixed .wrapper { overflow: hidden; } .hold-transition .content-wrapper, .hold-transition .right-side, .hold-transition .main-footer, .hold-transition .main-sidebar, .hold-transition .left-side, .hold-transition .main-header .navbar, .hold-transition .main-header .logo, .hold-transition .menu-open .fa-angle-left { /* Fix for IE */ -webkit-transition: none; -o-transition: none; transition: none; } /* Content */ .content { min-height: 250px; padding: 15px; margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; } /* H1 - H6 font */ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: 'Source Sans Pro', sans-serif; } /* General Links */ a { color: #337ab7; } a:hover, a:active, a:focus { outline: none; text-decoration: none; color: #23527c; } /* Page Header */ .page-header { margin: 10px 0 20px 0; font-size: 22px; } .page-header > small { color: #666; display: block; margin-top: 5px; } /* * Component: Main Header * ---------------------- */ .main-header { position: relative; max-height: 100px; z-index: 1030; } .main-header .navbar { -webkit-transition: margin-left 0.3s ease-in-out; -o-transition: margin-left 0.3s ease-in-out; transition: margin-left 0.3s ease-in-out; margin-bottom: 0; margin-left: 230px; border: none; min-height: 50px; border-radius: 0; } .layout-top-nav .main-header .navbar { margin-left: 0; } .main-header #navbar-search-input.form-control { background: rgba(255, 255, 255, 0.2); border-color: transparent; } .main-header #navbar-search-input.form-control:focus, .main-header #navbar-search-input.form-control:active { border-color: rgba(0, 0, 0, 0.1); background: rgba(255, 255, 255, 0.9); } .main-header #navbar-search-input.form-control::-moz-placeholder { color: #ccc; opacity: 1; } .main-header #navbar-search-input.form-control:-ms-input-placeholder { color: #ccc; } .main-header #navbar-search-input.form-control::-webkit-input-placeholder { color: #ccc; } .main-header .navbar-custom-menu, .main-header .navbar-right { float: right; } @media (max-width: 991px) { .main-header .navbar-custom-menu a, .main-header .navbar-right a { color: inherit; background: transparent; } } @media (max-width: 767px) { .main-header .navbar-right { float: none; } .navbar-collapse .main-header .navbar-right { margin: 7.5px -15px; } .main-header .navbar-right > li { color: inherit; border: 0; } } .main-header .sidebar-toggle { float: left; background-color: transparent; background-image: none; padding: 15px 15px; font-family: fontAwesome; } .main-header .sidebar-toggle:before { content: "\f0c9"; } .main-header .sidebar-toggle:hover { color: #fff; } .main-header .sidebar-toggle:focus, .main-header .sidebar-toggle:active { background: transparent; } .main-header .sidebar-toggle .icon-bar { display: none; } .main-header .navbar .nav > li.user > a > .fa, .main-header .navbar .nav > li.user > a > .glyphicon, .main-header .navbar .nav > li.user > a > .ion { margin-right: 5px; } .main-header .navbar .nav > li > a > .label { position: absolute; top: 9px; right: 7px; text-align: center; font-size: 9px; padding: 2px 3px; line-height: .9; } .main-header .logo { -webkit-transition: width 0.3s ease-in-out; -o-transition: width 0.3s ease-in-out; transition: width 0.3s ease-in-out; display: block; float: left; height: 50px; font-size: 20px; line-height: 50px; text-align: center; width: 230px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; padding: 0 15px; font-weight: 300; overflow: hidden; } .main-header .logo .logo-lg { display: block; } .main-header .logo .logo-mini { display: none; } .main-header .navbar-brand { color: #fff; } .content-header { position: relative; padding: 15px 15px 0 15px; } .content-header > h1 { margin: 0; font-size: 24px; } .content-header > h1 > small { font-size: 15px; display: inline-block; padding-left: 4px; font-weight: 300; } .content-header > .breadcrumb { float: right; background: transparent; margin-top: 0; margin-bottom: 0; font-size: 12px; padding: 7px 5px; position: absolute; top: 15px; right: 10px; border-radius: 2px; } .content-header > .breadcrumb > li > a { color: #444; text-decoration: none; display: inline-block; } .content-header > .breadcrumb > li > a > .fa, .content-header > .breadcrumb > li > a > .glyphicon, .content-header > .breadcrumb > li > a > .ion { margin-right: 5px; } .content-header > .breadcrumb > li + li:before { content: '>\00a0'; } @media (max-width: 991px) { .content-header > .breadcrumb { position: relative; margin-top: 5px; top: 0; right: 0; float: none; background: #d2d6de; padding-left: 10px; } .content-header > .breadcrumb li:before { color: #97a0b3; } } .navbar-toggle { color: #fff; border: 0; margin: 0; padding: 15px 15px; } @media (max-width: 991px) { .navbar-custom-menu .navbar-nav > li { float: left; } .navbar-custom-menu .navbar-nav { margin: 0; float: left; } .navbar-custom-menu .navbar-nav > li > a { padding-top: 15px; padding-bottom: 15px; line-height: 20px; } } @media (max-width: 767px) { .main-header { position: relative; } .main-header .logo, .main-header .navbar { width: 100%; float: none; } .main-header .navbar { margin: 0; } .main-header .navbar-custom-menu { float: right; } } @media (max-width: 991px) { .navbar-collapse.pull-left { float: none !important; } .navbar-collapse.pull-left + .navbar-custom-menu { display: block; position: absolute; top: 0; right: 40px; } } /* * Component: Sidebar * ------------------ */ .main-sidebar { position: absolute; top: 0; left: 0; padding-top: 50px; min-height: 100%; width: 230px; z-index: 810; -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out; -moz-transition: -moz-transform 0.3s ease-in-out, width 0.3s ease-in-out; -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out; transition: transform 0.3s ease-in-out, width 0.3s ease-in-out; } @media (max-width: 767px) { .main-sidebar { padding-top: 100px; } } @media (max-width: 767px) { .main-sidebar { -webkit-transform: translate(-230px, 0); -ms-transform: translate(-230px, 0); -o-transform: translate(-230px, 0); transform: translate(-230px, 0); } } @media (min-width: 768px) { .sidebar-collapse .main-sidebar { -webkit-transform: translate(-230px, 0); -ms-transform: translate(-230px, 0); -o-transform: translate(-230px, 0); transform: translate(-230px, 0); } } @media (max-width: 767px) { .sidebar-open .main-sidebar { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } } .sidebar { padding-bottom: 10px; } .sidebar-form input:focus { border-color: transparent; } .user-panel { position: relative; width: 100%; padding: 10px; overflow: hidden; } .user-panel:before, .user-panel:after { content: " "; display: table; } .user-panel:after { clear: both; } .user-panel:before, .user-panel:after { content: " "; display: table; } .user-panel:after { clear: both; } .user-panel > .image > img { width: 100%; max-width: 45px; height: auto; } .user-panel > .info { padding: 5px 5px 5px 15px; line-height: 1; position: absolute; left: 55px; } .user-panel > .info > p { font-weight: 600; margin-bottom: 9px; } .user-panel > .info > a { text-decoration: none; padding-right: 5px; margin-top: 3px; font-size: 11px; } .user-panel > .info > a > .fa, .user-panel > .info > a > .ion, .user-panel > .info > a > .glyphicon { margin-right: 3px; } .sidebar-menu { list-style: none; margin: 0; padding: 0; } .sidebar-menu > li { position: relative; margin: 0; padding: 0; } .sidebar-menu > li > a { padding: 12px 5px 12px 15px; display: block; } .sidebar-menu > li > a > .fa, .sidebar-menu > li > a > .glyphicon, .sidebar-menu > li > a > .ion { width: 20px; } .sidebar-menu > li .label, .sidebar-menu > li .badge { margin-right: 5px; } .sidebar-menu > li .badge { margin-top: 3px; } .sidebar-menu li.header { padding: 10px 25px 10px 15px; font-size: 12px; } .sidebar-menu li > a > .fa-angle-left, .sidebar-menu li > a > .pull-right-container > .fa-angle-left { width: auto; height: auto; padding: 0; margin-right: 10px; -webkit-transition: transform 0.5s ease; -o-transition: transform 0.5s ease; transition: transform 0.5s ease; } .sidebar-menu li > a > .fa-angle-left { position: absolute; top: 50%; right: 10px; margin-top: -8px; } .sidebar-menu .menu-open > a > .fa-angle-left, .sidebar-menu .menu-open > a > .pull-right-container > .fa-angle-left { -webkit-transform: rotate(-90deg); -ms-transform: rotate(-90deg); -o-transform: rotate(-90deg); transform: rotate(-90deg); } .sidebar-menu .active > .treeview-menu { display: block; } /* * Component: Sidebar Mini */ @media (min-width: 768px) { .sidebar-mini.sidebar-collapse .content-wrapper, .sidebar-mini.sidebar-collapse .right-side, .sidebar-mini.sidebar-collapse .main-footer { margin-left: 50px !important; z-index: 840; } .sidebar-mini.sidebar-collapse .main-sidebar { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); width: 50px !important; z-index: 850; } .sidebar-mini.sidebar-collapse .sidebar-menu > li { position: relative; } .sidebar-mini.sidebar-collapse .sidebar-menu > li > a { margin-right: 0; } .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span { border-top-right-radius: 4px; } .sidebar-mini.sidebar-collapse .sidebar-menu > li:not(.treeview) > a > span { border-bottom-right-radius: 4px; } .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu { padding-top: 5px; padding-bottom: 5px; border-bottom-right-radius: 4px; } .sidebar-mini.sidebar-collapse .main-sidebar .user-panel > .info, .sidebar-mini.sidebar-collapse .sidebar-form, .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span, .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu, .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > .pull-right, .sidebar-mini.sidebar-collapse .sidebar-menu li.header { display: none !important; -webkit-transform: translateZ(0); } .sidebar-mini.sidebar-collapse .main-header .logo { width: 50px; } .sidebar-mini.sidebar-collapse .main-header .logo > .logo-mini { display: block; margin-left: -15px; margin-right: -15px; font-size: 18px; } .sidebar-mini.sidebar-collapse .main-header .logo > .logo-lg { display: none; } .sidebar-mini.sidebar-collapse .main-header .navbar { margin-left: 50px; } } .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right), .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > .treeview-menu { display: block !important; position: absolute; width: 180px; left: 50px; } .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > a > span { top: 0; margin-left: -3px; padding: 12px 5px 12px 20px; background-color: inherit; } .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container { position: relative !important; float: right; width: auto !important; left: 180px !important; top: -22px !important; z-index: 900; } .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container > .label:not(:first-of-type) { display: none; } .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > .treeview-menu { top: 44px; margin-left: 0; } .sidebar-expanded-on-hover .main-footer, .sidebar-expanded-on-hover .content-wrapper { margin-left: 50px; } .sidebar-expanded-on-hover .main-sidebar { box-shadow: 3px 0 8px rgba(0, 0, 0, 0.125); } .sidebar-menu, .main-sidebar .user-panel, .sidebar-menu > li.header { white-space: nowrap; overflow: hidden; } .sidebar-menu:hover { overflow: visible; } .sidebar-form, .sidebar-menu > li.header { overflow: hidden; text-overflow: clip; } .sidebar-menu li > a { position: relative; } .sidebar-menu li > a > .pull-right-container { position: absolute; right: 10px; top: 50%; margin-top: -7px; } /* * Component: Control sidebar. By default, this is the right sidebar. */ .control-sidebar-bg { position: fixed; z-index: 1000; bottom: 0; } .control-sidebar-bg, .control-sidebar { top: 0; right: -230px; width: 230px; -webkit-transition: right 0.3s ease-in-out; -o-transition: right 0.3s ease-in-out; transition: right 0.3s ease-in-out; } .control-sidebar { position: absolute; padding-top: 50px; z-index: 1010; } @media (max-width: 768px) { .control-sidebar { padding-top: 100px; } } .control-sidebar > .tab-content { padding: 10px 15px; } .control-sidebar.control-sidebar-open, .control-sidebar.control-sidebar-open + .control-sidebar-bg { right: 0; } .control-sidebar-open .control-sidebar-bg, .control-sidebar-open .control-sidebar { right: 0; } @media (min-width: 768px) { .control-sidebar-open .content-wrapper, .control-sidebar-open .right-side, .control-sidebar-open .main-footer { margin-right: 230px; } } .fixed .control-sidebar { position: fixed; height: 100%; overflow-y: auto; padding-bottom: 50px; } .nav-tabs.control-sidebar-tabs > li:first-of-type > a, .nav-tabs.control-sidebar-tabs > li:first-of-type > a:hover, .nav-tabs.control-sidebar-tabs > li:first-of-type > a:focus { border-left-width: 0; } .nav-tabs.control-sidebar-tabs > li > a { border-radius: 0; } .nav-tabs.control-sidebar-tabs > li > a, .nav-tabs.control-sidebar-tabs > li > a:hover { border-top: none; border-right: none; border-left: 1px solid transparent; border-bottom: 1px solid transparent; } .nav-tabs.control-sidebar-tabs > li > a .icon { font-size: 16px; } .nav-tabs.control-sidebar-tabs > li.active > a, .nav-tabs.control-sidebar-tabs > li.active > a:hover, .nav-tabs.control-sidebar-tabs > li.active > a:focus, .nav-tabs.control-sidebar-tabs > li.active > a:active { border-top: none; border-right: none; border-bottom: none; } @media (max-width: 768px) { .nav-tabs.control-sidebar-tabs { display: table; } .nav-tabs.control-sidebar-tabs > li { display: table-cell; } } .control-sidebar-heading { font-weight: 400; font-size: 16px; padding: 10px 0; margin-bottom: 10px; } .control-sidebar-subheading { display: block; font-weight: 400; font-size: 14px; } .control-sidebar-menu { list-style: none; padding: 0; margin: 0 -15px; } .control-sidebar-menu > li > a { display: block; padding: 10px 15px; } .control-sidebar-menu > li > a:before, .control-sidebar-menu > li > a:after { content: " "; display: table; } .control-sidebar-menu > li > a:after { clear: both; } .control-sidebar-menu > li > a:before, .control-sidebar-menu > li > a:after { content: " "; display: table; } .control-sidebar-menu > li > a:after { clear: both; } .control-sidebar-menu > li > a > .control-sidebar-subheading { margin-top: 0; } .control-sidebar-menu .menu-icon { float: left; width: 35px; height: 35px; border-radius: 50%; text-align: center; line-height: 35px; } .control-sidebar-menu .menu-info { margin-left: 45px; margin-top: 3px; } .control-sidebar-menu .menu-info > .control-sidebar-subheading { margin: 0; } .control-sidebar-menu .menu-info > p { margin: 0; font-size: 11px; } .control-sidebar-menu .progress { margin: 0; } .control-sidebar-dark { color: #b8c7ce; } .control-sidebar-dark, .control-sidebar-dark + .control-sidebar-bg { background: #222d32; } .control-sidebar-dark .nav-tabs.control-sidebar-tabs { border-bottom: #1c2529; } .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a { background: #181f23; color: #b8c7ce; } .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus { border-left-color: #141a1d; border-bottom-color: #141a1d; } .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:active { background: #1c2529; } .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover { color: #fff; } .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:hover, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:focus, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:active { background: #222d32; color: #fff; } .control-sidebar-dark .control-sidebar-heading, .control-sidebar-dark .control-sidebar-subheading { color: #fff; } .control-sidebar-dark .control-sidebar-menu > li > a:hover { background: #1e282c; } .control-sidebar-dark .control-sidebar-menu > li > a .menu-info > p { color: #b8c7ce; } .control-sidebar-light { color: #5e5e5e; } .control-sidebar-light, .control-sidebar-light + .control-sidebar-bg { background: #f9fafc; border-left: 1px solid #d2d6de; } .control-sidebar-light .nav-tabs.control-sidebar-tabs { border-bottom: #d2d6de; } .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a { background: #e8ecf4; color: #444444; } .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus { border-left-color: #d2d6de; border-bottom-color: #d2d6de; } .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:active { background: #eff1f7; } .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:hover, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:focus, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:active { background: #f9fafc; color: #111; } .control-sidebar-light .control-sidebar-heading, .control-sidebar-light .control-sidebar-subheading { color: #111; } .control-sidebar-light .control-sidebar-menu { margin-left: -14px; } .control-sidebar-light .control-sidebar-menu > li > a:hover { background: #f4f4f5; } .control-sidebar-light .control-sidebar-menu > li > a .menu-info > p { color: #5e5e5e; } /* * Component: Dropdown menus * ------------------------- */ /*Dropdowns in general*/ .dropdown-menu { box-shadow: none; border-color: #eee; } .dropdown-menu > li > a { color: #777; } .dropdown-menu > li > a > .glyphicon, .dropdown-menu > li > a > .fa, .dropdown-menu > li > a > .ion { margin-right: 10px; } .dropdown-menu > li > a:hover { background-color: #e1e3e9; color: #333; } .dropdown-menu > .divider { background-color: #eee; } .navbar-nav > .notifications-menu > .dropdown-menu, .navbar-nav > .messages-menu > .dropdown-menu, .navbar-nav > .tasks-menu > .dropdown-menu { width: 280px; padding: 0 0 0 0; margin: 0; top: 100%; } .navbar-nav > .notifications-menu > .dropdown-menu > li, .navbar-nav > .messages-menu > .dropdown-menu > li, .navbar-nav > .tasks-menu > .dropdown-menu > li { position: relative; } .navbar-nav > .notifications-menu > .dropdown-menu > li.header, .navbar-nav > .messages-menu > .dropdown-menu > li.header, .navbar-nav > .tasks-menu > .dropdown-menu > li.header { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; background-color: #ffffff; padding: 7px 10px; border-bottom: 1px solid #f4f4f4; color: #444444; font-size: 14px; } .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a, .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a, .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; font-size: 12px; background-color: #fff; padding: 7px 10px; border-bottom: 1px solid #eeeeee; color: #444 !important; text-align: center; } @media (max-width: 991px) { .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a, .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a, .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a { background: #fff !important; color: #444 !important; } } .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover, .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover, .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover { text-decoration: none; font-weight: normal; } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu, .navbar-nav > .messages-menu > .dropdown-menu > li .menu, .navbar-nav > .tasks-menu > .dropdown-menu > li .menu { max-height: 200px; margin: 0; padding: 0; list-style: none; overflow-x: hidden; } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a, .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a, .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a { display: block; white-space: nowrap; /* Prevent text from breaking */ border-bottom: 1px solid #f4f4f4; } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover, .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover, .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover { background: #f4f4f4; text-decoration: none; } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a { color: #444444; overflow: hidden; text-overflow: ellipsis; padding: 10px; } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon, .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa, .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion { width: 20px; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a { margin: 0; padding: 10px 10px; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img { margin: auto 10px auto auto; width: 40px; height: 40px; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 { padding: 0; margin: 0 0 0 45px; color: #444444; font-size: 15px; position: relative; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small { color: #999999; font-size: 10px; position: absolute; top: 0; right: 0; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p { margin: 0 0 0 45px; font-size: 12px; color: #888888; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before, .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { content: " "; display: table; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { clear: both; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before, .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { content: " "; display: table; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { clear: both; } .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a { padding: 10px; } .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 { font-size: 14px; padding: 0; margin: 0 0 10px 0; color: #666666; } .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress { padding: 0; margin: 0; } .navbar-nav > .user-menu > .dropdown-menu { border-top-right-radius: 0; border-top-left-radius: 0; padding: 1px 0 0 0; border-top-width: 0; width: 280px; } .navbar-nav > .user-menu > .dropdown-menu, .navbar-nav > .user-menu > .dropdown-menu > .user-body { border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } .navbar-nav > .user-menu > .dropdown-menu > li.user-header { height: 175px; padding: 10px; text-align: center; } .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img { z-index: 5; height: 90px; width: 90px; border: 3px solid; border-color: transparent; border-color: rgba(255, 255, 255, 0.2); } .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p { z-index: 5; color: #fff; color: rgba(255, 255, 255, 0.8); font-size: 17px; margin-top: 10px; } .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small { display: block; font-size: 12px; } .navbar-nav > .user-menu > .dropdown-menu > .user-body { padding: 15px; border-bottom: 1px solid #f4f4f4; border-top: 1px solid #dddddd; } .navbar-nav > .user-menu > .dropdown-menu > .user-body:before, .navbar-nav > .user-menu > .dropdown-menu > .user-body:after { content: " "; display: table; } .navbar-nav > .user-menu > .dropdown-menu > .user-body:after { clear: both; } .navbar-nav > .user-menu > .dropdown-menu > .user-body:before, .navbar-nav > .user-menu > .dropdown-menu > .user-body:after { content: " "; display: table; } .navbar-nav > .user-menu > .dropdown-menu > .user-body:after { clear: both; } .navbar-nav > .user-menu > .dropdown-menu > .user-body a { color: #444 !important; } @media (max-width: 991px) { .navbar-nav > .user-menu > .dropdown-menu > .user-body a { background: #fff !important; color: #444 !important; } } .navbar-nav > .user-menu > .dropdown-menu > .user-footer { background-color: #f9f9f9; padding: 10px; } .navbar-nav > .user-menu > .dropdown-menu > .user-footer:before, .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after { content: " "; display: table; } .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after { clear: both; } .navbar-nav > .user-menu > .dropdown-menu > .user-footer:before, .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after { content: " "; display: table; } .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after { clear: both; } .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default { color: #666666; } @media (max-width: 991px) { .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover { background-color: #f9f9f9; } } .navbar-nav > .user-menu .user-image { float: left; width: 25px; height: 25px; border-radius: 50%; margin-right: 10px; margin-top: -2px; } @media (max-width: 767px) { .navbar-nav > .user-menu .user-image { float: none; margin-right: 0; margin-top: -8px; line-height: 10px; } } /* Add fade animation to dropdown menus by appending the class .animated-dropdown-menu to the .dropdown-menu ul (or ol)*/ .open:not(.dropup) > .animated-dropdown-menu { backface-visibility: visible !important; -webkit-animation: flipInX 0.7s both; -o-animation: flipInX 0.7s both; animation: flipInX 0.7s both; } @keyframes flipInX { 0% { transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transition-timing-function: ease-in; opacity: 0; } 40% { transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transition-timing-function: ease-in; } 60% { transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } 100% { transform: perspective(400px); } } @-webkit-keyframes flipInX { 0% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-transition-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-transition-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } 100% { -webkit-transform: perspective(400px); } } /* Fix dropdown menu in navbars */ .navbar-custom-menu > .navbar-nav > li { position: relative; } .navbar-custom-menu > .navbar-nav > li > .dropdown-menu { position: absolute; right: 0; left: auto; } @media (max-width: 991px) { .navbar-custom-menu > .navbar-nav { float: right; } .navbar-custom-menu > .navbar-nav > li { position: static; } .navbar-custom-menu > .navbar-nav > li > .dropdown-menu { position: absolute; right: 5%; left: auto; border: 1px solid #ddd; background: #fff; } } /* * Component: Form * --------------- */ .form-control { border-radius: 0; box-shadow: none; border-color: #d2d6de; } .form-control:focus { border-color: #3c8dbc; box-shadow: none; } .form-control::-moz-placeholder, .form-control:-ms-input-placeholder, .form-control::-webkit-input-placeholder { color: #bbb; opacity: 1; } .form-control:not(select) { -webkit-appearance: none; -moz-appearance: none; appearance: none; } .form-group.has-success label { color: #00a65a; } .form-group.has-success .form-control, .form-group.has-success .input-group-addon { border-color: #00a65a; box-shadow: none; } .form-group.has-success .help-block { color: #00a65a; } .form-group.has-warning label { color: #f39c12; } .form-group.has-warning .form-control, .form-group.has-warning .input-group-addon { border-color: #f39c12; box-shadow: none; } .form-group.has-warning .help-block { color: #f39c12; } .form-group.has-error label { color: #dd4b39; } .form-group.has-error .form-control, .form-group.has-error .input-group-addon { border-color: #dd4b39; box-shadow: none; } .form-group.has-error .help-block { color: #dd4b39; } /* Input group */ .input-group .input-group-addon { border-radius: 0; border-color: #d2d6de; background-color: #fff; } /* button groups */ .btn-group-vertical .btn.btn-flat:first-of-type, .btn-group-vertical .btn.btn-flat:last-of-type { border-radius: 0; } .icheck > label { padding-left: 0; } /* support Font Awesome icons in form-control */ .form-control-feedback.fa { line-height: 34px; } .input-lg + .form-control-feedback.fa, .input-group-lg + .form-control-feedback.fa, .form-group-lg .form-control + .form-control-feedback.fa { line-height: 46px; } .input-sm + .form-control-feedback.fa, .input-group-sm + .form-control-feedback.fa, .form-group-sm .form-control + .form-control-feedback.fa { line-height: 30px; } /* * Component: Progress Bar * ----------------------- */ .progress, .progress > .progress-bar { -webkit-box-shadow: none; box-shadow: none; } .progress, .progress > .progress-bar, .progress .progress-bar, .progress > .progress-bar .progress-bar { border-radius: 1px; } /* size variation */ .progress.sm, .progress-sm { height: 10px; } .progress.sm, .progress-sm, .progress.sm .progress-bar, .progress-sm .progress-bar { border-radius: 1px; } .progress.xs, .progress-xs { height: 7px; } .progress.xs, .progress-xs, .progress.xs .progress-bar, .progress-xs .progress-bar { border-radius: 1px; } .progress.xxs, .progress-xxs { height: 3px; } .progress.xxs, .progress-xxs, .progress.xxs .progress-bar, .progress-xxs .progress-bar { border-radius: 1px; } /* Vertical bars */ .progress.vertical { position: relative; width: 30px; height: 200px; display: inline-block; margin-right: 10px; } .progress.vertical > .progress-bar { width: 100%; position: absolute; bottom: 0; } .progress.vertical.sm, .progress.vertical.progress-sm { width: 20px; } .progress.vertical.xs, .progress.vertical.progress-xs { width: 10px; } .progress.vertical.xxs, .progress.vertical.progress-xxs { width: 3px; } .progress-group .progress-text { font-weight: 600; } .progress-group .progress-number { float: right; } /* Remove margins from progress bars when put in a table */ .table tr > td .progress { margin: 0; } .progress-bar-light-blue, .progress-bar-primary { background-color: #3c8dbc; } .progress-striped .progress-bar-light-blue, .progress-striped .progress-bar-primary { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-striped .progress-bar-light-blue, .progress-striped .progress-bar-primary { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-green, .progress-bar-success { background-color: #00a65a; } .progress-striped .progress-bar-green, .progress-striped .progress-bar-success { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-striped .progress-bar-green, .progress-striped .progress-bar-success { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-aqua, .progress-bar-info { background-color: #00c0ef; } .progress-striped .progress-bar-aqua, .progress-striped .progress-bar-info { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-striped .progress-bar-aqua, .progress-striped .progress-bar-info { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-yellow, .progress-bar-warning { background-color: #f39c12; } .progress-striped .progress-bar-yellow, .progress-striped .progress-bar-warning { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-striped .progress-bar-yellow, .progress-striped .progress-bar-warning { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-red, .progress-bar-danger { background-color: #dd4b39; } .progress-striped .progress-bar-red, .progress-striped .progress-bar-danger { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-striped .progress-bar-red, .progress-striped .progress-bar-danger { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } /* * Component: Small Box * -------------------- */ .small-box { border-radius: 2px; position: relative; display: block; margin-bottom: 20px; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); } .small-box > .inner { padding: 10px; } .small-box > .small-box-footer { position: relative; text-align: center; padding: 3px 0; color: #fff; color: rgba(255, 255, 255, 0.8); display: block; z-index: 10; background: rgba(0, 0, 0, 0.1); text-decoration: none; } .small-box > .small-box-footer:hover { color: #fff; background: rgba(0, 0, 0, 0.15); } .small-box h3 { font-size: 38px; font-weight: bold; margin: 0 0 10px 0; white-space: nowrap; padding: 0; } .small-box p { font-size: 15px; } .small-box p > small { display: block; color: #f9f9f9; font-size: 13px; margin-top: 5px; } .small-box h3, .small-box p { z-index: 5; } .small-box .icon { -webkit-transition: all 0.3s linear; -o-transition: all 0.3s linear; transition: all 0.3s linear; position: absolute; top: -10px; right: 10px; z-index: 0; font-size: 90px; color: rgba(0, 0, 0, 0.15); } .small-box:hover { text-decoration: none; color: #f9f9f9; } .small-box:hover .icon { font-size: 95px; } @media (max-width: 767px) { .small-box { text-align: center; } .small-box .icon { display: none; } .small-box p { font-size: 12px; } } /* * Component: Box * -------------- */ .box { position: relative; border-radius: 3px; background: #ffffff; border-top: 3px solid #d2d6de; margin-bottom: 20px; width: 100%; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); } .box.box-primary { border-top-color: #3c8dbc; } .box.box-info { border-top-color: #00c0ef; } .box.box-danger { border-top-color: #dd4b39; } .box.box-warning { border-top-color: #f39c12; } .box.box-success { border-top-color: #00a65a; } .box.box-default { border-top-color: #d2d6de; } .box.collapsed-box .box-body, .box.collapsed-box .box-footer { display: none; } .box .nav-stacked > li { border-bottom: 1px solid #f4f4f4; margin: 0; } .box .nav-stacked > li:last-of-type { border-bottom: none; } .box.height-control .box-body { max-height: 300px; overflow: auto; } .box .border-right { border-right: 1px solid #f4f4f4; } .box .border-left { border-left: 1px solid #f4f4f4; } .box.box-solid { border-top: 0; } .box.box-solid > .box-header .btn.btn-default { background: transparent; } .box.box-solid > .box-header .btn:hover, .box.box-solid > .box-header a:hover { background: rgba(0, 0, 0, 0.1); } .box.box-solid.box-default { border: 1px solid #d2d6de; } .box.box-solid.box-default > .box-header { color: #444444; background: #d2d6de; background-color: #d2d6de; } .box.box-solid.box-default > .box-header a, .box.box-solid.box-default > .box-header .btn { color: #444444; } .box.box-solid.box-primary { border: 1px solid #3c8dbc; } .box.box-solid.box-primary > .box-header { color: #ffffff; background: #3c8dbc; background-color: #3c8dbc; } .box.box-solid.box-primary > .box-header a, .box.box-solid.box-primary > .box-header .btn { color: #ffffff; } .box.box-solid.box-info { border: 1px solid #00c0ef; } .box.box-solid.box-info > .box-header { color: #ffffff; background: #00c0ef; background-color: #00c0ef; } .box.box-solid.box-info > .box-header a, .box.box-solid.box-info > .box-header .btn { color: #ffffff; } .box.box-solid.box-danger { border: 1px solid #dd4b39; } .box.box-solid.box-danger > .box-header { color: #ffffff; background: #dd4b39; background-color: #dd4b39; } .box.box-solid.box-danger > .box-header a, .box.box-solid.box-danger > .box-header .btn { color: #ffffff; } .box.box-solid.box-warning { border: 1px solid #f39c12; } .box.box-solid.box-warning > .box-header { color: #ffffff; background: #f39c12; background-color: #f39c12; } .box.box-solid.box-warning > .box-header a, .box.box-solid.box-warning > .box-header .btn { color: #ffffff; } .box.box-solid.box-success { border: 1px solid #00a65a; } .box.box-solid.box-success > .box-header { color: #ffffff; background: #00a65a; background-color: #00a65a; } .box.box-solid.box-success > .box-header a, .box.box-solid.box-success > .box-header .btn { color: #ffffff; } .box.box-solid > .box-header > .box-tools .btn { border: 0; box-shadow: none; } .box.box-solid[class*='bg'] > .box-header { color: #fff; } .box .box-group > .box { margin-bottom: 5px; } .box .knob-label { text-align: center; color: #333; font-weight: 100; font-size: 12px; margin-bottom: 0.3em; } .box > .overlay, .overlay-wrapper > .overlay, .box > .loading-img, .overlay-wrapper > .loading-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .box .overlay, .overlay-wrapper .overlay { z-index: 50; background: rgba(255, 255, 255, 0.7); border-radius: 3px; } .box .overlay > .fa, .overlay-wrapper .overlay > .fa { position: absolute; top: 50%; left: 50%; margin-left: -15px; margin-top: -15px; color: #000; font-size: 30px; } .box .overlay.dark, .overlay-wrapper .overlay.dark { background: rgba(0, 0, 0, 0.5); } .box-header:before, .box-body:before, .box-footer:before, .box-header:after, .box-body:after, .box-footer:after { content: " "; display: table; } .box-header:after, .box-body:after, .box-footer:after { clear: both; } .box-header:before, .box-body:before, .box-footer:before, .box-header:after, .box-body:after, .box-footer:after { content: " "; display: table; } .box-header:after, .box-body:after, .box-footer:after { clear: both; } .box-header { color: #444; display: block; padding: 10px; position: relative; } .box-header.with-border { border-bottom: 1px solid #f4f4f4; } .collapsed-box .box-header.with-border { border-bottom: none; } .box-header > .fa, .box-header > .glyphicon, .box-header > .ion, .box-header .box-title { display: inline-block; font-size: 18px; margin: 0; line-height: 1; } .box-header > .fa, .box-header > .glyphicon, .box-header > .ion { margin-right: 5px; } .box-header > .box-tools { position: absolute; right: 10px; top: 5px; } .box-header > .box-tools [data-toggle="tooltip"] { position: relative; } .box-header > .box-tools.pull-right .dropdown-menu { right: 0; left: auto; } .box-header > .box-tools .dropdown-menu > li > a { color: #444!important; } .btn-box-tool { padding: 5px; font-size: 12px; background: transparent; color: #97a0b3; } .open .btn-box-tool, .btn-box-tool:hover { color: #606c84; } .btn-box-tool.btn:active { box-shadow: none; } .box-body { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; padding: 10px; } .no-header .box-body { border-top-right-radius: 3px; border-top-left-radius: 3px; } .box-body > .table { margin-bottom: 0; } .box-body .fc { margin-top: 5px; } .box-body .full-width-chart { margin: -19px; } .box-body.no-padding .full-width-chart { margin: -9px; } .box-body .box-pane { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 3px; } .box-body .box-pane-right { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 0; } .box-footer { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; border-top: 1px solid #f4f4f4; padding: 10px; background-color: #ffffff; } .chart-legend { margin: 10px 0; } @media (max-width: 991px) { .chart-legend > li { float: left; margin-right: 10px; } } .box-comments { background: #f7f7f7; } .box-comments .box-comment { padding: 8px 0; border-bottom: 1px solid #eee; } .box-comments .box-comment:before, .box-comments .box-comment:after { content: " "; display: table; } .box-comments .box-comment:after { clear: both; } .box-comments .box-comment:before, .box-comments .box-comment:after { content: " "; display: table; } .box-comments .box-comment:after { clear: both; } .box-comments .box-comment:last-of-type { border-bottom: 0; } .box-comments .box-comment:first-of-type { padding-top: 0; } .box-comments .box-comment img { float: left; } .box-comments .comment-text { margin-left: 40px; color: #555; } .box-comments .username { color: #444; display: block; font-weight: 600; } .box-comments .text-muted { font-weight: 400; font-size: 12px; } /* Widget: TODO LIST */ .todo-list { margin: 0; padding: 0; list-style: none; overflow: auto; } .todo-list > li { border-radius: 2px; padding: 10px; background: #f4f4f4; margin-bottom: 2px; border-left: 2px solid #e6e7e8; color: #444; } .todo-list > li:last-of-type { margin-bottom: 0; } .todo-list > li > input[type='checkbox'] { margin: 0 10px 0 5px; } .todo-list > li .text { display: inline-block; margin-left: 5px; font-weight: 600; } .todo-list > li .label { margin-left: 10px; font-size: 9px; } .todo-list > li .tools { display: none; float: right; color: #dd4b39; } .todo-list > li .tools > .fa, .todo-list > li .tools > .glyphicon, .todo-list > li .tools > .ion { margin-right: 5px; cursor: pointer; } .todo-list > li:hover .tools { display: inline-block; } .todo-list > li.done { color: #999; } .todo-list > li.done .text { text-decoration: line-through; font-weight: 500; } .todo-list > li.done .label { background: #d2d6de !important; } .todo-list .danger { border-left-color: #dd4b39; } .todo-list .warning { border-left-color: #f39c12; } .todo-list .info { border-left-color: #00c0ef; } .todo-list .success { border-left-color: #00a65a; } .todo-list .primary { border-left-color: #3c8dbc; } .todo-list .handle { display: inline-block; cursor: move; margin: 0 5px; } /* Chat widget (DEPRECATED - this will be removed in the next major release. Use Direct Chat instead)*/ .chat { padding: 5px 20px 5px 10px; } .chat .item { margin-bottom: 10px; } .chat .item:before, .chat .item:after { content: " "; display: table; } .chat .item:after { clear: both; } .chat .item:before, .chat .item:after { content: " "; display: table; } .chat .item:after { clear: both; } .chat .item > img { width: 40px; height: 40px; border: 2px solid transparent; border-radius: 50%; } .chat .item > .online { border: 2px solid #00a65a; } .chat .item > .offline { border: 2px solid #dd4b39; } .chat .item > .message { margin-left: 55px; margin-top: -40px; } .chat .item > .message > .name { display: block; font-weight: 600; } .chat .item > .attachment { border-radius: 3px; background: #f4f4f4; margin-left: 65px; margin-right: 15px; padding: 10px; } .chat .item > .attachment > h4 { margin: 0 0 5px 0; font-weight: 600; font-size: 14px; } .chat .item > .attachment > p, .chat .item > .attachment > .filename { font-weight: 600; font-size: 13px; font-style: italic; margin: 0; } .chat .item > .attachment:before, .chat .item > .attachment:after { content: " "; display: table; } .chat .item > .attachment:after { clear: both; } .chat .item > .attachment:before, .chat .item > .attachment:after { content: " "; display: table; } .chat .item > .attachment:after { clear: both; } .box-input { max-width: 200px; } .modal .panel-body { color: #444; } /* * Component: Info Box * ------------------- */ .info-box { display: block; min-height: 90px; background: #fff; width: 100%; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); border-radius: 2px; margin-bottom: 15px; } .info-box small { font-size: 14px; } .info-box .progress { background: rgba(0, 0, 0, 0.2); margin: 5px -10px 5px -10px; height: 2px; } .info-box .progress, .info-box .progress .progress-bar { border-radius: 0; } .info-box .progress .progress-bar { background: #fff; } .info-box-icon { border-top-left-radius: 2px; border-top-right-radius: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 2px; display: block; float: left; height: 90px; width: 90px; text-align: center; font-size: 45px; line-height: 90px; background: rgba(0, 0, 0, 0.2); } .info-box-icon > img { max-width: 100%; } .info-box-content { padding: 5px 10px; margin-left: 90px; } .info-box-number { display: block; font-weight: bold; font-size: 18px; } .progress-description, .info-box-text { display: block; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .info-box-text { text-transform: uppercase; } .info-box-more { display: block; } .progress-description { margin: 0; } /* * Component: Timeline * ------------------- */ .timeline { position: relative; margin: 0 0 30px 0; padding: 0; list-style: none; } .timeline:before { content: ''; position: absolute; top: 0; bottom: 0; width: 4px; background: #ddd; left: 31px; margin: 0; border-radius: 2px; } .timeline > li { position: relative; margin-right: 10px; margin-bottom: 15px; } .timeline > li:before, .timeline > li:after { content: " "; display: table; } .timeline > li:after { clear: both; } .timeline > li:before, .timeline > li:after { content: " "; display: table; } .timeline > li:after { clear: both; } .timeline > li > .timeline-item { -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); border-radius: 3px; margin-top: 0; background: #fff; color: #444; margin-left: 60px; margin-right: 15px; padding: 0; position: relative; } .timeline > li > .timeline-item > .time { color: #999; float: right; padding: 10px; font-size: 12px; } .timeline > li > .timeline-item > .timeline-header { margin: 0; color: #555; border-bottom: 1px solid #f4f4f4; padding: 10px; font-size: 16px; line-height: 1.1; } .timeline > li > .timeline-item > .timeline-header > a { font-weight: 600; } .timeline > li > .timeline-item > .timeline-body, .timeline > li > .timeline-item > .timeline-footer { padding: 10px; } .timeline > li > .fa, .timeline > li > .glyphicon, .timeline > li > .ion { width: 30px; height: 30px; font-size: 15px; line-height: 30px; position: absolute; color: #666; background: #d2d6de; border-radius: 50%; text-align: center; left: 18px; top: 0; } .timeline > .time-label > span { font-weight: 600; padding: 5px; display: inline-block; background-color: #fff; border-radius: 4px; } .timeline-inverse > li > .timeline-item { background: #f0f0f0; border: 1px solid #ddd; -webkit-box-shadow: none; box-shadow: none; } .timeline-inverse > li > .timeline-item > .timeline-header { border-bottom-color: #ddd; } /* * Component: Button * ----------------- */ .btn { border-radius: 3px; -webkit-box-shadow: none; box-shadow: none; border: 1px solid transparent; } .btn.uppercase { text-transform: uppercase; } .btn.btn-flat { border-radius: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; border-width: 1px; } .btn:active { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn:focus { outline: none; } .btn.btn-file { position: relative; overflow: hidden; } .btn.btn-file > input[type='file'] { position: absolute; top: 0; right: 0; min-width: 100%; min-height: 100%; font-size: 100px; text-align: right; opacity: 0; filter: alpha(opacity=0); outline: none; background: white; cursor: inherit; display: block; } .btn-default { background-color: #f4f4f4; color: #444; border-color: #ddd; } .btn-default:hover, .btn-default:active, .btn-default.hover { background-color: #e7e7e7; } .btn-primary { background-color: #3c8dbc; border-color: #367fa9; } .btn-primary:hover, .btn-primary:active, .btn-primary.hover { background-color: #367fa9; } .btn-success { background-color: #00a65a; border-color: #008d4c; } .btn-success:hover, .btn-success:active, .btn-success.hover { background-color: #008d4c; } .btn-info { background-color: #00c0ef; border-color: #00acd6; } .btn-info:hover, .btn-info:active, .btn-info.hover { background-color: #00acd6; } .btn-danger { background-color: #dd4b39; border-color: #d73925; } .btn-danger:hover, .btn-danger:active, .btn-danger.hover { background-color: #d73925; } .btn-warning { background-color: #f39c12; border-color: #e08e0b; } .btn-warning:hover, .btn-warning:active, .btn-warning.hover { background-color: #e08e0b; } .btn-outline { border: 1px solid #fff; background: transparent; color: #fff; } .btn-outline:hover, .btn-outline:focus, .btn-outline:active { color: rgba(255, 255, 255, 0.7); border-color: rgba(255, 255, 255, 0.7); } .btn-link { -webkit-box-shadow: none; box-shadow: none; } .btn[class*='bg-']:hover { -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2); box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2); } .btn-app { border-radius: 3px; position: relative; padding: 15px 5px; margin: 0 0 10px 10px; min-width: 80px; height: 60px; text-align: center; color: #666; border: 1px solid #ddd; background-color: #f4f4f4; font-size: 12px; } .btn-app > .fa, .btn-app > .glyphicon, .btn-app > .ion { font-size: 20px; display: block; } .btn-app:hover { background: #f4f4f4; color: #444; border-color: #aaa; } .btn-app:active, .btn-app:focus { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn-app > .badge { position: absolute; top: -3px; right: -10px; font-size: 10px; font-weight: 400; } /* * Component: Callout * ------------------ */ .callout { border-radius: 3px; margin: 0 0 20px 0; padding: 15px 30px 15px 15px; border-left: 5px solid #eee; } .callout a { color: #fff; text-decoration: underline; } .callout a:hover { color: #eee; } .callout h4 { margin-top: 0; font-weight: 600; } .callout p:last-child { margin-bottom: 0; } .callout code, .callout .highlight { background-color: #fff; } .callout.callout-danger { border-color: #c23321; } .callout.callout-warning { border-color: #c87f0a; } .callout.callout-info { border-color: #0097bc; } .callout.callout-success { border-color: #00733e; } /* * Component: alert * ---------------- */ .alert { border-radius: 3px; } .alert h4 { font-weight: 600; } .alert .icon { margin-right: 10px; } .alert .close { color: #000; opacity: 0.2; filter: alpha(opacity=20); } .alert .close:hover { opacity: 0.5; filter: alpha(opacity=50); } .alert a { color: #fff; text-decoration: underline; } .alert-success { border-color: #008d4c; } .alert-danger, .alert-error { border-color: #d73925; } .alert-warning { border-color: #e08e0b; } .alert-info { border-color: #00acd6; } /* * Component: Nav * -------------- */ .nav > li > a:hover, .nav > li > a:active, .nav > li > a:focus { color: #444; background: #f7f7f7; } /* NAV PILLS */ .nav-pills > li > a { border-radius: 0; border-top: 3px solid transparent; color: #444; } .nav-pills > li > a > .fa, .nav-pills > li > a > .glyphicon, .nav-pills > li > a > .ion { margin-right: 5px; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { border-top-color: #3c8dbc; } .nav-pills > li.active > a { font-weight: 600; } /* NAV STACKED */ .nav-stacked > li > a { border-radius: 0; border-top: 0; border-left: 3px solid transparent; color: #444; } .nav-stacked > li.active > a, .nav-stacked > li.active > a:hover { background: transparent; color: #444; border-top: 0; border-left-color: #3c8dbc; } .nav-stacked > li.header { border-bottom: 1px solid #ddd; color: #777; margin-bottom: 10px; padding: 5px 10px; text-transform: uppercase; } /* NAV TABS */ .nav-tabs-custom { margin-bottom: 20px; background: #fff; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); border-radius: 3px; } .nav-tabs-custom > .nav-tabs { margin: 0; border-bottom-color: #f4f4f4; border-top-right-radius: 3px; border-top-left-radius: 3px; } .nav-tabs-custom > .nav-tabs > li { border-top: 3px solid transparent; margin-bottom: -2px; margin-right: 5px; } .nav-tabs-custom > .nav-tabs > li.disabled > a { color: #777; } .nav-tabs-custom > .nav-tabs > li > a { color: #444; border-radius: 0; } .nav-tabs-custom > .nav-tabs > li > a.text-muted { color: #999; } .nav-tabs-custom > .nav-tabs > li > a, .nav-tabs-custom > .nav-tabs > li > a:hover { background: transparent; margin: 0; } .nav-tabs-custom > .nav-tabs > li > a:hover { color: #999; } .nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover, .nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus, .nav-tabs-custom > .nav-tabs > li:not(.active) > a:active { border-color: transparent; } .nav-tabs-custom > .nav-tabs > li.active { border-top-color: #3c8dbc; } .nav-tabs-custom > .nav-tabs > li.active > a, .nav-tabs-custom > .nav-tabs > li.active:hover > a { background-color: #fff; color: #444; } .nav-tabs-custom > .nav-tabs > li.active > a { border-top-color: transparent; border-left-color: #f4f4f4; border-right-color: #f4f4f4; } .nav-tabs-custom > .nav-tabs > li:first-of-type { margin-left: 0; } .nav-tabs-custom > .nav-tabs > li:first-of-type.active > a { border-left-color: transparent; } .nav-tabs-custom > .nav-tabs.pull-right { float: none !important; } .nav-tabs-custom > .nav-tabs.pull-right > li { float: right; } .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type { margin-right: 0; } .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type > a { border-left-width: 1px; } .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a { border-left-color: #f4f4f4; border-right-color: transparent; } .nav-tabs-custom > .nav-tabs > li.header { line-height: 35px; padding: 0 10px; font-size: 20px; color: #444; } .nav-tabs-custom > .nav-tabs > li.header > .fa, .nav-tabs-custom > .nav-tabs > li.header > .glyphicon, .nav-tabs-custom > .nav-tabs > li.header > .ion { margin-right: 5px; } .nav-tabs-custom > .tab-content { background: #fff; padding: 10px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .nav-tabs-custom .dropdown.open > a:active, .nav-tabs-custom .dropdown.open > a:focus { background: transparent; color: #999; } .nav-tabs-custom.tab-primary > .nav-tabs > li.active { border-top-color: #3c8dbc; } .nav-tabs-custom.tab-info > .nav-tabs > li.active { border-top-color: #00c0ef; } .nav-tabs-custom.tab-danger > .nav-tabs > li.active { border-top-color: #dd4b39; } .nav-tabs-custom.tab-warning > .nav-tabs > li.active { border-top-color: #f39c12; } .nav-tabs-custom.tab-success > .nav-tabs > li.active { border-top-color: #00a65a; } .nav-tabs-custom.tab-default > .nav-tabs > li.active { border-top-color: #d2d6de; } /* PAGINATION */ .pagination > li > a { background: #fafafa; color: #666; } .pagination.pagination-flat > li > a { border-radius: 0 !important; } /* * Component: Products List * ------------------------ */ .products-list { list-style: none; margin: 0; padding: 0; } .products-list > .item { border-radius: 3px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); padding: 10px 0; background: #fff; } .products-list > .item:before, .products-list > .item:after { content: " "; display: table; } .products-list > .item:after { clear: both; } .products-list > .item:before, .products-list > .item:after { content: " "; display: table; } .products-list > .item:after { clear: both; } .products-list .product-img { float: left; } .products-list .product-img img { width: 50px; height: 50px; } .products-list .product-info { margin-left: 60px; } .products-list .product-title { font-weight: 600; } .products-list .product-description { display: block; color: #999; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .product-list-in-box > .item { -webkit-box-shadow: none; box-shadow: none; border-radius: 0; border-bottom: 1px solid #f4f4f4; } .product-list-in-box > .item:last-of-type { border-bottom-width: 0; } /* * Component: Table * ---------------- */ .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { border-top: 1px solid #f4f4f4; } .table > thead > tr > th { border-bottom: 2px solid #f4f4f4; } .table tr td .progress { margin-top: 5px; } .table-bordered { border: 1px solid #f4f4f4; } .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td { border: 1px solid #f4f4f4; } .table-bordered > thead > tr > th, .table-bordered > thead > tr > td { border-bottom-width: 2px; } .table.no-border, .table.no-border td, .table.no-border th { border: 0; } /* .text-center in tables */ table.text-center, table.text-center td, table.text-center th { text-align: center; } .table.align th { text-align: left; } .table.align td { text-align: right; } /* * Component: Label * ---------------- */ .label-default { background-color: #d2d6de; color: #444; } /* * Component: Direct Chat * ---------------------- */ .direct-chat .box-body { border-bottom-right-radius: 0; border-bottom-left-radius: 0; position: relative; overflow-x: hidden; padding: 0; } .direct-chat.chat-pane-open .direct-chat-contacts { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } .direct-chat-messages { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); padding: 10px; height: 250px; overflow: auto; } .direct-chat-msg, .direct-chat-text { display: block; } .direct-chat-msg { margin-bottom: 10px; } .direct-chat-msg:before, .direct-chat-msg:after { content: " "; display: table; } .direct-chat-msg:after { clear: both; } .direct-chat-msg:before, .direct-chat-msg:after { content: " "; display: table; } .direct-chat-msg:after { clear: both; } .direct-chat-messages, .direct-chat-contacts { -webkit-transition: -webkit-transform 0.5s ease-in-out; -moz-transition: -moz-transform 0.5s ease-in-out; -o-transition: -o-transform 0.5s ease-in-out; transition: transform 0.5s ease-in-out; } .direct-chat-text { border-radius: 5px; position: relative; padding: 5px 10px; background: #d2d6de; border: 1px solid #d2d6de; margin: 5px 0 0 50px; color: #444444; } .direct-chat-text:after, .direct-chat-text:before { position: absolute; right: 100%; top: 15px; border: solid transparent; border-right-color: #d2d6de; content: ' '; height: 0; width: 0; pointer-events: none; } .direct-chat-text:after { border-width: 5px; margin-top: -5px; } .direct-chat-text:before { border-width: 6px; margin-top: -6px; } .right .direct-chat-text { margin-right: 50px; margin-left: 0; } .right .direct-chat-text:after, .right .direct-chat-text:before { right: auto; left: 100%; border-right-color: transparent; border-left-color: #d2d6de; } .direct-chat-img { border-radius: 50%; float: left; width: 40px; height: 40px; } .right .direct-chat-img { float: right; } .direct-chat-info { display: block; margin-bottom: 2px; font-size: 12px; } .direct-chat-name { font-weight: 600; } .direct-chat-timestamp { color: #999; } .direct-chat-contacts-open .direct-chat-contacts { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } .direct-chat-contacts { -webkit-transform: translate(101%, 0); -ms-transform: translate(101%, 0); -o-transform: translate(101%, 0); transform: translate(101%, 0); position: absolute; top: 0; bottom: 0; height: 250px; width: 100%; background: #222d32; color: #fff; overflow: auto; } .contacts-list > li { border-bottom: 1px solid rgba(0, 0, 0, 0.2); padding: 10px; margin: 0; } .contacts-list > li:before, .contacts-list > li:after { content: " "; display: table; } .contacts-list > li:after { clear: both; } .contacts-list > li:before, .contacts-list > li:after { content: " "; display: table; } .contacts-list > li:after { clear: both; } .contacts-list > li:last-of-type { border-bottom: none; } .contacts-list-img { border-radius: 50%; width: 40px; float: left; } .contacts-list-info { margin-left: 45px; color: #fff; } .contacts-list-name, .contacts-list-status { display: block; } .contacts-list-name { font-weight: 600; } .contacts-list-status { font-size: 12px; } .contacts-list-date { color: #aaa; font-weight: normal; } .contacts-list-msg { color: #999; } .direct-chat-danger .right > .direct-chat-text { background: #dd4b39; border-color: #dd4b39; color: #ffffff; } .direct-chat-danger .right > .direct-chat-text:after, .direct-chat-danger .right > .direct-chat-text:before { border-left-color: #dd4b39; } .direct-chat-primary .right > .direct-chat-text { background: #3c8dbc; border-color: #3c8dbc; color: #ffffff; } .direct-chat-primary .right > .direct-chat-text:after, .direct-chat-primary .right > .direct-chat-text:before { border-left-color: #3c8dbc; } .direct-chat-warning .right > .direct-chat-text { background: #f39c12; border-color: #f39c12; color: #ffffff; } .direct-chat-warning .right > .direct-chat-text:after, .direct-chat-warning .right > .direct-chat-text:before { border-left-color: #f39c12; } .direct-chat-info .right > .direct-chat-text { background: #00c0ef; border-color: #00c0ef; color: #ffffff; } .direct-chat-info .right > .direct-chat-text:after, .direct-chat-info .right > .direct-chat-text:before { border-left-color: #00c0ef; } .direct-chat-success .right > .direct-chat-text { background: #00a65a; border-color: #00a65a; color: #ffffff; } .direct-chat-success .right > .direct-chat-text:after, .direct-chat-success .right > .direct-chat-text:before { border-left-color: #00a65a; } /* * Component: Users List * --------------------- */ .users-list > li { width: 25%; float: left; padding: 10px; text-align: center; } .users-list > li img { border-radius: 50%; max-width: 100%; height: auto; } .users-list > li > a:hover, .users-list > li > a:hover .users-list-name { color: #999; } .users-list-name, .users-list-date { display: block; } .users-list-name { font-weight: 600; color: #444; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .users-list-date { color: #999; font-size: 12px; } /* * Component: Carousel * ------------------- */ .carousel-control.left, .carousel-control.right { background-image: none; } .carousel-control > .fa { font-size: 40px; position: absolute; top: 50%; z-index: 5; display: inline-block; margin-top: -20px; } /* * Component: modal * ---------------- */ .modal { background: rgba(0, 0, 0, 0.3); } .modal-content { border-radius: 0; -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125); box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125); border: 0; } @media (min-width: 768px) { .modal-content { -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125); box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125); } } .modal-header { border-bottom-color: #f4f4f4; } .modal-footer { border-top-color: #f4f4f4; } .modal-primary .modal-header, .modal-primary .modal-footer { border-color: #307095; } .modal-warning .modal-header, .modal-warning .modal-footer { border-color: #c87f0a; } .modal-info .modal-header, .modal-info .modal-footer { border-color: #0097bc; } .modal-success .modal-header, .modal-success .modal-footer { border-color: #00733e; } .modal-danger .modal-header, .modal-danger .modal-footer { border-color: #c23321; } /* * Component: Social Widgets * ------------------------- */ .box-widget { border: none; position: relative; } .widget-user .widget-user-header { padding: 20px; height: 120px; border-top-right-radius: 3px; border-top-left-radius: 3px; } .widget-user .widget-user-username { margin-top: 0; margin-bottom: 5px; font-size: 25px; font-weight: 300; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); } .widget-user .widget-user-desc { margin-top: 0; } .widget-user .widget-user-image { position: absolute; top: 65px; left: 50%; margin-left: -45px; } .widget-user .widget-user-image > img { width: 90px; height: auto; border: 3px solid #fff; } .widget-user .box-footer { padding-top: 30px; } .widget-user-2 .widget-user-header { padding: 20px; border-top-right-radius: 3px; border-top-left-radius: 3px; } .widget-user-2 .widget-user-username { margin-top: 5px; margin-bottom: 5px; font-size: 25px; font-weight: 300; } .widget-user-2 .widget-user-desc { margin-top: 0; } .widget-user-2 .widget-user-username, .widget-user-2 .widget-user-desc { margin-left: 75px; } .widget-user-2 .widget-user-image > img { width: 65px; height: auto; float: left; } .treeview-menu { display: none; list-style: none; padding: 0; margin: 0; padding-left: 5px; } .treeview-menu .treeview-menu { padding-left: 20px; } .treeview-menu > li { margin: 0; } .treeview-menu > li > a { padding: 5px 5px 5px 15px; display: block; font-size: 14px; } .treeview-menu > li > a > .fa, .treeview-menu > li > a > .glyphicon, .treeview-menu > li > a > .ion { width: 20px; } .treeview-menu > li > a > .pull-right-container > .fa-angle-left, .treeview-menu > li > a > .pull-right-container > .fa-angle-down, .treeview-menu > li > a > .fa-angle-left, .treeview-menu > li > a > .fa-angle-down { width: auto; } /* * Page: Mailbox * ------------- */ .mailbox-messages > .table { margin: 0; } .mailbox-controls { padding: 5px; } .mailbox-controls.with-border { border-bottom: 1px solid #f4f4f4; } .mailbox-read-info { border-bottom: 1px solid #f4f4f4; padding: 10px; } .mailbox-read-info h3 { font-size: 20px; margin: 0; } .mailbox-read-info h5 { margin: 0; padding: 5px 0 0 0; } .mailbox-read-time { color: #999; font-size: 13px; } .mailbox-read-message { padding: 10px; } .mailbox-attachments li { float: left; width: 200px; border: 1px solid #eee; margin-bottom: 10px; margin-right: 10px; } .mailbox-attachment-name { font-weight: bold; color: #666; } .mailbox-attachment-icon, .mailbox-attachment-info, .mailbox-attachment-size { display: block; } .mailbox-attachment-info { padding: 10px; background: #f4f4f4; } .mailbox-attachment-size { color: #999; font-size: 12px; } .mailbox-attachment-icon { text-align: center; font-size: 65px; color: #666; padding: 20px 10px; } .mailbox-attachment-icon.has-img { padding: 0; } .mailbox-attachment-icon.has-img > img { max-width: 100%; height: auto; } /* * Page: Lock Screen * ----------------- */ /* ADD THIS CLASS TO THE <BODY> TAG */ .lockscreen { background: #d2d6de; } .lockscreen-logo { font-size: 35px; text-align: center; margin-bottom: 25px; font-weight: 300; } .lockscreen-logo a { color: #444; } .lockscreen-wrapper { max-width: 400px; margin: 0 auto; margin-top: 10%; } /* User name [optional] */ .lockscreen .lockscreen-name { text-align: center; font-weight: 600; } /* Will contain the image and the sign in form */ .lockscreen-item { border-radius: 4px; padding: 0; background: #fff; position: relative; margin: 10px auto 30px auto; width: 290px; } /* User image */ .lockscreen-image { border-radius: 50%; position: absolute; left: -10px; top: -25px; background: #fff; padding: 5px; z-index: 10; } .lockscreen-image > img { border-radius: 50%; width: 70px; height: 70px; } /* Contains the password input and the login button */ .lockscreen-credentials { margin-left: 70px; } .lockscreen-credentials .form-control { border: 0; } .lockscreen-credentials .btn { background-color: #fff; border: 0; padding: 0 10px; } .lockscreen-footer { margin-top: 10px; } /* * Page: Login & Register * ---------------------- */ .login-logo, .register-logo { font-size: 35px; text-align: center; margin-bottom: 25px; font-weight: 300; } .login-logo a, .register-logo a { color: #444; } .login-page, .register-page { background: #d2d6de; } .login-box, .register-box { width: 360px; margin: 7% auto; } @media (max-width: 768px) { .login-box, .register-box { width: 90%; margin-top: 20px; } } .login-box-body, .register-box-body { background: #fff; padding: 20px; border-top: 0; color: #666; } .login-box-body .form-control-feedback, .register-box-body .form-control-feedback { color: #777; } .login-box-msg, .register-box-msg { margin: 0; text-align: center; padding: 0 20px 20px 20px; } .social-auth-links { margin: 10px 0; } /* * Page: 400 and 500 error pages * ------------------------------ */ .error-page { width: 600px; margin: 20px auto 0 auto; } @media (max-width: 991px) { .error-page { width: 100%; } } .error-page > .headline { float: left; font-size: 100px; font-weight: 300; } @media (max-width: 991px) { .error-page > .headline { float: none; text-align: center; } } .error-page > .error-content { margin-left: 190px; display: block; } @media (max-width: 991px) { .error-page > .error-content { margin-left: 0; } } .error-page > .error-content > h3 { font-weight: 300; font-size: 25px; } @media (max-width: 991px) { .error-page > .error-content > h3 { text-align: center; } } /* * Page: Invoice * ------------- */ .invoice { position: relative; background: #fff; border: 1px solid #f4f4f4; padding: 20px; margin: 10px 25px; } .invoice-title { margin-top: 0; } /* * Page: Profile * ------------- */ .profile-user-img { margin: 0 auto; width: 100px; padding: 3px; border: 3px solid #d2d6de; } .profile-username { font-size: 21px; margin-top: 5px; } .post { border-bottom: 1px solid #d2d6de; margin-bottom: 15px; padding-bottom: 15px; color: #666; } .post:last-of-type { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; } .post .user-block { margin-bottom: 15px; } /* * Social Buttons for Bootstrap * * Copyright 2013-2015 Panayiotis Lipiridis * Licensed under the MIT License * * https://github.com/lipis/bootstrap-social */ .btn-social { position: relative; padding-left: 44px; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .btn-social > :first-child { position: absolute; left: 0; top: 0; bottom: 0; width: 32px; line-height: 34px; font-size: 1.6em; text-align: center; border-right: 1px solid rgba(0, 0, 0, 0.2); } .btn-social.btn-lg { padding-left: 61px; } .btn-social.btn-lg > :first-child { line-height: 45px; width: 45px; font-size: 1.8em; } .btn-social.btn-sm { padding-left: 38px; } .btn-social.btn-sm > :first-child { line-height: 28px; width: 28px; font-size: 1.4em; } .btn-social.btn-xs { padding-left: 30px; } .btn-social.btn-xs > :first-child { line-height: 20px; width: 20px; font-size: 1.2em; } .btn-social-icon { position: relative; padding-left: 44px; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; height: 34px; width: 34px; padding: 0; } .btn-social-icon > :first-child { position: absolute; left: 0; top: 0; bottom: 0; width: 32px; line-height: 34px; font-size: 1.6em; text-align: center; border-right: 1px solid rgba(0, 0, 0, 0.2); } .btn-social-icon.btn-lg { padding-left: 61px; } .btn-social-icon.btn-lg > :first-child { line-height: 45px; width: 45px; font-size: 1.8em; } .btn-social-icon.btn-sm { padding-left: 38px; } .btn-social-icon.btn-sm > :first-child { line-height: 28px; width: 28px; font-size: 1.4em; } .btn-social-icon.btn-xs { padding-left: 30px; } .btn-social-icon.btn-xs > :first-child { line-height: 20px; width: 20px; font-size: 1.2em; } .btn-social-icon > :first-child { border: none; text-align: center; width: 100%; } .btn-social-icon.btn-lg { height: 45px; width: 45px; padding-left: 0; padding-right: 0; } .btn-social-icon.btn-sm { height: 30px; width: 30px; padding-left: 0; padding-right: 0; } .btn-social-icon.btn-xs { height: 22px; width: 22px; padding-left: 0; padding-right: 0; } .btn-adn { color: #ffffff; background-color: #d87a68; border-color: rgba(0, 0, 0, 0.2); } .btn-adn:focus, .btn-adn.focus { color: #ffffff; background-color: #ce563f; border-color: rgba(0, 0, 0, 0.2); } .btn-adn:hover { color: #ffffff; background-color: #ce563f; border-color: rgba(0, 0, 0, 0.2); } .btn-adn:active, .btn-adn.active, .open > .dropdown-toggle.btn-adn { color: #ffffff; background-color: #ce563f; border-color: rgba(0, 0, 0, 0.2); } .btn-adn:active, .btn-adn.active, .open > .dropdown-toggle.btn-adn { background-image: none; } .btn-adn .badge { color: #d87a68; background-color: #ffffff; } .btn-adn:focus, .btn-adn.focus { color: #ffffff; background-color: #ce563f; border-color: rgba(0, 0, 0, 0.2); } .btn-adn:hover { color: #ffffff; background-color: #ce563f; border-color: rgba(0, 0, 0, 0.2); } .btn-adn:active, .btn-adn.active, .open > .dropdown-toggle.btn-adn { color: #ffffff; background-color: #ce563f; border-color: rgba(0, 0, 0, 0.2); } .btn-adn:active, .btn-adn.active, .open > .dropdown-toggle.btn-adn { background-image: none; } .btn-adn .badge { color: #d87a68; background-color: #ffffff; } .btn-bitbucket { color: #ffffff; background-color: #205081; border-color: rgba(0, 0, 0, 0.2); } .btn-bitbucket:focus, .btn-bitbucket.focus { color: #ffffff; background-color: #163758; border-color: rgba(0, 0, 0, 0.2); } .btn-bitbucket:hover { color: #ffffff; background-color: #163758; border-color: rgba(0, 0, 0, 0.2); } .btn-bitbucket:active, .btn-bitbucket.active, .open > .dropdown-toggle.btn-bitbucket { color: #ffffff; background-color: #163758; border-color: rgba(0, 0, 0, 0.2); } .btn-bitbucket:active, .btn-bitbucket.active, .open > .dropdown-toggle.btn-bitbucket { background-image: none; } .btn-bitbucket .badge { color: #205081; background-color: #ffffff; } .btn-bitbucket:focus, .btn-bitbucket.focus { color: #ffffff; background-color: #163758; border-color: rgba(0, 0, 0, 0.2); } .btn-bitbucket:hover { color: #ffffff; background-color: #163758; border-color: rgba(0, 0, 0, 0.2); } .btn-bitbucket:active, .btn-bitbucket.active, .open > .dropdown-toggle.btn-bitbucket { color: #ffffff; background-color: #163758; border-color: rgba(0, 0, 0, 0.2); } .btn-bitbucket:active, .btn-bitbucket.active, .open > .dropdown-toggle.btn-bitbucket { background-image: none; } .btn-bitbucket .badge { color: #205081; background-color: #ffffff; } .btn-dropbox { color: #ffffff; background-color: #1087dd; border-color: rgba(0, 0, 0, 0.2); } .btn-dropbox:focus, .btn-dropbox.focus { color: #ffffff; background-color: #0d6aad; border-color: rgba(0, 0, 0, 0.2); } .btn-dropbox:hover { color: #ffffff; background-color: #0d6aad; border-color: rgba(0, 0, 0, 0.2); } .btn-dropbox:active, .btn-dropbox.active, .open > .dropdown-toggle.btn-dropbox { color: #ffffff; background-color: #0d6aad; border-color: rgba(0, 0, 0, 0.2); } .btn-dropbox:active, .btn-dropbox.active, .open > .dropdown-toggle.btn-dropbox { background-image: none; } .btn-dropbox .badge { color: #1087dd; background-color: #ffffff; } .btn-dropbox:focus, .btn-dropbox.focus { color: #ffffff; background-color: #0d6aad; border-color: rgba(0, 0, 0, 0.2); } .btn-dropbox:hover { color: #ffffff; background-color: #0d6aad; border-color: rgba(0, 0, 0, 0.2); } .btn-dropbox:active, .btn-dropbox.active, .open > .dropdown-toggle.btn-dropbox { color: #ffffff; background-color: #0d6aad; border-color: rgba(0, 0, 0, 0.2); } .btn-dropbox:active, .btn-dropbox.active, .open > .dropdown-toggle.btn-dropbox { background-image: none; } .btn-dropbox .badge { color: #1087dd; background-color: #ffffff; } .btn-facebook { color: #ffffff; background-color: #3b5998; border-color: rgba(0, 0, 0, 0.2); } .btn-facebook:focus, .btn-facebook.focus { color: #ffffff; background-color: #2d4373; border-color: rgba(0, 0, 0, 0.2); } .btn-facebook:hover { color: #ffffff; background-color: #2d4373; border-color: rgba(0, 0, 0, 0.2); } .btn-facebook:active, .btn-facebook.active, .open > .dropdown-toggle.btn-facebook { color: #ffffff; background-color: #2d4373; border-color: rgba(0, 0, 0, 0.2); } .btn-facebook:active, .btn-facebook.active, .open > .dropdown-toggle.btn-facebook { background-image: none; } .btn-facebook .badge { color: #3b5998; background-color: #ffffff; } .btn-facebook:focus, .btn-facebook.focus { color: #ffffff; background-color: #2d4373; border-color: rgba(0, 0, 0, 0.2); } .btn-facebook:hover { color: #ffffff; background-color: #2d4373; border-color: rgba(0, 0, 0, 0.2); } .btn-facebook:active, .btn-facebook.active, .open > .dropdown-toggle.btn-facebook { color: #ffffff; background-color: #2d4373; border-color: rgba(0, 0, 0, 0.2); } .btn-facebook:active, .btn-facebook.active, .open > .dropdown-toggle.btn-facebook { background-image: none; } .btn-facebook .badge { color: #3b5998; background-color: #ffffff; } .btn-flickr { color: #ffffff; background-color: #ff0084; border-color: rgba(0, 0, 0, 0.2); } .btn-flickr:focus, .btn-flickr.focus { color: #ffffff; background-color: #cc006a; border-color: rgba(0, 0, 0, 0.2); } .btn-flickr:hover { color: #ffffff; background-color: #cc006a; border-color: rgba(0, 0, 0, 0.2); } .btn-flickr:active, .btn-flickr.active, .open > .dropdown-toggle.btn-flickr { color: #ffffff; background-color: #cc006a; border-color: rgba(0, 0, 0, 0.2); } .btn-flickr:active, .btn-flickr.active, .open > .dropdown-toggle.btn-flickr { background-image: none; } .btn-flickr .badge { color: #ff0084; background-color: #ffffff; } .btn-flickr:focus, .btn-flickr.focus { color: #ffffff; background-color: #cc006a; border-color: rgba(0, 0, 0, 0.2); } .btn-flickr:hover { color: #ffffff; background-color: #cc006a; border-color: rgba(0, 0, 0, 0.2); } .btn-flickr:active, .btn-flickr.active, .open > .dropdown-toggle.btn-flickr { color: #ffffff; background-color: #cc006a; border-color: rgba(0, 0, 0, 0.2); } .btn-flickr:active, .btn-flickr.active, .open > .dropdown-toggle.btn-flickr { background-image: none; } .btn-flickr .badge { color: #ff0084; background-color: #ffffff; } .btn-foursquare { color: #ffffff; background-color: #f94877; border-color: rgba(0, 0, 0, 0.2); } .btn-foursquare:focus, .btn-foursquare.focus { color: #ffffff; background-color: #f71752; border-color: rgba(0, 0, 0, 0.2); } .btn-foursquare:hover { color: #ffffff; background-color: #f71752; border-color: rgba(0, 0, 0, 0.2); } .btn-foursquare:active, .btn-foursquare.active, .open > .dropdown-toggle.btn-foursquare { color: #ffffff; background-color: #f71752; border-color: rgba(0, 0, 0, 0.2); } .btn-foursquare:active, .btn-foursquare.active, .open > .dropdown-toggle.btn-foursquare { background-image: none; } .btn-foursquare .badge { color: #f94877; background-color: #ffffff; } .btn-foursquare:focus, .btn-foursquare.focus { color: #ffffff; background-color: #f71752; border-color: rgba(0, 0, 0, 0.2); } .btn-foursquare:hover { color: #ffffff; background-color: #f71752; border-color: rgba(0, 0, 0, 0.2); } .btn-foursquare:active, .btn-foursquare.active, .open > .dropdown-toggle.btn-foursquare { color: #ffffff; background-color: #f71752; border-color: rgba(0, 0, 0, 0.2); } .btn-foursquare:active, .btn-foursquare.active, .open > .dropdown-toggle.btn-foursquare { background-image: none; } .btn-foursquare .badge { color: #f94877; background-color: #ffffff; } .btn-github { color: #ffffff; background-color: #444444; border-color: rgba(0, 0, 0, 0.2); } .btn-github:focus, .btn-github.focus { color: #ffffff; background-color: #2b2b2b; border-color: rgba(0, 0, 0, 0.2); } .btn-github:hover { color: #ffffff; background-color: #2b2b2b; border-color: rgba(0, 0, 0, 0.2); } .btn-github:active, .btn-github.active, .open > .dropdown-toggle.btn-github { color: #ffffff; background-color: #2b2b2b; border-color: rgba(0, 0, 0, 0.2); } .btn-github:active, .btn-github.active, .open > .dropdown-toggle.btn-github { background-image: none; } .btn-github .badge { color: #444444; background-color: #ffffff; } .btn-github:focus, .btn-github.focus { color: #ffffff; background-color: #2b2b2b; border-color: rgba(0, 0, 0, 0.2); } .btn-github:hover { color: #ffffff; background-color: #2b2b2b; border-color: rgba(0, 0, 0, 0.2); } .btn-github:active, .btn-github.active, .open > .dropdown-toggle.btn-github { color: #ffffff; background-color: #2b2b2b; border-color: rgba(0, 0, 0, 0.2); } .btn-github:active, .btn-github.active, .open > .dropdown-toggle.btn-github { background-image: none; } .btn-github .badge { color: #444444; background-color: #ffffff; } .btn-google { color: #ffffff; background-color: #dd4b39; border-color: rgba(0, 0, 0, 0.2); } .btn-google:focus, .btn-google.focus { color: #ffffff; background-color: #c23321; border-color: rgba(0, 0, 0, 0.2); } .btn-google:hover { color: #ffffff; background-color: #c23321; border-color: rgba(0, 0, 0, 0.2); } .btn-google:active, .btn-google.active, .open > .dropdown-toggle.btn-google { color: #ffffff; background-color: #c23321; border-color: rgba(0, 0, 0, 0.2); } .btn-google:active, .btn-google.active, .open > .dropdown-toggle.btn-google { background-image: none; } .btn-google .badge { color: #dd4b39; background-color: #ffffff; } .btn-google:focus, .btn-google.focus { color: #ffffff; background-color: #c23321; border-color: rgba(0, 0, 0, 0.2); } .btn-google:hover { color: #ffffff; background-color: #c23321; border-color: rgba(0, 0, 0, 0.2); } .btn-google:active, .btn-google.active, .open > .dropdown-toggle.btn-google { color: #ffffff; background-color: #c23321; border-color: rgba(0, 0, 0, 0.2); } .btn-google:active, .btn-google.active, .open > .dropdown-toggle.btn-google { background-image: none; } .btn-google .badge { color: #dd4b39; background-color: #ffffff; } .btn-instagram { color: #ffffff; background-color: #3f729b; border-color: rgba(0, 0, 0, 0.2); } .btn-instagram:focus, .btn-instagram.focus { color: #ffffff; background-color: #305777; border-color: rgba(0, 0, 0, 0.2); } .btn-instagram:hover { color: #ffffff; background-color: #305777; border-color: rgba(0, 0, 0, 0.2); } .btn-instagram:active, .btn-instagram.active, .open > .dropdown-toggle.btn-instagram { color: #ffffff; background-color: #305777; border-color: rgba(0, 0, 0, 0.2); } .btn-instagram:active, .btn-instagram.active, .open > .dropdown-toggle.btn-instagram { background-image: none; } .btn-instagram .badge { color: #3f729b; background-color: #ffffff; } .btn-instagram:focus, .btn-instagram.focus { color: #ffffff; background-color: #305777; border-color: rgba(0, 0, 0, 0.2); } .btn-instagram:hover { color: #ffffff; background-color: #305777; border-color: rgba(0, 0, 0, 0.2); } .btn-instagram:active, .btn-instagram.active, .open > .dropdown-toggle.btn-instagram { color: #ffffff; background-color: #305777; border-color: rgba(0, 0, 0, 0.2); } .btn-instagram:active, .btn-instagram.active, .open > .dropdown-toggle.btn-instagram { background-image: none; } .btn-instagram .badge { color: #3f729b; background-color: #ffffff; } .btn-linkedin { color: #ffffff; background-color: #007bb6; border-color: rgba(0, 0, 0, 0.2); } .btn-linkedin:focus, .btn-linkedin.focus { color: #ffffff; background-color: #005983; border-color: rgba(0, 0, 0, 0.2); } .btn-linkedin:hover { color: #ffffff; background-color: #005983; border-color: rgba(0, 0, 0, 0.2); } .btn-linkedin:active, .btn-linkedin.active, .open > .dropdown-toggle.btn-linkedin { color: #ffffff; background-color: #005983; border-color: rgba(0, 0, 0, 0.2); } .btn-linkedin:active, .btn-linkedin.active, .open > .dropdown-toggle.btn-linkedin { background-image: none; } .btn-linkedin .badge { color: #007bb6; background-color: #ffffff; } .btn-linkedin:focus, .btn-linkedin.focus { color: #ffffff; background-color: #005983; border-color: rgba(0, 0, 0, 0.2); } .btn-linkedin:hover { color: #ffffff; background-color: #005983; border-color: rgba(0, 0, 0, 0.2); } .btn-linkedin:active, .btn-linkedin.active, .open > .dropdown-toggle.btn-linkedin { color: #ffffff; background-color: #005983; border-color: rgba(0, 0, 0, 0.2); } .btn-linkedin:active, .btn-linkedin.active, .open > .dropdown-toggle.btn-linkedin { background-image: none; } .btn-linkedin .badge { color: #007bb6; background-color: #ffffff; } .btn-microsoft { color: #ffffff; background-color: #2672ec; border-color: rgba(0, 0, 0, 0.2); } .btn-microsoft:focus, .btn-microsoft.focus { color: #ffffff; background-color: #125acd; border-color: rgba(0, 0, 0, 0.2); } .btn-microsoft:hover { color: #ffffff; background-color: #125acd; border-color: rgba(0, 0, 0, 0.2); } .btn-microsoft:active, .btn-microsoft.active, .open > .dropdown-toggle.btn-microsoft { color: #ffffff; background-color: #125acd; border-color: rgba(0, 0, 0, 0.2); } .btn-microsoft:active, .btn-microsoft.active, .open > .dropdown-toggle.btn-microsoft { background-image: none; } .btn-microsoft .badge { color: #2672ec; background-color: #ffffff; } .btn-microsoft:focus, .btn-microsoft.focus { color: #ffffff; background-color: #125acd; border-color: rgba(0, 0, 0, 0.2); } .btn-microsoft:hover { color: #ffffff; background-color: #125acd; border-color: rgba(0, 0, 0, 0.2); } .btn-microsoft:active, .btn-microsoft.active, .open > .dropdown-toggle.btn-microsoft { color: #ffffff; background-color: #125acd; border-color: rgba(0, 0, 0, 0.2); } .btn-microsoft:active, .btn-microsoft.active, .open > .dropdown-toggle.btn-microsoft { background-image: none; } .btn-microsoft .badge { color: #2672ec; background-color: #ffffff; } .btn-openid { color: #ffffff; background-color: #f7931e; border-color: rgba(0, 0, 0, 0.2); } .btn-openid:focus, .btn-openid.focus { color: #ffffff; background-color: #da7908; border-color: rgba(0, 0, 0, 0.2); } .btn-openid:hover { color: #ffffff; background-color: #da7908; border-color: rgba(0, 0, 0, 0.2); } .btn-openid:active, .btn-openid.active, .open > .dropdown-toggle.btn-openid { color: #ffffff; background-color: #da7908; border-color: rgba(0, 0, 0, 0.2); } .btn-openid:active, .btn-openid.active, .open > .dropdown-toggle.btn-openid { background-image: none; } .btn-openid .badge { color: #f7931e; background-color: #ffffff; } .btn-openid:focus, .btn-openid.focus { color: #ffffff; background-color: #da7908; border-color: rgba(0, 0, 0, 0.2); } .btn-openid:hover { color: #ffffff; background-color: #da7908; border-color: rgba(0, 0, 0, 0.2); } .btn-openid:active, .btn-openid.active, .open > .dropdown-toggle.btn-openid { color: #ffffff; background-color: #da7908; border-color: rgba(0, 0, 0, 0.2); } .btn-openid:active, .btn-openid.active, .open > .dropdown-toggle.btn-openid { background-image: none; } .btn-openid .badge { color: #f7931e; background-color: #ffffff; } .btn-pinterest { color: #ffffff; background-color: #cb2027; border-color: rgba(0, 0, 0, 0.2); } .btn-pinterest:focus, .btn-pinterest.focus { color: #ffffff; background-color: #9f191f; border-color: rgba(0, 0, 0, 0.2); } .btn-pinterest:hover { color: #ffffff; background-color: #9f191f; border-color: rgba(0, 0, 0, 0.2); } .btn-pinterest:active, .btn-pinterest.active, .open > .dropdown-toggle.btn-pinterest { color: #ffffff; background-color: #9f191f; border-color: rgba(0, 0, 0, 0.2); } .btn-pinterest:active, .btn-pinterest.active, .open > .dropdown-toggle.btn-pinterest { background-image: none; } .btn-pinterest .badge { color: #cb2027; background-color: #ffffff; } .btn-pinterest:focus, .btn-pinterest.focus { color: #ffffff; background-color: #9f191f; border-color: rgba(0, 0, 0, 0.2); } .btn-pinterest:hover { color: #ffffff; background-color: #9f191f; border-color: rgba(0, 0, 0, 0.2); } .btn-pinterest:active, .btn-pinterest.active, .open > .dropdown-toggle.btn-pinterest { color: #ffffff; background-color: #9f191f; border-color: rgba(0, 0, 0, 0.2); } .btn-pinterest:active, .btn-pinterest.active, .open > .dropdown-toggle.btn-pinterest { background-image: none; } .btn-pinterest .badge { color: #cb2027; background-color: #ffffff; } .btn-reddit { color: #000000; background-color: #eff7ff; border-color: rgba(0, 0, 0, 0.2); } .btn-reddit:focus, .btn-reddit.focus { color: #000000; background-color: #bcddff; border-color: rgba(0, 0, 0, 0.2); } .btn-reddit:hover { color: #000000; background-color: #bcddff; border-color: rgba(0, 0, 0, 0.2); } .btn-reddit:active, .btn-reddit.active, .open > .dropdown-toggle.btn-reddit { color: #000000; background-color: #bcddff; border-color: rgba(0, 0, 0, 0.2); } .btn-reddit:active, .btn-reddit.active, .open > .dropdown-toggle.btn-reddit { background-image: none; } .btn-reddit .badge { color: #eff7ff; background-color: #000000; } .btn-reddit:focus, .btn-reddit.focus { color: #000000; background-color: #bcddff; border-color: rgba(0, 0, 0, 0.2); } .btn-reddit:hover { color: #000000; background-color: #bcddff; border-color: rgba(0, 0, 0, 0.2); } .btn-reddit:active, .btn-reddit.active, .open > .dropdown-toggle.btn-reddit { color: #000000; background-color: #bcddff; border-color: rgba(0, 0, 0, 0.2); } .btn-reddit:active, .btn-reddit.active, .open > .dropdown-toggle.btn-reddit { background-image: none; } .btn-reddit .badge { color: #eff7ff; background-color: #000000; } .btn-soundcloud { color: #ffffff; background-color: #ff5500; border-color: rgba(0, 0, 0, 0.2); } .btn-soundcloud:focus, .btn-soundcloud.focus { color: #ffffff; background-color: #cc4400; border-color: rgba(0, 0, 0, 0.2); } .btn-soundcloud:hover { color: #ffffff; background-color: #cc4400; border-color: rgba(0, 0, 0, 0.2); } .btn-soundcloud:active, .btn-soundcloud.active, .open > .dropdown-toggle.btn-soundcloud { color: #ffffff; background-color: #cc4400; border-color: rgba(0, 0, 0, 0.2); } .btn-soundcloud:active, .btn-soundcloud.active, .open > .dropdown-toggle.btn-soundcloud { background-image: none; } .btn-soundcloud .badge { color: #ff5500; background-color: #ffffff; } .btn-soundcloud:focus, .btn-soundcloud.focus { color: #ffffff; background-color: #cc4400; border-color: rgba(0, 0, 0, 0.2); } .btn-soundcloud:hover { color: #ffffff; background-color: #cc4400; border-color: rgba(0, 0, 0, 0.2); } .btn-soundcloud:active, .btn-soundcloud.active, .open > .dropdown-toggle.btn-soundcloud { color: #ffffff; background-color: #cc4400; border-color: rgba(0, 0, 0, 0.2); } .btn-soundcloud:active, .btn-soundcloud.active, .open > .dropdown-toggle.btn-soundcloud { background-image: none; } .btn-soundcloud .badge { color: #ff5500; background-color: #ffffff; } .btn-tumblr { color: #ffffff; background-color: #2c4762; border-color: rgba(0, 0, 0, 0.2); } .btn-tumblr:focus, .btn-tumblr.focus { color: #ffffff; background-color: #1c2d3f; border-color: rgba(0, 0, 0, 0.2); } .btn-tumblr:hover { color: #ffffff; background-color: #1c2d3f; border-color: rgba(0, 0, 0, 0.2); } .btn-tumblr:active, .btn-tumblr.active, .open > .dropdown-toggle.btn-tumblr { color: #ffffff; background-color: #1c2d3f; border-color: rgba(0, 0, 0, 0.2); } .btn-tumblr:active, .btn-tumblr.active, .open > .dropdown-toggle.btn-tumblr { background-image: none; } .btn-tumblr .badge { color: #2c4762; background-color: #ffffff; } .btn-tumblr:focus, .btn-tumblr.focus { color: #ffffff; background-color: #1c2d3f; border-color: rgba(0, 0, 0, 0.2); } .btn-tumblr:hover { color: #ffffff; background-color: #1c2d3f; border-color: rgba(0, 0, 0, 0.2); } .btn-tumblr:active, .btn-tumblr.active, .open > .dropdown-toggle.btn-tumblr { color: #ffffff; background-color: #1c2d3f; border-color: rgba(0, 0, 0, 0.2); } .btn-tumblr:active, .btn-tumblr.active, .open > .dropdown-toggle.btn-tumblr { background-image: none; } .btn-tumblr .badge { color: #2c4762; background-color: #ffffff; } .btn-twitter { color: #ffffff; background-color: #55acee; border-color: rgba(0, 0, 0, 0.2); } .btn-twitter:focus, .btn-twitter.focus { color: #ffffff; background-color: #2795e9; border-color: rgba(0, 0, 0, 0.2); } .btn-twitter:hover { color: #ffffff; background-color: #2795e9; border-color: rgba(0, 0, 0, 0.2); } .btn-twitter:active, .btn-twitter.active, .open > .dropdown-toggle.btn-twitter { color: #ffffff; background-color: #2795e9; border-color: rgba(0, 0, 0, 0.2); } .btn-twitter:active, .btn-twitter.active, .open > .dropdown-toggle.btn-twitter { background-image: none; } .btn-twitter .badge { color: #55acee; background-color: #ffffff; } .btn-twitter:focus, .btn-twitter.focus { color: #ffffff; background-color: #2795e9; border-color: rgba(0, 0, 0, 0.2); } .btn-twitter:hover { color: #ffffff; background-color: #2795e9; border-color: rgba(0, 0, 0, 0.2); } .btn-twitter:active, .btn-twitter.active, .open > .dropdown-toggle.btn-twitter { color: #ffffff; background-color: #2795e9; border-color: rgba(0, 0, 0, 0.2); } .btn-twitter:active, .btn-twitter.active, .open > .dropdown-toggle.btn-twitter { background-image: none; } .btn-twitter .badge { color: #55acee; background-color: #ffffff; } .btn-vimeo { color: #ffffff; background-color: #1ab7ea; border-color: rgba(0, 0, 0, 0.2); } .btn-vimeo:focus, .btn-vimeo.focus { color: #ffffff; background-color: #1295bf; border-color: rgba(0, 0, 0, 0.2); } .btn-vimeo:hover { color: #ffffff; background-color: #1295bf; border-color: rgba(0, 0, 0, 0.2); } .btn-vimeo:active, .btn-vimeo.active, .open > .dropdown-toggle.btn-vimeo { color: #ffffff; background-color: #1295bf; border-color: rgba(0, 0, 0, 0.2); } .btn-vimeo:active, .btn-vimeo.active, .open > .dropdown-toggle.btn-vimeo { background-image: none; } .btn-vimeo .badge { color: #1ab7ea; background-color: #ffffff; } .btn-vimeo:focus, .btn-vimeo.focus { color: #ffffff; background-color: #1295bf; border-color: rgba(0, 0, 0, 0.2); } .btn-vimeo:hover { color: #ffffff; background-color: #1295bf; border-color: rgba(0, 0, 0, 0.2); } .btn-vimeo:active, .btn-vimeo.active, .open > .dropdown-toggle.btn-vimeo { color: #ffffff; background-color: #1295bf; border-color: rgba(0, 0, 0, 0.2); } .btn-vimeo:active, .btn-vimeo.active, .open > .dropdown-toggle.btn-vimeo { background-image: none; } .btn-vimeo .badge { color: #1ab7ea; background-color: #ffffff; } .btn-vk { color: #ffffff; background-color: #587ea3; border-color: rgba(0, 0, 0, 0.2); } .btn-vk:focus, .btn-vk.focus { color: #ffffff; background-color: #466482; border-color: rgba(0, 0, 0, 0.2); } .btn-vk:hover { color: #ffffff; background-color: #466482; border-color: rgba(0, 0, 0, 0.2); } .btn-vk:active, .btn-vk.active, .open > .dropdown-toggle.btn-vk { color: #ffffff; background-color: #466482; border-color: rgba(0, 0, 0, 0.2); } .btn-vk:active, .btn-vk.active, .open > .dropdown-toggle.btn-vk { background-image: none; } .btn-vk .badge { color: #587ea3; background-color: #ffffff; } .btn-vk:focus, .btn-vk.focus { color: #ffffff; background-color: #466482; border-color: rgba(0, 0, 0, 0.2); } .btn-vk:hover { color: #ffffff; background-color: #466482; border-color: rgba(0, 0, 0, 0.2); } .btn-vk:active, .btn-vk.active, .open > .dropdown-toggle.btn-vk { color: #ffffff; background-color: #466482; border-color: rgba(0, 0, 0, 0.2); } .btn-vk:active, .btn-vk.active, .open > .dropdown-toggle.btn-vk { background-image: none; } .btn-vk .badge { color: #587ea3; background-color: #ffffff; } .btn-yahoo { color: #ffffff; background-color: #720e9e; border-color: rgba(0, 0, 0, 0.2); } .btn-yahoo:focus, .btn-yahoo.focus { color: #ffffff; background-color: #500a6f; border-color: rgba(0, 0, 0, 0.2); } .btn-yahoo:hover { color: #ffffff; background-color: #500a6f; border-color: rgba(0, 0, 0, 0.2); } .btn-yahoo:active, .btn-yahoo.active, .open > .dropdown-toggle.btn-yahoo { color: #ffffff; background-color: #500a6f; border-color: rgba(0, 0, 0, 0.2); } .btn-yahoo:active, .btn-yahoo.active, .open > .dropdown-toggle.btn-yahoo { background-image: none; } .btn-yahoo .badge { color: #720e9e; background-color: #ffffff; } .btn-yahoo:focus, .btn-yahoo.focus { color: #ffffff; background-color: #500a6f; border-color: rgba(0, 0, 0, 0.2); } .btn-yahoo:hover { color: #ffffff; background-color: #500a6f; border-color: rgba(0, 0, 0, 0.2); } .btn-yahoo:active, .btn-yahoo.active, .open > .dropdown-toggle.btn-yahoo { color: #ffffff; background-color: #500a6f; border-color: rgba(0, 0, 0, 0.2); } .btn-yahoo:active, .btn-yahoo.active, .open > .dropdown-toggle.btn-yahoo { background-image: none; } .btn-yahoo .badge { color: #720e9e; background-color: #ffffff; } /* * Plugin: Full Calendar * --------------------- */ .fc-button { background: #f4f4f4; background-image: none; color: #444; border-color: #ddd; border-bottom-color: #ddd; } .fc-button:hover, .fc-button:active, .fc-button.hover { background-color: #e9e9e9; } .fc-header-title h2 { font-size: 15px; line-height: 1.6em; color: #666; margin-left: 10px; } .fc-header-right { padding-right: 10px; } .fc-header-left { padding-left: 10px; } .fc-widget-header { background: #fafafa; } .fc-grid { width: 100%; border: 0; } .fc-widget-header:first-of-type, .fc-widget-content:first-of-type { border-left: 0; border-right: 0; } .fc-widget-header:last-of-type, .fc-widget-content:last-of-type { border-right: 0; } .fc-toolbar { padding: 10px; margin: 0; } .fc-day-number { font-size: 20px; font-weight: 300; padding-right: 10px; } .fc-color-picker { list-style: none; margin: 0; padding: 0; } .fc-color-picker > li { float: left; font-size: 30px; margin-right: 5px; line-height: 30px; } .fc-color-picker > li .fa { -webkit-transition: -webkit-transform linear 0.3s; -moz-transition: -moz-transform linear 0.3s; -o-transition: -o-transform linear 0.3s; transition: transform linear 0.3s; } .fc-color-picker > li .fa:hover { -webkit-transform: rotate(30deg); -ms-transform: rotate(30deg); -o-transform: rotate(30deg); transform: rotate(30deg); } #add-new-event { -webkit-transition: all linear 0.3s; -o-transition: all linear 0.3s; transition: all linear 0.3s; } .external-event { padding: 5px 10px; font-weight: bold; margin-bottom: 4px; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); border-radius: 3px; cursor: move; } .external-event:hover { box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2); } /* * Plugin: Select2 * --------------- */ .select2-container--default.select2-container--focus, .select2-selection.select2-container--focus, .select2-container--default:focus, .select2-selection:focus, .select2-container--default:active, .select2-selection:active { outline: none; } .select2-container--default .select2-selection--single, .select2-selection .select2-selection--single { border: 1px solid #d2d6de; border-radius: 0; padding: 6px 12px; height: 34px; } .select2-container--default.select2-container--open { border-color: #3c8dbc; } .select2-dropdown { border: 1px solid #d2d6de; border-radius: 0; } .select2-container--default .select2-results__option--highlighted[aria-selected] { background-color: #3c8dbc; color: white; } .select2-results__option { padding: 6px 12px; user-select: none; -webkit-user-select: none; } .select2-container .select2-selection--single .select2-selection__rendered { padding-left: 0; padding-right: 0; height: auto; margin-top: -4px; } .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered { padding-right: 6px; padding-left: 20px; } .select2-container--default .select2-selection--single .select2-selection__arrow { height: 28px; right: 3px; } .select2-container--default .select2-selection--single .select2-selection__arrow b { margin-top: 0; } .select2-dropdown .select2-search__field, .select2-search--inline .select2-search__field { border: 1px solid #d2d6de; } .select2-dropdown .select2-search__field:focus, .select2-search--inline .select2-search__field:focus { outline: none; } .select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--default .select2-search--dropdown .select2-search__field { border-color: #3c8dbc !important; } .select2-container--default .select2-results__option[aria-disabled=true] { color: #999; } .select2-container--default .select2-results__option[aria-selected=true] { background-color: #ddd; } .select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[aria-selected=true]:hover { color: #444; } .select2-container--default .select2-selection--multiple { border: 1px solid #d2d6de; border-radius: 0; } .select2-container--default .select2-selection--multiple:focus { border-color: #3c8dbc; } .select2-container--default.select2-container--focus .select2-selection--multiple { border-color: #d2d6de; } .select2-container--default .select2-selection--multiple .select2-selection__choice { background-color: #3c8dbc; border-color: #367fa9; padding: 1px 10px; color: #fff; } .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { margin-right: 5px; color: rgba(255, 255, 255, 0.7); } .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover { color: #fff; } .select2-container .select2-selection--single .select2-selection__rendered { padding-right: 10px; } .box .datepicker-inline, .box .datepicker-inline .datepicker-days, .box .datepicker-inline > table, .box .datepicker-inline .datepicker-days > table { width: 100%; } .box .datepicker-inline td:hover, .box .datepicker-inline .datepicker-days td:hover, .box .datepicker-inline > table td:hover, .box .datepicker-inline .datepicker-days > table td:hover { background-color: rgba(255, 255, 255, 0.3); } .box .datepicker-inline td.day.old, .box .datepicker-inline .datepicker-days td.day.old, .box .datepicker-inline > table td.day.old, .box .datepicker-inline .datepicker-days > table td.day.old, .box .datepicker-inline td.day.new, .box .datepicker-inline .datepicker-days td.day.new, .box .datepicker-inline > table td.day.new, .box .datepicker-inline .datepicker-days > table td.day.new { color: #777; } /* * General: Miscellaneous * ---------------------- */ .pad { padding: 10px; } .margin { margin: 10px; } .margin-bottom { margin-bottom: 20px; } .margin-bottom-none { margin-bottom: 0; } .margin-r-5 { margin-right: 5px; } .inline { display: inline; } .description-block { display: block; margin: 10px 0; text-align: center; } .description-block.margin-bottom { margin-bottom: 25px; } .description-block > .description-header { margin: 0; padding: 0; font-weight: 600; font-size: 16px; } .description-block > .description-text { text-transform: uppercase; } .bg-red, .bg-yellow, .bg-aqua, .bg-blue, .bg-light-blue, .bg-green, .bg-navy, .bg-teal, .bg-olive, .bg-lime, .bg-orange, .bg-fuchsia, .bg-purple, .bg-maroon, .bg-black, .bg-red-active, .bg-yellow-active, .bg-aqua-active, .bg-blue-active, .bg-light-blue-active, .bg-green-active, .bg-navy-active, .bg-teal-active, .bg-olive-active, .bg-lime-active, .bg-orange-active, .bg-fuchsia-active, .bg-purple-active, .bg-maroon-active, .bg-black-active, .callout.callout-danger, .callout.callout-warning, .callout.callout-info, .callout.callout-success, .alert-success, .alert-danger, .alert-error, .alert-warning, .alert-info, .label-danger, .label-info, .label-warning, .label-primary, .label-success, .modal-primary .modal-body, .modal-primary .modal-header, .modal-primary .modal-footer, .modal-warning .modal-body, .modal-warning .modal-header, .modal-warning .modal-footer, .modal-info .modal-body, .modal-info .modal-header, .modal-info .modal-footer, .modal-success .modal-body, .modal-success .modal-header, .modal-success .modal-footer, .modal-danger .modal-body, .modal-danger .modal-header, .modal-danger .modal-footer { color: #fff !important; } .bg-gray { color: #000; background-color: #d2d6de !important; } .bg-gray-light { background-color: #f7f7f7; } .bg-black { background-color: #111111 !important; } .bg-red, .callout.callout-danger, .alert-danger, .alert-error, .label-danger, .modal-danger .modal-body { background-color: #dd4b39 !important; } .bg-yellow, .callout.callout-warning, .alert-warning, .label-warning, .modal-warning .modal-body { background-color: #f39c12 !important; } .bg-aqua, .callout.callout-info, .alert-info, .label-info, .modal-info .modal-body { background-color: #00c0ef !important; } .bg-blue { background-color: #0073b7 !important; } .bg-light-blue, .label-primary, .modal-primary .modal-body { background-color: #3c8dbc !important; } .bg-green, .callout.callout-success, .alert-success, .label-success, .modal-success .modal-body { background-color: #00a65a !important; } .bg-navy { background-color: #001f3f !important; } .bg-teal { background-color: #39cccc !important; } .bg-olive { background-color: #3d9970 !important; } .bg-lime { background-color: #01ff70 !important; } .bg-orange { background-color: #ff851b !important; } .bg-fuchsia { background-color: #f012be !important; } .bg-purple { background-color: #605ca8 !important; } .bg-maroon { background-color: #d81b60 !important; } .bg-gray-active { color: #000; background-color: #b5bbc8 !important; } .bg-black-active { background-color: #000000 !important; } .bg-red-active, .modal-danger .modal-header, .modal-danger .modal-footer { background-color: #d33724 !important; } .bg-yellow-active, .modal-warning .modal-header, .modal-warning .modal-footer { background-color: #db8b0b !important; } .bg-aqua-active, .modal-info .modal-header, .modal-info .modal-footer { background-color: #00a7d0 !important; } .bg-blue-active { background-color: #005384 !important; } .bg-light-blue-active, .modal-primary .modal-header, .modal-primary .modal-footer { background-color: #357ca5 !important; } .bg-green-active, .modal-success .modal-header, .modal-success .modal-footer { background-color: #008d4c !important; } .bg-navy-active { background-color: #001a35 !important; } .bg-teal-active { background-color: #30bbbb !important; } .bg-olive-active { background-color: #368763 !important; } .bg-lime-active { background-color: #00e765 !important; } .bg-orange-active { background-color: #ff7701 !important; } .bg-fuchsia-active { background-color: #db0ead !important; } .bg-purple-active { background-color: #555299 !important; } .bg-maroon-active { background-color: #ca195a !important; } [class^="bg-"].disabled { opacity: 0.65; filter: alpha(opacity=65); } .text-red { color: #dd4b39 !important; } .text-yellow { color: #f39c12 !important; } .text-aqua { color: #00c0ef !important; } .text-blue { color: #0073b7 !important; } .text-black { color: #111111 !important; } .text-light-blue { color: #3c8dbc !important; } .text-green { color: #00a65a !important; } .text-gray { color: #d2d6de !important; } .text-navy { color: #001f3f !important; } .text-teal { color: #39cccc !important; } .text-olive { color: #3d9970 !important; } .text-lime { color: #01ff70 !important; } .text-orange { color: #ff851b !important; } .text-fuchsia { color: #f012be !important; } .text-purple { color: #605ca8 !important; } .text-maroon { color: #d81b60 !important; } .link-muted { color: #7a869d; } .link-muted:hover, .link-muted:focus { color: #606c84; } .link-black { color: #666; } .link-black:hover, .link-black:focus { color: #999; } .hide { display: none !important; } .no-border { border: 0 !important; } .no-padding { padding: 0 !important; } .no-margin { margin: 0 !important; } .no-shadow { box-shadow: none !important; } .list-unstyled, .chart-legend, .contacts-list, .users-list, .mailbox-attachments { list-style: none; margin: 0; padding: 0; } .list-group-unbordered > .list-group-item { border-left: 0; border-right: 0; border-radius: 0; padding-left: 0; padding-right: 0; } .flat { border-radius: 0 !important; } .text-bold, .text-bold.table td, .text-bold.table th { font-weight: 700; } .text-sm { font-size: 12px; } .jqstooltip { padding: 5px !important; width: auto !important; height: auto !important; } .bg-teal-gradient { background: #39cccc !important; background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #39cccc), color-stop(1, #7adddd)) !important; background: -ms-linear-gradient(bottom, #39cccc, #7adddd) !important; background: -moz-linear-gradient(center bottom, #39cccc 0%, #7adddd 100%) !important; background: -o-linear-gradient(#7adddd, #39cccc) !important; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7adddd', endColorstr='#39cccc', GradientType=0) !important; color: #fff; } .bg-light-blue-gradient { background: #3c8dbc !important; background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3c8dbc), color-stop(1, #67a8ce)) !important; background: -ms-linear-gradient(bottom, #3c8dbc, #67a8ce) !important; background: -moz-linear-gradient(center bottom, #3c8dbc 0%, #67a8ce 100%) !important; background: -o-linear-gradient(#67a8ce, #3c8dbc) !important; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#67a8ce', endColorstr='#3c8dbc', GradientType=0) !important; color: #fff; } .bg-blue-gradient { background: #0073b7 !important; background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0073b7), color-stop(1, #0089db)) !important; background: -ms-linear-gradient(bottom, #0073b7, #0089db) !important; background: -moz-linear-gradient(center bottom, #0073b7 0%, #0089db 100%) !important; background: -o-linear-gradient(#0089db, #0073b7) !important; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089db', endColorstr='#0073b7', GradientType=0) !important; color: #fff; } .bg-aqua-gradient { background: #00c0ef !important; background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00c0ef), color-stop(1, #14d1ff)) !important; background: -ms-linear-gradient(bottom, #00c0ef, #14d1ff) !important; background: -moz-linear-gradient(center bottom, #00c0ef 0%, #14d1ff 100%) !important; background: -o-linear-gradient(#14d1ff, #00c0ef) !important; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#14d1ff', endColorstr='#00c0ef', GradientType=0) !important; color: #fff; } .bg-yellow-gradient { background: #f39c12 !important; background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f39c12), color-stop(1, #f7bc60)) !important; background: -ms-linear-gradient(bottom, #f39c12, #f7bc60) !important; background: -moz-linear-gradient(center bottom, #f39c12 0%, #f7bc60 100%) !important; background: -o-linear-gradient(#f7bc60, #f39c12) !important; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7bc60', endColorstr='#f39c12', GradientType=0) !important; color: #fff; } .bg-purple-gradient { background: #605ca8 !important; background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #605ca8), color-stop(1, #9491c4)) !important; background: -ms-linear-gradient(bottom, #605ca8, #9491c4) !important; background: -moz-linear-gradient(center bottom, #605ca8 0%, #9491c4 100%) !important; background: -o-linear-gradient(#9491c4, #605ca8) !important; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9491c4', endColorstr='#605ca8', GradientType=0) !important; color: #fff; } .bg-green-gradient { background: #00a65a !important; background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00a65a), color-stop(1, #00ca6d)) !important; background: -ms-linear-gradient(bottom, #00a65a, #00ca6d) !important; background: -moz-linear-gradient(center bottom, #00a65a 0%, #00ca6d 100%) !important; background: -o-linear-gradient(#00ca6d, #00a65a) !important; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ca6d', endColorstr='#00a65a', GradientType=0) !important; color: #fff; } .bg-red-gradient { background: #dd4b39 !important; background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dd4b39), color-stop(1, #e47365)) !important; background: -ms-linear-gradient(bottom, #dd4b39, #e47365) !important; background: -moz-linear-gradient(center bottom, #dd4b39 0%, #e47365 100%) !important; background: -o-linear-gradient(#e47365, #dd4b39) !important; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e47365', endColorstr='#dd4b39', GradientType=0) !important; color: #fff; } .bg-black-gradient { background: #111111 !important; background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #111111), color-stop(1, #2b2b2b)) !important; background: -ms-linear-gradient(bottom, #111111, #2b2b2b) !important; background: -moz-linear-gradient(center bottom, #111111 0%, #2b2b2b 100%) !important; background: -o-linear-gradient(#2b2b2b, #111111) !important; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2b2b2b', endColorstr='#111111', GradientType=0) !important; color: #fff; } .bg-maroon-gradient { background: #d81b60 !important; background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #d81b60), color-stop(1, #e73f7c)) !important; background: -ms-linear-gradient(bottom, #d81b60, #e73f7c) !important; background: -moz-linear-gradient(center bottom, #d81b60 0%, #e73f7c 100%) !important; background: -o-linear-gradient(#e73f7c, #d81b60) !important; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e73f7c', endColorstr='#d81b60', GradientType=0) !important; color: #fff; } .description-block .description-icon { font-size: 16px; } .no-pad-top { padding-top: 0; } .position-static { position: static !important; } .list-header { font-size: 15px; padding: 10px 4px; font-weight: bold; color: #666; } .list-seperator { height: 1px; background: #f4f4f4; margin: 15px 0 9px 0; } .list-link > a { padding: 4px; color: #777; } .list-link > a:hover { color: #222; } .font-light { font-weight: 300; } .user-block:before, .user-block:after { content: " "; display: table; } .user-block:after { clear: both; } .user-block:before, .user-block:after { content: " "; display: table; } .user-block:after { clear: both; } .user-block img { width: 40px; height: 40px; float: left; } .user-block .username, .user-block .description, .user-block .comment { display: block; margin-left: 50px; } .user-block .username { font-size: 16px; font-weight: 600; } .user-block .description { color: #999; font-size: 13px; } .user-block.user-block-sm .username, .user-block.user-block-sm .description, .user-block.user-block-sm .comment { margin-left: 40px; } .user-block.user-block-sm .username { font-size: 14px; } .img-sm, .img-md, .img-lg, .box-comments .box-comment img, .user-block.user-block-sm img { float: left; } .img-sm, .box-comments .box-comment img, .user-block.user-block-sm img { width: 30px !important; height: 30px !important; } .img-sm + .img-push { margin-left: 40px; } .img-md { width: 60px; height: 60px; } .img-md + .img-push { margin-left: 70px; } .img-lg { width: 100px; height: 100px; } .img-lg + .img-push { margin-left: 110px; } .img-bordered { border: 3px solid #d2d6de; padding: 3px; } .img-bordered-sm { border: 2px solid #d2d6de; padding: 2px; } .attachment-block { border: 1px solid #f4f4f4; padding: 5px; margin-bottom: 10px; background: #f7f7f7; } .attachment-block .attachment-img { max-width: 100px; max-height: 100px; height: auto; float: left; } .attachment-block .attachment-pushed { margin-left: 110px; } .attachment-block .attachment-heading { margin: 0; } .attachment-block .attachment-text { color: #555; } .connectedSortable { min-height: 100px; } .ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .sort-highlight { background: #f4f4f4; border: 1px dashed #ddd; margin-bottom: 10px; } .full-opacity-hover { opacity: 0.65; filter: alpha(opacity=65); } .full-opacity-hover:hover { opacity: 1; filter: alpha(opacity=100); } .chart { position: relative; overflow: hidden; width: 100%; } .chart svg, .chart canvas { width: 100% !important; } /* * Misc: print * ----------- */ @media print { .no-print, .main-sidebar, .left-side, .main-header, .content-header { display: none !important; } .content-wrapper, .right-side, .main-footer { margin-left: 0 !important; min-height: 0 !important; -webkit-transform: translate(0, 0) !important; -ms-transform: translate(0, 0) !important; -o-transform: translate(0, 0) !important; transform: translate(0, 0) !important; } .fixed .content-wrapper, .fixed .right-side { padding-top: 0 !important; } .invoice { width: 100%; border: 0; margin: 0; padding: 0; } .invoice-col { float: left; width: 33.3333333%; } .table-responsive { overflow: auto; } .table-responsive > .table tr th, .table-responsive > .table tr td { white-space: normal !important; } }
node_modules/grunt-contrib/node_modules/grunt-contrib-yuidoc/node_modules/yuidocjs/tests/out/modules/ExampleModule.html
SHMEDIALIMITED/tallest-tower
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>ExampleModule</title> <link rel="stylesheet" href="http:&#x2F;&#x2F;yui.yahooapis.com&#x2F;3.7.0&#x2F;build&#x2F;cssgrids&#x2F;cssgrids-min.css"> <link rel="stylesheet" href="..&#x2F;assets/vendor/prettify/prettify-min.css"> <link rel="stylesheet" href="..&#x2F;assets/css/main.css" id="site_styles"> <link rel="shortcut icon" type="image/png" href="..&#x2F;assets/favicon.png"> <script src="http:&#x2F;&#x2F;yui.yahooapis.com&#x2F;combo?3.7.0&#x2F;build&#x2F;yui&#x2F;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="..&#x2F;assets/css/logo.png" title=""></h1> </div> <div class="yui3-u-1-4 version"> <em>API Docs for: </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="..&#x2F;classes/Anim.html">Anim</a></li> <li><a href="..&#x2F;classes/AreaSeries.html">AreaSeries</a></li> <li><a href="..&#x2F;classes/AreaSplineSeries.html">AreaSplineSeries</a></li> <li><a href="..&#x2F;classes/Axis.html">Axis</a></li> <li><a href="..&#x2F;classes/AxisType.html">AxisType</a></li> <li><a href="..&#x2F;classes/BarSeries.html">BarSeries</a></li> <li><a href="..&#x2F;classes/BottomAxisLayout.html">BottomAxisLayout</a></li> <li><a href="..&#x2F;classes/CartesianChart.html">CartesianChart</a></li> <li><a href="..&#x2F;classes/CartesianSeries.html">CartesianSeries</a></li> <li><a href="..&#x2F;classes/CategoryAxis.html">CategoryAxis</a></li> <li><a href="..&#x2F;classes/Chart.html">Chart</a></li> <li><a href="..&#x2F;classes/ChartBase.html">ChartBase</a></li> <li><a href="..&#x2F;classes/ChartLegend.html">ChartLegend</a></li> <li><a href="..&#x2F;classes/ColumnSeries.html">ColumnSeries</a></li> <li><a href="..&#x2F;classes/ComboSeries.html">ComboSeries</a></li> <li><a href="..&#x2F;classes/ComboSplineSeries.html">ComboSplineSeries</a></li> <li><a href="..&#x2F;classes/CurveUtil.html">CurveUtil</a></li> <li><a href="..&#x2F;classes/Easing.html">Easing</a></li> <li><a href="..&#x2F;classes/EasingFoo.html">EasingFoo</a></li> <li><a href="..&#x2F;classes/EllipseGroup.html">EllipseGroup</a></li> <li><a href="..&#x2F;classes/Fills.html">Fills</a></li> <li><a href="..&#x2F;classes/Foo.Bar.html">Foo.Bar</a></li> <li><a href="..&#x2F;classes/Graph.html">Graph</a></li> <li><a href="..&#x2F;classes/Gridlines.html">Gridlines</a></li> <li><a href="..&#x2F;classes/GroupCircle.html">GroupCircle</a></li> <li><a href="..&#x2F;classes/GroupDiamond.html">GroupDiamond</a></li> <li><a href="..&#x2F;classes/GroupRect.html">GroupRect</a></li> <li><a href="..&#x2F;classes/Histogram.html">Histogram</a></li> <li><a href="..&#x2F;classes/HorizontalLegendLayout.html">HorizontalLegendLayout</a></li> <li><a href="..&#x2F;classes/JSON.html">JSON</a></li> <li><a href="..&#x2F;classes/LeftAxisLayout.html">LeftAxisLayout</a></li> <li><a href="..&#x2F;classes/Lines.html">Lines</a></li> <li><a href="..&#x2F;classes/LineSeries.html">LineSeries</a></li> <li><a href="..&#x2F;classes/Main.html">Main</a></li> <li><a href="..&#x2F;classes/MarkerSeries.html">MarkerSeries</a></li> <li><a href="..&#x2F;classes/myclass.html">myclass</a></li> <li><a href="..&#x2F;classes/mywidget.SubWidget.html">mywidget.SubWidget</a></li> <li><a href="..&#x2F;classes/mywidget.SubWidget2.html">mywidget.SubWidget2</a></li> <li><a href="..&#x2F;classes/mywidget.SuperWidget.html">mywidget.SuperWidget</a></li> <li><a href="..&#x2F;classes/NumericAxis.html">NumericAxis</a></li> <li><a href="..&#x2F;classes/OtherClass.html">OtherClass</a></li> <li><a href="..&#x2F;classes/OtherClass2.html">OtherClass2</a></li> <li><a href="..&#x2F;classes/P.storage.html">P.storage</a></li> <li><a href="..&#x2F;classes/P.storage.LocalStore.html">P.storage.LocalStore</a></li> <li><a href="..&#x2F;classes/P.storage.Store.html">P.storage.Store</a></li> <li><a href="..&#x2F;classes/PieChart.html">PieChart</a></li> <li><a href="..&#x2F;classes/PieSeries.html">PieSeries</a></li> <li><a href="..&#x2F;classes/Plots.html">Plots</a></li> <li><a href="..&#x2F;classes/Renderer.html">Renderer</a></li> <li><a href="..&#x2F;classes/RightAxisLayout.html">RightAxisLayout</a></li> <li><a href="..&#x2F;classes/ShapeGroup.html">ShapeGroup</a></li> <li><a href="..&#x2F;classes/SplineSeries.html">SplineSeries</a></li> <li><a href="..&#x2F;classes/StackedAreaSeries.html">StackedAreaSeries</a></li> <li><a href="..&#x2F;classes/StackedAreaSplineSeries.html">StackedAreaSplineSeries</a></li> <li><a href="..&#x2F;classes/StackedAxis.html">StackedAxis</a></li> <li><a href="..&#x2F;classes/StackedBarSeries.html">StackedBarSeries</a></li> <li><a href="..&#x2F;classes/StackedColumnSeries.html">StackedColumnSeries</a></li> <li><a href="..&#x2F;classes/StackedComboSeries.html">StackedComboSeries</a></li> <li><a href="..&#x2F;classes/StackedComboSplineSeries.html">StackedComboSplineSeries</a></li> <li><a href="..&#x2F;classes/StackedLineSeries.html">StackedLineSeries</a></li> <li><a href="..&#x2F;classes/StackedMarkerSeries.html">StackedMarkerSeries</a></li> <li><a href="..&#x2F;classes/StackedSplineSeries.html">StackedSplineSeries</a></li> <li><a href="..&#x2F;classes/StackingUtil.html">StackingUtil</a></li> <li><a href="..&#x2F;classes/TimeAxis.html">TimeAxis</a></li> <li><a href="..&#x2F;classes/TopAxisLayout.html">TopAxisLayout</a></li> <li><a href="..&#x2F;classes/VerticalLegendLayout.html">VerticalLegendLayout</a></li> <li><a href="..&#x2F;classes/YUI~dump.html">YUI~dump</a></li> <li><a href="..&#x2F;classes/YUI~oop.html">YUI~oop</a></li> </ul> <ul id="api-modules" class="apis modules"> <li><a href="..&#x2F;modules/anim.html">anim</a></li> <li><a href="..&#x2F;modules/anim-easing.html">anim-easing</a></li> <li><a href="..&#x2F;modules/anim-easing-foo.html">anim-easing-foo</a></li> <li><a href="..&#x2F;modules/charts.html">charts</a></li> <li><a href="..&#x2F;modules/charts-legend.html">charts-legend</a></li> <li><a href="..&#x2F;modules/dump.html">dump</a></li> <li><a href="..&#x2F;modules/ExampleModule.html">ExampleModule</a></li> <li><a href="..&#x2F;modules/foobar.html">foobar</a></li> <li><a href="..&#x2F;modules/graphics.html">graphics</a></li> <li><a href="..&#x2F;modules/json.html">json</a></li> <li><a href="..&#x2F;modules/json-parse.html">json-parse</a></li> <li><a href="..&#x2F;modules/json-stringify.html">json-stringify</a></li> <li><a href="..&#x2F;modules/myapp_views_index.html">myapp&#x2F;views&#x2F;index</a></li> <li><a href="..&#x2F;modules/mymodule.html">mymodule</a></li> <li><a href="..&#x2F;modules/mysubmodule.html">mysubmodule</a></li> <li><a href="..&#x2F;modules/oop.html">oop</a></li> <li><a href="..&#x2F;modules/P.storage.html">P.storage</a></li> </ul> </div> </div> </div> </div> </div> <div class="yui3-u-3-4"> <div id="api-options"> Show: <label for="api-show-inherited"> <input type="checkbox" id="api-show-inherited" checked> Inherited </label> <label for="api-show-protected"> <input type="checkbox" id="api-show-protected"> Protected </label> <label for="api-show-private"> <input type="checkbox" id="api-show-private"> Private </label> <label for="api-show-deprecated"> <input type="checkbox" id="api-show-deprecated"> Deprecated </label> </div> <div class="apidocs"> <div id="docs-main"> <div class="content"> <h1>ExampleModule Module</h1> <div class="box clearfix meta"> <div class="foundat"> Defined in: <a href="..&#x2F;files&#x2F;input_inherit_examplemodule.js.html#l94"><code>input&#x2F;inherit&#x2F;examplemodule.js:94</code></a> </div> </div> <div class="box intro"> <p>This is my example module</p> </div> <div class="example"> <h4>Example:</h4> <div class="example-content"> <pre class="code prettyprint"><code>var bar; </code></pre> </div> </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="..&#x2F;classes/mywidget.SubWidget.html"> mywidget.SubWidget </a> </li> <li class="module-class"> <a href="..&#x2F;classes/mywidget.SubWidget2.html"> mywidget.SubWidget2 </a> </li> <li class="module-class"> <a href="..&#x2F;classes/mywidget.SuperWidget.html"> mywidget.SuperWidget </a> </li> </ul> </div> <div class="yui3-u-1-2"> </div> </div> </div> </div> </div> </div> </div> </div> <script src="..&#x2F;assets/vendor/prettify/prettify-min.js"></script> <script>prettyPrint();</script> <script src="..&#x2F;assets/js/yui-prettify.js"></script> <script src="..&#x2F;assets/../api.js"></script> <script src="..&#x2F;assets/js/api-filter.js"></script> <script src="..&#x2F;assets/js/api-list.js"></script> <script src="..&#x2F;assets/js/api-search.js"></script> <script src="..&#x2F;assets/js/apidocs.js"></script> </body> </html>
post/11906173225/gilt-home-launch/index.html
nataliab/tech-blog
<html><head><link rel="canonical" href="/2011/10/25/gilt-home-launch"><meta http-equiv="refresh" content="0; url=/2011/10/25/gilt-home-launch"></head><body></body></html>
web/example-styles.css
dart-bridge/bridge
body, html, .wrap-all { height:100%; width:100%; margin:0; padding:0; background-color: #f4f4f4; font-family: 'aktiv-grotesk-std', Helvetica, sans-serif; font-size: 1.2em; } img { max-width: 10em; box-sizing: border-box; padding:0 1em; width:100%; } .wrap-all { display: table; } .wrap-row { display: table-row; } .wrap-cell { display: table-cell; vertical-align: middle; text-align: center; } iframe { display: inline-block; margin: auto; width: 3.25em; padding-top: 0.2em; vertical-align: bottom; } .stack-trace { font-size: 0.5em; white-space: pre-wrap; text-align: left; max-width: 70em; margin: auto; background: #fbfbfb; padding:1em; }
library/language/et/html/sidebar2.html
torrentpier/torrentpier
<div> <h3>Külgriba 2</h3> Lisada sisu sellesse külgriba, muuta järgmisi faile: <br /><br /> <ul class="med"> <li>library/language/*/html/sidebar2.html</li> <li>style/templates/default/page_footer.tpl</li> </ul> <br /> Keelata selle külgriba, set muutuja $bb_cfg['page']['show_sidebar2'] fail config.php väär. </div>
wsgi/container/pkgs/sencha/static/ext-4.2.2.1144/docs/source/BufferedRenderer.html
rch/flask-openshift
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>The source code</title> <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="../resources/prettify/prettify.js"></script> <style type="text/css"> .highlight { display: block; background-color: #ddd; } </style> <script type="text/javascript"> function highlight() { document.getElementById(location.hash.replace(/#/, "")).className = "highlight"; } </script> </head> <body onload="prettyPrint(); highlight();"> <pre class="prettyprint lang-js"><span id='Ext-grid-plugin-BufferedRenderer'>/** </span> * Implements buffered rendering of a grid, allowing users can scroll * through thousands of records without the performance penalties of * renderering all the records on screen at once. * * The number of rows rendered outside the visible area, and the * buffering of pages of data from the remote server for immediate * rendering upon scroll can be controlled by configuring the plugin. * * You can tell it to create a larger table to provide more scrolling * before new rows need to be added to the leading edge of the table. * * var myStore = Ext.create('Ext.data.Store', { * // ... * pageSize: 100, * // ... * }); * * var grid = Ext.create('Ext.grid.Panel', { * // ... * autoLoad: true, * plugins: { * ptype: 'bufferedrenderer', * trailingBufferZone: 20, // Keep 20 rows rendered in the table behind scroll * leadingBufferZone: 50 // Keep 50 rows rendered in the table ahead of scroll * }, * // ... * }); * * ## Implementation notes * * This class monitors scrolling of the {@link Ext.view.Table * TableView} within a {@link Ext.grid.Panel GridPanel} to render a small section of * the dataset. * */ Ext.define('Ext.grid.plugin.BufferedRenderer', { extend: 'Ext.AbstractPlugin', requires: [ 'Ext.grid.plugin.BufferedRendererTableView', 'Ext.grid.plugin.BufferedRendererTreeView' ], alias: 'plugin.bufferedrenderer', <span id='Ext-grid-plugin-BufferedRenderer-property-lockableScope'> lockableScope: 'both', </span> <span id='Ext-grid-plugin-BufferedRenderer-cfg-percentageFromEdge'> /** </span> * @cfg {Number} * @deprecated This config is now ignored. */ percentageFromEdge: 0.35, <span id='Ext-grid-plugin-BufferedRenderer-cfg-variableRowHeight'> /** </span> * @cfg {Boolean} [variableRowHeight=false] * Configure as `true` if the row heights are not all the same height as the first row. Only configure this is needed - this will be if the * rows contain unpredictably sized data, or you have changed the cell's text overflow stype to `'wrap'`. */ variableRowHeight: false, <span id='Ext-grid-plugin-BufferedRenderer-cfg-numFromEdge'> /** </span> * @cfg {Number} * The zone which causes new rows to be appended to the view. As soon as the edge * of the rendered grid is this number of rows from the edge of the viewport, the view is moved. */ numFromEdge: 8, <span id='Ext-grid-plugin-BufferedRenderer-cfg-trailingBufferZone'> /** </span> * @cfg {Number} * The number of extra rows to render on the trailing side of scrolling * **outside the {@link #numFromEdge}** buffer as scrolling proceeds. */ trailingBufferZone: 10, <span id='Ext-grid-plugin-BufferedRenderer-cfg-leadingBufferZone'> /** </span> * @cfg {Number} * The number of extra rows to render on the leading side of scrolling * **outside the {@link #numFromEdge}** buffer as scrolling proceeds. */ leadingBufferZone: 20, <span id='Ext-grid-plugin-BufferedRenderer-cfg-synchronousRender'> /** </span> * @cfg {Boolean} [synchronousRender=true] * By default, on detection of a scroll event which brings the end of the rendered table within * `{@link #numFromEdge}` rows of the grid viewport, if the required rows are available in the Store, * the BufferedRenderer will render rows from the Store *immediately* before returning from the event handler. * This setting helps avoid the impression of whitespace appearing during scrolling. * * Set this to `true` to defer the render until the scroll event handler exits. This allows for faster * scrolling, but also allows whitespace to be more easily scrolled into view. * */ synchronousRender: true, <span id='Ext-grid-plugin-BufferedRenderer-cfg-scrollToLoadBuffer'> /** </span> * @cfg {Number} * This is the time in milliseconds to buffer load requests when scrolling the PagingScrollbar. */ scrollToLoadBuffer: 200, <span id='Ext-grid-plugin-BufferedRenderer-property-viewSize'> // private. Initial value of zero. </span> viewSize: 0, <span id='Ext-grid-plugin-BufferedRenderer-property-rowHeight'> // private. Start at default value </span> rowHeight: 21, <span id='Ext-grid-plugin-BufferedRenderer-property-position'> /** </span> * @property {Number} position * Current pixel scroll position of the associated {@link Ext.view.Table View}. */ position: 0, <span id='Ext-grid-plugin-BufferedRenderer-property-lastScrollDirection'> lastScrollDirection: 1, </span><span id='Ext-grid-plugin-BufferedRenderer-property-bodyTop'> bodyTop: 0, </span> <span id='Ext-grid-plugin-BufferedRenderer-method-init'> // Initialize this as a plugin </span> init: function(grid) { var me = this, view = grid.view, viewListeners = { scroll: { fn: me.onViewScroll, element: 'el', scope: me }, boxready: me.onViewResize, resize: me.onViewResize, refresh: me.onViewRefresh, scope: me, destroyable: true }; // If we are using default row heights, then do not sync row heights for efficiency if (!me.variableRowHeight &amp;&amp; grid.ownerLockable) { grid.ownerLockable.syncRowHeight = false; } // If we are going to be handling a NodeStore then it's driven by node addition and removal, *not* refreshing. // The view overrides required above change the view's onAdd and onRemove behaviour to call onDataRefresh when necessary. if (grid.isTree || grid.ownerLockable &amp;&amp; grid.ownerLockable.isTree) { view.blockRefresh = false; view.loadMask = true; } if (view.positionBody) { viewListeners.refresh = me.onViewRefresh; } me.grid = grid; me.view = view; view.bufferedRenderer = me; view.preserveScrollOnRefresh = true; me.bindStore(view.dataSource); view.getViewRange = function() { return me.getViewRange(); }; me.position = 0; me.gridListeners = grid.on('reconfigure', me.onReconfigure, me); me.viewListeners = view.on(viewListeners); }, <span id='Ext-grid-plugin-BufferedRenderer-method-bindStore'> bindStore: function(store) { </span> var me = this; if (me.store) { me.unbindStore(); } me.storeListeners = store.on({ scope: me, clear: me.onStoreClear, destroyable: true }); me.store = store; // If the view has acquired a size, calculate a new view size and scroll range when the store changes. if (me.view.componentLayout.layoutCount) { me.onViewResize(me.view, 0, me.view.getHeight()); } }, <span id='Ext-grid-plugin-BufferedRenderer-method-onReconfigure'> onReconfigure: function(grid, store){ </span> if (store &amp;&amp; store !== this.store) { this.bindStore(store); } }, <span id='Ext-grid-plugin-BufferedRenderer-method-unbindStore'> unbindStore: function() { </span> this.storeListeners.destroy(); this.store = null; }, <span id='Ext-grid-plugin-BufferedRenderer-method-onStoreClear'> onStoreClear: function() { </span> var me = this; // Do not do anything if view is not rendered, or if the reason for cache clearing is store destruction if (me.view.rendered &amp;&amp; !me.store.isDestroyed) { // Temporarily disable scroll monitoring until the scroll event caused by any following *change* of scrollTop has fired. // Otherwise it will attempt to process a scroll on a stale view if (me.scrollTop !== 0) { me.ignoreNextScrollEvent = true; me.view.el.dom.scrollTop = 0; } me.bodyTop = me.scrollTop = me.position = me.scrollHeight = 0; me.lastScrollDirection = me.scrollOffset = null; // MUST delete, not null out because the calculation checks hasOwnProperty delete me.rowHeight; } }, <span id='Ext-grid-plugin-BufferedRenderer-method-onViewRefresh'> onViewRefresh: function() { </span> var me = this, view = me.view, oldScrollHeight = me.scrollHeight, scrollHeight; // View has rows, delete the rowHeight property to trigger a recalculation when scrollRange is calculated if (view.all.getCount()) { // We need to calculate the table size based upon the new viewport size and current row height // It tests hasOwnProperty so must delete the property to make it recalculate. delete me.rowHeight; } // Calculates scroll range. Also calculates rowHeight if we do not have an own rowHeight property. // That will be the case if the view contains some rows. scrollHeight = me.getScrollHeight(); if (!oldScrollHeight || scrollHeight != oldScrollHeight) { me.stretchView(view, scrollHeight); } if (me.scrollTop !== view.el.dom.scrollTop) { // The view may have refreshed and scrolled to the top, for example // on a sort. If so, it's as if we scrolled to the top, so we'll simulate // it here. me.onViewScroll(); } else { me.setBodyTop(me.bodyTop); // With new data, the height may have changed, so recalculate the rowHeight and viewSize. if (view.all.getCount()) { me.viewSize = 0; me.onViewResize(view, null, view.getHeight()); } } }, <span id='Ext-grid-plugin-BufferedRenderer-method-onViewResize'> onViewResize: function(view, width, height, oldWidth, oldHeight) { </span> // Only process first layout (the boxready event) or height resizes. if (!oldHeight || height !== oldHeight) { var me = this, newViewSize; // Recalculate the view size in rows now that the grid view has changed height newViewSize = Math.ceil(height / me.rowHeight) + me.trailingBufferZone + me.leadingBufferZone; me.viewSize = me.setViewSize(newViewSize); } }, <span id='Ext-grid-plugin-BufferedRenderer-method-stretchView'> stretchView: function(view, scrollRange) { </span> var me = this, recordCount = (me.store.buffered ? me.store.getTotalCount() : me.store.getCount()); if (me.stretcher) { me.stretcher.dom.style.marginTop = (scrollRange - 1) + 'px'; } else { var el = view.el; // If the view has already been refreshed by the time we get here (eg, the grid, has undergone a reconfigure operation - which performs a refresh), // keep it informed of fixed nodes which it must leave alone on refresh. if (view.refreshCounter) { view.fixedNodes++; } // If this is the last page, correct the scroll range to be just enough to fit. if (recordCount &amp;&amp; (me.view.all.endIndex === recordCount - 1)) { scrollRange = me.bodyTop + view.body.dom.offsetHeight; } this.stretcher = el.createChild({ style: { width: '1px', height: '1px', 'marginTop': (scrollRange - 1) + 'px', left: 0, position: 'absolute' } }, el.dom.firstChild); } }, <span id='Ext-grid-plugin-BufferedRenderer-method-setViewSize'> setViewSize: function(viewSize) { </span> if (viewSize !== this.viewSize) { // Must be set for getFirstVisibleRowIndex to work this.scrollTop = this.view.el.dom.scrollTop; var me = this, store = me.store, elCount = me.view.all.getCount(), start, end, lockingPartner = me.lockingPartner; me.viewSize = store.viewSize = viewSize; // If a store loads before we have calculated a viewSize, it loads me.defaultViewSize records. // This may be larger or smaller than the final viewSize so the store needs adjusting when the view size is calculated. if (elCount) { start = me.view.all.startIndex; end = Math.min(start + viewSize - 1, (store.buffered ? store.getTotalCount() : store.getCount()) - 1); // While rerendering our range, the locking partner must not sync if (lockingPartner) { lockingPartner.disable(); } me.renderRange(start, end); if (lockingPartner) { lockingPartner.enable(); } } } return viewSize; }, <span id='Ext-grid-plugin-BufferedRenderer-method-getViewRange'> getViewRange: function() { </span> var me = this, rows = me.view.all, store = me.store; if (store.data.getCount()) { return store.getRange(rows.startIndex, rows.startIndex + (me.viewSize || store.defaultViewSize) - 1); } else { return []; } }, <span id='Ext-grid-plugin-BufferedRenderer-method-scrollTo'> /** </span> * Scrolls to and optionlly selects the specified row index **in the total dataset**. * * @param {Number} recordIdx The zero-based position in the dataset to scroll to. * @param {Boolean} doSelect Pass as `true` to select the specified row. * @param {Function} callback A function to call when the row has been scrolled to. * @param {Number} callback.recordIdx The resulting record index (may have changed if the passed index was outside the valid range). * @param {Ext.data.Model} callback.record The resulting record from the store. * @param {Object} scope The scope (`this` reference) in which to execute the callback. Defaults to this BufferedRenderer. * */ scrollTo: function(recordIdx, doSelect, callback, scope) { var me = this, view = me.view, viewDom = view.el.dom, store = me.store, total = store.buffered ? store.getTotalCount() : store.getCount(), startIdx, endIdx, targetRec, targetRow, tableTop, groupingFeature, group, record; // If we have a grouping summary feature rendering the view in groups, // first, ensure that the record's group is expanded, // then work out which record in the groupStore the record is at. if ((groupingFeature = view.dataSource.groupingFeature) &amp;&amp; (groupingFeature.collapsible !== false)) { // Sanitize the requested record recordIdx = Math.min(Math.max(recordIdx, 0), view.store.getCount() - 1); record = view.store.getAt(recordIdx); recordIdx = groupingFeature.indexOf(recordIdx); group = groupingFeature.getGroup(record); if (group.isCollapsed) { groupingFeature.expand(group.name); total = store.buffered ? store.getTotalCount() : store.getCount(); } } else { // Sanitize the requested record recordIdx = Math.min(Math.max(recordIdx, 0), total - 1); } // Calculate view start index startIdx = Math.max(Math.min(recordIdx - ((me.leadingBufferZone + me.trailingBufferZone) / 2), total - me.viewSize + 1), 0); tableTop = startIdx * me.rowHeight; endIdx = Math.min(startIdx + me.viewSize - 1, total - 1); store.getRange(startIdx, endIdx, { callback: function(range, start, end) { me.renderRange(start, end, true); targetRec = store.data.getRange(recordIdx, recordIdx)[0]; targetRow = view.getNode(targetRec, false); view.body.dom.style.top = tableTop + 'px'; me.position = me.scrollTop = viewDom.scrollTop = tableTop = Math.min(Math.max(0, tableTop - view.body.getOffsetsTo(targetRow)[1]), viewDom.scrollHeight - viewDom.clientHeight); // https://sencha.jira.com/browse/EXTJSIV-7166 IE 6, 7 and 8 won't scroll all the way down first time if (Ext.isIE) { viewDom.scrollTop = tableTop; } if (doSelect) { view.selModel.select(targetRec); } if (callback) { callback.call(scope||me, recordIdx, targetRec); } } }); }, <span id='Ext-grid-plugin-BufferedRenderer-method-onViewScroll'> onViewScroll: function(e, t) { </span> var me = this, store = me.store, totalCount = (store.buffered ? store.getTotalCount() : store.getCount()), vscrollDistance, scrollDirection, scrollTop = me.scrollTop = me.view.el.dom.scrollTop, scrollHandled = false; // Flag set when the scrollTop is programatically set to zero upon cache clear. // We must not attempt to process that as a scroll event. if (me.ignoreNextScrollEvent) { me.ignoreNextScrollEvent = false; return; } // Only check for nearing the edge if we are enabled, and if there is overflow beyond our view bounds. // If there is no paging to be done (Store's dataset is all in memory) we will be disabled. if (!(me.disabled || totalCount &lt; me.viewSize)) { vscrollDistance = scrollTop - me.position; scrollDirection = vscrollDistance &gt; 0 ? 1 : -1; // Moved at leat 20 pixels, or cvhanged direction, so test whether the numFromEdge is triggered if (Math.abs(vscrollDistance) &gt;= 20 || (scrollDirection !== me.lastScrollDirection)) { me.lastScrollDirection = scrollDirection; me.handleViewScroll(me.lastScrollDirection); scrollHandled = true; } } // Keep other side synced immediately if there was no rendering work to do. if (!scrollHandled) { if (me.lockingPartner &amp;&amp; me.lockingPartner.scrollTop !== scrollTop) { me.lockingPartner.view.el.dom.scrollTop = scrollTop; } } }, <span id='Ext-grid-plugin-BufferedRenderer-method-handleViewScroll'> handleViewScroll: function(direction) { </span> var me = this, rows = me.view.all, store = me.store, viewSize = me.viewSize, totalCount = (store.buffered ? store.getTotalCount() : store.getCount()), requestStart, requestEnd; // We're scrolling up if (direction == -1) { // If table starts at record zero, we have nothing to do if (rows.startIndex) { if ((me.getFirstVisibleRowIndex() - rows.startIndex) &lt; me.numFromEdge) { requestStart = Math.max(0, me.getLastVisibleRowIndex() + me.trailingBufferZone - viewSize); } } } // We're scrolling down else { // If table ends at last record, we have nothing to do if (rows.endIndex &lt; totalCount - 1) { if ((rows.endIndex - me.getLastVisibleRowIndex()) &lt; me.numFromEdge) { requestStart = Math.max(0, me.getFirstVisibleRowIndex() - me.trailingBufferZone); } } } // We scrolled close to the edge and the Store needs reloading if (requestStart != null) { requestEnd = Math.min(requestStart + viewSize - 1, totalCount - 1); // If calculated view range has moved, then render it if (requestStart !== rows.startIndex || requestEnd !== rows.endIndex) { me.renderRange(requestStart, requestEnd); return; } } // If we did not have to render, then just sync the partner's scroll position if (me.lockingPartner &amp;&amp; me.lockingPartner.view.el &amp;&amp; me.lockingPartner.scrollTop !== me.scrollTop) { me.lockingPartner.view.el.dom.scrollTop = me.scrollTop; } }, <span id='Ext-grid-plugin-BufferedRenderer-method-renderRange'> renderRange: function(start, end, forceSynchronous) { </span> var me = this, rows = me.view.all, store = me.store; // Skip if we are being asked to render exactly the rows that we already have. // This can happen if the viewSize has to be recalculated (due to either a data refresh or a view resize event) // but the calculated size ends up the same. if (!(start === rows.startIndex &amp;&amp; end === rows.endIndex)) { // If range is avaliable synchronously, process it now. if (store.rangeCached(start, end)) { me.cancelLoad(); if (me.synchronousRender || forceSynchronous) { me.onRangeFetched(null, start, end); } else { if (!me.renderTask) { me.renderTask = new Ext.util.DelayedTask(me.onRangeFetched, me, null, false); } // Render the new range very soon after this scroll event handler exits. // If scrolling very quickly, a few more scroll events may fire before // the render takes place. Each one will just *update* the arguments with which // the pending invocation is called. me.renderTask.delay(1, null, null, [null, start, end]); } } // Required range is not in the prefetch buffer. Ask the store to prefetch it. else { me.attemptLoad(start, end); } } }, <span id='Ext-grid-plugin-BufferedRenderer-method-onRangeFetched'> onRangeFetched: function(range, start, end, fromLockingPartner) { </span> var me = this, view = me.view, oldStart, rows = view.all, removeCount, increment = 0, calculatedTop = start * me.rowHeight, top, lockingPartner = me.lockingPartner; // View may have been destroyed since the DelayedTask was kicked off. if (view.isDestroyed) { return; } // If called as a callback from the Store, the range will be passed, if called from renderRange, it won't if (!range) { range = me.store.getRange(start, end); // Store may have been cleared since the DelayedTask was kicked off. if (!range) { return; } } // No overlapping nodes, we'll need to render the whole range if (start &gt; rows.endIndex || end &lt; rows.startIndex) { rows.clear(true); top = calculatedTop; } if (!rows.getCount()) { view.doAdd(range, start); } // Moved down the dataset (content moved up): remove rows from top, add to end else if (end &gt; rows.endIndex) { removeCount = Math.max(start - rows.startIndex, 0); // We only have to bump the table down by the height of removed rows if rows are not a standard size if (me.variableRowHeight) { increment = rows.item(rows.startIndex + removeCount, true).offsetTop; } rows.scroll(Ext.Array.slice(range, rows.endIndex + 1 - start), 1, removeCount, start, end); // We only have to bump the table down by the height of removed rows if rows are not a standard size if (me.variableRowHeight) { // Bump the table downwards by the height scraped off the top top = me.bodyTop + increment; } else { top = calculatedTop; } } // Moved up the dataset: remove rows from end, add to top else { removeCount = Math.max(rows.endIndex - end, 0); oldStart = rows.startIndex; rows.scroll(Ext.Array.slice(range, 0, rows.startIndex - start), -1, removeCount, start, end); // We only have to bump the table up by the height of top-added rows if rows are not a standard size if (me.variableRowHeight) { // Bump the table upwards by the height added to the top top = me.bodyTop - rows.item(oldStart, true).offsetTop; } else { top = calculatedTop; } } // The position property is the scrollTop value *at which the table was last correct* // MUST be set at table render/adjustment time me.position = me.scrollTop; // Position the table element. top will be undefined if fixed row height, so table position will // be calculated. if (view.positionBody) { me.setBodyTop(top, calculatedTop); } // Sync the other side to exactly the same range from the dataset. // Then ensure that we are still at exactly the same scroll position. if (lockingPartner &amp;&amp; !lockingPartner.disabled &amp;&amp; !fromLockingPartner) { lockingPartner.onRangeFetched(range, start, end, true); if (lockingPartner.scrollTop !== me.scrollTop) { lockingPartner.view.el.dom.scrollTop = me.scrollTop; } } }, <span id='Ext-grid-plugin-BufferedRenderer-method-setBodyTop'> setBodyTop: function(bodyTop, calculatedTop) { </span> var me = this, view = me.view, store = me.store, body = view.body.dom, delta; bodyTop = Math.floor(bodyTop); // See if there's a difference between the calculated top and the requested top. // This can be caused by non-standard row heights introduced by features or non-standard // data in rows. if (calculatedTop !== undefined) { delta = bodyTop - calculatedTop; bodyTop = calculatedTop; } body.style.position = 'absolute'; body.style.top = (me.bodyTop = bodyTop) + 'px'; // Adjust scrollTop to keep user-perceived position the same in the case of the calculated position not matching where the actual position was. // Set position property so that scroll handler does not fire in response. if (delta) { me.scrollTop = me.position = view.el.dom.scrollTop -= delta; } // If this is the last page, correct the scroll range to be just enough to fit. if (view.all.endIndex === (store.buffered ? store.getTotalCount() : store.getCount()) - 1) { me.stretchView(view, me.bodyTop + body.offsetHeight); } }, <span id='Ext-grid-plugin-BufferedRenderer-method-getFirstVisibleRowIndex'> getFirstVisibleRowIndex: function(startRow, endRow, viewportTop, viewportBottom) { </span> var me = this, view = me.view, rows = view.all, elements = rows.elements, clientHeight = view.el.dom.clientHeight, target, targetTop; // If variableRowHeight, we have to search for the first row who's bottom edge is within the viewport if (rows.getCount() &amp;&amp; me.variableRowHeight) { if (!arguments.length) { startRow = rows.startIndex; endRow = rows.endIndex; viewportTop = me.scrollTop; viewportBottom = viewportTop + clientHeight; // Teleported so that body is outside viewport: Use rowHeight calculation if (me.bodyTop &gt; viewportBottom || me.bodyTop + view.body.getHeight() &lt; viewportTop) { return Math.floor(me.scrollTop / me.rowHeight); } // In first, non-recursive call, begin targetting the most likely first row target = startRow + Math.min(me.numFromEdge + ((me.lastScrollDirection == -1) ? me.leadingBufferZone : me.trailingBufferZone), Math.floor((endRow - startRow) / 2)); } else { target = startRow + Math.floor((endRow - startRow) / 2); } targetTop = me.bodyTop + elements[target].offsetTop; // If target is entirely above the viewport, chop downwards if (targetTop + elements[target].offsetHeight &lt; viewportTop) { return me.getFirstVisibleRowIndex(target + 1, endRow, viewportTop, viewportBottom); } // Target is first if (targetTop &lt;= viewportTop) { return target; } // Not narrowed down to 1 yet; chop upwards else if (target !== startRow) { return me.getFirstVisibleRowIndex(startRow, target - 1, viewportTop, viewportBottom); } } return Math.floor(me.scrollTop / me.rowHeight); }, <span id='Ext-grid-plugin-BufferedRenderer-method-getLastVisibleRowIndex'> getLastVisibleRowIndex: function(startRow, endRow, viewportTop, viewportBottom) { </span> var me = this, view = me.view, rows = view.all, elements = rows.elements, clientHeight = view.el.dom.clientHeight, target, targetTop, targetBottom; // If variableRowHeight, we have to search for the first row who's bottom edge is below the bottom of the viewport if (rows.getCount() &amp;&amp; me.variableRowHeight) { if (!arguments.length) { startRow = rows.startIndex; endRow = rows.endIndex; viewportTop = me.scrollTop; viewportBottom = viewportTop + clientHeight; // Teleported so that body is outside viewport: Use rowHeight calculation if (me.bodyTop &gt; viewportBottom || me.bodyTop + view.body.getHeight() &lt; viewportTop) { return Math.floor(me.scrollTop / me.rowHeight) + Math.ceil(clientHeight / me.rowHeight); } // In first, non-recursive call, begin targetting the most likely last row target = endRow - Math.min(me.numFromEdge + ((me.lastScrollDirection == 1) ? me.leadingBufferZone : me.trailingBufferZone), Math.floor((endRow - startRow) / 2)); } else { target = startRow + Math.floor((endRow - startRow) / 2); } targetTop = me.bodyTop + elements[target].offsetTop; // If target is entirely below the viewport, chop upwards if (targetTop &gt; viewportBottom) { return me.getLastVisibleRowIndex(startRow, target - 1, viewportTop, viewportBottom); } targetBottom = targetTop + elements[target].offsetHeight; // Target is last if (targetBottom &gt;= viewportBottom) { return target; } // Not narrowed down to 1 yet; chop downwards else if (target !== endRow) { return me.getLastVisibleRowIndex(target + 1, endRow, viewportTop, viewportBottom); } } return me.getFirstVisibleRowIndex() + Math.ceil(clientHeight / me.rowHeight); }, <span id='Ext-grid-plugin-BufferedRenderer-method-getScrollHeight'> getScrollHeight: function() { </span> var me = this, view = me.view, store = me.store, doCalcHeight = !me.hasOwnProperty('rowHeight'), storeCount = me.store.getCount(); if (!storeCount) { return 0; } if (doCalcHeight) { if (view.all.getCount()) { me.rowHeight = Math.floor(view.body.getHeight() / view.all.getCount()); } } return this.scrollHeight = Math.floor((store.buffered ? store.getTotalCount() : store.getCount()) * me.rowHeight); }, <span id='Ext-grid-plugin-BufferedRenderer-method-attemptLoad'> attemptLoad: function(start, end) { </span> var me = this; if (me.scrollToLoadBuffer) { if (!me.loadTask) { me.loadTask = new Ext.util.DelayedTask(me.doAttemptLoad, me, []); } me.loadTask.delay(me.scrollToLoadBuffer, me.doAttemptLoad, me, [start, end]); } else { me.store.getRange(start, end, { callback: me.onRangeFetched, scope: me, fireEvent: false }); } }, <span id='Ext-grid-plugin-BufferedRenderer-method-cancelLoad'> cancelLoad: function() { </span> if (this.loadTask) { this.loadTask.cancel(); } }, <span id='Ext-grid-plugin-BufferedRenderer-method-doAttemptLoad'> doAttemptLoad: function(start, end) { </span> this.store.getRange(start, end, { callback: this.onRangeFetched, scope: this, fireEvent: false }); }, <span id='Ext-grid-plugin-BufferedRenderer-method-destroy'> destroy: function() { </span> var me = this, view = me.view; if (view &amp;&amp; view.el) { view.el.un('scroll', me.onViewScroll, me); // un does not understand the element options } // Remove listeners from old grid, view and store Ext.destroy(me.viewListeners, me.storeListeners, me.gridListeners); } }); </pre> </body> </html>
Carthage/Checkouts/Kingfisher/docs/docsets/Kingfisher.docset/Contents/Resources/Documents/Classes/ImageDownloader.html
thehung111/visearch-widget-swift
<!DOCTYPE html> <html lang="en"> <head> <title>ImageDownloader Class Reference</title> <link rel="stylesheet" type="text/css" href="../css/jazzy.css" /> <link rel="stylesheet" type="text/css" href="../css/highlight.css" /> <meta charset='utf-8'> <script src="../js/jquery.min.js" defer></script> <script src="../js/jazzy.js" defer></script> </head> <body> <a name="//apple_ref/swift/Class/ImageDownloader" class="dashAnchor"></a> <a title="ImageDownloader Class Reference"></a> <header> <div class="content-wrapper"> <p><a href="../index.html">Kingfisher Docs</a> (80% documented)</p> <p class="header-right"><a href="https://github.com/onevcat/Kingfisher"><img src="../img/gh.png"/>View on GitHub</a></p> <p class="header-right"><a href="dash-feed://http%3A%2F%2Fonevcat%2Egithub%2Eio%2FKingfisher%2Fdocsets%2FKingfisher%2Exml"><img src="../img/dash.png"/>Install in Dash</a></p> </div> </header> <div class="content-wrapper"> <p id="breadcrumbs"> <a href="../index.html">Kingfisher Reference</a> <img id="carat" src="../img/carat.png" /> ImageDownloader Class Reference </p> </div> <div class="content-wrapper"> <nav class="sidebar"> <ul class="nav-groups"> <li class="nav-group-name"> <a href="../Classes.html">Classes</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Classes/AnimatedImageView.html">AnimatedImageView</a> </li> <li class="nav-group-task"> <a href="../Classes/ImageCache.html">ImageCache</a> </li> <li class="nav-group-task"> <a href="../Classes/ImageCache/CacheCheckResult.html">– CacheCheckResult</a> </li> <li class="nav-group-task"> <a href="../Classes/ImageDownloader.html">ImageDownloader</a> </li> <li class="nav-group-task"> <a href="../Classes/ImagePrefetcher.html">ImagePrefetcher</a> </li> <li class="nav-group-task"> <a href="../Classes/Kingfisher.html">Kingfisher</a> </li> <li class="nav-group-task"> <a href="../Classes/KingfisherManager.html">KingfisherManager</a> </li> <li class="nav-group-task"> <a href="../Classes/RetrieveImageTask.html">RetrieveImageTask</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Global Variables.html">Global Variables</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v10Kingfisher33KingfisherDiskCacheCleanedHashKeySS">KingfisherDiskCacheCleanedHashKey</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v10Kingfisher21KingfisherErrorDomainSS">KingfisherErrorDomain</a> </li> <li class="nav-group-task"> <a href="../Global Variables.html#/s:v10Kingfisher28KingfisherErrorStatusCodeKeySS">KingfisherErrorStatusCodeKey</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Enums.html">Enums</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Enums/CacheType.html">CacheType</a> </li> <li class="nav-group-task"> <a href="../Enums/ContentMode.html">ContentMode</a> </li> <li class="nav-group-task"> <a href="../Enums/ImageProcessItem.html">ImageProcessItem</a> </li> <li class="nav-group-task"> <a href="../Enums/ImageTransition.html">ImageTransition</a> </li> <li class="nav-group-task"> <a href="../Enums/ImageTransition.html">ImageTransition</a> </li> <li class="nav-group-task"> <a href="../Enums/IndicatorType.html">IndicatorType</a> </li> <li class="nav-group-task"> <a href="../Enums/KingfisherError.html">KingfisherError</a> </li> <li class="nav-group-task"> <a href="../Enums/KingfisherOptionsInfoItem.html">KingfisherOptionsInfoItem</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Extensions.html">Extensions</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Extensions/CGSize.html">CGSize</a> </li> <li class="nav-group-task"> <a href="../Extensions/Collection.html">Collection</a> </li> <li class="nav-group-task"> <a href="../Extensions/Data.html">Data</a> </li> <li class="nav-group-task"> <a href="../Extensions/Image.html">Image</a> </li> <li class="nav-group-task"> <a href="../Extensions/ImageView.html">ImageView</a> </li> <li class="nav-group-task"> <a href="../Extensions/Notification.html">Notification</a> </li> <li class="nav-group-task"> <a href="../Extensions/String.html">String</a> </li> <li class="nav-group-task"> <a href="../Extensions/UIButton.html">UIButton</a> </li> <li class="nav-group-task"> <a href="../Extensions/URL.html">URL</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Functions.html">Functions</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Functions.html#/s:F10Kingfisheroi2ggFTPS_14ImageProcessor_PS0___PS0__">&gt;&gt;(_:_:)</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Protocols.html">Protocols</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Protocols/AuthenticationChallengeResponsable.html">AuthenticationChallengeResponsable</a> </li> <li class="nav-group-task"> <a href="../Protocols/CIImageProcessor.html">CIImageProcessor</a> </li> <li class="nav-group-task"> <a href="../Protocols/CacheSerializer.html">CacheSerializer</a> </li> <li class="nav-group-task"> <a href="../Protocols/ImageDownloadRequestModifier.html">ImageDownloadRequestModifier</a> </li> <li class="nav-group-task"> <a href="../Protocols/ImageDownloaderDelegate.html">ImageDownloaderDelegate</a> </li> <li class="nav-group-task"> <a href="../Protocols/ImageProcessor.html">ImageProcessor</a> </li> <li class="nav-group-task"> <a href="../Protocols/Indicator.html">Indicator</a> </li> <li class="nav-group-task"> <a href="../Protocols/KingfisherCompatible.html">KingfisherCompatible</a> </li> <li class="nav-group-task"> <a href="../Protocols/Resource.html">Resource</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Structs.html">Structs</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Structs/AnyModifier.html">AnyModifier</a> </li> <li class="nav-group-task"> <a href="../Structs/BlackWhiteProcessor.html">BlackWhiteProcessor</a> </li> <li class="nav-group-task"> <a href="../Structs/BlurImageProcessor.html">BlurImageProcessor</a> </li> <li class="nav-group-task"> <a href="../Structs.html#/s:V10Kingfisher11CGSizeProxy">CGSizeProxy</a> </li> <li class="nav-group-task"> <a href="../Structs/ColorControlsProcessor.html">ColorControlsProcessor</a> </li> <li class="nav-group-task"> <a href="../Structs/CroppingImageProcessor.html">CroppingImageProcessor</a> </li> <li class="nav-group-task"> <a href="../Structs.html#/s:V10Kingfisher9DataProxy">DataProxy</a> </li> <li class="nav-group-task"> <a href="../Structs/DefaultCacheSerializer.html">DefaultCacheSerializer</a> </li> <li class="nav-group-task"> <a href="../Structs/DefaultImageProcessor.html">DefaultImageProcessor</a> </li> <li class="nav-group-task"> <a href="../Structs/Filter.html">Filter</a> </li> <li class="nav-group-task"> <a href="../Structs/ImageResource.html">ImageResource</a> </li> <li class="nav-group-task"> <a href="../Structs/OverlayImageProcessor.html">OverlayImageProcessor</a> </li> <li class="nav-group-task"> <a href="../Structs/ResizingImageProcessor.html">ResizingImageProcessor</a> </li> <li class="nav-group-task"> <a href="../Structs/RetrieveImageDownloadTask.html">RetrieveImageDownloadTask</a> </li> <li class="nav-group-task"> <a href="../Structs/RoundCornerImageProcessor.html">RoundCornerImageProcessor</a> </li> <li class="nav-group-task"> <a href="../Structs.html#/s:V10Kingfisher11StringProxy">StringProxy</a> </li> <li class="nav-group-task"> <a href="../Structs/TintImageProcessor.html">TintImageProcessor</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Typealiases.html">Typealiases</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Typealiases.html#/s:10Kingfisher32ImageDownloaderCompletionHandler">ImageDownloaderCompletionHandler</a> </li> <li class="nav-group-task"> <a href="../Typealiases.html#/s:10Kingfisher28ImageDownloaderProgressBlock">ImageDownloaderProgressBlock</a> </li> <li class="nav-group-task"> <a href="../Typealiases.html#/s:10Kingfisher21KingfisherOptionsInfo">KingfisherOptionsInfo</a> </li> <li class="nav-group-task"> <a href="../Typealiases.html#/s:10Kingfisher27PrefetcherCompletionHandler">PrefetcherCompletionHandler</a> </li> <li class="nav-group-task"> <a href="../Typealiases.html#/s:10Kingfisher23PrefetcherProgressBlock">PrefetcherProgressBlock</a> </li> <li class="nav-group-task"> <a href="../Typealiases.html#/s:10Kingfisher21RetrieveImageDiskTask">RetrieveImageDiskTask</a> </li> <li class="nav-group-task"> <a href="../Typealiases.html#/s:10Kingfisher11Transformer">Transformer</a> </li> </ul> </li> </ul> </nav> <article class="main-content"> <section> <section class="section"> <h1>ImageDownloader</h1> <div class="declaration"> <div class="language"> <pre class="highlight"><code><span class="n">open</span> <span class="kd">class</span> <span class="kt">ImageDownloader</span></code></pre> </div> </div> <p><code>ImageDownloader</code> represents a downloading manager for requesting the image with a URL from server.</p> </section> <section class="section task-group-section"> <div class="task-group"> <div class="task-name-container"> <a name="/Public%20property"></a> <a name="//apple_ref/swift/Section/Public property" class="dashAnchor"></a> <a href="#/Public%20property"> <h3 class="section-name">Public property</h3> </a> </div> <ul> <li class="item"> <div> <code> <a name="/s:vC10Kingfisher15ImageDownloader15downloadTimeoutSd"></a> <a name="//apple_ref/swift/Property/downloadTimeout" class="dashAnchor"></a> <a class="token" href="#/s:vC10Kingfisher15ImageDownloader15downloadTimeoutSd">downloadTimeout</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>The duration before the download is timeout. Default is 15 seconds.</p> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight"><code><span class="n">open</span> <span class="k">var</span> <span class="nv">downloadTimeout</span><span class="p">:</span> <span class="kt">TimeInterval</span> <span class="o">=</span> <span class="mf">15.0</span></code></pre> </div> </div> <div class="slightly-smaller"> <a href="https://github.com/onevcat/Kingfisher/tree/3.6.2/Sources/ImageDownloader.swift#L181">Show on GitHub</a> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:vC10Kingfisher15ImageDownloader12trustedHostsGSqGVs3SetSS__"></a> <a name="//apple_ref/swift/Property/trustedHosts" class="dashAnchor"></a> <a class="token" href="#/s:vC10Kingfisher15ImageDownloader12trustedHostsGSqGVs3SetSS__">trustedHosts</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>A set of trusted hosts when receiving server trust challenges. A challenge with host name contained in this set will be ignored. You can use this set to specify the self-signed site. It only will be used if you don&rsquo;t specify the <code><a href="../Classes/ImageDownloader.html#/s:vC10Kingfisher15ImageDownloader32authenticationChallengeResponderXwGSqPS_34AuthenticationChallengeResponsable__">authenticationChallengeResponder</a></code>. If <code><a href="../Classes/ImageDownloader.html#/s:vC10Kingfisher15ImageDownloader32authenticationChallengeResponderXwGSqPS_34AuthenticationChallengeResponsable__">authenticationChallengeResponder</a></code> is set, this property will be ignored and the implemention of <code><a href="../Classes/ImageDownloader.html#/s:vC10Kingfisher15ImageDownloader32authenticationChallengeResponderXwGSqPS_34AuthenticationChallengeResponsable__">authenticationChallengeResponder</a></code> will be used instead.</p> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight"><code><span class="n">open</span> <span class="k">var</span> <span class="nv">trustedHosts</span><span class="p">:</span> <span class="kt">Set</span><span class="o">&lt;</span><span class="kt">String</span><span class="o">&gt;</span><span class="p">?</span></code></pre> </div> </div> <div class="slightly-smaller"> <a href="https://github.com/onevcat/Kingfisher/tree/3.6.2/Sources/ImageDownloader.swift#L186">Show on GitHub</a> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:vC10Kingfisher15ImageDownloader20sessionConfigurationCSo23URLSessionConfiguration"></a> <a name="//apple_ref/swift/Property/sessionConfiguration" class="dashAnchor"></a> <a class="token" href="#/s:vC10Kingfisher15ImageDownloader20sessionConfigurationCSo23URLSessionConfiguration">sessionConfiguration</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>Use this to set supply a configuration for the downloader. By default, NSURLSessionConfiguration.ephemeralSessionConfiguration() will be used. You could change the configuration before a downloaing task starts. A configuration without persistent storage for caches is requsted for downloader working correctly.</p> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight"><code><span class="n">open</span> <span class="k">var</span> <span class="nv">sessionConfiguration</span> <span class="o">=</span> <span class="kt">URLSessionConfiguration</span><span class="o">.</span><span class="n">ephemeral</span></code></pre> </div> </div> <div class="slightly-smaller"> <a href="https://github.com/onevcat/Kingfisher/tree/3.6.2/Sources/ImageDownloader.swift#L190-L194">Show on GitHub</a> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:vC10Kingfisher15ImageDownloader19requestsUsePipelingSb"></a> <a name="//apple_ref/swift/Property/requestsUsePipeling" class="dashAnchor"></a> <a class="token" href="#/s:vC10Kingfisher15ImageDownloader19requestsUsePipelingSb">requestsUsePipeling</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>Whether the download requests should use pipeling or not. Default is false.</p> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight"><code><span class="n">open</span> <span class="k">var</span> <span class="nv">requestsUsePipeling</span> <span class="o">=</span> <span class="kc">false</span></code></pre> </div> </div> <div class="slightly-smaller"> <a href="https://github.com/onevcat/Kingfisher/tree/3.6.2/Sources/ImageDownloader.swift#L197">Show on GitHub</a> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:vC10Kingfisher15ImageDownloader8delegateXwGSqPS_23ImageDownloaderDelegate__"></a> <a name="//apple_ref/swift/Property/delegate" class="dashAnchor"></a> <a class="token" href="#/s:vC10Kingfisher15ImageDownloader8delegateXwGSqPS_23ImageDownloaderDelegate__">delegate</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>Delegate of this <code>ImageDownloader</code> object. See <code><a href="../Protocols/ImageDownloaderDelegate.html">ImageDownloaderDelegate</a></code> protocol for more.</p> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight"><code><span class="n">open</span> <span class="k">weak</span> <span class="k">var</span> <span class="nv">delegate</span><span class="p">:</span> <span class="kt"><a href="../Protocols/ImageDownloaderDelegate.html">ImageDownloaderDelegate</a></span><span class="p">?</span></code></pre> </div> </div> <div class="slightly-smaller"> <a href="https://github.com/onevcat/Kingfisher/tree/3.6.2/Sources/ImageDownloader.swift#L203">Show on GitHub</a> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:vC10Kingfisher15ImageDownloader32authenticationChallengeResponderXwGSqPS_34AuthenticationChallengeResponsable__"></a> <a name="//apple_ref/swift/Property/authenticationChallengeResponder" class="dashAnchor"></a> <a class="token" href="#/s:vC10Kingfisher15ImageDownloader32authenticationChallengeResponderXwGSqPS_34AuthenticationChallengeResponsable__">authenticationChallengeResponder</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>A responder for authentication challenge. Downloader will forward the received authentication challenge for the downloading session to this responder.</p> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight"><code><span class="n">open</span> <span class="k">weak</span> <span class="k">var</span> <span class="nv">authenticationChallengeResponder</span><span class="p">:</span> <span class="kt"><a href="../Protocols/AuthenticationChallengeResponsable.html">AuthenticationChallengeResponsable</a></span><span class="p">?</span></code></pre> </div> </div> <div class="slightly-smaller"> <a href="https://github.com/onevcat/Kingfisher/tree/3.6.2/Sources/ImageDownloader.swift#L207">Show on GitHub</a> </div> </section> </div> </li> </ul> </div> <div class="task-group"> <div class="task-name-container"> <a name="/Public%20method"></a> <a name="//apple_ref/swift/Section/Public method" class="dashAnchor"></a> <a href="#/Public%20method"> <h3 class="section-name">Public method</h3> </a> </div> <ul> <li class="item"> <div> <code> <a name="/s:ZvC10Kingfisher15ImageDownloader7defaultS0_"></a> <a name="//apple_ref/swift/Variable/default" class="dashAnchor"></a> <a class="token" href="#/s:ZvC10Kingfisher15ImageDownloader7defaultS0_">default</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>The default downloader.</p> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight"><code><span class="kd">public</span> <span class="kd">static</span> <span class="kd">let</span> <span class="err">`</span><span class="k">default</span><span class="err">`</span> <span class="o">=</span> <span class="kt">ImageDownloader</span><span class="p">(</span><span class="nv">name</span><span class="p">:</span> <span class="s">"default"</span><span class="p">)</span></code></pre> </div> </div> <div class="slightly-smaller"> <a href="https://github.com/onevcat/Kingfisher/tree/3.6.2/Sources/ImageDownloader.swift#L219">Show on GitHub</a> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:FC10Kingfisher15ImageDownloadercFT4nameSS_S0_"></a> <a name="//apple_ref/swift/Method/init(name:)" class="dashAnchor"></a> <a class="token" href="#/s:FC10Kingfisher15ImageDownloadercFT4nameSS_S0_">init(name:)</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>Init a downloader with name.</p> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight"><code><span class="kd">public</span> <span class="nf">init</span><span class="p">(</span><span class="nv">name</span><span class="p">:</span> <span class="kt">String</span><span class="p">)</span></code></pre> </div> </div> <div> <h4>Parameters</h4> <table class="graybox"> <tbody> <tr> <td> <code> <em>name</em> </code> </td> <td> <div> <p>The name for the downloader. It should not be empty.</p> </div> </td> </tr> </tbody> </table> </div> <div> <h4>Return Value</h4> <p>The downloader object.</p> </div> <div class="slightly-smaller"> <a href="https://github.com/onevcat/Kingfisher/tree/3.6.2/Sources/ImageDownloader.swift#L228-L241">Show on GitHub</a> </div> </section> </div> </li> <li class="item"> <div> <code> <a name="/s:FC10Kingfisher15ImageDownloader13downloadImageFT4withV10Foundation3URL7optionsGSqGSaOS_25KingfisherOptionsInfoItem__13progressBlockGSqFTVs5Int64S4__T__17completionHandlerGSqFTGSqCSo7UIImage_GSqCSo7NSError_GSqS2__GSqVS1_4Data__T___GSqVS_25RetrieveImageDownloadTask_"></a> <a name="//apple_ref/swift/Method/downloadImage(with:options:progressBlock:completionHandler:)" class="dashAnchor"></a> <a class="token" href="#/s:FC10Kingfisher15ImageDownloader13downloadImageFT4withV10Foundation3URL7optionsGSqGSaOS_25KingfisherOptionsInfoItem__13progressBlockGSqFTVs5Int64S4__T__17completionHandlerGSqFTGSqCSo7UIImage_GSqCSo7NSError_GSqS2__GSqVS1_4Data__T___GSqVS_25RetrieveImageDownloadTask_">downloadImage(with:options:progressBlock:completionHandler:)</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>Download an image with a URL and option.</p> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight"><code><span class="n">open</span> <span class="kd">func</span> <span class="nf">downloadImage</span><span class="p">(</span><span class="n">with</span> <span class="nv">url</span><span class="p">:</span> <span class="kt">URL</span><span class="p">,</span> <span class="nv">options</span><span class="p">:</span> <span class="kt"><a href="../Typealiases.html#/s:10Kingfisher21KingfisherOptionsInfo">KingfisherOptionsInfo</a></span><span class="p">?</span> <span class="o">=</span> <span class="kc">nil</span><span class="p">,</span> <span class="nv">progressBlock</span><span class="p">:</span> <span class="kt"><a href="../Typealiases.html#/s:10Kingfisher28ImageDownloaderProgressBlock">ImageDownloaderProgressBlock</a></span><span class="p">?</span> <span class="o">=</span> <span class="kc">nil</span><span class="p">,</span> <span class="nv">completionHandler</span><span class="p">:</span> <span class="kt"><a href="../Typealiases.html#/s:10Kingfisher32ImageDownloaderCompletionHandler">ImageDownloaderCompletionHandler</a></span><span class="p">?</span> <span class="o">=</span> <span class="kc">nil</span><span class="p">)</span> <span class="o">-&gt;</span> <span class="kt"><a href="../Structs/RetrieveImageDownloadTask.html">RetrieveImageDownloadTask</a></span><span class="p">?</span></code></pre> </div> </div> <div> <h4>Parameters</h4> <table class="graybox"> <tbody> <tr> <td> <code> <em>url</em> </code> </td> <td> <div> <p>Target URL.</p> </div> </td> </tr> <tr> <td> <code> <em>options</em> </code> </td> <td> <div> <p>The options could control download behavior. See <code>KingfisherOptionsInfo</code>.</p> </div> </td> </tr> <tr> <td> <code> <em>progressBlock</em> </code> </td> <td> <div> <p>Called when the download progress updated.</p> </div> </td> </tr> <tr> <td> <code> <em>completionHandler</em> </code> </td> <td> <div> <p>Called when the download progress finishes.</p> </div> </td> </tr> </tbody> </table> </div> <div> <h4>Return Value</h4> <p>A downloading task. You could call <code>cancel</code> on it to stop the downloading process.</p> </div> <div class="slightly-smaller"> <a href="https://github.com/onevcat/Kingfisher/tree/3.6.2/Sources/ImageDownloader.swift#L260-L270">Show on GitHub</a> </div> </section> </div> </li> </ul> </div> </section> </section> <section id="footer"> <p>&copy; 2017 <a class="link" href="https://onevcat.com" target="_blank" rel="external">Wei Wang</a>. All rights reserved. (Last updated: 2017-04-11)</p> <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.7.5</a>, a <a class="link" href="http://realm.io" target="_blank" rel="external">Realm</a> project.</p> </section> </article> </div> </body> </div> </html>
whirlwind/conf/app_template/application/views/site/index.html
trendrr/whirlwind
# -*- coding: utf-8 -*- <%inherit file="/layouts/content.html" /> <%def name="body()"> <div id="page-header"> <div class="title"> Welcome to Whirlwind </div> <div class="subtitle"> You've successfully setup a new whirlwind app! </div> </div> <div id="page-content"> <div class="body"> <a href="http://github.com/trendrr/whirlwind" target="new">Check out our docs on github.com to get started</a> </div> </div> </%def>
rawdata/utf8_lawstat/version2/01237/index.html
czchen/laweasyread-data
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/01237/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:00:41 GMT --> <!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack --> <head> <title>Index of /lghtml/lawstat/version2/01237</title> </head> <body> <h1>Index of /lghtml/lawstat/version2/01237</h1> <ul><li><a href="../index.html"> Parent Directory</a></li> <li><a href="01237100102500.html"> 01237100102500.htm</a></li> <li><a href="0123785123100.html"> 0123785123100.htm</a></li> <li><a href="0123791042500.html"> 0123791042500.htm</a></li> <li><a href="0123791051700.html"> 0123791051700.htm</a></li> <li><a href="0123794012100.html"> 0123794012100.htm</a></li> <li><a href="0123798122200.html"> 0123798122200.htm</a></li> </ul> </body> <!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/01237/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:00:41 GMT --> <!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack --> </html>
contents/style/boostrapv3/css/custom.css
wuzhi1023/API-individual
.indented{ padding-left: 30pt; } h3{ padding-top: 10pt; padding-bottom: 0pt; } .subtitle{ padding-top: 0pt; padding-bottom: 0pt; }
ext/c++/thirdpart/c++/boost/libs/geometry/doc/doxy/doxygen_output/html_by_doxygen/classboost_1_1geometry_1_1strategy_1_1side_1_1side__by__triangle-members.html
yinchunlong/abelkhan-1
<!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"> &nbsp;&nbsp; </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.7.6.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <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&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div 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_1strategy.html">strategy</a> </li> <li class="navelem"><a class="el" href="namespaceboost_1_1geometry_1_1strategy_1_1side.html">side</a> </li> <li class="navelem"><a class="el" href="classboost_1_1geometry_1_1strategy_1_1side_1_1side__by__triangle.html">side_by_triangle</a> </li> </ul> </div> </div> <div class="header"> <div class="headertitle"> <div class="title">boost::geometry::strategy::side::side_by_triangle&lt; CalculationType &gt; Member List</div> </div> </div><!--header--> <div class="contents"> This is the complete list of members for <a class="el" href="classboost_1_1geometry_1_1strategy_1_1side_1_1side__by__triangle.html">boost::geometry::strategy::side::side_by_triangle&lt; CalculationType &gt;</a>, including all inherited members.<table> <tr class="memlist"><td><a class="el" href="classboost_1_1geometry_1_1strategy_1_1side_1_1side__by__triangle.html#a19703035da3a0fe85963fd33bbf55055">apply</a>(P1 const &amp;p1, P2 const &amp;p2, P const &amp;p)</td><td><a class="el" href="classboost_1_1geometry_1_1strategy_1_1side_1_1side__by__triangle.html">boost::geometry::strategy::side::side_by_triangle&lt; CalculationType &gt;</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="el" href="classboost_1_1geometry_1_1strategy_1_1side_1_1side__by__triangle.html#a55b8d0435b33f0fa86772ca27003ac53">side_value</a>(P1 const &amp;p1, P2 const &amp;p2, P const &amp;p, EpsPolicy &amp;eps_policy)</td><td><a class="el" href="classboost_1_1geometry_1_1strategy_1_1side_1_1side__by__triangle.html">boost::geometry::strategy::side::side_by_triangle&lt; CalculationType &gt;</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="el" href="classboost_1_1geometry_1_1strategy_1_1side_1_1side__by__triangle.html#a1a1656c066b9ffdc9301ac81e739d826">side_value</a>(P1 const &amp;p1, P2 const &amp;p2, P const &amp;p)</td><td><a class="el" href="classboost_1_1geometry_1_1strategy_1_1side_1_1side__by__triangle.html">boost::geometry::strategy::side::side_by_triangle&lt; CalculationType &gt;</a></td><td><code> [static]</code></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 &copy; 2007-2011 Barend Gehrels, Amsterdam, the Netherlands<br> Copyright &copy; 2008-2011 Bruno Lalande, Paris, France<br> Copyright &copy; 2009-2010 Mateusz Loskot, London, UK<br> </small> </td> </tr> </tbody> </table> <address style="text-align: right;"><small> Documentation is generated by&nbsp;<a href="http://www.doxygen.org/index.html">Doxygen</a> </small></address> </body> </html>
admin/meta-box/css/color.css
filippoferri/oct042014
.rwmb-color-picker { display: none; /* Hidden by default */ z-index: 100; background: rgb(238, 238, 238); border: 1px solid rgb(204, 204, 204); position: absolute; }
playground/js/three.js-r115/docs/api/zh/materials/RawShaderMaterial.html
easz/rt_geometry
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <base href="../../../" /> <script src="list.js"></script> <script src="page.js"></script> <link type="text/css" rel="stylesheet" href="page.css" /> </head> <body> [page:Material] &rarr; [page:ShaderMaterial] &rarr; <h1>原始着色器材质([name])</h1> <p class="desc"> 此类的工作方式与[page:ShaderMaterial]类似,不同之处在于内置的uniforms和attributes的定义不会自动添加到GLSL shader代码中。 </p> <h2>代码示例</h2> <code> var material = new THREE.RawShaderMaterial( { uniforms: { time: { value: 1.0 } }, vertexShader: document.getElementById( 'vertexShader' ).textContent, fragmentShader: document.getElementById( 'fragmentShader' ).textContent, } ); </code> <h2>例子</h2> <p> [example:webgl_buffergeometry_rawshader WebGL / buffergeometry / rawshader]<br /> [example:webgl_buffergeometry_instancing_billboards WebGL / buffergeometry / instancing / billboards]<br /> [example:webgl_buffergeometry_instancing_dynamic WebGL / buffergeometry / instancing / dynamic]<br /> [example:webgl_buffergeometry_instancing_interleaved_dynamic WebGL / buffergeometry / instancing / interleaved / dynamic]<br /> [example:webgl_buffergeometry_instancing WebGL / buffergeometry / instancing]<br /> [example:webgl_interactive_instances_gpu WebGL / interactive / instances /gpu]<br /> [example:webgl_raymarching_reflect WebGL / raymarching / reflect] </p> <h2>构造函数(Constructor)</h2> <h3>[name]( [param:Object parameters] )</h3> <p> [page:Object parameters] - (可选)用于定义材质外观的对象,具有一个或多个属性。 材质的任何属性都可以从此处传入(包括从[page:Material] 和 [page:ShaderMaterial]继承的任何属性)。<br /><br /> </p> <h2>属性(Properties)</h2> <p>共有属性请参见其基类[page:Material]和[page:ShaderMaterial]。</p> <h2>方法(Methods)</h2> <p>共有方法请参见其基类[page:Material]和[page:ShaderMaterial]。</p> <h2>源码(Source)</h2> <p> [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] </p> </body> </html>
_layouts/home.html
chitsaou/chitsaou.github.io
{% include header.html %} {% if site.layout == 'stacked' %} <div class="container-lg py-6 p-responsive text-center"> {% include masthead.html metadata=true %} <div {% if site.style == 'dark' %}class="text-white"{% endif %}> {{ content }} </div> <div class="my-6"> {% include projects.html %} </div> {% if site.topics %} <div class="my-6"> {% include interests.html %} </div> {% endif %} {% unless posts_total == 0 %} <div class="my-6"> {% include thoughts.html %} </div> {% endunless %} </div> {% else %} <div class="d-md-flex height-full {% unless site.style == 'dark' %}border-md-bottom{% endunless %}"> <div class="flex-self-stretch {% if site.style == 'dark' %}bg-gray-dark{% else %}border-md-right border-gray-light bg-white{% endif %} col-md-5 col-lg-4 col-xl-3 px-4 px-md-6 px-lg-7 py-6"> {% include masthead.html metadata=true %} </div> <div class="col-md-7 col-lg-8 col-xl-9 px-4 py-6 px-lg-7 border-top border-md-top-0 bg-gray-light" {% if site.style == 'dark' %}style="background-color: #2f363d !important"{% endif %}> <div class="mx-auto" style="max-width: 900px;"> {% unless content == "" %} <div class="f4 {% if site.style == 'dark' %}text-white{% endif %} mb-6"> {{ content }} </div> {% endunless %} {% include projects.html %} {% if site.topics %} {% include interests.html %} {% endif %} {% unless posts_total == 0 %} {% include thoughts.html %} {% endunless %} </div> </div> </div> {% endif %} {% include footer.html %}
original_sources/boost_1_59_0/libs/test/doc/html/boost_test/utf_reference/testing_tool_ref/assertion_boost_level_eq.html
TyRoXx/cdm
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>BOOST_&lt;level&gt;_EQUAL</title> <link rel="stylesheet" href="../../../boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../../index.html" title="Boost.Test"> <link rel="up" href="../testing_tool_ref.html" title="Reference API for writing tests"> <link rel="prev" href="assertion_boost_level_bitwise_eq.html" title="BOOST_&lt;level&gt;_BITWISE_EQUAL"> <link rel="next" href="assertion_boost_level_eq_collections.html" title="BOOST_&lt;level&gt;_EQUAL_COLLECTIONS"> </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="assertion_boost_level_bitwise_eq.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../testing_tool_ref.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="assertion_boost_level_eq_collections.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_test.utf_reference.testing_tool_ref.assertion_boost_level_eq"></a><a class="link" href="assertion_boost_level_eq.html" title="BOOST_&lt;level&gt;_EQUAL"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special">&lt;</span><span class="identifier">level</span><span class="special">&gt;</span><span class="identifier">_EQUAL</span></code></a> </h4></div></div></div> <pre class="programlisting"><span class="identifier">BOOST_WARN_EQUAL</span><span class="special">(</span><span class="identifier">left</span><span class="special">,</span> <span class="identifier">right</span><span class="special">);</span> <span class="identifier">BOOST_CHECK_EQUAL</span><span class="special">(</span><span class="identifier">left</span><span class="special">,</span> <span class="identifier">right</span><span class="special">);</span> <span class="identifier">BOOST_REQUIRE_EQUAL</span><span class="special">(</span><span class="identifier">left</span><span class="special">,</span> <span class="identifier">right</span><span class="special">);</span> </pre> <p> Check performed by these tools is the same as the one performed by <code class="computeroutput"><a class="link" href="assertion_boost_level.html" title="BOOST_&lt;level&gt;"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special">&lt;</span><span class="identifier">level</span><span class="special">&gt;</span></code></a><span class="special">(</span><span class="identifier">left</span> <span class="special">==</span> <span class="identifier">right</span><span class="special">)</span></code>. The difference is that the mismatched values are reported as well. </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> It is bad idea to use these tools to compare floating point values. Use <a class="link" href="assertion_boost_level_close.html" title="BOOST_&lt;level&gt;_CLOSE"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special">&lt;</span><span class="identifier">level</span><span class="special">&gt;</span><span class="identifier">_CLOSE</span></code></a> or <a class="link" href="assertion_boost_level_close_fraction.html" title="BOOST_&lt;level&gt;_CLOSE_FRACTION"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special">&lt;</span><span class="identifier">level</span><span class="special">&gt;</span><span class="identifier">_CLOSE_FRACTION</span></code></a> tools instead. </p></td></tr> </table></div> <h6> <a name="boost_test.utf_reference.testing_tool_ref.assertion_boost_level_eq.h0"></a> <span class="phrase"><a name="boost_test.utf_reference.testing_tool_ref.assertion_boost_level_eq.example_descr"></a></span><a class="link" href="assertion_boost_level_eq.html#boost_test.utf_reference.testing_tool_ref.assertion_boost_level_eq.example_descr">Example: BOOST_&lt;level&gt;_EQUAL usage</a> </h6> <div class="informaltable"><table class="table"> <colgroup><col></colgroup> <thead><tr><th> <p> Code </p> </th></tr></thead> <tbody><tr><td> <pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="preprocessor">#define</span> <span class="identifier">BOOST_TEST_MODULE</span> <span class="identifier">example</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">test</span><span class="special">/</span><span class="identifier">included</span><span class="special">/</span><span class="identifier">unit_test</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="identifier">BOOST_AUTO_TEST_CASE</span><span class="special">(</span> <span class="identifier">test</span> <span class="special">)</span> <span class="special">{</span> <span class="keyword">int</span> <span class="identifier">i</span> <span class="special">=</span> <span class="number">2</span><span class="special">;</span> <span class="keyword">int</span> <span class="identifier">j</span> <span class="special">=</span> <span class="number">1</span><span class="special">;</span> <span class="identifier">BOOST_REQUIRE_EQUAL</span><span class="special">(</span> <span class="identifier">i</span><span class="special">,</span> <span class="identifier">j</span> <span class="special">);</span> <span class="special">}</span> </pre> </td></tr></tbody> </table></div> <div class="informaltable"><table class="table"> <colgroup><col></colgroup> <thead><tr><th> <p> Output </p> </th></tr></thead> <tbody><tr><td> <pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="special">&gt;</span> <span class="identifier">example</span> <span class="identifier">Running</span> <span class="number">1</span> <span class="identifier">test</span> <span class="keyword">case</span><span class="special">...</span> <span class="identifier">test</span><span class="special">.</span><span class="identifier">cpp</span><span class="special">(</span><span class="number">10</span><span class="special">):</span> <span class="identifier">fatal</span> <span class="identifier">error</span> <span class="identifier">in</span> <span class="string">"test"</span><span class="special">:</span> <span class="identifier">critical</span> <span class="identifier">check</span> <span class="identifier">i</span> <span class="special">==</span> <span class="identifier">j</span> <span class="identifier">has</span> <span class="identifier">failed</span> <span class="special">[</span><span class="number">2</span> <span class="special">!=</span> <span class="number">1</span><span class="special">]</span> <span class="special">***</span> <span class="number">1</span> <span class="identifier">failures</span> <span class="identifier">is</span> <span class="identifier">detected</span> <span class="identifier">in</span> <span class="identifier">test</span> <span class="identifier">suite</span> <span class="string">"example"</span> </pre> </td></tr></tbody> </table></div> <p> See also: </p> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <a class="link" href="assertion_boost_level.html" title="BOOST_&lt;level&gt;"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special">&lt;</span><span class="identifier">level</span><span class="special">&gt;</span></code></a> </li> <li class="listitem"> <a class="link" href="assertion_boost_level_close.html" title="BOOST_&lt;level&gt;_CLOSE"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special">&lt;</span><span class="identifier">level</span><span class="special">&gt;</span><span class="identifier">_CLOSE</span></code></a> </li> <li class="listitem"> <a class="link" href="assertion_boost_level_ne.html" title="BOOST_&lt;level&gt;_NE"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special">&lt;</span><span class="identifier">level</span><span class="special">&gt;</span><span class="identifier">_NE</span></code></a> </li> <li class="listitem"> <a class="link" href="assertion_boost_level_eq_collections.html" title="BOOST_&lt;level&gt;_EQUAL_COLLECTIONS"><code class="computeroutput"><span class="identifier">BOOST_</span><span class="special">&lt;</span><span class="identifier">level</span><span class="special">&gt;</span><span class="identifier">_EQUAL_COLLECTIONS</span></code></a> </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 &#169; 2001-2015 Boost.Test team<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="assertion_boost_level_bitwise_eq.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../testing_tool_ref.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="assertion_boost_level_eq_collections.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
third_party/asio/doc/asio/reference/seq_packet_socket_service/is_open.html
otgaard/zap
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>seq_packet_socket_service::is_open</title> <link rel="stylesheet" href="../../../boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../index.html" title="Asio"> <link rel="up" href="../seq_packet_socket_service.html" title="seq_packet_socket_service"> <link rel="prev" href="io_control.html" title="seq_packet_socket_service::io_control"> <link rel="next" href="local_endpoint.html" title="seq_packet_socket_service::local_endpoint"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr><td valign="top"><img alt="asio C++ library" width="250" height="60" src="../../../asio.png"></td></tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="io_control.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../seq_packet_socket_service.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="local_endpoint.html"><img src="../../../next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="asio.reference.seq_packet_socket_service.is_open"></a><a class="link" href="is_open.html" title="seq_packet_socket_service::is_open">seq_packet_socket_service::is_open</a> </h4></div></div></div> <p> <a class="indexterm" name="idp169509440"></a> Determine whether the socket is open. </p> <pre class="programlisting"><span class="keyword">bool</span> <span class="identifier">is_open</span><span class="special">(</span> <span class="keyword">const</span> <span class="identifier">implementation_type</span> <span class="special">&amp;</span> <span class="identifier">impl</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2015 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="io_control.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../seq_packet_socket_service.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="local_endpoint.html"><img src="../../../next.png" alt="Next"></a> </div> </body> </html>
org.mwc.asset.comms/docs/docs/engine/org/restlet/engine/class-use/Helper.html
debrief/debrief
<!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_14) on Wed Nov 03 17:45:50 GMT+01:00 2010 --> <TITLE> Uses of Class org.restlet.engine.Helper (Restlet Engine 2.0.2 - JSE) </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.restlet.engine.Helper (Restlet Engine 2.0.2 - JSE)"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/restlet/engine/Helper.html" title="class in org.restlet.engine"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/restlet/engine/class-use/Helper.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Helper.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.restlet.engine.Helper</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/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.restlet.engine"><B>org.restlet.engine</B></A></TD> <TD>Implementation of Restlet API.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.restlet.engine.application"><B>org.restlet.engine.application</B></A></TD> <TD>Supports Restlet applications.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.restlet.engine.component"><B>org.restlet.engine.component</B></A></TD> <TD>Supports Restlet components.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.restlet.engine.converter"><B>org.restlet.engine.converter</B></A></TD> <TD>Supports the converter service.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.restlet.engine.http"><B>org.restlet.engine.http</B></A></TD> <TD>Supports HTTP connectors.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.restlet.engine.http.connector"><B>org.restlet.engine.http.connector</B></A></TD> <TD>New advanced internal HTTP connector.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.restlet.engine.http.security"><B>org.restlet.engine.http.security</B></A></TD> <TD>Supports HTTP security.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.restlet.engine.local"><B>org.restlet.engine.local</B></A></TD> <TD>Supports local connectors and resources.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.restlet.engine.riap"><B>org.restlet.engine.riap</B></A></TD> <TD>Supports RIAP (Restlet Internal Access Protocol) connectors.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.restlet.engine.security"><B>org.restlet.engine.security</B></A></TD> <TD>Supports security.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.restlet.engine"><!-- --></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/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/package-summary.html">org.restlet.engine</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../org/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/package-summary.html">org.restlet.engine</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/ChainHelper.html" title="class in org.restlet.engine">ChainHelper&lt;T extends Restlet&gt;</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Chain helper serving as base class for Application and Component helpers.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/ClientHelper.html" title="class in org.restlet.engine">ClientHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Client connector helper.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/ConnectorHelper.html" title="class in org.restlet.engine">ConnectorHelper&lt;T extends Connector&gt;</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Base connector helper.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/ProtocolHelper.html" title="class in org.restlet.engine">ProtocolHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Protocol helper.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/RestletHelper.html" title="class in org.restlet.engine">RestletHelper&lt;T extends Restlet&gt;</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Delegate used by API classes to get support from the implementation classes.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/ServerHelper.html" title="class in org.restlet.engine">ServerHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Server connector helper.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.restlet.engine.application"><!-- --></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/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/application/package-summary.html">org.restlet.engine.application</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../org/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/application/package-summary.html">org.restlet.engine.application</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/application/ApplicationHelper.html" title="class in org.restlet.engine.application">ApplicationHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Application implementation.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.restlet.engine.component"><!-- --></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/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/component/package-summary.html">org.restlet.engine.component</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../org/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/component/package-summary.html">org.restlet.engine.component</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/component/ComponentHelper.html" title="class in org.restlet.engine.component">ComponentHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Component helper.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.restlet.engine.converter"><!-- --></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/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/converter/package-summary.html">org.restlet.engine.converter</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../org/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/converter/package-summary.html">org.restlet.engine.converter</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/converter/ConverterHelper.html" title="class in org.restlet.engine.converter">ConverterHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Converter between Representations and regular Java objects.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/converter/DefaultConverter.html" title="class in org.restlet.engine.converter">DefaultConverter</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Converter for the built-in Representation classes.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.restlet.engine.http"><!-- --></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/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/http/package-summary.html">org.restlet.engine.http</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../org/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/http/package-summary.html">org.restlet.engine.http</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/http/HttpProtocolHelper.html" title="class in org.restlet.engine.http">HttpProtocolHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Protocol helper for the HTTP protocol.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/http/WebDavProtocolHelper.html" title="class in org.restlet.engine.http">WebDavProtocolHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Protocol helper for the WEBDAV protocol.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.restlet.engine.http.connector"><!-- --></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/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/http/connector/package-summary.html">org.restlet.engine.http.connector</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../org/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/http/connector/package-summary.html">org.restlet.engine.http.connector</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/http/connector/BaseClientHelper.html" title="class in org.restlet.engine.http.connector">BaseClientHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Base client helper based on NIO blocking sockets.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/http/connector/BaseHelper.html" title="class in org.restlet.engine.http.connector">BaseHelper&lt;T extends Connector&gt;</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Base connector helper.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/http/connector/BaseServerHelper.html" title="class in org.restlet.engine.http.connector">BaseServerHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Base server helper based on NIO blocking sockets.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/http/connector/HttpClientHelper.html" title="class in org.restlet.engine.http.connector">HttpClientHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;HTTP client helper based on NIO blocking sockets.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/http/connector/HttpServerHelper.html" title="class in org.restlet.engine.http.connector">HttpServerHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;HTTP server helper based on NIO blocking sockets.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.restlet.engine.http.security"><!-- --></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/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/http/security/package-summary.html">org.restlet.engine.http.security</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../org/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/http/security/package-summary.html">org.restlet.engine.http.security</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/http/security/HttpBasicHelper.html" title="class in org.restlet.engine.http.security">HttpBasicHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Implements the HTTP BASIC authentication.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.restlet.engine.local"><!-- --></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/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/local/package-summary.html">org.restlet.engine.local</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../org/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/local/package-summary.html">org.restlet.engine.local</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/local/ClapClientHelper.html" title="class in org.restlet.engine.local">ClapClientHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Connector to the resources accessed via class loaders.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/local/EntityClientHelper.html" title="class in org.restlet.engine.local">EntityClientHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Connector to the local entities.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/local/FileClientHelper.html" title="class in org.restlet.engine.local">FileClientHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Connector to the file resources accessible.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/local/LocalClientHelper.html" title="class in org.restlet.engine.local">LocalClientHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Connector to the local resources accessible via file system, class loaders and similar mechanisms.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/local/ZipClientHelper.html" title="class in org.restlet.engine.local">ZipClientHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ZIP and JAR client connector.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.restlet.engine.riap"><!-- --></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/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/riap/package-summary.html">org.restlet.engine.riap</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../org/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/riap/package-summary.html">org.restlet.engine.riap</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/riap/RiapClientHelper.html" title="class in org.restlet.engine.riap">RiapClientHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Client connector for RIAP calls.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/riap/RiapServerHelper.html" title="class in org.restlet.engine.riap">RiapServerHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Server connector handling RIAP calls.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.restlet.engine.security"><!-- --></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/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/security/package-summary.html">org.restlet.engine.security</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../org/restlet/engine/Helper.html" title="class in org.restlet.engine">Helper</A> in <A HREF="../../../../org/restlet/engine/security/package-summary.html">org.restlet.engine.security</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/security/AuthenticatorHelper.html" title="class in org.restlet.engine.security">AuthenticatorHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Base class for authentication helpers.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/restlet/engine/security/SmtpPlainHelper.html" title="class in org.restlet.engine.security">SmtpPlainHelper</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Implements the SMTP PLAIN authentication.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/restlet/engine/Helper.html" title="class in org.restlet.engine"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/restlet/engine/class-use/Helper.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Helper.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright &#169; 2005-2010 <a target="_top" href="http://www.noelios.com">Noelios Technologies</a>.</i> </BODY> </HTML>
qtopiacore/qt/doc/html/qtextblock-members.html
liuyanghejerry/qtextended
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <!-- /home/qt/mkdist-qt-4.4.3-1222864207/qt-embedded-linux-opensource-src-4.4.3/src/gui/text/qtextobject.cpp --> <head> <title>Qt 4.4: List of All Members for QTextBlock</title> <link href="classic.css" rel="stylesheet" type="text/css" /> </head> <body> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td align="left" valign="top" width="32"><a href="http://www.trolltech.com/products/qt"><img src="images/qt-logo.png" align="left" border="0" /></a></td> <td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="namespaces.html"><font color="#004faf">All&nbsp;Namespaces</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="mainclasses.html"><font color="#004faf">Main&nbsp;Classes</font></a>&nbsp;&middot; <a href="groups.html"><font color="#004faf">Grouped&nbsp;Classes</font></a>&nbsp;&middot; <a href="modules.html"><font color="#004faf">Modules</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">Functions</font></a></td> <td align="right" valign="top" width="230"></td></tr></table><h1 class="title">List of All Members for QTextBlock</h1> <p>This is the complete list of members for <a href="qtextblock.html">QTextBlock</a>, including inherited members.</p> <p><table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="45%" valign="top"><ul> <li><div class="fn"/>class <a href="qtextblock-iterator.html">iterator</a></li> <li><div class="fn"/>typedef <a href="qtextblock.html#Iterator-typedef">Iterator</a></li> <li><div class="fn"/><a href="qtextblock.html#QTextBlock">QTextBlock</a> ( const QTextBlock &amp; )</li> <li><div class="fn"/><a href="qtextblock.html#begin">begin</a> () const : iterator</li> <li><div class="fn"/><a href="qtextblock.html#blockFormat">blockFormat</a> () const : QTextBlockFormat</li> <li><div class="fn"/><a href="qtextblock.html#blockFormatIndex">blockFormatIndex</a> () const : int</li> <li><div class="fn"/><a href="qtextblock.html#blockNumber">blockNumber</a> () const : int</li> <li><div class="fn"/><a href="qtextblock.html#charFormat">charFormat</a> () const : QTextCharFormat</li> <li><div class="fn"/><a href="qtextblock.html#charFormatIndex">charFormatIndex</a> () const : int</li> <li><div class="fn"/><a href="qtextblock.html#clearLayout">clearLayout</a> ()</li> <li><div class="fn"/><a href="qtextblock.html#contains">contains</a> ( int ) const : bool</li> <li><div class="fn"/><a href="qtextblock.html#document">document</a> () const : const QTextDocument *</li> <li><div class="fn"/><a href="qtextblock.html#end">end</a> () const : iterator</li> <li><div class="fn"/><a href="qtextblock.html#isValid">isValid</a> () const : bool</li> <li><div class="fn"/><a href="qtextblock.html#isVisible">isVisible</a> () const : bool</li> <li><div class="fn"/><a href="qtextblock.html#layout">layout</a> () const : QTextLayout *</li> <li><div class="fn"/><a href="qtextblock.html#length">length</a> () const : int</li> </ul></td><td valign="top"><ul> <li><div class="fn"/><a href="qtextblock.html#next">next</a> () const : QTextBlock</li> <li><div class="fn"/><a href="qtextblock.html#position">position</a> () const : int</li> <li><div class="fn"/><a href="qtextblock.html#previous">previous</a> () const : QTextBlock</li> <li><div class="fn"/><a href="qtextblock.html#revision">revision</a> () const : int</li> <li><div class="fn"/><a href="qtextblock.html#setRevision">setRevision</a> ( int )</li> <li><div class="fn"/><a href="qtextblock.html#setUserData">setUserData</a> ( QTextBlockUserData * )</li> <li><div class="fn"/><a href="qtextblock.html#setUserState">setUserState</a> ( int )</li> <li><div class="fn"/><a href="qtextblock.html#setVisible">setVisible</a> ( bool )</li> <li><div class="fn"/><a href="qtextblock.html#text">text</a> () const : QString</li> <li><div class="fn"/><a href="qtextblock.html#textList">textList</a> () const : QTextList *</li> <li><div class="fn"/><a href="qtextblock.html#userData">userData</a> () const : QTextBlockUserData *</li> <li><div class="fn"/><a href="qtextblock.html#userState">userState</a> () const : int</li> <li><div class="fn"/><a href="qtextblock.html#operator-not-eq">operator!=</a> ( const QTextBlock &amp; ) const : bool</li> <li><div class="fn"/><a href="qtextblock.html#operator-lt">operator&lt;</a> ( const QTextBlock &amp; ) const : bool</li> <li><div class="fn"/><a href="qtextblock.html#operator-eq">operator=</a> ( const QTextBlock &amp; ) : QTextBlock &amp;</li> <li><div class="fn"/><a href="qtextblock.html#operator-eq-eq">operator==</a> ( const QTextBlock &amp; ) const : bool</li> </ul> </td></tr> </table></p> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td width="30%" align="left">Copyright &copy; 2008 Nokia</td> <td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td> <td width="30%" align="right"><div align="right">Qt 4.4.3</div></td> </tr></table></div></address></body> </html>
submodules/build-armv7-apple-darwin/linphone/oRTP/doc/html/rtp_8h_source.html
GargoyleSoftware/voip-client-ios
<!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>oRTP: /Users/chris/Code/Gargoyle/linphone-iphone/submodules/linphone/oRTP/include/ortp/rtp.h Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">oRTP &#160;<span id="projectnumber">0.18.0</span> </div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.5.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="annotated.html"><span>Data&#160;Structures</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> <li><a href="globals.html"><span>Globals</span></a></li> </ul> </div> <div class="header"> <div class="headertitle"> <div class="title">/Users/chris/Code/Gargoyle/linphone-iphone/submodules/linphone/oRTP/include/ortp/rtp.h</div> </div> </div> <div class="contents"> <div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span> <a name="l00002"></a>00002 <span class="comment"> The oRTP library is an RTP (Realtime Transport Protocol - rfc3550) stack.</span> <a name="l00003"></a>00003 <span class="comment"> Copyright (C) 2001 Simon MORLAT simon.morlat@linphone.org</span> <a name="l00004"></a>00004 <span class="comment"></span> <a name="l00005"></a>00005 <span class="comment"> This library is free software; you can redistribute it and/or</span> <a name="l00006"></a>00006 <span class="comment"> modify it under the terms of the GNU Lesser General Public</span> <a name="l00007"></a>00007 <span class="comment"> License as published by the Free Software Foundation; either</span> <a name="l00008"></a>00008 <span class="comment"> version 2.1 of the License, or (at your option) any later version.</span> <a name="l00009"></a>00009 <span class="comment"></span> <a name="l00010"></a>00010 <span class="comment"> This library is distributed in the hope that it will be useful,</span> <a name="l00011"></a>00011 <span class="comment"> but WITHOUT ANY WARRANTY; without even the implied warranty of</span> <a name="l00012"></a>00012 <span class="comment"> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span> <a name="l00013"></a>00013 <span class="comment"> Lesser General Public License for more details.</span> <a name="l00014"></a>00014 <span class="comment"></span> <a name="l00015"></a>00015 <span class="comment"> You should have received a copy of the GNU Lesser General Public</span> <a name="l00016"></a>00016 <span class="comment"> License along with this library; if not, write to the Free Software</span> <a name="l00017"></a>00017 <span class="comment"> Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA</span> <a name="l00018"></a>00018 <span class="comment">*/</span> <a name="l00019"></a>00019 <a name="l00020"></a>00020 <a name="l00021"></a>00021 <span class="preprocessor">#ifndef RTP_H</span> <a name="l00022"></a>00022 <span class="preprocessor"></span><span class="preprocessor">#define RTP_H</span> <a name="l00023"></a>00023 <span class="preprocessor"></span> <a name="l00024"></a>00024 <span class="preprocessor">#include &lt;ortp/port.h&gt;</span> <a name="l00025"></a>00025 <span class="preprocessor">#include &lt;ortp/str_utils.h&gt;</span> <a name="l00026"></a>00026 <a name="l00027"></a>00027 <span class="preprocessor">#define IPMAXLEN 20</span> <a name="l00028"></a>00028 <span class="preprocessor"></span><span class="preprocessor">#define UDP_MAX_SIZE 1500</span> <a name="l00029"></a>00029 <span class="preprocessor"></span><span class="preprocessor">#define RTP_FIXED_HEADER_SIZE 12</span> <a name="l00030"></a>00030 <span class="preprocessor"></span><span class="preprocessor">#define RTP_DEFAULT_JITTER_TIME 80 </span><span class="comment">/*miliseconds*/</span> <a name="l00031"></a>00031 <span class="preprocessor">#define RTP_DEFAULT_MULTICAST_TTL 5 </span><span class="comment">/*hops*/</span> <a name="l00032"></a>00032 <span class="preprocessor">#define RTP_DEFAULT_MULTICAST_LOOPBACK 0 </span><span class="comment">/*false*/</span> <a name="l00033"></a>00033 <span class="preprocessor">#define RTP_DEFAULT_DSCP 0x00 </span><span class="comment">/*best effort*/</span> <a name="l00034"></a>00034 <a name="l00035"></a>00035 <a name="l00036"></a>00036 <a name="l00037"></a><a class="code" href="structrtp__header.html">00037</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structrtp__header.html">rtp_header</a> <a name="l00038"></a>00038 { <a name="l00039"></a>00039 <span class="preprocessor">#ifdef ORTP_BIGENDIAN</span> <a name="l00040"></a>00040 <span class="preprocessor"></span> uint16_t version:2; <a name="l00041"></a>00041 uint16_t padbit:1; <a name="l00042"></a>00042 uint16_t extbit:1; <a name="l00043"></a>00043 uint16_t cc:4; <a name="l00044"></a>00044 uint16_t markbit:1; <a name="l00045"></a>00045 uint16_t paytype:7; <a name="l00046"></a>00046 <span class="preprocessor">#else</span> <a name="l00047"></a>00047 <span class="preprocessor"></span> uint16_t cc:4; <a name="l00048"></a>00048 uint16_t extbit:1; <a name="l00049"></a>00049 uint16_t padbit:1; <a name="l00050"></a>00050 uint16_t version:2; <a name="l00051"></a>00051 uint16_t paytype:7; <a name="l00052"></a>00052 uint16_t markbit:1; <a name="l00053"></a>00053 <span class="preprocessor">#endif</span> <a name="l00054"></a>00054 <span class="preprocessor"></span> uint16_t seq_number; <a name="l00055"></a>00055 uint32_t timestamp; <a name="l00056"></a>00056 uint32_t ssrc; <a name="l00057"></a>00057 uint32_t csrc[16]; <a name="l00058"></a>00058 } <a class="code" href="structrtp__header.html">rtp_header_t</a>; <a name="l00059"></a>00059 <a name="l00060"></a>00060 <a name="l00061"></a>00061 <a name="l00062"></a>00062 <a name="l00063"></a><a class="code" href="structrtp__stats.html">00063</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structrtp__stats.html">rtp_stats</a> <a name="l00064"></a>00064 { <a name="l00065"></a>00065 uint64_t packet_sent; <a name="l00066"></a>00066 uint64_t sent; <span class="comment">/* bytes sent */</span> <a name="l00067"></a>00067 uint64_t recv; <span class="comment">/* bytes of payload received and delivered in time to the application */</span> <a name="l00068"></a>00068 uint64_t hw_recv; <span class="comment">/* bytes of payload received */</span> <a name="l00069"></a>00069 uint64_t packet_recv; <span class="comment">/* number of packets received */</span> <a name="l00070"></a>00070 uint64_t outoftime; <span class="comment">/* number of packets that were received too late */</span> <a name="l00071"></a>00071 uint64_t cum_packet_loss; <span class="comment">/* cumulative number of packet lost */</span> <a name="l00072"></a>00072 uint64_t bad; <span class="comment">/* packets that did not appear to be RTP */</span> <a name="l00073"></a>00073 uint64_t discarded; <span class="comment">/* incoming packets discarded because the queue exceeds its max size */</span> <a name="l00074"></a>00074 uint64_t sent_rtcp_packets; <span class="comment">/* sent RTCP packets counter (only packets that embed a report block are considered) */</span> <a name="l00075"></a>00075 } <a class="code" href="structrtp__stats.html">rtp_stats_t</a>; <a name="l00076"></a>00076 <a name="l00077"></a><a class="code" href="structjitter__stats.html">00077</a> <span class="keyword">typedef</span> <span class="keyword">struct </span><a class="code" href="structjitter__stats.html">jitter_stats</a> <a name="l00078"></a>00078 { <a name="l00079"></a>00079 uint32_t jitter; <span class="comment">/* interarrival jitter at last emitted sender report */</span> <a name="l00080"></a>00080 uint32_t max_jitter; <span class="comment">/* biggest interarrival jitter (value in stream clock unit) */</span> <a name="l00081"></a>00081 uint64_t sum_jitter; <span class="comment">/* sum of all interarrival jitter (value in stream clock unit) */</span> <a name="l00082"></a>00082 uint64_t max_jitter_ts; <span class="comment">/* date (in ms since Epoch) of the biggest interarrival jitter */</span> <a name="l00083"></a>00083 } <a class="code" href="structjitter__stats.html">jitter_stats_t</a>; <a name="l00084"></a>00084 <a name="l00085"></a>00085 <span class="preprocessor">#define RTP_TIMESTAMP_IS_NEWER_THAN(ts1,ts2) \</span> <a name="l00086"></a>00086 <span class="preprocessor"> ((uint32_t)((uint32_t)(ts1) - (uint32_t)(ts2))&lt; (uint32_t)(1&lt;&lt;31))</span> <a name="l00087"></a>00087 <span class="preprocessor"></span> <a name="l00088"></a>00088 <span class="preprocessor">#define RTP_TIMESTAMP_IS_STRICTLY_NEWER_THAN(ts1,ts2) \</span> <a name="l00089"></a>00089 <span class="preprocessor"> ( ((uint32_t)((uint32_t)(ts1) - (uint32_t)(ts2))&lt; (uint32_t)(1&lt;&lt;31)) &amp;&amp; (ts1)!=(ts2) )</span> <a name="l00090"></a>00090 <span class="preprocessor"></span> <a name="l00091"></a>00091 <span class="preprocessor">#define TIME_IS_NEWER_THAN(t1,t2) RTP_TIMESTAMP_IS_NEWER_THAN(t1,t2)</span> <a name="l00092"></a>00092 <span class="preprocessor"></span> <a name="l00093"></a>00093 <span class="preprocessor">#define TIME_IS_STRICTLY_NEWER_THAN(t1,t2) RTP_TIMESTAMP_IS_STRICTLY_NEWER_THAN(t1,t2)</span> <a name="l00094"></a>00094 <span class="preprocessor"></span> <a name="l00095"></a>00095 <a name="l00096"></a>00096 <span class="preprocessor">#ifdef __cplusplus</span> <a name="l00097"></a>00097 <span class="preprocessor"></span><span class="keyword">extern</span> <span class="stringliteral">&quot;C&quot;</span>{ <a name="l00098"></a>00098 <span class="preprocessor">#endif</span> <a name="l00099"></a>00099 <span class="preprocessor"></span> <a name="l00100"></a>00100 <span class="comment">/* packet api */</span> <a name="l00101"></a>00101 <span class="comment">/* the first argument is a mblk_t. The header is supposed to be not splitted */</span> <a name="l00102"></a>00102 <span class="preprocessor">#define rtp_set_markbit(mp,value) ((rtp_header_t*)((mp)-&gt;b_rptr))-&gt;markbit=(value)</span> <a name="l00103"></a>00103 <span class="preprocessor"></span><span class="preprocessor">#define rtp_set_seqnumber(mp,seq) ((rtp_header_t*)((mp)-&gt;b_rptr))-&gt;seq_number=(seq)</span> <a name="l00104"></a>00104 <span class="preprocessor"></span><span class="preprocessor">#define rtp_set_timestamp(mp,ts) ((rtp_header_t*)((mp)-&gt;b_rptr))-&gt;timestamp=(ts)</span> <a name="l00105"></a>00105 <span class="preprocessor"></span><span class="preprocessor">#define rtp_set_ssrc(mp,_ssrc) ((rtp_header_t*)((mp)-&gt;b_rptr))-&gt;ssrc=(_ssrc)</span> <a name="l00106"></a>00106 <span class="preprocessor"></span><span class="keywordtype">void</span> rtp_add_csrc(<a class="code" href="structmsgb.html">mblk_t</a> *mp ,uint32_t csrc); <a name="l00107"></a>00107 <span class="preprocessor">#define rtp_set_payload_type(mp,pt) ((rtp_header_t*)((mp)-&gt;b_rptr))-&gt;paytype=(pt)</span> <a name="l00108"></a>00108 <span class="preprocessor"></span> <a name="l00109"></a>00109 <span class="preprocessor">#define rtp_get_markbit(mp) (((rtp_header_t*)((mp)-&gt;b_rptr))-&gt;markbit)</span> <a name="l00110"></a>00110 <span class="preprocessor"></span><span class="preprocessor">#define rtp_get_extbit(mp) (((rtp_header_t*)((mp)-&gt;b_rptr))-&gt;extbit)</span> <a name="l00111"></a>00111 <span class="preprocessor"></span><span class="preprocessor">#define rtp_get_timestamp(mp) (((rtp_header_t*)((mp)-&gt;b_rptr))-&gt;timestamp) </span> <a name="l00112"></a>00112 <span class="preprocessor"></span><span class="preprocessor">#define rtp_get_seqnumber(mp) (((rtp_header_t*)((mp)-&gt;b_rptr))-&gt;seq_number)</span> <a name="l00113"></a>00113 <span class="preprocessor"></span><span class="preprocessor">#define rtp_get_payload_type(mp) (((rtp_header_t*)((mp)-&gt;b_rptr))-&gt;paytype)</span> <a name="l00114"></a>00114 <span class="preprocessor"></span><span class="preprocessor">#define rtp_get_ssrc(mp) (((rtp_header_t*)((mp)-&gt;b_rptr))-&gt;ssrc)</span> <a name="l00115"></a>00115 <span class="preprocessor"></span><span class="preprocessor">#define rtp_get_cc(mp) (((rtp_header_t*)((mp)-&gt;b_rptr))-&gt;cc)</span> <a name="l00116"></a>00116 <span class="preprocessor"></span><span class="preprocessor">#define rtp_get_csrc(mp, idx) (((rtp_header_t*)((mp)-&gt;b_rptr))-&gt;csrc[idx])</span> <a name="l00117"></a>00117 <span class="preprocessor"></span> <a name="l00118"></a>00118 <span class="keywordtype">int</span> rtp_get_payload(<a class="code" href="structmsgb.html">mblk_t</a> *packet, <span class="keywordtype">unsigned</span> <span class="keywordtype">char</span> **start); <a name="l00119"></a>00119 <span class="keywordtype">int</span> rtp_get_extheader(<a class="code" href="structmsgb.html">mblk_t</a> *packet, uint16_t *profile, uint8_t **start_ext); <a name="l00120"></a>00120 <a name="l00121"></a>00121 <span class="preprocessor">#ifdef __cplusplus</span> <a name="l00122"></a>00122 <span class="preprocessor"></span>} <a name="l00123"></a>00123 <span class="preprocessor">#endif</span> <a name="l00124"></a>00124 <span class="preprocessor"></span> <a name="l00125"></a>00125 <span class="preprocessor">#endif</span> </pre></div></div> </div> <hr class="footer"/><address class="footer"><small> Generated on Mon Feb 6 2012 18:59:45 for oRTP by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.7.5.1 </small></address> </body> </html>
documentation/doxy/output/fannie/html/class_member_preferences-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&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;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&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">MemberPreferences Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="class_member_preferences.html">MemberPreferences</a>, including all inherited members.</p> <table class="directory"> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>$__method</b> (defined in <a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a>)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>$__models</b> (defined in <a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a>)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>$__route_stem</b> (defined in <a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a>)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html#a2ba99eea842d834507df28b700554d1a">$__routes</a></td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>$auth_classes</b> (defined in <a class="el" href="class_member_preferences.html">MemberPreferences</a>)</td><td class="entry"><a class="el" href="class_member_preferences.html">MemberPreferences</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_fannie_page.html#a1779b368fff2522728265227ff8200d1">$current_user</a></td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>$description</b> (defined in <a class="el" href="class_member_preferences.html">MemberPreferences</a>)</td><td class="entry"><a class="el" href="class_member_preferences.html">MemberPreferences</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="class_fannie_page.html#a88f874daa83234cd8ef3c3f79238af97">$enable_linea</a></td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>$form</b> (defined in <a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a>)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>$header</b> (defined in <a class="el" href="class_member_preferences.html">MemberPreferences</a>)</td><td class="entry"><a class="el" href="class_member_preferences.html">MemberPreferences</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>$must_authenticate</b> (defined in <a class="el" href="class_member_preferences.html">MemberPreferences</a>)</td><td class="entry"><a class="el" href="class_member_preferences.html">MemberPreferences</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>$routing_trait</b> (defined in <a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a>)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>$themed</b> (defined in <a class="el" href="class_member_preferences.html">MemberPreferences</a>)</td><td class="entry"><a class="el" href="class_member_preferences.html">MemberPreferences</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>$title</b> (defined in <a class="el" href="class_member_preferences.html">MemberPreferences</a>)</td><td class="entry"><a class="el" href="class_member_preferences.html">MemberPreferences</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>__construct</b>() (defined in <a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a>)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="class_fannie_page.html#ae8bee0f380f38adf20ebec9f55c38f88">addBootstrap</a>()</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_fannie_page.html#a656f23373048907a822434f03cd96933">addJQuery</a>()</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>addRoute</b>() (defined in <a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a>)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>bestRoute</b>($try_routes) (defined in <a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a>)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>bodyContent</b>() (defined in <a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a>)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>check_auth</b>() (defined in <a class="el" href="class_fannie_page.html">FanniePage</a>)</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="class_fannie_page.html#ac04c301f26ebef12f7b37a6314dbdc58">checkAuth</a>()</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>checkRoute</b>($route, $try_routes) (defined in <a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a>)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>get_footer</b>() (defined in <a class="el" href="class_fannie_page.html">FanniePage</a>)</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>get_header</b>() (defined in <a class="el" href="class_fannie_page.html">FanniePage</a>)</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>get_id_handler</b>() (defined in <a class="el" href="class_member_preferences.html">MemberPreferences</a>)</td><td class="entry"><a class="el" href="class_member_preferences.html">MemberPreferences</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>get_id_view</b>() (defined in <a class="el" href="class_member_preferences.html">MemberPreferences</a>)</td><td class="entry"><a class="el" href="class_member_preferences.html">MemberPreferences</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>get_model</b>($database_connection, $class, $params, $find=False) (defined in <a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a>)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>get_view</b>() (defined in <a class="el" href="class_member_preferences.html">MemberPreferences</a>)</td><td class="entry"><a class="el" href="class_member_preferences.html">MemberPreferences</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="class_fannie_page.html#a266d42da8e98de9086ee14207dbb23e0">getFooter</a>()</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_fannie_page.html#ae1b7a43a8afcdb9f63c6493ff999d128">getHeader</a>()</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html#aa89bdea912b8fc2e6c2e47503e95ee2d">getModel</a>($database_connection, $class, $params, $find=False)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>helpContent</b>() (defined in <a class="el" href="class_member_preferences.html">MemberPreferences</a>)</td><td class="entry"><a class="el" href="class_member_preferences.html">MemberPreferences</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="class_fannie_page.html#ac6f041a222d197b196644578a09f5944">helpModal</a>()</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_fannie_page.html#a635432e0d3c003c4e6853ed9642a96ac">lineaJS</a>()</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>login_redirect</b>() (defined in <a class="el" href="class_fannie_page.html">FanniePage</a>)</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_fannie_page.html#a407701c8ca9b8bba67db6ed9bb7625ae">loginRedirect</a>()</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>postFlight</b>() (defined in <a class="el" href="class_fannie_page.html">FanniePage</a>)</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>preFlight</b>() (defined in <a class="el" href="class_fannie_page.html">FanniePage</a>)</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>preprocess</b>() (defined in <a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a>)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html#ab248b5009c98297c3346aa2915a38198">readRoutes</a>()</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html#af23debecf050136de43947768ee7c0ed">setForm</a>(COREPOS\common\mvc\ValueContainer $f)</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>setPermissions</b>($p) (defined in <a class="el" href="class_fannie_page.html">FanniePage</a>)</td><td class="entry"><a class="el" href="class_fannie_page.html">FanniePage</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>unitTest</b>($phpunit) (defined in <a class="el" href="class_member_preferences.html">MemberPreferences</a>)</td><td class="entry"><a class="el" href="class_member_preferences.html">MemberPreferences</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html#afdc093f79eff94c8c011947897931ae8">unknownRequestHandler</a>()</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html#ad9d19fea0f22d6b25d3d7b9c94fafe58">unknownRequestView</a>()</td><td class="entry"><a class="el" href="class_fannie_r_e_s_tful_page.html">FannieRESTfulPage</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> </table></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Fri Sep 2 2016 11:31:08 for CORE POS - Fannie by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.6 </small></address> </body> </html>
submodules/build-armv7-apple-darwin/linphone/oRTP/doc/html/structsender__info.html
GargoyleSoftware/voip-client-ios
<!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>oRTP: sender_info Struct Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">oRTP &#160;<span id="projectnumber">0.18.0</span> </div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.5.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="annotated.html"><span>Data&#160;Structures</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>Data&#160;Structures</span></a></li> <li><a href="functions.html"><span>Data&#160;Fields</span></a></li> </ul> </div> </div> <div class="header"> <div class="summary"> <a href="#pub-attribs">Data Fields</a> </div> <div class="headertitle"> <div class="title">sender_info Struct Reference</div> </div> </div> <div class="contents"> <!-- doxytag: class="sender_info" --><table class="memberdecls"> <tr><td colspan="2"><h2><a name="pub-attribs"></a> Data Fields</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5c2ce5fad17fefb474208105364080da"></a><!-- doxytag: member="sender_info::ntp_timestamp_msw" ref="a5c2ce5fad17fefb474208105364080da" args="" --> uint32_t&#160;</td><td class="memItemRight" valign="bottom"><b>ntp_timestamp_msw</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8e180d3dac559655e7801f3d0f592232"></a><!-- doxytag: member="sender_info::ntp_timestamp_lsw" ref="a8e180d3dac559655e7801f3d0f592232" args="" --> uint32_t&#160;</td><td class="memItemRight" valign="bottom"><b>ntp_timestamp_lsw</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2fb06e7f174250a1059283a114162b4a"></a><!-- doxytag: member="sender_info::rtp_timestamp" ref="a2fb06e7f174250a1059283a114162b4a" args="" --> uint32_t&#160;</td><td class="memItemRight" valign="bottom"><b>rtp_timestamp</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2982bc7c57b3ce7e17d3fbd7738d7932"></a><!-- doxytag: member="sender_info::senders_packet_count" ref="a2982bc7c57b3ce7e17d3fbd7738d7932" args="" --> uint32_t&#160;</td><td class="memItemRight" valign="bottom"><b>senders_packet_count</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6f59d3bed23ea1208276d8d9867309c5"></a><!-- doxytag: member="sender_info::senders_octet_count" ref="a6f59d3bed23ea1208276d8d9867309c5" args="" --> uint32_t&#160;</td><td class="memItemRight" valign="bottom"><b>senders_octet_count</b></td></tr> </table> <hr/>The documentation for this struct was generated from the following file:<ul> <li>/Users/chris/Code/Gargoyle/linphone-iphone/submodules/linphone/oRTP/include/ortp/<a class="el" href="rtcp_8h_source.html">rtcp.h</a></li> </ul> </div> <hr class="footer"/><address class="footer"><small> Generated on Mon Feb 6 2012 18:59:46 for oRTP by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.7.5.1 </small></address> </body> </html>
docs/doc/libc/unix/constant.TCP_USER_TIMEOUT.html
TheZoq2/Rust-Scad
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="refresh" content="0;URL=../../libc/constant.TCP_USER_TIMEOUT.html"> </head> <body> <p>Redirecting to <a href="../../libc/constant.TCP_USER_TIMEOUT.html">../../libc/constant.TCP_USER_TIMEOUT.html</a>...</p> <script>location.replace("../../libc/constant.TCP_USER_TIMEOUT.html" + location.search + location.hash);</script> </body> </html>
bower_components/angular/docs/partials/api/ng/type/$compile.directive.Attributes.html
Jom901/FunMind
<a href='http://github.com/angular/angular.js/edit/master/src/ng/compile.js' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this doc</a> <a href='http://github.com/angular/angular.js/tree/master/src/ng/compile.js#L1963' class='view-source pull-right btn btn-primary'> <i class="glyphicon glyphicon-zoom-in">&nbsp;</i>View Source </a> <header class="api-profile-header"> <h1 class="api-profile-header-heading">$compile.directive.Attributes</h1> <ol class="api-profile-header-structure naked-list step-list"> <li> - type in module <a href="api/ng">ng</a> </li> </ol> </header> <div class="api-profile-description"> <p>A shared object between directive compile / linking functions which contains normalized DOM element attributes. The values reflect current binding state <code>{{ }}</code>. The normalization is needed since all of these are treated as equivalent in Angular:</p> <p> <span ng:bind="a" ng-bind="a" data-ng-bind="a" x-ng-bind="a"></p> </div> <div> <h2>Methods</h2> <ul class="methods"> <li id="$addClass"> <h3><p><code>$addClass(classVal);</code></p> </h3> <div><p>Adds the CSS class value specified by the classVal parameter to the element. If animations are enabled then an animation will be triggered for the class addition.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> classVal </td> <td> <a href="" class="label type-hint type-hint-string">string</a> </td> <td> <p>The className value that will be added to the element</p> </td> </tr> </tbody> </table> </li> <li id="$removeClass"> <h3><p><code>$removeClass(classVal);</code></p> </h3> <div><p>Removes the CSS class value specified by the classVal parameter from the element. If animations are enabled then an animation will be triggered for the class removal.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> classVal </td> <td> <a href="" class="label type-hint type-hint-string">string</a> </td> <td> <p>The className value that will be removed from the element</p> </td> </tr> </tbody> </table> </li> <li id="$updateClass"> <h3><p><code>$updateClass(newClasses, oldClasses);</code></p> </h3> <div><p>Adds and removes the appropriate CSS class values to the element based on the difference between the new and old CSS class values (specified as newClasses and oldClasses).</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> newClasses </td> <td> <a href="" class="label type-hint type-hint-string">string</a> </td> <td> <p>The current CSS className value</p> </td> </tr> <tr> <td> oldClasses </td> <td> <a href="" class="label type-hint type-hint-string">string</a> </td> <td> <p>The former CSS className value</p> </td> </tr> </tbody> </table> </li> <li id="$observe"> <h3><p><code>$observe(key, fn);</code></p> </h3> <div><p>Observes an interpolated attribute.</p> <p>The observer function will be invoked once during the next <code>$digest</code> following compilation. The observer is then invoked whenever the interpolated value changes.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> key </td> <td> <a href="" class="label type-hint type-hint-string">string</a> </td> <td> <p>Normalized key. (ie ngAttribute) .</p> </td> </tr> <tr> <td> fn </td> <td> <a href="" class="label type-hint type-hint-function">function(interpolatedValue)</a> </td> <td> <p>Function that will be called whenever the interpolated value of the attribute changes. See the <a href="guide/directive#Attributes">Directives</a> guide for more info.</p> </td> </tr> </tbody> </table> <h4>Returns</h4> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-function">function()</a></td> <td><p>the <code>fn</code> parameter.</p> </td> </tr> </table> </li> <li id="$set"> <h3><p><code>$set(name, value);</code></p> </h3> <div><p>Set DOM element attribute value.</p> </div> <h4>Parameters</h4> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> name </td> <td> <a href="" class="label type-hint type-hint-string">string</a> </td> <td> <p>Normalized element attribute name of the property to modify. The name is reverse-translated using the <a href="api/ng/type/$compile.directive.Attributes#$attr">$attr</a> property to the original name.</p> </td> </tr> <tr> <td> value </td> <td> <a href="" class="label type-hint type-hint-string">string</a> </td> <td> <p>Value to set the attribute to. The value can be an interpolated string.</p> </td> </tr> </tbody> </table> </li> </ul> <h2>Properties</h2> <ul class="properties"> <li id="$attr"> <h3><code>$attr</code></h3> <table class="variables-matrix return-arguments"> <tr> <td></td> <td></td> </tr> </table> </li> </ul> </div>
node_modules/npm/html/doc/cli/npm-view.html
howels/pi-tank
<!doctype html> <html> <title>npm-view</title> <meta http-equiv="content-type" value="text/html;utf-8"> <link rel="stylesheet" type="text/css" href="../../static/style.css"> <link rel="canonical" href="https://www.npmjs.org/doc/cli/npm-view.html"> <script async=true src="../../static/toc.js"></script> <body> <div id="wrapper"> <h1><a href="../cli/npm-view.html">npm-view</a></h1> <p>View registry info</p> <h2 id="synopsis">SYNOPSIS</h2> <pre><code>npm view &lt;name&gt;[@&lt;version&gt;] [&lt;field&gt;[.&lt;subfield&gt;]...] npm v &lt;name&gt;[@&lt;version&gt;] [&lt;field&gt;[.&lt;subfield&gt;]...] </code></pre><h2 id="description">DESCRIPTION</h2> <p>This command shows data about a package and prints it to the stream referenced by the <code>outfd</code> config, which defaults to stdout.</p> <p>To show the package registry entry for the <code>connect</code> package, you can do this:</p> <pre><code>npm view connect </code></pre><p>The default version is &quot;latest&quot; if unspecified.</p> <p>Field names can be specified after the package descriptor. For example, to show the dependencies of the <code>ronn</code> package at version 0.3.5, you could do the following:</p> <pre><code>npm view ronn@0.3.5 dependencies </code></pre><p>You can view child field by separating them with a period. To view the git repository URL for the latest version of npm, you could do this:</p> <pre><code>npm view npm repository.url </code></pre><p>This makes it easy to view information about a dependency with a bit of shell scripting. For example, to view all the data about the version of opts that ronn depends on, you can do this:</p> <pre><code>npm view opts@$(npm view ronn dependencies.opts) </code></pre><p>For fields that are arrays, requesting a non-numeric field will return all of the values from the objects in the list. For example, to get all the contributor names for the &quot;express&quot; project, you can do this:</p> <pre><code>npm view express contributors.email </code></pre><p>You may also use numeric indices in square braces to specifically select an item in an array field. To just get the email address of the first contributor in the list, you can do this:</p> <pre><code>npm view express contributors[0].email </code></pre><p>Multiple fields may be specified, and will be printed one after another. For exampls, to get all the contributor names and email addresses, you can do this:</p> <pre><code>npm view express contributors.name contributors.email </code></pre><p>&quot;Person&quot; fields are shown as a string if they would be shown as an object. So, for example, this will show the list of npm contributors in the shortened string format. (See <code><a href="../files/package.json.html">package.json(5)</a></code> for more on this.)</p> <pre><code>npm view npm contributors </code></pre><p>If a version range is provided, then data will be printed for every matching version of the package. This will show which version of jsdom was required by each matching version of yui3:</p> <pre><code>npm view yui3@&#39;&gt;0.5.4&#39; dependencies.jsdom </code></pre><h2 id="output">OUTPUT</h2> <p>If only a single string field for a single version is output, then it will not be colorized or quoted, so as to enable piping the output to another command. If the field is an object, it will be output as a JavaScript object literal.</p> <p>If the --json flag is given, the outputted fields will be JSON.</p> <p>If the version range matches multiple versions, than each printed value will be prefixed with the version it applies to.</p> <p>If multiple fields are requested, than each of them are prefixed with the field name.</p> <h2 id="see-also">SEE ALSO</h2> <ul> <li><a href="../cli/npm-search.html">npm-search(1)</a></li> <li><a href="../misc/npm-registry.html">npm-registry(7)</a></li> <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="../cli/npm-docs.html">npm-docs(1)</a></li> </ul> </div> <table border=0 cellspacing=0 cellpadding=0 id=npmlogo> <tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18>&nbsp;</td></tr> <tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td colspan=6 style="width:60px;height:10px;background:#fff">&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td></tr> <tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2>&nbsp;</td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff" rowspan=2>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff">&nbsp;</td></tr> <tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr> <tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr> </table> <p id="footer">npm-view &mdash; npm@1.4.14</p>
target/blog-1.0.0.1/assets/back/css/login/font-awesome.min.css
wenhaofan/blog
@font-face{font-family:'FontAwesome';src:url('../font/fontawesome-webfont.eot?v=3.2.1');src:url('../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'),url('../font/fontawesome-webfont.woff?v=3.2.1') format('woff'),url('../font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'),url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');font-weight:normal;font-style:normal;}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing: grayscale;*margin-right:.3em;} [class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;} .icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;} a [class^="icon-"],a [class*=" icon-"]{display:inline;} [class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.1428571428571428em;text-align:right;padding-right:0.2857142857142857em;}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.4285714285714286em;} .icons-ul{margin-left:2.142857142857143em;list-style-type:none;}.icons-ul>li{position:relative;} .icons-ul .icon-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;text-align:center;line-height:inherit;} [class^="icon-"].hide,[class*=" icon-"].hide{display:none;} .icon-muted{color:#eeeeee;} .icon-light{color:#ffffff;} .icon-dark{color:#333333;} .icon-border{border:solid 1px #eeeeee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} .icon-2x{font-size:2em;}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} .icon-3x{font-size:3em;}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} .icon-4x{font-size:4em;}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} .icon-5x{font-size:5em;}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;} .pull-right{float:right;} .pull-left{float:left;} [class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em;} [class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em;} [class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0;} .icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none;} .btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em;} .btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block;} .nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em;} .btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em;} .btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em;} .btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em;} .btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em;} .btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em;} .btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em;} .nav-list [class^="icon-"],.nav-list [class*=" icon-"]{line-height:inherit;} .icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%;}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em;} .icon-stack .icon-stack-base{font-size:2em;*line-height:1em;} .icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;} a .icon-stack,a .icon-spin{display:inline-block;text-decoration:none;} @-moz-keyframes spin{0%{-moz-transform:rotate(0deg);} 100%{-moz-transform:rotate(359deg);}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);} 100%{-webkit-transform:rotate(359deg);}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);} 100%{-o-transform:rotate(359deg);}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);} 100%{-ms-transform:rotate(359deg);}}@keyframes spin{0%{transform:rotate(0deg);} 100%{transform:rotate(359deg);}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);} .icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);} .icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);} .icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1);} .icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1);} a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block;} .icon-glass:before{content:"\f000";} .icon-music:before{content:"\f001";} .icon-search:before{content:"\f002";} .icon-envelope-alt:before{content:"\f003";} .icon-heart:before{content:"\f004";} .icon-star:before{content:"\f005";} .icon-star-empty:before{content:"\f006";} .icon-user:before{content:"\f007";} .icon-film:before{content:"\f008";} .icon-th-large:before{content:"\f009";} .icon-th:before{content:"\f00a";} .icon-th-list:before{content:"\f00b";} .icon-ok:before{content:"\f00c";} .icon-remove:before{content:"\f00d";} .icon-zoom-in:before{content:"\f00e";} .icon-zoom-out:before{content:"\f010";} .icon-power-off:before,.icon-off:before{content:"\f011";} .icon-signal:before{content:"\f012";} .icon-gear:before,.icon-cog:before{content:"\f013";} .icon-trash:before{content:"\f014";} .icon-home:before{content:"\f015";} .icon-file-alt:before{content:"\f016";} .icon-time:before{content:"\f017";} .icon-road:before{content:"\f018";} .icon-download-alt:before{content:"\f019";} .icon-download:before{content:"\f01a";} .icon-upload:before{content:"\f01b";} .icon-inbox:before{content:"\f01c";} .icon-play-circle:before{content:"\f01d";} .icon-rotate-right:before,.icon-repeat:before{content:"\f01e";} .icon-refresh:before{content:"\f021";} .icon-list-alt:before{content:"\f022";} .icon-lock:before{content:"\f023";} .icon-flag:before{content:"\f024";} .icon-headphones:before{content:"\f025";} .icon-volume-off:before{content:"\f026";} .icon-volume-down:before{content:"\f027";} .icon-volume-up:before{content:"\f028";} .icon-qrcode:before{content:"\f029";} .icon-barcode:before{content:"\f02a";} .icon-tag:before{content:"\f02b";} .icon-tags:before{content:"\f02c";} .icon-book:before{content:"\f02d";} .icon-bookmark:before{content:"\f02e";} .icon-print:before{content:"\f02f";} .icon-camera:before{content:"\f030";} .icon-font:before{content:"\f031";} .icon-bold:before{content:"\f032";} .icon-italic:before{content:"\f033";} .icon-text-height:before{content:"\f034";} .icon-text-width:before{content:"\f035";} .icon-align-left:before{content:"\f036";} .icon-align-center:before{content:"\f037";} .icon-align-right:before{content:"\f038";} .icon-align-justify:before{content:"\f039";} .icon-list:before{content:"\f03a";} .icon-indent-left:before{content:"\f03b";} .icon-indent-right:before{content:"\f03c";} .icon-facetime-video:before{content:"\f03d";} .icon-picture:before{content:"\f03e";} .icon-pencil:before{content:"\f040";} .icon-map-marker:before{content:"\f041";} .icon-adjust:before{content:"\f042";} .icon-tint:before{content:"\f043";} .icon-edit:before{content:"\f044";} .icon-share:before{content:"\f045";} .icon-check:before{content:"\f046";} .icon-move:before{content:"\f047";} .icon-step-backward:before{content:"\f048";} .icon-fast-backward:before{content:"\f049";} .icon-backward:before{content:"\f04a";} .icon-play:before{content:"\f04b";} .icon-pause:before{content:"\f04c";} .icon-stop:before{content:"\f04d";} .icon-forward:before{content:"\f04e";} .icon-fast-forward:before{content:"\f050";} .icon-step-forward:before{content:"\f051";} .icon-eject:before{content:"\f052";} .icon-chevron-left:before{content:"\f053";} .icon-chevron-right:before{content:"\f054";} .icon-plus-sign:before{content:"\f055";} .icon-minus-sign:before{content:"\f056";} .icon-remove-sign:before{content:"\f057";} .icon-ok-sign:before{content:"\f058";} .icon-question-sign:before{content:"\f059";} .icon-info-sign:before{content:"\f05a";} .icon-screenshot:before{content:"\f05b";} .icon-remove-circle:before{content:"\f05c";} .icon-ok-circle:before{content:"\f05d";} .icon-ban-circle:before{content:"\f05e";} .icon-arrow-left:before{content:"\f060";} .icon-arrow-right:before{content:"\f061";} .icon-arrow-up:before{content:"\f062";} .icon-arrow-down:before{content:"\f063";} .icon-mail-forward:before,.icon-share-alt:before{content:"\f064";} .icon-resize-full:before{content:"\f065";} .icon-resize-small:before{content:"\f066";} .icon-plus:before{content:"\f067";} .icon-minus:before{content:"\f068";} .icon-asterisk:before{content:"\f069";} .icon-exclamation-sign:before{content:"\f06a";} .icon-gift:before{content:"\f06b";} .icon-leaf:before{content:"\f06c";} .icon-fire:before{content:"\f06d";} .icon-eye-open:before{content:"\f06e";} .icon-eye-close:before{content:"\f070";} .icon-warning-sign:before{content:"\f071";} .icon-plane:before{content:"\f072";} .icon-calendar:before{content:"\f073";} .icon-random:before{content:"\f074";} .icon-comment:before{content:"\f075";} .icon-magnet:before{content:"\f076";} .icon-chevron-up:before{content:"\f077";} .icon-chevron-down:before{content:"\f078";} .icon-retweet:before{content:"\f079";} .icon-shopping-cart:before{content:"\f07a";} .icon-folder-close:before{content:"\f07b";} .icon-folder-open:before{content:"\f07c";} .icon-resize-vertical:before{content:"\f07d";} .icon-resize-horizontal:before{content:"\f07e";} .icon-bar-chart:before{content:"\f080";} .icon-twitter-sign:before{content:"\f081";} .icon-facebook-sign:before{content:"\f082";} .icon-camera-retro:before{content:"\f083";} .icon-key:before{content:"\f084";} .icon-gears:before,.icon-cogs:before{content:"\f085";} .icon-comments:before{content:"\f086";} .icon-thumbs-up-alt:before{content:"\f087";} .icon-thumbs-down-alt:before{content:"\f088";} .icon-star-half:before{content:"\f089";} .icon-heart-empty:before{content:"\f08a";} .icon-signout:before{content:"\f08b";} .icon-linkedin-sign:before{content:"\f08c";} .icon-pushpin:before{content:"\f08d";} .icon-external-link:before{content:"\f08e";} .icon-signin:before{content:"\f090";} .icon-trophy:before{content:"\f091";} .icon-github-sign:before{content:"\f092";} .icon-upload-alt:before{content:"\f093";} .icon-lemon:before{content:"\f094";} .icon-phone:before{content:"\f095";} .icon-unchecked:before,.icon-check-empty:before{content:"\f096";} .icon-bookmark-empty:before{content:"\f097";} .icon-phone-sign:before{content:"\f098";} .icon-twitter:before{content:"\f099";} .icon-facebook:before{content:"\f09a";} .icon-github:before{content:"\f09b";} .icon-unlock:before{content:"\f09c";} .icon-credit-card:before{content:"\f09d";} .icon-rss:before{content:"\f09e";} .icon-hdd:before{content:"\f0a0";} .icon-bullhorn:before{content:"\f0a1";} .icon-bell:before{content:"\f0a2";} .icon-certificate:before{content:"\f0a3";} .icon-hand-right:before{content:"\f0a4";} .icon-hand-left:before{content:"\f0a5";} .icon-hand-up:before{content:"\f0a6";} .icon-hand-down:before{content:"\f0a7";} .icon-circle-arrow-left:before{content:"\f0a8";} .icon-circle-arrow-right:before{content:"\f0a9";} .icon-circle-arrow-up:before{content:"\f0aa";} .icon-circle-arrow-down:before{content:"\f0ab";} .icon-globe:before{content:"\f0ac";} .icon-wrench:before{content:"\f0ad";} .icon-tasks:before{content:"\f0ae";} .icon-filter:before{content:"\f0b0";} .icon-briefcase:before{content:"\f0b1";} .icon-fullscreen:before{content:"\f0b2";} .icon-group:before{content:"\f0c0";} .icon-link:before{content:"\f0c1";} .icon-cloud:before{content:"\f0c2";} .icon-beaker:before{content:"\f0c3";} .icon-cut:before{content:"\f0c4";} .icon-copy:before{content:"\f0c5";} .icon-paperclip:before,.icon-paper-clip:before{content:"\f0c6";} .icon-save:before{content:"\f0c7";} .icon-sign-blank:before{content:"\f0c8";} .icon-reorder:before{content:"\f0c9";} .icon-list-ul:before{content:"\f0ca";} .icon-list-ol:before{content:"\f0cb";} .icon-strikethrough:before{content:"\f0cc";} .icon-underline:before{content:"\f0cd";} .icon-table:before{content:"\f0ce";} .icon-magic:before{content:"\f0d0";} .icon-truck:before{content:"\f0d1";} .icon-pinterest:before{content:"\f0d2";} .icon-pinterest-sign:before{content:"\f0d3";} .icon-google-plus-sign:before{content:"\f0d4";} .icon-google-plus:before{content:"\f0d5";} .icon-money:before{content:"\f0d6";} .icon-caret-down:before{content:"\f0d7";} .icon-caret-up:before{content:"\f0d8";} .icon-caret-left:before{content:"\f0d9";} .icon-caret-right:before{content:"\f0da";} .icon-columns:before{content:"\f0db";} .icon-sort:before{content:"\f0dc";} .icon-sort-down:before{content:"\f0dd";} .icon-sort-up:before{content:"\f0de";} .icon-envelope:before{content:"\f0e0";} .icon-linkedin:before{content:"\f0e1";} .icon-rotate-left:before,.icon-undo:before{content:"\f0e2";} .icon-legal:before{content:"\f0e3";} .icon-dashboard:before{content:"\f0e4";} .icon-comment-alt:before{content:"\f0e5";} .icon-comments-alt:before{content:"\f0e6";} .icon-bolt:before{content:"\f0e7";} .icon-sitemap:before{content:"\f0e8";} .icon-umbrella:before{content:"\f0e9";} .icon-paste:before{content:"\f0ea";} .icon-lightbulb:before{content:"\f0eb";} .icon-exchange:before{content:"\f0ec";} .icon-cloud-download:before{content:"\f0ed";} .icon-cloud-upload:before{content:"\f0ee";} .icon-user-md:before{content:"\f0f0";} .icon-stethoscope:before{content:"\f0f1";} .icon-suitcase:before{content:"\f0f2";} .icon-bell-alt:before{content:"\f0f3";} .icon-coffee:before{content:"\f0f4";} .icon-food:before{content:"\f0f5";} .icon-file-text-alt:before{content:"\f0f6";} .icon-building:before{content:"\f0f7";} .icon-hospital:before{content:"\f0f8";} .icon-ambulance:before{content:"\f0f9";} .icon-medkit:before{content:"\f0fa";} .icon-fighter-jet:before{content:"\f0fb";} .icon-beer:before{content:"\f0fc";} .icon-h-sign:before{content:"\f0fd";} .icon-plus-sign-alt:before{content:"\f0fe";} .icon-double-angle-left:before{content:"\f100";} .icon-double-angle-right:before{content:"\f101";} .icon-double-angle-up:before{content:"\f102";} .icon-double-angle-down:before{content:"\f103";} .icon-angle-left:before{content:"\f104";} .icon-angle-right:before{content:"\f105";} .icon-angle-up:before{content:"\f106";} .icon-angle-down:before{content:"\f107";} .icon-desktop:before{content:"\f108";} .icon-laptop:before{content:"\f109";} .icon-tablet:before{content:"\f10a";} .icon-mobile-phone:before{content:"\f10b";} .icon-circle-blank:before{content:"\f10c";} .icon-quote-left:before{content:"\f10d";} .icon-quote-right:before{content:"\f10e";} .icon-spinner:before{content:"\f110";} .icon-circle:before{content:"\f111";} .icon-mail-reply:before,.icon-reply:before{content:"\f112";} .icon-github-alt:before{content:"\f113";} .icon-folder-close-alt:before{content:"\f114";} .icon-folder-open-alt:before{content:"\f115";} .icon-expand-alt:before{content:"\f116";} .icon-collapse-alt:before{content:"\f117";} .icon-smile:before{content:"\f118";} .icon-frown:before{content:"\f119";} .icon-meh:before{content:"\f11a";} .icon-gamepad:before{content:"\f11b";} .icon-keyboard:before{content:"\f11c";} .icon-flag-alt:before{content:"\f11d";} .icon-flag-checkered:before{content:"\f11e";} .icon-terminal:before{content:"\f120";} .icon-code:before{content:"\f121";} .icon-reply-all:before{content:"\f122";} .icon-mail-reply-all:before{content:"\f122";} .icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123";} .icon-location-arrow:before{content:"\f124";} .icon-crop:before{content:"\f125";} .icon-code-fork:before{content:"\f126";} .icon-unlink:before{content:"\f127";} .icon-question:before{content:"\f128";} .icon-info:before{content:"\f129";} .icon-exclamation:before{content:"\f12a";} .icon-superscript:before{content:"\f12b";} .icon-subscript:before{content:"\f12c";} .icon-eraser:before{content:"\f12d";} .icon-puzzle-piece:before{content:"\f12e";} .icon-microphone:before{content:"\f130";} .icon-microphone-off:before{content:"\f131";} .icon-shield:before{content:"\f132";} .icon-calendar-empty:before{content:"\f133";} .icon-fire-extinguisher:before{content:"\f134";} .icon-rocket:before{content:"\f135";} .icon-maxcdn:before{content:"\f136";} .icon-chevron-sign-left:before{content:"\f137";} .icon-chevron-sign-right:before{content:"\f138";} .icon-chevron-sign-up:before{content:"\f139";} .icon-chevron-sign-down:before{content:"\f13a";} .icon-html5:before{content:"\f13b";} .icon-css3:before{content:"\f13c";} .icon-anchor:before{content:"\f13d";} .icon-unlock-alt:before{content:"\f13e";} .icon-bullseye:before{content:"\f140";} .icon-ellipsis-horizontal:before{content:"\f141";} .icon-ellipsis-vertical:before{content:"\f142";} .icon-rss-sign:before{content:"\f143";} .icon-play-sign:before{content:"\f144";} .icon-ticket:before{content:"\f145";} .icon-minus-sign-alt:before{content:"\f146";} .icon-check-minus:before{content:"\f147";} .icon-level-up:before{content:"\f148";} .icon-level-down:before{content:"\f149";} .icon-check-sign:before{content:"\f14a";} .icon-edit-sign:before{content:"\f14b";} .icon-external-link-sign:before{content:"\f14c";} .icon-share-sign:before{content:"\f14d";} .icon-compass:before{content:"\f14e";} .icon-collapse:before{content:"\f150";} .icon-collapse-top:before{content:"\f151";} .icon-expand:before{content:"\f152";} .icon-euro:before,.icon-eur:before{content:"\f153";} .icon-gbp:before{content:"\f154";} .icon-dollar:before,.icon-usd:before{content:"\f155";} .icon-rupee:before,.icon-inr:before{content:"\f156";} .icon-yen:before,.icon-jpy:before{content:"\f157";} .icon-renminbi:before,.icon-cny:before{content:"\f158";} .icon-won:before,.icon-krw:before{content:"\f159";} .icon-bitcoin:before,.icon-btc:before{content:"\f15a";} .icon-file:before{content:"\f15b";} .icon-file-text:before{content:"\f15c";} .icon-sort-by-alphabet:before{content:"\f15d";} .icon-sort-by-alphabet-alt:before{content:"\f15e";} .icon-sort-by-attributes:before{content:"\f160";} .icon-sort-by-attributes-alt:before{content:"\f161";} .icon-sort-by-order:before{content:"\f162";} .icon-sort-by-order-alt:before{content:"\f163";} .icon-thumbs-up:before{content:"\f164";} .icon-thumbs-down:before{content:"\f165";} .icon-youtube-sign:before{content:"\f166";} .icon-youtube:before{content:"\f167";} .icon-xing:before{content:"\f168";} .icon-xing-sign:before{content:"\f169";} .icon-youtube-play:before{content:"\f16a";} .icon-dropbox:before{content:"\f16b";} .icon-stackexchange:before{content:"\f16c";} .icon-instagram:before{content:"\f16d";} .icon-flickr:before{content:"\f16e";} .icon-adn:before{content:"\f170";} .icon-bitbucket:before{content:"\f171";} .icon-bitbucket-sign:before{content:"\f172";} .icon-tumblr:before{content:"\f173";} .icon-tumblr-sign:before{content:"\f174";} .icon-long-arrow-down:before{content:"\f175";} .icon-long-arrow-up:before{content:"\f176";} .icon-long-arrow-left:before{content:"\f177";} .icon-long-arrow-right:before{content:"\f178";} .icon-apple:before{content:"\f179";} .icon-windows:before{content:"\f17a";} .icon-android:before{content:"\f17b";} .icon-linux:before{content:"\f17c";} .icon-dribbble:before{content:"\f17d";} .icon-skype:before{content:"\f17e";} .icon-foursquare:before{content:"\f180";} .icon-trello:before{content:"\f181";} .icon-female:before{content:"\f182";} .icon-male:before{content:"\f183";} .icon-gittip:before{content:"\f184";} .icon-sun:before{content:"\f185";} .icon-moon:before{content:"\f186";} .icon-archive:before{content:"\f187";} .icon-bug:before{content:"\f188";} .icon-vk:before{content:"\f189";} .icon-weibo:before{content:"\f18a";} .icon-renren:before{content:"\f18b";}
lib/google-gson-2.2.4/gson-2.2.4-javadoc/com/google/gson/reflect/class-use/TypeToken.html
CitizenNate/jdfa
<!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_27) on Mon May 13 14:39:07 PDT 2013 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class com.google.gson.reflect.TypeToken (Gson 2.2.4 API) </TITLE> <META NAME="date" CONTENT="2013-05-13"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.google.gson.reflect.TypeToken (Gson 2.2.4 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/google/gson/reflect//class-useTypeToken.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TypeToken.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>com.google.gson.reflect.TypeToken</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect">TypeToken</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#com.google.gson"><B>com.google.gson</B></A></TD> <TD>This package provides the <A HREF="../../../../../com/google/gson/Gson.html" title="class in com.google.gson"><CODE>Gson</CODE></A> class to convert Json to Java and vice-versa.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#com.google.gson.reflect"><B>com.google.gson.reflect</B></A></TD> <TD>This package provides utility classes for finding type information for generic types.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="com.google.gson"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect">TypeToken</A> in <A HREF="../../../../../com/google/gson/package-summary.html">com.google.gson</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../com/google/gson/package-summary.html">com.google.gson</A> with parameters of type <A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect">TypeToken</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY=""> <TR ALIGN="right" VALIGN=""> <TD NOWRAP><FONT SIZE="-1"> <CODE>&lt;T&gt; <A HREF="../../../../../com/google/gson/TypeAdapter.html" title="class in com.google.gson">TypeAdapter</A>&lt;T&gt;</CODE></FONT></TD> </TR> </TABLE> </CODE></FONT></TD> <TD><CODE><B>TypeAdapterFactory.</B><B><A HREF="../../../../../com/google/gson/TypeAdapterFactory.html#create(com.google.gson.Gson, com.google.gson.reflect.TypeToken)">create</A></B>(<A HREF="../../../../../com/google/gson/Gson.html" title="class in com.google.gson">Gson</A>&nbsp;gson, <A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect">TypeToken</A>&lt;T&gt;&nbsp;type)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a type adapter for <code>type</code>, or null if this factory doesn't support <code>type</code>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY=""> <TR ALIGN="right" VALIGN=""> <TD NOWRAP><FONT SIZE="-1"> <CODE>&lt;T&gt; <A HREF="../../../../../com/google/gson/TypeAdapter.html" title="class in com.google.gson">TypeAdapter</A>&lt;T&gt;</CODE></FONT></TD> </TR> </TABLE> </CODE></FONT></TD> <TD><CODE><B>Gson.</B><B><A HREF="../../../../../com/google/gson/Gson.html#getAdapter(com.google.gson.reflect.TypeToken)">getAdapter</A></B>(<A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect">TypeToken</A>&lt;T&gt;&nbsp;type)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the type adapter for <code></code> type.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY=""> <TR ALIGN="right" VALIGN=""> <TD NOWRAP><FONT SIZE="-1"> <CODE>&lt;T&gt; <A HREF="../../../../../com/google/gson/TypeAdapter.html" title="class in com.google.gson">TypeAdapter</A>&lt;T&gt;</CODE></FONT></TD> </TR> </TABLE> </CODE></FONT></TD> <TD><CODE><B>Gson.</B><B><A HREF="../../../../../com/google/gson/Gson.html#getDelegateAdapter(com.google.gson.TypeAdapterFactory, com.google.gson.reflect.TypeToken)">getDelegateAdapter</A></B>(<A HREF="../../../../../com/google/gson/TypeAdapterFactory.html" title="interface in com.google.gson">TypeAdapterFactory</A>&nbsp;skipPast, <A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect">TypeToken</A>&lt;T&gt;&nbsp;type)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This method is used to get an alternate type adapter for the specified type.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="com.google.gson.reflect"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect">TypeToken</A> in <A HREF="../../../../../com/google/gson/reflect/package-summary.html">com.google.gson.reflect</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../com/google/gson/reflect/package-summary.html">com.google.gson.reflect</A> that return <A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect">TypeToken</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY=""> <TR ALIGN="right" VALIGN=""> <TD NOWRAP><FONT SIZE="-1"> <CODE>&lt;T&gt; <A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect">TypeToken</A>&lt;T&gt;</CODE></FONT></TD> </TR> </TABLE> </CODE></FONT></TD> <TD><CODE><B>TypeToken.</B><B><A HREF="../../../../../com/google/gson/reflect/TypeToken.html#get(java.lang.Class)">get</A></B>(<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;T&gt;&nbsp;type)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets type literal for the given <code>Class</code> instance.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect">TypeToken</A>&lt;?&gt;</CODE></FONT></TD> <TD><CODE><B>TypeToken.</B><B><A HREF="../../../../../com/google/gson/reflect/TypeToken.html#get(java.lang.reflect.Type)">get</A></B>(<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/reflect/Type.html?is-external=true" title="class or interface in java.lang.reflect">Type</A>&nbsp;type)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets type literal for the given <code>Type</code> instance.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../com/google/gson/reflect/package-summary.html">com.google.gson.reflect</A> with parameters of type <A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect">TypeToken</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B>TypeToken.</B><B><A HREF="../../../../../com/google/gson/reflect/TypeToken.html#isAssignableFrom(com.google.gson.reflect.TypeToken)">isAssignableFrom</A></B>(<A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect">TypeToken</A>&lt;?&gt;&nbsp;token)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<B>Deprecated.</B>&nbsp;<I>this implementation may be inconsistent with javac for types with wildcards.</I></TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/google/gson/reflect/TypeToken.html" title="class in com.google.gson.reflect"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/google/gson/reflect//class-useTypeToken.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TypeToken.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2008-2013 <a href="http://www.google.com">Google, Inc.</a>. All Rights Reserved. </BODY> </HTML>
Source/JGE/JGE/docs/html/class_j_animator_frame-members.html
CarloBarraco/PSPConstructor
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>JGE++: Member List</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.5.3 --> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li> <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li> </ul> </div> <h1>JAnimatorFrame Member List</h1>This is the complete list of members for <a class="el" href="class_j_animator_frame.html">JAnimatorFrame</a>, including all inherited members.<p><table> <tr class="memlist"><td><a class="el" href="class_j_animator_frame.html#7b8e1ffad9933dfd292371c84efe21ee">AddObject</a>(JAnimatorObject *obj)</td><td><a class="el" href="class_j_animator_frame.html">JAnimatorFrame</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="class_j_animator_frame.html#9aa32e6329b038e6b66756f2aa9b75bd">JAnimatorFrame</a>(JAnimator *parent)</td><td><a class="el" href="class_j_animator_frame.html">JAnimatorFrame</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="class_j_animator_frame.html#911ff0c8920f0150a050d6a2d2b7dc32">Render</a>(float x, float y)</td><td><a class="el" href="class_j_animator_frame.html">JAnimatorFrame</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="class_j_animator_frame.html#47aba9caf56c4027e0cf285c025dc148">SetFrameTime</a>(float duration)</td><td><a class="el" href="class_j_animator_frame.html">JAnimatorFrame</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="class_j_animator_frame.html#6f29a5e0811fa239be58e13c5eb4afd2">Start</a>()</td><td><a class="el" href="class_j_animator_frame.html">JAnimatorFrame</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="class_j_animator_frame.html#cc83cbb5b4f0685b1d9309280970f1fa">Update</a>(float dt)</td><td><a class="el" href="class_j_animator_frame.html">JAnimatorFrame</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="class_j_animator_frame.html#9abf82d4deeecbd79f9304a965f25246">~JAnimatorFrame</a>()</td><td><a class="el" href="class_j_animator_frame.html">JAnimatorFrame</a></td><td></td></tr> </table><hr size="1"><address style="text-align: right;"><small>Generated on Mon Oct 22 00:28:22 2007 for JGE++ by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.3 </small></address> </body> </html>
tests/wpt/web-platform-tests/referrer-policy/gen/srcdoc-inherit.http-rp/origin-when-cross-origin/img-tag/cross-https.keep-origin.http.html
saneyuki/servo
<!DOCTYPE html> <!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using common/security-features/tools/template/test.release.html.template. --> <html> <head> <title>Referrer-Policy: Referrer Policy is set to 'origin-when-cross-origin'</title> <meta charset='utf-8'> <meta name="description" content="Check that cross-origin subresources get the origin portion of the referrer URL and same-origin get the stripped referrer URL."> <link rel="author" title="Kristijan Burnik" href="burnik@chromium.org"> <link rel="help" href="https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-origin-when-cross-origin"> <meta name="assert" content="Referrer Policy: Expects origin for img-tag to cross-https origin and keep-origin redirection from http context."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/common/security-features/resources/common.sub.js"></script> <script src="/referrer-policy/generic/test-case.sub.js"></script> </head> <body> <script> TestCase( { "expectation": "origin", "origin": "cross-https", "redirection": "keep-origin", "source_context_list": [ { "policyDeliveries": [], "sourceContextType": "srcdoc" } ], "source_scheme": "http", "subresource": "img-tag", "subresource_policy_deliveries": [] }, document.querySelector("meta[name=assert]").content, new SanityChecker() ).start(); </script> <div id="log"></div> </body> </html>
rules/rules-rgaa3.0/src/test/resources/testcases/rgaa30/Rgaa30Rule040103/Rgaa30.Test.4.1.3-4NA-01.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>Rgaa30 Test.4-1-3 NA 01</title> </head> <body> <div> <h1>Rgaa30 Test.4-1-3 NA 01</h1> <div class="test-detail" lang="fr"> Chaque <a href="http://references.modernisation.gouv.fr/referentiel-technique-0#mMediaTemp">média temporel</a> synchronisé pré-enregistré vérifie-t-il, si nécessaire, une de ces conditions ( <a href="http://references.modernisation.gouv.fr/referentiel-technique-0#cpCrit4-" title="Cas particuliers pour le critère 4.1">hors cas particuliers</a>) ? <ul class="ssTests"> <li> Il existe une <a href="http://references.modernisation.gouv.fr/referentiel-technique-0#mTranscriptTextuel">transcription textuelle</a> accessible via un <a href="http://references.modernisation.gouv.fr/referentiel-technique-0#mLienAdj">lien adjacent</a> (une <code>url</code> ou une <code>ancre</code>)</li> <li> Il existe une <a href="http://references.modernisation.gouv.fr/referentiel-technique-0#mTranscriptTextuel">transcription textuelle</a> adjacente clairement identifiable</li> <li> Il existe une <a href="http://references.modernisation.gouv.fr/referentiel-technique-0#mAudioDesc">audio-description</a> synchronisée</li> <li> Il existe une version alternative avec une <a href="http://references.modernisation.gouv.fr/referentiel-technique-0#mAudioDesc">audio-description</a> synchronisée accessible via un <a href="http://references.modernisation.gouv.fr/referentiel-technique-0#mLienAdj">lien adjacent</a> (une <code>url</code> ou une <code>ancre</code>)</li> </ul> </div> <div class="testcase"> </div> <div class="test-explanation"> NA. </div> </div> </body> </html>
client/app/scripts/superdesk-monitoring/views/monitoring-group-header.html
amagdas/superdesk
<div class="stage-header clearfix"> <span class="stage-name"> <a href="" ng-click="viewSingleGroup(group)"> {{ :: group.header }} <span ng-show="group.subheader">/ {{ :: group.subheader }} {{ :: group.type}}</span> </a> </span> <span class="label label-total">{{ total }}</span> </div>
api/v5_faedrak/content_dns/no_NO/updated_dns.html
blokadaorg/blokadaorg.github.io
<!DOCTYPE html> <html class="no-js"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"> <link rel="stylesheet" href="css/poole.css"> <link rel="stylesheet" href="css/syntax.css"> <link rel="stylesheet" href="css/hyde.css"> <link rel="stylesheet" href="css/theme.css"> <link rel="stylesheet" href="//fonts.googleapis.com/css?family=PT+Sans:400,700|Russo+One"> <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css"> <link href="//block.blokada.org/favicon.png" rel="icon"> </head> <body class="theme-base-theme1 layout-reverse"> <div class="content"> <div class="container"> <section id="main"> <h4>Blokada Slim v4.4</h4> <p>Your Blokada just got updated!</p> <p>There are two editions of Blokada. The one you are using, available on Google Play, is called Blokada Slim (old name: DNS changer by Blokada). This is not an adblocker. It gives you a possibility to change your DNS servers, and also to use our brand new VPN service (optional). The open source version of Blokada is available at our website.</p> <p>You may have noticed the new UI in this update. This is the new v4 interface, and we hope you will like it! For more info about the changes check our <a href="https://blokada.org/docs/changelog.html">changelog</a>.</p> </section> </div> </div> </body> </html>
hadoop/docs/api/org/apache/hadoop/mapred/class-use/TaskUmbilicalProtocol.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 Interface org.apache.hadoop.mapred.TaskUmbilicalProtocol (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 Interface org.apache.hadoop.mapred.TaskUmbilicalProtocol (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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/mapred//class-useTaskUmbilicalProtocol.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TaskUmbilicalProtocol.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Interface<br>org.apache.hadoop.mapred.TaskUmbilicalProtocol</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/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.mapred"><B>org.apache.hadoop.mapred</B></A></TD> <TD>A software framework for easily writing applications which process vast amounts of data (multi-terabyte data-sets) parallelly on large clusters (thousands of nodes) built of commodity hardware in a reliable, fault-tolerant manner.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.mapred"><!-- --></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/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A> in <A HREF="../../../../../org/apache/hadoop/mapred/package-summary.html">org.apache.hadoop.mapred</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../org/apache/hadoop/mapred/package-summary.html">org.apache.hadoop.mapred</A> that implement <A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/hadoop/mapred/TaskTracker.html" title="class in org.apache.hadoop.mapred">TaskTracker</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;TaskTracker is a process that starts and tracks MR Tasks in a networked environment.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../../../../org/apache/hadoop/mapred/package-summary.html">org.apache.hadoop.mapred</A> declared as <A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A></CODE></FONT></TD> <TD><CODE><B>Task.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/Task.html#umbilical">umbilical</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/apache/hadoop/mapred/package-summary.html">org.apache.hadoop.mapred</A> with parameters of type <A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>Task.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/Task.html#done(org.apache.hadoop.mapred.TaskUmbilicalProtocol, org.apache.hadoop.mapred.Task.TaskReporter)">done</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A>&nbsp;umbilical, <A HREF="../../../../../org/apache/hadoop/mapred/Task.TaskReporter.html" title="class in org.apache.hadoop.mapred">Task.TaskReporter</A>&nbsp;reporter)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>abstract &nbsp;void</CODE></FONT></TD> <TD><CODE><B>TaskController.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/TaskController.html#initializeJob(java.lang.String, java.lang.String, org.apache.hadoop.fs.Path, org.apache.hadoop.fs.Path, org.apache.hadoop.mapred.TaskUmbilicalProtocol, java.net.InetSocketAddress)">initializeJob</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;user, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;jobid, <A HREF="../../../../../org/apache/hadoop/fs/Path.html" title="class in org.apache.hadoop.fs">Path</A>&nbsp;credentials, <A HREF="../../../../../org/apache/hadoop/fs/Path.html" title="class in org.apache.hadoop.fs">Path</A>&nbsp;jobConf, <A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A>&nbsp;taskTracker, <A HREF="http://java.sun.com/javase/6/docs/api/java/net/InetSocketAddress.html?is-external=true" title="class or interface in java.net">InetSocketAddress</A>&nbsp;ttAddr)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create all of the directories necessary for the job to start and download all of the job and private distributed cache files.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>DefaultTaskController.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/DefaultTaskController.html#initializeJob(java.lang.String, java.lang.String, org.apache.hadoop.fs.Path, org.apache.hadoop.fs.Path, org.apache.hadoop.mapred.TaskUmbilicalProtocol, java.net.InetSocketAddress)">initializeJob</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;user, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;jobid, <A HREF="../../../../../org/apache/hadoop/fs/Path.html" title="class in org.apache.hadoop.fs">Path</A>&nbsp;credentials, <A HREF="../../../../../org/apache/hadoop/fs/Path.html" title="class in org.apache.hadoop.fs">Path</A>&nbsp;jobConf, <A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A>&nbsp;taskTracker, <A HREF="http://java.sun.com/javase/6/docs/api/java/net/InetSocketAddress.html?is-external=true" title="class or interface in java.net">InetSocketAddress</A>&nbsp;ttAddr)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This routine initializes the local file system for running a job.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>JobLocalizer.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/JobLocalizer.html#localizeJobFiles(org.apache.hadoop.mapreduce.JobID, org.apache.hadoop.mapred.JobConf, org.apache.hadoop.fs.Path, org.apache.hadoop.fs.Path, org.apache.hadoop.mapred.TaskUmbilicalProtocol)">localizeJobFiles</A></B>(<A HREF="../../../../../org/apache/hadoop/mapreduce/JobID.html" title="class in org.apache.hadoop.mapreduce">JobID</A>&nbsp;jobid, <A HREF="../../../../../org/apache/hadoop/mapred/JobConf.html" title="class in org.apache.hadoop.mapred">JobConf</A>&nbsp;jConf, <A HREF="../../../../../org/apache/hadoop/fs/Path.html" title="class in org.apache.hadoop.fs">Path</A>&nbsp;localJobFile, <A HREF="../../../../../org/apache/hadoop/fs/Path.html" title="class in org.apache.hadoop.fs">Path</A>&nbsp;localJobTokenFile, <A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A>&nbsp;taskTracker)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>JobLocalizer.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/JobLocalizer.html#localizeJobFiles(org.apache.hadoop.mapreduce.JobID, org.apache.hadoop.mapred.JobConf, org.apache.hadoop.fs.Path, org.apache.hadoop.mapred.TaskUmbilicalProtocol)">localizeJobFiles</A></B>(<A HREF="../../../../../org/apache/hadoop/mapreduce/JobID.html" title="class in org.apache.hadoop.mapreduce">JobID</A>&nbsp;jobid, <A HREF="../../../../../org/apache/hadoop/mapred/JobConf.html" title="class in org.apache.hadoop.mapred">JobConf</A>&nbsp;jConf, <A HREF="../../../../../org/apache/hadoop/fs/Path.html" title="class in org.apache.hadoop.fs">Path</A>&nbsp;localJobTokenFile, <A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A>&nbsp;taskTracker)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>Task.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/Task.html#reportNextRecordRange(org.apache.hadoop.mapred.TaskUmbilicalProtocol, long)">reportNextRecordRange</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A>&nbsp;umbilical, long&nbsp;nextRecIndex)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Reports the next executing record range to TaskTracker.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>abstract &nbsp;void</CODE></FONT></TD> <TD><CODE><B>Task.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/Task.html#run(org.apache.hadoop.mapred.JobConf, org.apache.hadoop.mapred.TaskUmbilicalProtocol)">run</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/JobConf.html" title="class in org.apache.hadoop.mapred">JobConf</A>&nbsp;job, <A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A>&nbsp;umbilical)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Run this task as a part of the named job.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>Task.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/Task.html#runJobCleanupTask(org.apache.hadoop.mapred.TaskUmbilicalProtocol, org.apache.hadoop.mapred.Task.TaskReporter)">runJobCleanupTask</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A>&nbsp;umbilical, <A HREF="../../../../../org/apache/hadoop/mapred/Task.TaskReporter.html" title="class in org.apache.hadoop.mapred">Task.TaskReporter</A>&nbsp;reporter)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>Task.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/Task.html#runJobSetupTask(org.apache.hadoop.mapred.TaskUmbilicalProtocol, org.apache.hadoop.mapred.Task.TaskReporter)">runJobSetupTask</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A>&nbsp;umbilical, <A HREF="../../../../../org/apache/hadoop/mapred/Task.TaskReporter.html" title="class in org.apache.hadoop.mapred">Task.TaskReporter</A>&nbsp;reporter)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;int</CODE></FONT></TD> <TD><CODE><B>JobLocalizer.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/JobLocalizer.html#runSetup(java.lang.String, java.lang.String, org.apache.hadoop.fs.Path, org.apache.hadoop.mapred.TaskUmbilicalProtocol)">runSetup</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;user, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;jobid, <A HREF="../../../../../org/apache/hadoop/fs/Path.html" title="class in org.apache.hadoop.fs">Path</A>&nbsp;localJobTokenFile, <A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A>&nbsp;taskTracker)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>Task.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/Task.html#runTaskCleanupTask(org.apache.hadoop.mapred.TaskUmbilicalProtocol, org.apache.hadoop.mapred.Task.TaskReporter)">runTaskCleanupTask</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A>&nbsp;umbilical, <A HREF="../../../../../org/apache/hadoop/mapred/Task.TaskReporter.html" title="class in org.apache.hadoop.mapred">Task.TaskReporter</A>&nbsp;reporter)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>Task.</B><B><A HREF="../../../../../org/apache/hadoop/mapred/Task.html#statusUpdate(org.apache.hadoop.mapred.TaskUmbilicalProtocol)">statusUpdate</A></B>(<A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred">TaskUmbilicalProtocol</A>&nbsp;umbilical)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/hadoop/mapred/TaskUmbilicalProtocol.html" title="interface in org.apache.hadoop.mapred"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/mapred//class-useTaskUmbilicalProtocol.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TaskUmbilicalProtocol.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &copy; 2009 The Apache Software Foundation </BODY> </HTML>
src/boost_1_57_0/doc/html/boost/accumulators/tag/relative_weigh_idp67789136.html
biospi/seamass-windeps
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct template relative_weighted_tail_variate_means</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="../../../accumulators/reference.html#header.boost.accumulators.statistics_fwd_hpp" title="Header &lt;boost/accumulators/statistics_fwd.hpp&gt;"> <link rel="prev" href="absolute_weigh_idp67786048.html" title="Struct template absolute_weighted_tail_variate_means"> <link rel="next" href="weighted_sum_of_variates.html" title="Struct template weighted_sum_of_variates"> </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="absolute_weigh_idp67786048.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics_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="weighted_sum_of_variates.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.accumulators.tag.relative_weigh_idp67789136"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template relative_weighted_tail_variate_means</span></h2> <p>boost::accumulators::tag::relative_weighted_tail_variate_means</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../../accumulators/reference.html#header.boost.accumulators.statistics_fwd_hpp" title="Header &lt;boost/accumulators/statistics_fwd.hpp&gt;">boost/accumulators/statistics_fwd.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> LeftRight<span class="special">,</span> <span class="keyword">typename</span> VariateType<span class="special">,</span> <span class="keyword">typename</span> VariateTag<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="relative_weigh_idp67789136.html" title="Struct template relative_weighted_tail_variate_means">relative_weighted_tail_variate_means</a> <span class="special">:</span> <span class="keyword">public</span> boost::accumulators::depends_on&lt; non_coherent_weighted_tail_mean&lt; LeftRight &gt;, tail_variate&lt; VariateType, VariateTag, LeftRight &gt;, tail_weights&lt; LeftRight &gt; &gt; <span class="special">{</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 &#169; 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="absolute_weigh_idp67786048.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics_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="weighted_sum_of_variates.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
src/boost_1_57_0/doc/html/boost/accumulators/feature_of_tag_idp66599072.html
biospi/seamass-windeps
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct template feature_of&lt;tag::weighted_sum_of_variates&lt; VariateType, VariateTag &gt;&gt;</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="../../accumulators/reference.html#header.boost.accumulators.statistics.weighted_sum_hpp" title="Header &lt;boost/accumulators/statistics/weighted_sum.hpp&gt;"> <link rel="prev" href="tag/abstract_weigh_idp66608416.html" title="Struct abstract_weighted_sum_of_variates"> <link rel="next" href="extract/weighted_sum_kahan.html" title="Global weighted_sum_kahan"> </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="tag/abstract_weigh_idp66608416.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../accumulators/reference.html#header.boost.accumulators.statistics.weighted_sum_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="extract/weighted_sum_kahan.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.accumulators.feature_of_tag_idp66599072"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template feature_of&lt;tag::weighted_sum_of_variates&lt; VariateType, VariateTag &gt;&gt;</span></h2> <p>boost::accumulators::feature_of&lt;tag::weighted_sum_of_variates&lt; VariateType, VariateTag &gt;&gt;</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../accumulators/reference.html#header.boost.accumulators.statistics.weighted_sum_hpp" title="Header &lt;boost/accumulators/statistics/weighted_sum.hpp&gt;">boost/accumulators/statistics/weighted_sum.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> VariateType<span class="special">,</span> <span class="keyword">typename</span> VariateTag<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="feature_of_tag_idp66599072.html" title="Struct template feature_of&lt;tag::weighted_sum_of_variates&lt; VariateType, VariateTag &gt;&gt;">feature_of</a><span class="special">&lt;</span><span class="identifier">tag</span><span class="special">::</span><span class="identifier">weighted_sum_of_variates</span><span class="special">&lt;</span> <span class="identifier">VariateType</span><span class="special">,</span> <span class="identifier">VariateTag</span> <span class="special">&gt;</span><span class="special">&gt;</span> <span class="special">:</span> <span class="keyword">public</span> boost::accumulators::feature_of&lt; tag::abstract_weighted_sum_of_variates &gt; <span class="special">{</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 &#169; 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="tag/abstract_weigh_idp66608416.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../accumulators/reference.html#header.boost.accumulators.statistics.weighted_sum_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="extract/weighted_sum_kahan.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
docs/html/df/d50/classDMA_1_1Friends_1_1Updates_1_1CreateStepsTable.html
DenverArtMuseum/OctoberFriends
<!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>DMA Friends: DMA\Friends\Updates\CreateStepsTable Class Reference</title> <link href="../../tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="../../jquery.js"></script> <script type="text/javascript" src="../../dynsections.js"></script> <link href="../../search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="../../search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> <link href="../../doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">DMA Friends &#160;<span id="projectnumber">2.0</span> </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&#160;Page</span></a></li> <li><a href="../../pages.html"><span>Related&#160;Pages</span></a></li> <li class="current"><a href="../../annotated.html"><span>Classes</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="../../search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="../../search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="../../annotated.html"><span>Class&#160;List</span></a></li> <li><a href="../../classes.html"><span>Class&#160;Index</span></a></li> <li><a href="../../hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="../../functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><b>DMA</b></li><li class="navelem"><b>Friends</b></li><li class="navelem"><b>Updates</b></li><li class="navelem"><a class="el" href="../../df/d50/classDMA_1_1Friends_1_1Updates_1_1CreateStepsTable.html">CreateStepsTable</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="../../db/d75/classDMA_1_1Friends_1_1Updates_1_1CreateStepsTable-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">DMA\Friends\Updates\CreateStepsTable Class Reference</div> </div> </div><!--header--> <div class="contents"> <div class="dynheader"> Inheritance diagram for DMA\Friends\Updates\CreateStepsTable:</div> <div class="dyncontent"> <div class="center"> <img src="../../df/d50/classDMA_1_1Friends_1_1Updates_1_1CreateStepsTable.png" usemap="#DMA\Friends\Updates\CreateStepsTable_map" alt=""/> <map id="DMA\Friends\Updates\CreateStepsTable_map" name="DMA\Friends\Updates\CreateStepsTable_map"> </map> </div></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:acdf2a72d46d5dd755d0c642c31ba834c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="acdf2a72d46d5dd755d0c642c31ba834c"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>up</b> ()</td></tr> <tr class="separator:acdf2a72d46d5dd755d0c642c31ba834c"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a8dbe3cc73698589aa2349c3e5392317f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8dbe3cc73698589aa2349c3e5392317f"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>down</b> ()</td></tr> <tr class="separator:a8dbe3cc73698589aa2349c3e5392317f"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <hr/>The documentation for this class was generated from the following file:<ul> <li>updates/create_steps_table.php</li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Fri Sep 26 2014 13:52:03 for DMA Friends by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="../../doxygen.png" alt="doxygen"/> </a> 1.8.6 </small></address> </body> </html>
static/dashboard/project/containers/delete-objects-modal.html
kogotko/carburetor
<div class="modal-header"> <a href="" class="close" ng-click="$dismiss()"> <span class="fa fa-times"></span> </a> <div class="h3 modal-title" translate> Delete Files in {$ ctrl.model.container.name $} </div> </div> <div class="modal-body"> <p> <span ng-if="ctrl.model.mode === 'discovery'" translate> Collecting information for deletion: </span> <span ng-if="ctrl.model.mode === 'deletion'" translate>Deleting:</span> <translate> {$ ctrl.model.counted.files $} files in {$ ctrl.model.counted.folders $} folders. </translate> </p> <p ng-if="ctrl.model.mode === 'deletion' && ctrl.model.deleted.failures" class="text-danger" translate> Encountered {$ ctrl.model.deleted.failures $} failures. </p> <uib-progressbar ng-if="ctrl.model.mode === 'deletion'" max="ctrl.model.counted.files + ctrl.model.counted.folders" value="ctrl.model.deleted.files + ctrl.model.deleted.folders + ctrl.model.deleted.failures"></uib-progressbar> </div> <div class="modal-footer"> <button class="btn btn-default" ng-click="ctrl.dismiss()" ng-if="ctrl.model.mode === 'discovery'"> <span class="fa fa-close"></span> <translate>Cancel</translate> </button> <button class="btn btn-primary" ng-disabled="ctrl.model.running" ng-click="ctrl.action()"> <translate ng-if="ctrl.model.mode === 'discovery'">Delete</translate> <translate ng-if="ctrl.model.mode === 'deletion'">OK</translate> </button> </div>
lfsom/contents/libraries/G4P/reference/serialized-form.html
vbuendia/lfsom
<!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_40) on Thu Oct 10 18:11:27 BST 2013 --> <title>Serialized Form (Javadocs: G4P)</title> <meta name="date" content="2013-10-10"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Serialized Form (Javadocs: G4P)"; } //--> </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="g4p_controls/package-summary.html">Package</a></li> <li>Class</li> <li><a href="overview-tree.html">Tree</a></li> <li><a href="deprecated-list.html">Deprecated</a></li> <li><a href="index-all.html">Index</a></li> <li><a href="help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="index.html?serialized-form.html" target="_top">Frames</a></li> <li><a href="serialized-form.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Serialized Form" class="title">Serialized Form</h1> </div> <div class="serializedFormContainer"> <ul class="blockList"> <li class="blockList"> <h2 title="Package">Package&nbsp;g4p_controls</h2> <ul class="blockList"> <li class="blockList"><a name="g4p_controls.GWinApplet"> <!-- --> </a> <h3>Class <a href="g4p_controls/GWinApplet.html" title="class in g4p_controls">g4p_controls.GWinApplet</a> extends <a href="http://processing.googlecode.com/svn/trunk/processing/build/javadoc/core/processing/core/PApplet.html?is-external=true" title="class or interface in processing.core">PApplet</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"><a name="serializedForm"> <!-- --> </a> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>owner</h4> <pre><a href="g4p_controls/GWindow.html" title="class in g4p_controls">GWindow</a> owner</pre> </li> <li class="blockList"> <h4>appWidth</h4> <pre>int appWidth</pre> </li> <li class="blockList"> <h4>appHeight</h4> <pre>int appHeight</pre> </li> <li class="blockList"> <h4>mode</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> mode</pre> </li> <li class="blockList"> <h4>bkColor</h4> <pre>int bkColor</pre> </li> <li class="blockList"> <h4>bkImage</h4> <pre><a href="http://processing.googlecode.com/svn/trunk/processing/build/javadoc/core/processing/core/PImage.html?is-external=true" title="class or interface in processing.core">PImage</a> bkImage</pre> </li> <li class="blockListLast"> <h4>autoClear</h4> <pre>boolean autoClear</pre> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="g4p_controls.GWindow"> <!-- --> </a> <h3>Class <a href="g4p_controls/GWindow.html" title="class in g4p_controls">g4p_controls.GWindow</a> extends <a href="http://java.sun.com/javase/6/docs/api/java/awt/Frame.html?is-external=true" title="class or interface in java.awt">Frame</a> implements Serializable</h3> <ul class="blockList"> <li class="blockList"><a name="serializedForm"> <!-- --> </a> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>app</h4> <pre><a href="http://processing.googlecode.com/svn/trunk/processing/build/javadoc/core/processing/core/PApplet.html?is-external=true" title="class or interface in processing.core">PApplet</a> app</pre> </li> <li class="blockList"> <h4>papplet</h4> <pre><a href="g4p_controls/GWinApplet.html" title="class in g4p_controls">GWinApplet</a> papplet</pre> <div class="block">Gives direct access to the PApplet object inside the frame</div> </li> <li class="blockList"> <h4>winName</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> winName</pre> </li> <li class="blockList"> <h4>data</h4> <pre><a href="g4p_controls/GWinData.html" title="class in g4p_controls">GWinData</a> data</pre> </li> <li class="blockList"> <h4>winAdapt</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/awt/event/WindowAdapter.html?is-external=true" title="class or interface in java.awt.event">WindowAdapter</a> winAdapt</pre> </li> <li class="blockList"> <h4>actionOnClose</h4> <pre>int actionOnClose</pre> </li> <li class="blockList"> <h4>preHandlerObject</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> preHandlerObject</pre> <div class="block">The object to handle the pre event</div> </li> <li class="blockList"> <h4>preHandlerMethod</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</a> preHandlerMethod</pre> <div class="block">The method in preHandlerObject to execute</div> </li> <li class="blockList"> <h4>preHandlerMethodName</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> preHandlerMethodName</pre> <div class="block">the name of the method to handle the event</div> </li> <li class="blockList"> <h4>drawHandlerObject</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> drawHandlerObject</pre> <div class="block">The object to handle the draw event</div> </li> <li class="blockList"> <h4>drawHandlerMethod</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</a> drawHandlerMethod</pre> <div class="block">The method in drawHandlerObject to execute</div> </li> <li class="blockList"> <h4>drawHandlerMethodName</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> drawHandlerMethodName</pre> <div class="block">the name of the method to handle the event</div> </li> <li class="blockList"> <h4>keyHandlerObject</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> keyHandlerObject</pre> <div class="block">The object to handle the key event</div> </li> <li class="blockList"> <h4>keyHandlerMethod</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</a> keyHandlerMethod</pre> <div class="block">The method in keyHandlerObject to execute</div> </li> <li class="blockList"> <h4>keyHandlerMethodName</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> keyHandlerMethodName</pre> <div class="block">the name of the method to handle the event</div> </li> <li class="blockList"> <h4>mouseHandlerObject</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> mouseHandlerObject</pre> <div class="block">The object to handle the mouse event</div> </li> <li class="blockList"> <h4>mouseHandlerMethod</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</a> mouseHandlerMethod</pre> <div class="block">The method in mouseHandlerObject to execute</div> </li> <li class="blockList"> <h4>mouseHandlerMethodName</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> mouseHandlerMethodName</pre> <div class="block">the name of the method to handle the event</div> </li> <li class="blockList"> <h4>postHandlerObject</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> postHandlerObject</pre> <div class="block">The object to handle the post event</div> </li> <li class="blockList"> <h4>postHandlerMethod</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</a> postHandlerMethod</pre> <div class="block">The method in postHandlerObject to execute</div> </li> <li class="blockListLast"> <h4>postHandlerMethodName</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> postHandlerMethodName</pre> <div class="block">the name of the method to handle the event</div> </li> </ul> </li> </ul> </li> <li class="blockList"><a name="g4p_controls.StyledString"> <!-- --> </a> <h3>Class <a href="g4p_controls/StyledString.html" title="class in g4p_controls">g4p_controls.StyledString</a> extends <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> implements Serializable</h3> <dl class="nameValue"> <dt>serialVersionUID:</dt> <dd>8380395122026579368L</dd> </dl> <ul class="blockList"> <li class="blockList"><a name="serialized_methods"> <!-- --> </a> <h3>Serialization Methods</h3> <ul class="blockList"> <li class="blockListLast"><a name="readObject(java.io.ObjectInputStream)"> <!-- --> </a> <h4>readObject</h4> <pre>private&nbsp;void&nbsp;readObject(<a href="http://java.sun.com/javase/6/docs/api/java/io/ObjectInputStream.html?is-external=true" title="class or interface in java.io">ObjectInputStream</a>&nbsp;ois) throws <a href="http://java.sun.com/javase/6/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a>, <a href="http://java.sun.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> <dl><dt><span class="strong">Throws:</span></dt> <dd><code><a href="http://java.sun.com/javase/6/docs/api/java/lang/ClassNotFoundException.html?is-external=true" title="class or interface in java.lang">ClassNotFoundException</a></code></dd> <dd><code><a href="http://java.sun.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code></dd></dl> </li> </ul> </li> <li class="blockList"><a name="serializedForm"> <!-- --> </a> <h3>Serialized Fields</h3> <ul class="blockList"> <li class="blockList"> <h4>plainText</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> plainText</pre> </li> <li class="blockList"> <h4>baseStyle</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/util/LinkedList.html?is-external=true" title="class or interface in java.util">LinkedList</a>&lt;<a href="http://java.sun.com/javase/6/docs/api/java/util/LinkedList.html?is-external=true" title="class or interface in java.util">E</a>&gt; baseStyle</pre> </li> <li class="blockList"> <h4>atrun</h4> <pre><a href="http://java.sun.com/javase/6/docs/api/java/util/LinkedList.html?is-external=true" title="class or interface in java.util">LinkedList</a>&lt;<a href="http://java.sun.com/javase/6/docs/api/java/util/LinkedList.html?is-external=true" title="class or interface in java.util">E</a>&gt; atrun</pre> </li> <li class="blockList"> <h4>wrapWidth</h4> <pre>int wrapWidth</pre> </li> <li class="blockList"> <h4>invalidLayout</h4> <pre>boolean invalidLayout</pre> </li> <li class="blockList"> <h4>invalidText</h4> <pre>boolean invalidText</pre> </li> <li class="blockList"> <h4>justify</h4> <pre>boolean justify</pre> </li> <li class="blockList"> <h4>justifyRatio</h4> <pre>float justifyRatio</pre> </li> <li class="blockList"> <h4>textHeight</h4> <pre>float textHeight</pre> </li> <li class="blockList"> <h4>maxLineLength</h4> <pre>float maxLineLength</pre> </li> <li class="blockList"> <h4>maxLineHeight</h4> <pre>float maxLineHeight</pre> </li> <li class="blockList"> <h4>nbrLines</h4> <pre>int nbrLines</pre> </li> <li class="blockList"> <h4>startIdx</h4> <pre>int startIdx</pre> </li> <li class="blockListLast"> <h4>endIdx</h4> <pre>int endIdx</pre> </li> </ul> </li> </ul> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="g4p_controls/package-summary.html">Package</a></li> <li>Class</li> <li><a href="overview-tree.html">Tree</a></li> <li><a href="deprecated-list.html">Deprecated</a></li> <li><a href="index-all.html">Index</a></li> <li><a href="help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="index.html?serialized-form.html" target="_top">Frames</a></li> <li><a href="serialized-form.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Processing library G4P by Peter Lager. (C) 2013</small></p> </body> </html>
src/boost_1_57_0/doc/html/boost/accumulators/tag/abstract_non_c_idp66378112.html
biospi/seamass-windeps
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct abstract_non_coherent_tail_mean</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="../../../accumulators/reference.html#header.boost.accumulators.statistics.tail_mean_hpp" title="Header &lt;boost/accumulators/statistics/tail_mean.hpp&gt;"> <link rel="prev" href="../extract/coherent_tail_mean.html" title="Global coherent_tail_mean"> <link rel="next" href="../feature_of_tag_idp66363184.html" title="Struct template feature_of&lt;tag::coherent_tail_mean&lt; LeftRight &gt;&gt;"> </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="../extract/coherent_tail_mean.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.tail_mean_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="../feature_of_tag_idp66363184.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.accumulators.tag.abstract_non_c_idp66378112"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct abstract_non_coherent_tail_mean</span></h2> <p>boost::accumulators::tag::abstract_non_coherent_tail_mean</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.tail_mean_hpp" title="Header &lt;boost/accumulators/statistics/tail_mean.hpp&gt;">boost/accumulators/statistics/tail_mean.hpp</a>&gt; </span> <span class="keyword">struct</span> <a class="link" href="abstract_non_c_idp66378112.html" title="Struct abstract_non_coherent_tail_mean">abstract_non_coherent_tail_mean</a> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">accumulators</span><span class="special">::</span><span class="identifier">depends_on</span><span class="special">&lt;</span><span class="special">&gt;</span> <span class="special">{</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 &#169; 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="../extract/coherent_tail_mean.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.tail_mean_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="../feature_of_tag_idp66363184.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
docs/lucene-sandbox/index.html
lpxz/grail-lucene358684
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- 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. --> <!-- Content Stylesheet for Site --> <!-- start the processing --> <!-- ====================================================================== --> <!-- GENERATED FILE, DO NOT EDIT, EDIT THE XML FILE IN xdocs INSTEAD! --> <!-- Main Page Section --> <!-- ====================================================================== --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/> <meta name="author" value="Otis Gospodentic"> <meta name="email" value="$au.getAttributeValue("email")"> <title>Apache Lucene - Lucene Sandbox</title> <link rel="stylesheet" type="text/css" href="styles/lucene.css"> </head> <body bgcolor="#ffffff" text="#000000" link="#525D76"> <table border="0" width="100%" cellspacing="0"> <!-- TOP IMAGE --> <tr> <td align="left"> <a href="http://www.apache.org"><img src="http://lucene.apache.org/java/docs/images/asf-logo.gif" width="387" height="100" border="0"/></a> </td> <td align="right"> <a href="http://lucene.apache.org/"><img src="../images/lucene_green_300.gif" alt="Apache Lucene" border="0"/></a> </td> </tr> </table> <table border="0" width="100%" cellspacing="4"> <tr><td colspan="2"> <hr noshade="" size="1"/> </td></tr> <tr> <!-- LEFT SIDE NAVIGATION --> <td width="20%" valign="top" nowrap="true"> <!-- ============================================================ --> <p><strong>About</strong></p> <ul> <li> <a href="../index.html">Overview</a> </li> <li> <a href="../features.html">Features</a> </li> <li> <a href="http://wiki.apache.org/jakarta-lucene/PoweredBy">Powered by Lucene</a> </li> <li> <a href="../whoweare.html">Who We Are</a> </li> <li> <a href="../mailinglists.html">Mailing Lists</a> </li> </ul> <p><strong>Resources</strong></p> <ul> <li> <a href="http://wiki.apache.org/jakarta-lucene">Wiki</a> </li> <li> <a href="http://wiki.apache.org/jakarta-lucene/LuceneFAQ">FAQ</a> </li> <li> <a href="../gettingstarted.html">Getting Started</a> </li> <li> <a href="../queryparsersyntax.html">Query Syntax</a> </li> <li> <a href="../fileformats.html">File Formats</a> </li> <li> <a href="../scoring.html">Scoring</a> </li> <li> <a href="../api/index.html">Javadoc</a> </li> <li> <a href="../contributions.html">Contributions</a> </li> <li> <a href="../benchmarks.html">Benchmarks</a> </li> <li> <a href="http://issues.apache.org/jira/browse/LUCENE">Issue Tracker</a> </li> <li> <a href="../lucene-sandbox/">Lucene Sandbox</a> </li> </ul> <p><strong>Download</strong></p> <ul> <li> <a href="http://www.apache.org/dyn/closer.cgi/lucene/java/">Releases</a> </li> <li> <a href="http://svn.apache.org/viewcvs.cgi/lucene/java/">Source Repository</a> </li> </ul> </td> <td width="80%" align="left" valign="top"> <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr><td bgcolor="#525D76"> <font color="#ffffff" face="arial,helvetica,sanserif"> <a name="Lucene Sandbox"><strong>Lucene Sandbox</strong></a> </font> </td></tr> <tr><td> <blockquote> <p> Lucene project also contains a workspace, Lucene Sandbox, that is open to all Lucene committers, as well as a few other developers. The purpose of the Sandbox is to host various third party contributions, and to serve as a place to try out new ideas and prepare them for inclusion into the core Lucene distribution.<br /> Users are free to experiment with the components developed in the Sandbox, but Sandbox components will not necessarily be maintained, particularly in their current state. </p> <p> You can access the Lucene Sandbox repository at <a href="http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/">http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/</a>. </p> <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr><td bgcolor="#828DA6"> <font color="#ffffff" face="arial,helvetica,sanserif"> <a name="Snowball Stemmers for Lucene"><strong>Snowball Stemmers for Lucene</strong></a> </font> </td></tr> <tr><td> <blockquote> <p> This project provides pre-compiled versions of the Snowball stemmers for Lucene. </p> <p> <a href="http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/snowball">The repository for the Snowball contribution.</a> </p> <p> <a href="http://snowball.tartarus.org/">Background information on Snowball</a>, which is a language for stemmers developed by Martin Porter. </p> </blockquote> </td></tr> <tr><td><br/></td></tr> </table> <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr><td bgcolor="#828DA6"> <font color="#ffffff" face="arial,helvetica,sanserif"> <a name="Analyzers, Tokenizers, Filters"><strong>Analyzers, Tokenizers, Filters</strong></a> </font> </td></tr> <tr><td> <blockquote> <p> Contributed Analyzers, Tokenizers, and Filters for various languages. </p> <p> <a href="http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/analyzers/">The repository for the Analyzers contribution.</a> </p> </blockquote> </td></tr> <tr><td><br/></td></tr> </table> <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr><td bgcolor="#828DA6"> <font color="#ffffff" face="arial,helvetica,sanserif"> <a name="Ant"><strong>Ant</strong></a> </font> </td></tr> <tr><td> <blockquote> <p> The Ant project is a useful Ant task that creates a Lucene index out of an Ant fileset. It also contains an example HTML parser that uses JTidy. </p> <p> <a href="http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/ant/">The repository for the Ant contribution.</a> </p> </blockquote> </td></tr> <tr><td><br/></td></tr> </table> <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr><td bgcolor="#828DA6"> <font color="#ffffff" face="arial,helvetica,sanserif"> <a name="WordNet/Synonyms"><strong>WordNet/Synonyms</strong></a> </font> </td></tr> <tr><td> <blockquote> <p> The Lucene WordNet code consists of a single class which parses a prolog file from the WordNet site that contains a list of English words and synonyms. The class builds a Lucene index from the synonyms file. Your querying code could hit this index to build up a set of synonyms for the terms in the search query. </p> <p> More information on the <a href="http://www.tropo.com/techno/java/lucene/wordnet.html">Lucene WordNet package</a>. <a href="http://wordnet.princeton.edu/">WordNet</a> is an online database of English language words that contains synonyms, definitions, and various relationships between synonym sets. </p> <p> <a href="http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/wordnet/">The repository for the WordNet module.</a> </p> </blockquote> </td></tr> <tr><td><br/></td></tr> </table> <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr><td bgcolor="#828DA6"> <font color="#ffffff" face="arial,helvetica,sanserif"> <a name="Lucli - Lucene Command-line Interface"><strong>Lucli - Lucene Command-line Interface</strong></a> </font> </td></tr> <tr><td> <blockquote> <p> The Lucli application allows index manipulation from the command-line. </p> <p> <a href="http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/lucli/">The repository for the Lucli contribution.</a> </p> </blockquote> </td></tr> <tr><td><br/></td></tr> </table> <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr><td bgcolor="#828DA6"> <font color="#ffffff" face="arial,helvetica,sanserif"> <a name="Term Highlighter"><strong>Term Highlighter</strong></a> </font> </td></tr> <tr><td> <blockquote> <p> A small set of classes for highlighting matching terms in search results. </p> <a href="http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/highlighter/">The repository for the Highlighter contribution.</a> </blockquote> </td></tr> <tr><td><br/></td></tr> </table> <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr><td bgcolor="#828DA6"> <font color="#ffffff" face="arial,helvetica,sanserif"> <a name="Javascript Query Constructor"><strong>Javascript Query Constructor</strong></a> </font> </td></tr> <tr><td> <blockquote> <p> Javascript library to support client-side query-building. Provides support for a user interface similar to <a href="http://www.google.com.sg/advanced_search">Google's Advanced Search</a>. </p> <p> <a href="http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/javascript/queryConstructor/">The repository for the Javascript Query Constructor files.</a> </p> </blockquote> </td></tr> <tr><td><br/></td></tr> </table> <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr><td bgcolor="#828DA6"> <font color="#ffffff" face="arial,helvetica,sanserif"> <a name="Javascript Query Validator"><strong>Javascript Query Validator</strong></a> </font> </td></tr> <tr><td> <blockquote> <p> Javascript library to support client-side query validation. Lucene doesn't like malformed queries and tends to throw ParseException, which are often difficult to interpret and pass on to the user. This library hopes to alleviate that problem. </p> <p> <a href="http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/javascript/queryValidator/">The repository for the Javascript Query Validator files.</a> </p> </blockquote> </td></tr> <tr><td><br/></td></tr> </table> <table border="0" cellspacing="0" cellpadding="2" width="100%"> <tr><td bgcolor="#828DA6"> <font color="#ffffff" face="arial,helvetica,sanserif"> <a name="High Frequency Terms"><strong>High Frequency Terms</strong></a> </font> </td></tr> <tr><td> <blockquote> <p> The miscellaneous package is for classes that don't fit anywhere else. The only class in it right now determines what terms occur the most inside a Lucene index. This could be useful for analyzing which terms may need to go into a custom stop word list for better search results. </p> <p> <a href="http://svn.apache.org/repos/asf/lucene/java/trunk/contrib/miscellaneous/">The repository for miscellaneous classes.</a> </p> </blockquote> </td></tr> <tr><td><br/></td></tr> </table> </blockquote> </p> </td></tr> <tr><td><br/></td></tr> </table> </td> </tr> <!-- FOOTER --> <tr><td colspan="2"> <hr noshade="" size="1"/> </td></tr> <tr><td colspan="2"> <div align="center"><font color="#525D76" size="-1"><em> Copyright &#169; 1999-2005, The Apache Software Foundation </em></font></div> </td></tr> </table> </body> </html> <!-- end the processing -->
web_app/static/web_app/js/angular-1.6.0/docs/partials/api/ngComponentRouter/type/RootRouter.html
sfloresk/nso-dashboard-demo
<a href='https://github.com/angular/angular.js/edit/master/src/ngComponentRouter/Router.js?message=docs(RootRouter)%3A%20describe%20your%20change...#L81' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this Doc</a> <a href='https://github.com/angular/angular.js/tree/master/src/ngComponentRouter/Router.js#L81' class='view-source pull-right btn btn-primary'> <i class="glyphicon glyphicon-zoom-in">&nbsp;</i>View Source </a> <header class="api-profile-header"> <h1 class="api-profile-header-heading">RootRouter</h1> <ol class="api-profile-header-structure naked-list step-list"> <li> - type in module <a href="api/ngComponentRouter">ngComponentRouter</a> </li> </ol> </header> <div class="alert alert-danger deprecation"> <div class="title"><strong>Deprecated:</strong> </div> <p>In an effort to keep synchronized with router changes in Angular 2, this implementation of the Component Router (ngComponentRouter module) has been deprecated and will not receive further updates. We are investigating backporting the Angular 2 Router to Angular 1, but alternatively, use the <a href="api/ngRoute"><code>ngRoute</code></a> module or community developed projects (e.g. <a href="https://github.com/angular-ui/ui-router">ui-router</a>).</p> </div> <div class="api-profile-description"> <p>This type extends the <a href="api/ngComponentRouter/type/Router"><code>Router</code></a>.</p> <p>There is only one instance of this type in a Component Router application injectable as the <a href="api/ngComponentRouter/service/$rootRouter"><code>$rootRouter</code></a> service. This <strong>Router</strong> is associate with the <strong>Top Level Component</strong> (<a href="api/ngComponentRouter/service/$routerRootComponent"><code>$routerRootComponent</code></a>). It acts as the connection between the <strong>Routers</strong> and the <strong>Location</strong>.</p> </div> <div> </div>
core/standards/encodings/ISO-8859-1_SV/ISO-8859-1_SV_specified.html
frivoal/presto-testo
<!DOCTYPE HTML> <html> <head> <title> Encodings test suite: ISO-8859-1 SW (specified) </title> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> <meta http-equiv="content-language" content="sw"> </head> <body> qwe åöä <br /> QWE ÅÖÄ </body> </html>
src/main/webapp/resources/assets/styles/salesforce-lightning-design-system-vf.css
PankajHingane-REISysIn/GitHubToSFDeploy
/*! Lightning Design System 1.0.0 */ /*! * Copyright (c) 2015, salesforce.com, inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of salesforce.com, inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ @font-face { font-family: 'Salesforce Sans'; src: url("../fonts/webfonts/SalesforceSans-Light.woff2") format("woff2"), url("../fonts/webfonts/SalesforceSans-Light.woff") format("woff"); font-weight: 300; } @font-face { font-family: 'Salesforce Sans'; src: url("../fonts/webfonts/SalesforceSans-LightItalic.woff2") format("woff2"), url("../fonts/webfonts/SalesforceSans-LightItalic.woff") format("woff"); font-style: italic; font-weight: 300; } @font-face { font-family: 'Salesforce Sans'; src: url("../fonts/webfonts/SalesforceSans-Regular.woff2") format("woff2"), url("../fonts/webfonts/SalesforceSans-Regular.woff") format("woff"); font-weight: 400; } @font-face { font-family: 'Salesforce Sans'; src: url("../fonts/webfonts/SalesforceSans-Italic.woff2") format("woff2"), url("../fonts/webfonts/SalesforceSans-Italic.woff") format("woff"); font-style: italic; font-weight: 400; } @font-face { font-family: 'Salesforce Sans'; src: url("../fonts/webfonts/SalesforceSans-Bold.woff2") format("woff2"), url("../fonts/webfonts/SalesforceSans-Bold.woff") format("woff"); font-weight: 700; } @font-face { font-family: 'Salesforce Sans'; src: url("../fonts/webfonts/SalesforceSans-BoldItalic.woff2") format("woff2"), url("../fonts/webfonts/SalesforceSans-BoldItalic.woff") format("woff"); font-style: italic; font-weight: 700; } .slds { /*! normalize.css v3.0.2 | MIT License | git.io/normalize */ /** * Note: A parent class must be put on anything that contains * a .slds-button--hint so that the child reacts * when the parent is hovered. */ /*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */ } .slds { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; margin: 0; } .slds article, .slds aside, .slds details, .slds figcaption, .slds figure, .slds footer, .slds header, .slds hgroup, .slds main, .slds menu, .slds nav, .slds section, .slds summary { display: block; } .slds audio, .slds canvas, .slds progress, .slds video { display: inline-block; vertical-align: baseline; } .slds audio:not([controls]) { display: none; height: 0; } .slds [hidden], .slds template { display: none; } .slds a { background-color: transparent; } .slds a:active, .slds a:hover { outline: 0; } .slds abbr[title] { border-bottom: 1px dotted; } .slds b, .slds strong { font-weight: bold; } .slds dfn { font-style: italic; } .slds mark { background: #ff0; color: #000; } .slds small { font-size: 80%; } .slds sub, .slds sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } .slds sup { top: -0.5em; } .slds sub { bottom: -0.25em; } .slds img { border: 0; } .slds svg:not(:root) { overflow: hidden; } .slds figure { margin: 1em 40px; } .slds hr { box-sizing: content-box; height: 0; } .slds pre { overflow: auto; } .slds code, .slds kbd, .slds pre, .slds samp { font-family: monospace, monospace; font-size: 1em; } .slds button, .slds input, .slds optgroup, .slds select, .slds textarea { color: inherit; font: inherit; margin: 0; } .slds button { overflow: visible; } .slds button, .slds select { text-transform: none; } .slds button, .slds input[type="button"], .slds input[type="reset"], .slds input[type="submit"] { -webkit-appearance: button; cursor: pointer; } .slds button[disabled], .slds input[disabled] { cursor: default; } .slds button::-moz-focus-inner, .slds input::-moz-focus-inner { border: 0; padding: 0; } .slds input { line-height: normal; } .slds input[type="checkbox"], .slds input[type="radio"] { box-sizing: border-box; padding: 0; } .slds input[type="number"]::-webkit-inner-spin-button, .slds input[type="number"]::-webkit-outer-spin-button { height: auto; } .slds input[type="search"] { -webkit-appearance: textfield; box-sizing: content-box; } .slds input[type="search"]::-webkit-search-cancel-button, .slds input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } .slds fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } .slds legend { border: 0; padding: 0; } .slds textarea { overflow: auto; } .slds optgroup { font-weight: bold; } .slds table { border-collapse: collapse; border-spacing: 0; } .slds td, .slds th { padding: 0; } .slds *, .slds *:before, .slds *:after { box-sizing: border-box; } .slds ::-webkit-input-placeholder { color: #54698d; font-weight: 400; font-size: 14px; } .slds ::-moz-placeholder { color: #54698d; font-weight: 400; font-size: 14px; } .slds :-ms-input-placeholder { color: #54698d; font-weight: 400; font-size: 14px; } .slds ::placeholder { color: #54698d; font-weight: 400; font-size: 14px; } .slds { font: 100% / 1.5 "Salesforce Sans", Arial, sans-serif; background: white; color: #16325c; -webkit-tap-highlight-color: transparent; } .slds:not(html), .slds body { font-size: 14px; background: transparent; } .slds ::-moz-selection { background: #faffbd; text-shadow: none; color: #16325c; } .slds ::selection { background: #faffbd; text-shadow: none; color: #16325c; } .slds h1, .slds h2, .slds h3, .slds h4, .slds h5, .slds h6, .slds p, .slds ol, .slds ul, .slds dl, .slds fieldset { margin: 0; padding: 0; } .slds dd, .slds figure { margin: 0; } .slds abbr[title], .slds fieldset, .slds hr { border: 0; } .slds hr { padding: 0; } .slds h1, .slds h2, .slds h3, .slds h4, .slds h5, .slds h6 { font-weight: inherit; font-size: 1em; } .slds ol, .slds ul { list-style: none; } .slds a { color: #0070d2; text-decoration: none; transition: color 0.1s linear; } .slds a:hover, .slds a:focus { text-decoration: underline; color: #005fb2; } .slds a:focus { outline: thin dotted; outline: 5px auto #1589ee; outline-offset: -2px; } .slds a:active { color: #00396b; } .slds a, .slds button { cursor: pointer; } .slds b, .slds strong, .slds dfn { font-weight: 700; } .slds mark { background-color: #faffbd; } .slds abbr[title] { cursor: help; } .slds input[type=search] { box-sizing: border-box; } .slds table { width: 100%; } .slds caption, .slds th, .slds td { text-align: left; } .slds hr { display: block; margin: 32px 0; border-top: 1px solid #d8dde6; height: 1px; clear: both; } .slds audio, .slds canvas, .slds iframe, .slds img, .slds svg, .slds video { vertical-align: middle; } .slds img { max-width: 100%; height: auto; } .slds body { padding: 0; margin: 0; } .slds h1, .slds h2, .slds h3, .slds h4, .slds h5, .slds h6, .slds th, .slds td { font-family: "Salesforce Sans", Arial, sans-serif; } .slds h1, .slds h2, .slds h3, .slds h4, .slds h5, .slds h6 { display: inherit; } .slds li { margin-left: 0; } .slds .slds-media--timeline { padding-bottom: 32px; position: relative; } .slds .slds-media--timeline:before { content: ''; background: #d8dde6; height: 100%; width: 2px; position: absolute; left: 18px; top: 0; bottom: 0; margin-left: -1px; z-index: -1; } .slds .slds-media--timeline:before { margin-left: -3px; } .slds .slds-media--timeline .slds-timeline__icon { border: 2px solid #fff; } .slds .slds-timeline__actions { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-flow: column nowrap; -ms-flex-flow: column nowrap; flex-flow: column nowrap; -webkit-align-items: center; -ms-flex-align: center; align-items: center; } .slds .slds-timeline__date { margin-bottom: 4px; font-size: 12px; color: #54698d; } .slds .slds-timeline__media--call:before { background: #48c3cc; } .slds .slds-timeline__media--email:before { background: #95aec5; } .slds .slds-timeline__media--event:before { background: #eb7092; } .slds .slds-timeline__media--task:before { background: #4bc076; } .slds .slds-timeline__item { padding-left: 12px; padding-right: 12px; } .slds .slds-breadcrumb .slds-list__item { position: relative; } .slds .slds-breadcrumb .slds-list__item:before { content: '\003E'; position: absolute; left: -4px; } .slds .slds-breadcrumb .slds-list__item > a { display: block; padding: 0 8px; } .slds .slds-breadcrumb .slds-list__item > a:hover { text-decoration: none; } .slds .slds-breadcrumb .slds-list__item:first-child > a { padding-left: 0; } .slds .slds-breadcrumb .slds-list__item:first-child:before { content: ''; } .slds .slds-button-group { display: -webkit-flex; display: -ms-flexbox; display: flex; /** * Note: This class should be placed on the wrapper * of a button that's the final one in a button-group */ } .slds .slds-button-group .slds-button { border-radius: 0; border-left: 0; } .slds .slds-button-group .slds-button + .slds-button { margin-left: 0; } .slds .slds-button-group .slds-button:first-child { border-radius: 4px 0 0 4px; border-left: 1px solid #d8dde6; } .slds .slds-button-group .slds-button:first-child.slds-button--inverse[disabled] { border-left-color: rgba(255, 255, 255, 0.15); } .slds .slds-button-group .slds-button--inverse:first-child[disabled] + .slds-button--inverse { border-left: 1px solid #d8dde6; } .slds .slds-button-group .slds-button:first-child:not(.slds-button--last .slds-button) { border-left: 1px solid #d8dde6; } .slds .slds-button-group .slds-button:last-child { border-radius: 0 4px 4px 0; } .slds .slds-button-group .slds-button:focus { z-index: 1; } .slds .slds-button-group .slds-button:only-child { border-radius: 4px; } .slds .slds-button-group .slds-toggle-visibility:last-child[disabled] { display: none; } .slds .slds-button-group + .slds-button-group, .slds .slds-button-group + .slds-button { margin-left: 4px; } .slds .slds-button-group .slds-button--last .slds-button { border-radius: 0 4px 4px 0; border-left: 0; } .slds .slds-button-group .slds-button.slds-button--last { border-radius: 0 4px 4px 0; } .slds .slds-button-group .slds-button--icon-border.slds-is-selected + .slds-button--icon-border.slds-is-selected { border-left: 1px solid #d8dde6; } .slds .slds-button-group .slds-button--icon-border.slds-is-selected:first-child { border-left: 1px solid #0070d2; } .slds .slds-button-group .slds-button--icon-more:hover, .slds .slds-button-group .slds-button--icon-more:focus { border-left-width: 0; } .slds .slds-button { position: relative; display: inline-block; padding: 0; background: transparent; background-clip: padding-box; border: 0; border-radius: 4px; color: #0070d2; font-size: inherit; line-height: 34px; text-decoration: none; -webkit-appearance: none; white-space: normal; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; transition: color 0.05s linear, background-color 0.05s linear; } .slds .slds-button:hover, .slds .slds-button:focus, .slds .slds-button:active, .slds .slds-button:visited { text-decoration: none; } .slds .slds-button:hover, .slds .slds-button:focus { color: #005fb2; } .slds .slds-button:focus { outline: 0; box-shadow: 0 0 3px #0070D2; } .slds .slds-button:active { color: #00396b; } .slds .slds-button[disabled] { color: #d8dde6; } .slds .slds-button:hover .slds-button__icon, .slds .slds-button:focus .slds-button__icon, .slds .slds-button:active .slds-button__icon, .slds .slds-button[disabled] .slds-button__icon { fill: currentColor; } .slds .slds-button + .slds-button-group { margin-left: 4px; } .slds .slds-button + .slds-button { margin-left: 4px; } .slds .slds-button-space-left { margin-left: 4px; } .slds a.slds-button { text-align: center; } .slds a.slds-button:focus { outline: 0; box-shadow: 0 0 3px #0070D2; } .slds .slds-button__icon--left { margin-right: 8px; } .slds .slds-button__icon--right { margin-left: 8px; } .slds .slds-button--small { line-height: 28px; /** * Note: Force icon-only buttons to be the same * height as small buttons since they're SVG * and line-height has no effect on them */ min-height: 32px; } .slds .slds-button--neutral { padding-left: 16px; padding-right: 16px; text-align: center; vertical-align: middle; border: 1px solid #d8dde6; background-color: white; } .slds .slds-button--neutral:hover, .slds .slds-button--neutral:focus { background-color: #f4f6f9; } .slds .slds-button--neutral:active { background-color: #eef1f6; } .slds .slds-button--neutral[disabled] { background-color: white; cursor: default; } .slds .slds-button--hint { color: #9faab5; } .slds .slds-button--hint:hover, .slds .slds-button--hint:focus, .slds .slds-button--hint:active { color: #0070d2; } .slds .slds-hint-parent:hover .slds-button--hint, .slds .slds-hint-parent:focus .slds-button--hint { color: #0070d2; } .slds .slds-button--brand { padding-left: 16px; padding-right: 16px; text-align: center; vertical-align: middle; background-color: #0070d2; border: 1px solid #0070d2; color: white; } .slds .slds-button--brand:link, .slds .slds-button--brand:visited, .slds .slds-button--brand:active { color: white; } .slds .slds-button--brand:hover, .slds .slds-button--brand:focus { background-color: #005fb2; color: white; } .slds .slds-button--brand:active { background-color: #00396b; } .slds .slds-button--brand[disabled] { background: #e0e5ee; border-color: transparent; color: white; } .slds .slds-button--inverse { padding-left: 16px; padding-right: 16px; text-align: center; vertical-align: middle; border: 1px solid #d8dde6; background-color: transparent; } .slds .slds-button--inverse:hover, .slds .slds-button--inverse:focus { background-color: #f4f6f9; } .slds .slds-button--inverse:active { background-color: #eef1f6; } .slds .slds-button--inverse[disabled] { background-color: transparent; border-color: rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.15); } .slds .slds-button--inverse, .slds .slds-button--inverse:link, .slds .slds-button--inverse:visited, .slds .slds-button-group .slds-button--icon-inverse, .slds .slds-button-group .slds-button--icon-inverse:link, .slds .slds-button-group .slds-button--icon-inverse:visited { color: #e0e5ee; } .slds .slds-button--inverse:hover, .slds .slds-button--inverse:focus, .slds .slds-button--inverse:active, .slds .slds-button-group .slds-button--icon-inverse:hover, .slds .slds-button-group .slds-button--icon-inverse:focus, .slds .slds-button-group .slds-button--icon-inverse:active { color: #0070d2; } .slds .slds-button--inverse:focus, .slds .slds-button-group .slds-button--icon-inverse:focus { outline: none; box-shadow: 0 0 3px #E0E5EE; } .slds a.slds-button--inverse:focus { outline: none; box-shadow: 0 0 3px #E0E5EE; } .slds .slds-button--destructive { padding-left: 16px; padding-right: 16px; text-align: center; vertical-align: middle; background-color: #c23934; border: 1px solid #c23934; color: white; } .slds .slds-button--destructive:link, .slds .slds-button--destructive:visited, .slds .slds-button--destructive:active { color: white; } .slds .slds-button--destructive:hover, .slds .slds-button--destructive:focus { background-color: #a61a14; color: white; } .slds .slds-button--destructive:active { background-color: #870500; border-color: #870500; } .slds .slds-button--destructive[disabled] { background: #e0e5ee; border-color: transparent; color: white; } .slds .slds-button--neutral.slds-is-selected { border-color: transparent; background-color: transparent; } .slds .slds-button--neutral.slds-is-selected:hover:not([disabled]), .slds .slds-button--neutral.slds-is-selected:focus:not([disabled]) { border: 1px solid #d8dde6; background-color: #f4f6f9; } .slds .slds-button--neutral.slds-is-selected:active { background-color: #eef1f6; } .slds .slds-button__icon--stateful { width: 12px; height: 12px; fill: currentColor; } .slds .slds-button--inverse.slds-is-selected { border-color: transparent; } .slds .slds-text-not-selected, .slds .slds-text-selected, .slds .slds-text-selected-focus, .slds .slds-is-selected[disabled]:hover .slds-text-selected, .slds .slds-is-selected[disabled]:focus .slds-text-selected { display: block; } .slds .slds-not-selected .slds-text-selected, .slds .slds-not-selected .slds-text-selected-focus, .slds .slds-is-selected .slds-text-not-selected, .slds .slds-is-selected:not(:hover):not(:focus) .slds-text-selected-focus, .slds .slds-is-selected[disabled]:hover .slds-text-selected-focus, .slds .slds-is-selected:hover .slds-text-selected, .slds .slds-is-selected:focus .slds-text-selected { display: none; } .slds .slds-button--icon, .slds .slds-button--icon-container, .slds .slds-button--icon-border, .slds .slds-button--icon-border-filled, .slds .slds-button--icon-more { line-height: 1; vertical-align: middle; color: #54698d; } .slds .slds-button--icon-bare { line-height: 1; vertical-align: middle; color: #54698d; } .slds .slds-button--icon-border[disabled]:hover, .slds .slds-button--icon-border[disabled]:focus { background-color: transparent; } .slds .slds-button--icon-border-filled, .slds .slds-button--icon-border { border: 1px solid #d8dde6; } .slds .slds-button--icon-border-filled:hover, .slds .slds-button--icon-border-filled:focus, .slds .slds-button--icon-border:hover, .slds .slds-button--icon-border:focus { background-color: #f4f6f9; } .slds .slds-button--icon-border-filled:active, .slds .slds-button--icon-border:active { background-color: #eef1f6; } .slds .slds-button--icon-container, .slds .slds-button--icon-border, .slds .slds-button--icon-border-filled { width: 36px; height: 36px; } .slds .slds-button--icon-border-filled { background-color: white; } .slds .slds-button--icon-border-filled[disabled] { border: 1px solid #d8dde6; background-color: white; } .slds .slds-button--icon-more { line-height: 34px; padding: 0 8px; vertical-align: middle; border: 1px solid #d8dde6; } .slds .slds-button--icon-more:hover, .slds .slds-button--icon-more:focus { border: 1px solid #d8dde6; } .slds .slds-button--icon-more:hover:hover, .slds .slds-button--icon-more:hover:focus, .slds .slds-button--icon-more:focus:hover, .slds .slds-button--icon-more:focus:focus { background-color: #f4f6f9; } .slds .slds-button--icon-more:hover:active, .slds .slds-button--icon-more:focus:active { background-color: #eef1f6; } .slds .slds-button--icon-more:hover .slds-button__icon, .slds .slds-button--icon-more:focus .slds-button__icon { fill: #0070d2; } .slds .slds-button--icon-more:active .slds-button__icon { fill: #00396b; } .slds .slds-button--icon-more[disabled] { cursor: default; } .slds .slds-button--icon-more[disabled] .slds-button__icon { fill: #d8dde6; } .slds .slds-button--icon-inverse { color: white; } .slds .slds-button--icon-inverse:hover, .slds .slds-button--icon-inverse:focus { color: rgba(255, 255, 255, 0.75); } .slds .slds-button--icon-inverse:active { color: rgba(255, 255, 255, 0.5); } .slds .slds-button--icon-inverse[disabled] { color: rgba(255, 255, 255, 0.15); } .slds .slds-button--icon-border.slds-is-selected { background-color: #0070d2; border: 1px solid #0070d2; color: white; } .slds .slds-button--icon-border.slds-is-selected:link, .slds .slds-button--icon-border.slds-is-selected:visited, .slds .slds-button--icon-border.slds-is-selected:active { color: white; } .slds .slds-button--icon-border.slds-is-selected:hover, .slds .slds-button--icon-border.slds-is-selected:focus { background-color: #005fb2; color: white; } .slds .slds-button--icon-border.slds-is-selected:active { background-color: #00396b; } .slds .slds-button--icon-border.slds-is-selected .slds-button__icon { fill: white; } .slds .slds-button--icon-border.slds-is-selected:hover .slds-button__icon, .slds .slds-button--icon-border.slds-is-selected:focus .slds-button__icon { fill: white; } .slds .slds-button--icon-small { width: 32px; height: 32px; line-height: 28px; } .slds .slds-button--icon-x-small { width: 20px; height: 20px; border-radius: 2px; line-height: 1; } .slds .slds-button--icon-x-small .slds-button__icon { width: 12px; height: 12px; } .slds .slds-button__icon { width: 16px; height: 16px; fill: currentColor; } .slds .slds-button__icon--large { width: 24px; height: 24px; } .slds .slds-button__icon--small { width: 12px; height: 12px; } .slds .slds-button__icon--x-small { width: 8px; height: 8px; } .slds .slds-button__icon--hint { fill: #9faab5; } .slds .slds-hint-parent:hover .slds-button__icon--hint, .slds .slds-hint-parent:focus .slds-button__icon--hint { fill: #54698d; } .slds .slds-icon_container, .slds .slds-icon__container { display: inline-block; border-radius: 4px; } .slds .slds-icon_container--circle, .slds .slds-icon__container--circle { padding: 8px; border-radius: 50%; } .slds .slds-icon { width: 32px; height: 32px; border-radius: 4px; fill: white; } .slds .slds-icon-action-change-owner { background-color: #54698d; } .slds .slds-icon-action-share { background-color: #54698d; } .slds .slds-icon-action-info { background-color: #54698d; } .slds .slds-icon-action-upload { background-color: #54698d; } .slds .slds-icon-action-change-record-type { background-color: #54698d; } .slds .slds-icon-action-check { background-color: #54698d; } .slds .slds-icon-action-download { background-color: #54698d; } .slds .slds-icon-action-edit-relationship { background-color: #54698d; } .slds .slds-icon-action-freeze-user { background-color: #54698d; } .slds .slds-icon-action-manage-perm-sets { background-color: #54698d; } .slds .slds-icon-action-password-unlock { background-color: #54698d; } .slds .slds-icon-action-refresh { background-color: #54698d; } .slds .slds-icon-action-remove { background-color: #54698d; } .slds .slds-icon-action-reset-password { background-color: #54698d; } .slds .slds-icon-action-user-activation { background-color: #54698d; } .slds .slds-icon-action-add-contact { background-color: #a094ed; } .slds .slds-icon-action-approval { background-color: #00c6b7; } .slds .slds-icon-action-canvas { background-color: #8199af; } .slds .slds-icon-action-goal { background-color: #56aadf; } .slds .slds-icon-action-opportunity-competitor { background-color: #fcb95b; } .slds .slds-icon-action-opportunity-line-item { background-color: #fcb95b; } .slds .slds-icon-action-opportunity-team-member { background-color: #fcb95b; } .slds .slds-icon-action-question-post-action { background-color: #32af5c; } .slds .slds-icon-action-quote { background-color: #88c651; } .slds .slds-icon-action-reject { background-color: #00c6b7; } .slds .slds-icon-action-social-post { background-color: #ea74a2; } .slds .slds-icon-action-fallback { background-color: #9895ee; } .slds .slds-icon-action-edit { background-color: #1dccbf; } .slds .slds-icon-action-delete { background-color: #e6717c; } .slds .slds-icon-action-clone { background-color: #6ca1e9; } .slds .slds-icon-action-follow { background-color: #31b9f8; } .slds .slds-icon-action-following { background-color: #7dcf64; } .slds .slds-icon-action-join-group { background-color: #779ef2; } .slds .slds-icon-action-leave-group { background-color: #f39e58; } .slds .slds-icon-action-edit-groups { background-color: #34becd; } .slds .slds-icon-action-share-post { background-color: #65cae4; } .slds .slds-icon-action-user { background-color: #65cae4; } .slds .slds-icon-action-share-file { background-color: #baac93; } .slds .slds-icon-action-new-task { background-color: #4bc076; } .slds .slds-icon-action-new-contact { background-color: #a094ed; } .slds .slds-icon-action-new-opportunity { background-color: #fcb95b; } .slds .slds-icon-action-new-case { background-color: #f2cf5b; } .slds .slds-icon-action-new-lead { background-color: #f88962; } .slds .slds-icon-action-share-thanks { background-color: #e9696e; } .slds .slds-icon-action-share-link { background-color: #7a9ae6; } .slds .slds-icon-action-share-poll { background-color: #699be1; } .slds .slds-icon-action-new-event { background-color: #eb7092; } .slds .slds-icon-action-new-child-case { background-color: #fa975c; } .slds .slds-icon-action-log-a-call { background-color: #48c3cc; } .slds .slds-icon-action-new-note { background-color: #e6d478; } .slds .slds-icon-action-new { background-color: #33bce7; } .slds .slds-icon-action-filter { background-color: #fd90b5; } .slds .slds-icon-action-sort { background-color: #fab9a5; } .slds .slds-icon-action-description { background-color: #7dc37d; } .slds .slds-icon-action-defer { background-color: #ef7ead; } .slds .slds-icon-action-update { background-color: #81b4d6; } .slds .slds-icon-action-log-this-event { background-color: #eb7092; } .slds .slds-icon-action-email { background-color: #95aec5; } .slds .slds-icon-action-dial-in { background-color: #8b9ae3; } .slds .slds-icon-action-map { background-color: #76c6ee; } .slds .slds-icon-action-call { background-color: #1fcaa0; } .slds .slds-icon-action-google-news { background-color: #f5675b; } .slds .slds-icon-action-web-link { background-color: #56aadf; } .slds .slds-icon-action-submit-for-approval { background-color: #50cc7a; } .slds .slds-icon-action-search { background-color: #48adeb; } .slds .slds-icon-action-close { background-color: #ef6e64; } .slds .slds-icon-action-back { background-color: #0dc2d9; } .slds .slds-icon-action-office-365 { background-color: #ff8041; } .slds .slds-icon-action-concur { background-color: #4cc3c7; } .slds .slds-icon-action-dropbox { background-color: #52aef9; } .slds .slds-icon-action-evernote { background-color: #86c86f; } .slds .slds-icon-action-docusign { background-color: #5080db; } .slds .slds-icon-action-more { background-color: #62b7ed; } .slds .slds-icon-action-notebook { background-color: #e6d478; } .slds .slds-icon-action-new-notebook { background-color: #e6d478; } .slds .slds-icon-action-preview { background-color: #7f8de1; } .slds .slds-icon-action-priority { background-color: #fbb439; } .slds .slds-icon-action-default-custom-object { background-color: #8199af; } .slds .slds-icon-action-new-custom-object { background-color: #a7d44d; } .slds .slds-icon-action-lead-convert { background-color: #f88962; } .slds .slds-icon-action-new-account { background-color: #7f8de1; } .slds .slds-icon-action-new-person-account { background-color: #7f8de1; } .slds .slds-icon-action-new-campaign { background-color: #f49756; } .slds .slds-icon-action-new-group { background-color: #83b6ff; } .slds .slds-icon-action-update-status { background-color: #1ec7be; } .slds .slds-icon-action-new-custom-1 { background-color: #ff7b84; } .slds .slds-icon-action-new-custom-2 { background-color: #cfd05c; } .slds .slds-icon-action-new-custom-3 { background-color: #ecb46c; } .slds .slds-icon-action-new-custom-4 { background-color: #e1d951; } .slds .slds-icon-action-new-custom-5 { background-color: #9fdb66; } .slds .slds-icon-action-new-custom-6 { background-color: #54c473; } .slds .slds-icon-action-new-custom-7 { background-color: #6a89e5; } .slds .slds-icon-action-new-custom-8 { background-color: #50ceb9; } .slds .slds-icon-action-new-custom-9 { background-color: #6b9ee2; } .slds .slds-icon-action-new-custom-10 { background-color: #6488e3; } .slds .slds-icon-action-new-custom-11 { background-color: #8784ea; } .slds .slds-icon-action-new-custom-12 { background-color: #dc71d1; } .slds .slds-icon-action-new-custom-13 { background-color: #df6184; } .slds .slds-icon-action-new-custom-14 { background-color: #3cc2b3; } .slds .slds-icon-action-new-custom-15 { background-color: #f77e75; } .slds .slds-icon-action-new-custom-16 { background-color: #e9af67; } .slds .slds-icon-action-new-custom-17 { background-color: #acd360; } .slds .slds-icon-action-new-custom-18 { background-color: #4dca76; } .slds .slds-icon-action-new-custom-19 { background-color: #3abeb1; } .slds .slds-icon-action-new-custom-20 { background-color: #48c7c8; } .slds .slds-icon-action-new-custom-21 { background-color: #8a7aed; } .slds .slds-icon-action-new-custom-22 { background-color: #8b85f9; } .slds .slds-icon-action-new-custom-23 { background-color: #b070e6; } .slds .slds-icon-action-new-custom-24 { background-color: #e56798; } .slds .slds-icon-action-new-custom-25 { background-color: #e46fbe; } .slds .slds-icon-action-new-custom-26 { background-color: #7698f0; } .slds .slds-icon-action-new-custom-27 { background-color: #5ab0d2; } .slds .slds-icon-action-new-custom-28 { background-color: #89c059; } .slds .slds-icon-action-new-custom-29 { background-color: #bdd25f; } .slds .slds-icon-action-new-custom-30 { background-color: #f59f71; } .slds .slds-icon-action-new-custom-31 { background-color: #eb687f; } .slds .slds-icon-action-new-custom-32 { background-color: #38c393; } .slds .slds-icon-action-new-custom-33 { background-color: #97cf5d; } .slds .slds-icon-action-new-custom-34 { background-color: #d58a6a; } .slds .slds-icon-action-new-custom-35 { background-color: #e9637e; } .slds .slds-icon-action-new-custom-36 { background-color: #d472d4; } .slds .slds-icon-action-new-custom-37 { background-color: #8c89f2; } .slds .slds-icon-action-new-custom-38 { background-color: #53b6d7; } .slds .slds-icon-action-new-custom-39 { background-color: #4fbe75; } .slds .slds-icon-action-new-custom-40 { background-color: #83c75e; } .slds .slds-icon-action-new-custom-41 { background-color: #43b5b5; } .slds .slds-icon-action-new-custom-42 { background-color: #cfd05b; } .slds .slds-icon-action-new-custom-43 { background-color: #7f93f9; } .slds .slds-icon-action-new-custom-44 { background-color: #c8ca58; } .slds .slds-icon-action-new-custom-45 { background-color: #d95879; } .slds .slds-icon-action-new-custom-46 { background-color: #67a5e7; } .slds .slds-icon-action-new-custom-47 { background-color: #5fcc64; } .slds .slds-icon-action-new-custom-48 { background-color: #ef697f; } .slds .slds-icon-action-new-custom-49 { background-color: #e25c80; } .slds .slds-icon-action-new-custom-50 { background-color: #49bcd3; } .slds .slds-icon-action-new-custom-51 { background-color: #d8c760; } .slds .slds-icon-action-new-custom-52 { background-color: #ee8e6f; } .slds .slds-icon-action-new-custom-53 { background-color: #f36e83; } .slds .slds-icon-action-new-custom-54 { background-color: #ea70b1; } .slds .slds-icon-action-new-custom-55 { background-color: #d66ee0; } .slds .slds-icon-action-new-custom-56 { background-color: #718deb; } .slds .slds-icon-action-new-custom-57 { background-color: #5a9cdd; } .slds .slds-icon-action-new-custom-58 { background-color: #34b59d; } .slds .slds-icon-action-new-custom-59 { background-color: #e3d067; } .slds .slds-icon-action-new-custom-60 { background-color: #bf5a88; } .slds .slds-icon-action-new-custom-61 { background-color: #f57376; } .slds .slds-icon-action-new-custom-62 { background-color: #6b92dc; } .slds .slds-icon-action-new-custom-63 { background-color: #7ccf60; } .slds .slds-icon-action-new-custom-64 { background-color: #618fd8; } .slds .slds-icon-action-new-custom-65 { background-color: #f279ab; } .slds .slds-icon-action-new-custom-66 { background-color: #d8be5f; } .slds .slds-icon-action-new-custom-67 { background-color: #f87d76; } .slds .slds-icon-action-new-custom-68 { background-color: #f26979; } .slds .slds-icon-action-new-custom-69 { background-color: #ed6387; } .slds .slds-icon-action-new-custom-70 { background-color: #e769b4; } .slds .slds-icon-action-new-custom-71 { background-color: #e36ee3; } .slds .slds-icon-action-new-custom-72 { background-color: #8d9bfb; } .slds .slds-icon-action-new-custom-73 { background-color: #679ef0; } .slds .slds-icon-action-new-custom-74 { background-color: #41c8a0; } .slds .slds-icon-action-new-custom-75 { background-color: #cd9f65; } .slds .slds-icon-action-new-custom-76 { background-color: #db6d7a; } .slds .slds-icon-action-new-custom-77 { background-color: #b55d5b; } .slds .slds-icon-action-new-custom-78 { background-color: #5a95dd; } .slds .slds-icon-action-new-custom-79 { background-color: #8ed363; } .slds .slds-icon-action-new-custom-80 { background-color: #659ad5; } .slds .slds-icon-action-new-custom-81 { background-color: #da627f; } .slds .slds-icon-action-new-custom-82 { background-color: #d15b97; } .slds .slds-icon-action-new-custom-83 { background-color: #e7806f; } .slds .slds-icon-action-new-custom-84 { background-color: #f6707b; } .slds .slds-icon-action-new-custom-85 { background-color: #f26891; } .slds .slds-icon-action-new-custom-86 { background-color: #e260ab; } .slds .slds-icon-action-new-custom-87 { background-color: #d876e5; } .slds .slds-icon-action-new-custom-88 { background-color: #996fe6; } .slds .slds-icon-action-new-custom-89 { background-color: #3e99be; } .slds .slds-icon-action-new-custom-90 { background-color: #22a48a; } .slds .slds-icon-action-new-custom-91 { background-color: #bf7b66; } .slds .slds-icon-action-new-custom-92 { background-color: #517e82; } .slds .slds-icon-action-new-custom-93 { background-color: #904d4c; } .slds .slds-icon-action-new-custom-94 { background-color: #439cba; } .slds .slds-icon-action-new-custom-95 { background-color: #8bcf6a; } .slds .slds-icon-action-new-custom-96 { background-color: #6d9de3; } .slds .slds-icon-action-new-custom-97 { background-color: #dd6085; } .slds .slds-icon-action-new-custom-98 { background-color: #e1be5c; } .slds .slds-icon-action-new-custom-99 { background-color: #f0856e; } .slds .slds-icon-action-new-custom-100 { background-color: #e15d76; } .slds .slds-icon-action-apex { background-color: #696e71; } .slds .slds-icon-action-flow { background-color: #0079bc; } .slds .slds-icon-action-announcement { background-color: #fe8f60; } .slds .slds-icon-action-record { background-color: #7dc37d; } .slds .slds-icon-action-log-event { background-color: #6ca1e9; } .slds .slds-icon-custom-1 { background-color: #ff7b84; } .slds .slds-icon-custom-2 { background-color: #cfd05c; } .slds .slds-icon-custom-3 { background-color: #ecb46c; } .slds .slds-icon-custom-4 { background-color: #e1d951; } .slds .slds-icon-custom-5 { background-color: #9fdb66; } .slds .slds-icon-custom-6 { background-color: #54c473; } .slds .slds-icon-custom-7 { background-color: #6a89e5; } .slds .slds-icon-custom-8 { background-color: #50ceb9; } .slds .slds-icon-custom-9 { background-color: #6b9ee2; } .slds .slds-icon-custom-10 { background-color: #6488e3; } .slds .slds-icon-custom-11 { background-color: #8784ea; } .slds .slds-icon-custom-12 { background-color: #dc71d1; } .slds .slds-icon-custom-13 { background-color: #df6184; } .slds .slds-icon-custom-14 { background-color: #3cc2b3; } .slds .slds-icon-custom-15 { background-color: #f77e75; } .slds .slds-icon-custom-16 { background-color: #e9af67; } .slds .slds-icon-custom-17 { background-color: #acd360; } .slds .slds-icon-custom-18 { background-color: #4dca76; } .slds .slds-icon-custom-19 { background-color: #3abeb1; } .slds .slds-icon-custom-20 { background-color: #48c7c8; } .slds .slds-icon-custom-21 { background-color: #8a7aed; } .slds .slds-icon-custom-22 { background-color: #8b85f9; } .slds .slds-icon-custom-23 { background-color: #b070e6; } .slds .slds-icon-custom-24 { background-color: #e56798; } .slds .slds-icon-custom-25 { background-color: #e46fbe; } .slds .slds-icon-custom-26 { background-color: #7698f0; } .slds .slds-icon-custom-27 { background-color: #5ab0d2; } .slds .slds-icon-custom-28 { background-color: #89c059; } .slds .slds-icon-custom-29 { background-color: #bdd25f; } .slds .slds-icon-custom-30 { background-color: #f59f71; } .slds .slds-icon-custom-31 { background-color: #eb687f; } .slds .slds-icon-custom-32 { background-color: #38c393; } .slds .slds-icon-custom-33 { background-color: #97cf5d; } .slds .slds-icon-custom-34 { background-color: #d58a6a; } .slds .slds-icon-custom-35 { background-color: #e9637e; } .slds .slds-icon-custom-36 { background-color: #d472d4; } .slds .slds-icon-custom-37 { background-color: #8c89f2; } .slds .slds-icon-custom-38 { background-color: #53b6d7; } .slds .slds-icon-custom-39 { background-color: #4fbe75; } .slds .slds-icon-custom-40 { background-color: #83c75e; } .slds .slds-icon-custom-41 { background-color: #43b5b5; } .slds .slds-icon-custom-42 { background-color: #cfd05b; } .slds .slds-icon-custom-43 { background-color: #7f93f9; } .slds .slds-icon-custom-44 { background-color: #c8ca58; } .slds .slds-icon-custom-45 { background-color: #d95879; } .slds .slds-icon-custom-46 { background-color: #67a5e7; } .slds .slds-icon-custom-47 { background-color: #5fcc64; } .slds .slds-icon-custom-48 { background-color: #ef697f; } .slds .slds-icon-custom-49 { background-color: #e25c80; } .slds .slds-icon-custom-50 { background-color: #49bcd3; } .slds .slds-icon-custom-51 { background-color: #d8c760; } .slds .slds-icon-custom-52 { background-color: #ee8e6f; } .slds .slds-icon-custom-53 { background-color: #f36e83; } .slds .slds-icon-custom-54 { background-color: #ea70b1; } .slds .slds-icon-custom-55 { background-color: #d66ee0; } .slds .slds-icon-custom-56 { background-color: #718deb; } .slds .slds-icon-custom-57 { background-color: #5a9cdd; } .slds .slds-icon-custom-58 { background-color: #34b59d; } .slds .slds-icon-custom-59 { background-color: #e3d067; } .slds .slds-icon-custom-60 { background-color: #bf5a88; } .slds .slds-icon-custom-61 { background-color: #f57376; } .slds .slds-icon-custom-62 { background-color: #6b92dc; } .slds .slds-icon-custom-63 { background-color: #7ccf60; } .slds .slds-icon-custom-64 { background-color: #618fd8; } .slds .slds-icon-custom-65 { background-color: #f279ab; } .slds .slds-icon-custom-66 { background-color: #d8be5f; } .slds .slds-icon-custom-67 { background-color: #f87d76; } .slds .slds-icon-custom-68 { background-color: #f26979; } .slds .slds-icon-custom-69 { background-color: #ed6387; } .slds .slds-icon-custom-70 { background-color: #e769b4; } .slds .slds-icon-custom-71 { background-color: #e36ee3; } .slds .slds-icon-custom-72 { background-color: #8d9bfb; } .slds .slds-icon-custom-73 { background-color: #679ef0; } .slds .slds-icon-custom-74 { background-color: #41c8a0; } .slds .slds-icon-custom-75 { background-color: #cd9f65; } .slds .slds-icon-custom-76 { background-color: #db6d7a; } .slds .slds-icon-custom-77 { background-color: #b55d5b; } .slds .slds-icon-custom-78 { background-color: #5a95dd; } .slds .slds-icon-custom-79 { background-color: #8ed363; } .slds .slds-icon-custom-80 { background-color: #659ad5; } .slds .slds-icon-custom-81 { background-color: #da627f; } .slds .slds-icon-custom-82 { background-color: #d15b97; } .slds .slds-icon-custom-83 { background-color: #e7806f; } .slds .slds-icon-custom-84 { background-color: #f6707b; } .slds .slds-icon-custom-85 { background-color: #f26891; } .slds .slds-icon-custom-86 { background-color: #e260ab; } .slds .slds-icon-custom-87 { background-color: #d876e5; } .slds .slds-icon-custom-88 { background-color: #996fe6; } .slds .slds-icon-custom-89 { background-color: #3e99be; } .slds .slds-icon-custom-90 { background-color: #22a48a; } .slds .slds-icon-custom-91 { background-color: #bf7b66; } .slds .slds-icon-custom-92 { background-color: #517e82; } .slds .slds-icon-custom-93 { background-color: #904d4c; } .slds .slds-icon-custom-94 { background-color: #439cba; } .slds .slds-icon-custom-95 { background-color: #8bcf6a; } .slds .slds-icon-custom-96 { background-color: #6d9de3; } .slds .slds-icon-custom-97 { background-color: #dd6085; } .slds .slds-icon-custom-98 { background-color: #e1be5c; } .slds .slds-icon-custom-99 { background-color: #f0856e; } .slds .slds-icon-custom-100 { background-color: #e15d76; } .slds .slds-icon-standard-log-a-call { background-color: #48c3cc; } .slds .slds-icon-standard-document { background-color: #baac93; } .slds .slds-icon-standard-environment-hub { background-color: #54698d; } .slds .slds-icon-standard-flow { background-color: #54698d; } .slds .slds-icon-standard-sossession { background-color: #54698d; } .slds .slds-icon-standard-process { background-color: #54698d; } .slds .slds-icon-standard-news { background-color: #7f8de1; } .slds .slds-icon-standard-home { background-color: #ef7ead; } .slds .slds-icon-standard-account { background-color: #7f8de1; } .slds .slds-icon-standard-apps-admin { background-color: #9895ee; } .slds .slds-icon-standard-announcement { background-color: #62b7ed; } .slds .slds-icon-standard-person-account { background-color: #7f8de1; } .slds .slds-icon-standard-social { background-color: #ea74a2; } .slds .slds-icon-standard-campaign-members { background-color: #f49756; } .slds .slds-icon-standard-article { background-color: #f2cf5b; } .slds .slds-icon-standard-answer-public { background-color: #f2cf5b; } .slds .slds-icon-standard-answer-private { background-color: #f2cf5b; } .slds .slds-icon-standard-answer-best { background-color: #f2cf5b; } .slds .slds-icon-standard-avatar-loading { background-color: #b8c3ce; } .slds .slds-icon-standard-campaign { background-color: #f49756; } .slds .slds-icon-standard-calibration { background-color: #47cfd2; } .slds .slds-icon-standard-avatar { background-color: #62b7ed; } .slds .slds-icon-standard-approval { background-color: #50cc7a; } .slds .slds-icon-standard-apps { background-color: #3c97dd; } .slds .slds-icon-standard-user { background-color: #34becd; } .slds .slds-icon-standard-evernote { background-color: #86c86f; } .slds .slds-icon-standard-coaching { background-color: #f67594; } .slds .slds-icon-standard-connected-apps { background-color: #9895ee; } .slds .slds-icon-standard-drafts { background-color: #6ca1e9; } .slds .slds-icon-standard-email { background-color: #95aec5; } .slds .slds-icon-standard-email-iq { background-color: #a094ed; } .slds .slds-icon-standard-endorsement { background-color: #8b9ae3; } .slds .slds-icon-standard-event { background-color: #eb7092; } .slds .slds-icon-standard-dropbox { background-color: #52aef9; } .slds .slds-icon-standard-concur { background-color: #4cc3c7; } .slds .slds-icon-standard-email-chatter { background-color: #f2cf5b; } .slds .slds-icon-standard-case-transcript { background-color: #f2cf5b; } .slds .slds-icon-standard-case-email { background-color: #f2cf5b; } .slds .slds-icon-standard-case-log-a-call { background-color: #f2cf5b; } .slds .slds-icon-standard-case-comment { background-color: #f2cf5b; } .slds .slds-icon-standard-case-change-status { background-color: #f2cf5b; } .slds .slds-icon-standard-work-order { background-color: #50e3c2; } .slds .slds-icon-standard-work-order-item { background-color: #33a8dc; } .slds .slds-icon-standard-client { background-color: #00d2be; } .slds .slds-icon-standard-contract { background-color: #6ec06e; } .slds .slds-icon-standard-dashboard { background-color: #ef6e64; } .slds .slds-icon-standard-case { background-color: #f2cf5b; } .slds .slds-icon-standard-empty { background-color: #8199af; } .slds .slds-icon-standard-default { background-color: #8199af; } .slds .slds-icon-standard-custom { background-color: #8199af; } .slds .slds-icon-standard-canvas { background-color: #8199af; } .slds .slds-icon-standard-contact { background-color: #a094ed; } .slds .slds-icon-standard-portal { background-color: #aec770; } .slds .slds-icon-standard-product { background-color: #b781d3; } .slds .slds-icon-standard-pricebook { background-color: #b781d3; } .slds .slds-icon-standard-feed { background-color: #62b7ed; } .slds .slds-icon-standard-feedback { background-color: #6da1ea; } .slds .slds-icon-standard-file { background-color: #baac93; } .slds .slds-icon-standard-goals { background-color: #56aadf; } .slds .slds-icon-standard-groups { background-color: #779ef2; } .slds .slds-icon-standard-household { background-color: #00afa0; } .slds .slds-icon-standard-hierarchy { background-color: #34becd; } .slds .slds-icon-standard-insights { background-color: #ec94ed; } .slds .slds-icon-standard-investment-account { background-color: #4bc076; } .slds .slds-icon-standard-performance { background-color: #f8b156; } .slds .slds-icon-standard-link { background-color: #7a9ae6; } .slds .slds-icon-standard-metrics { background-color: #56aadf; } .slds .slds-icon-standard-note { background-color: #e6d478; } .slds .slds-icon-standard-lead { background-color: #f88962; } .slds .slds-icon-standard-opportunity { background-color: #fcb95b; } .slds .slds-icon-standard-call { background-color: #f2cf5b; } .slds .slds-icon-standard-call-history { background-color: #f2cf5b; } .slds .slds-icon-standard-orders { background-color: #769ed9; } .slds .slds-icon-standard-post { background-color: #65cae4; } .slds .slds-icon-standard-poll { background-color: #699be1; } .slds .slds-icon-standard-photo { background-color: #d7d1d1; } .slds .slds-icon-standard-people { background-color: #34becd; } .slds .slds-icon-standard-generic-loading { background-color: #b8c3ce; } .slds .slds-icon-standard-group-loading { background-color: #b8c3ce; } .slds .slds-icon-standard-recent { background-color: #6ca1e9; } .slds .slds-icon-standard-solution { background-color: #8fc972; } .slds .slds-icon-standard-record { background-color: #7dc37d; } .slds .slds-icon-standard-question-best { background-color: #f2cf5b; } .slds .slds-icon-standard-question-feed { background-color: #f2cf5b; } .slds .slds-icon-standard-related-list { background-color: #59bcab; } .slds .slds-icon-standard-skill-entity { background-color: #8b9ae3; } .slds .slds-icon-standard-scan-card { background-color: #f39e58; } .slds .slds-icon-standard-report { background-color: #2ecbbe; } .slds .slds-icon-standard-quotes { background-color: #88c651; } .slds .slds-icon-standard-task { background-color: #4bc076; } .slds .slds-icon-standard-task-2 { background-color: #4bc076; } .slds .slds-icon-standard-team-member { background-color: #f2cf5b; } .slds .slds-icon-standard-thanks { background-color: #e9696e; } .slds .slds-icon-standard-reward { background-color: #e9696e; } .slds .slds-icon-standard-thanks-loading { background-color: #b8c3ce; } .slds .slds-icon-standard-today { background-color: #ef7ead; } .slds .slds-icon-standard-topic { background-color: #56aadf; } .slds .slds-icon-standard-unmatched { background-color: #62b7ed; } .slds .slds-icon-standard-marketing-actions { background-color: #6bbd6e; } .slds .slds-icon-standard-folder { background-color: #8b9ae3; } .slds .slds-icon-text-default { fill: #54698d; } .slds .slds-icon-text-warning { fill: #ffb75d; } .slds .slds-icon-standard-call { background: #cb5fff; } .slds .slds-icon-text-error { fill: #c23934; } .slds .slds-icon--x-small { line-height: 1; width: 16px; height: 16px; } .slds .slds-icon--small { line-height: 1; width: 24px; height: 24px; } .slds .slds-icon--large { width: 48px; height: 48px; } .slds .slds-card { padding: 0; border-radius: 4px; background-clip: padding-box; background-color: #f4f6f9; border: 1px solid #d8dde6; } .slds .slds-card + .slds-card { margin-top: 16px; } .slds .slds-card__header { padding: 12px 12px 4px; } .slds .slds-card__body { padding: 8px 0; } .slds .slds-card__footer { padding: 4px 16px 8px; } .slds .slds-card .slds-tile { margin: 8px; padding: 8px; } .slds .slds-card--empty .slds-card__body { text-align: center; } .slds .slds-input { background-color: white; color: #16325c; border: 1px solid #d8dde6; border-radius: 4px; width: 100%; transition: border 0.1s linear, background-color 0.1s linear; display: inline-block; padding: 0 16px 0 12px; line-height: 34px; min-height: calc(34px + 2px); /* Note: for IE */ } .slds .slds-input:focus, .slds .slds-input:active { outline: 0; border-color: #1589ee; background-color: white; box-shadow: 0 0 3px #0070D2; } .slds .slds-input[disabled], .slds .slds-input.slds-is-disabled { background-color: #e0e5ee; border-color: #a8b7c7; cursor: not-allowed; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .slds .slds-input[disabled]:focus, .slds .slds-input[disabled]:active, .slds .slds-input.slds-is-disabled:focus, .slds .slds-input.slds-is-disabled:active { box-shadow: none; } .slds .slds-input--small { line-height: 28px; min-height: calc(28px + 2px); /* Note: for IE */ padding-left: 8px; padding-right: 8px; } .slds .slds-input--small::-webkit-input-placeholder { color: #54698d; font-weight: 400; font-size: 14px; } .slds .slds-input--small::-moz-placeholder { color: #54698d; font-weight: 400; font-size: 14px; } .slds .slds-input--small:-ms-input-placeholder { color: #54698d; font-weight: 400; font-size: 14px; } .slds .slds-input--bare { background-color: transparent; border: 0; color: #16325c; } .slds .slds-input--bare:focus, .slds .slds-input--bare:active { outline: 0; } .slds .slds-input--height { min-height: calc(34px + 2px); /* Note: for IE */ } .slds .slds-input-has-icon { position: relative; } .slds .slds-input-has-icon .slds-input__icon { width: 16px; height: 16px; position: absolute; top: 50%; margin-top: -8px; fill: #54698d; } .slds .slds-input-has-icon--left .slds-input__icon { left: 12px; } .slds .slds-input-has-icon--left .slds-input, .slds .slds-input-has-icon--left .slds-input--bare { padding-left: 32px; } .slds .slds-input-has-icon--right .slds-input__icon { right: 12px; } .slds .slds-input-has-icon--right .slds-input, .slds .slds-input-has-icon--right .slds-input--bare { padding-right: 32px; } .slds .slds-input-has-fixed-addon { display: -webkit-flex; display: -ms-flexbox; display: flex; } .slds .slds-form-element__addon { display: inline-block; margin: 0 8px; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; } .slds .slds-textarea { background-color: white; color: #16325c; border: 1px solid #d8dde6; border-radius: 4px; width: 100%; transition: border 0.1s linear, background-color 0.1s linear; resize: vertical; padding: 8px 12px; } .slds .slds-textarea:focus, .slds .slds-textarea:active { outline: 0; border-color: #1589ee; background-color: white; box-shadow: 0 0 3px #0070D2; } .slds .slds-textarea[disabled], .slds .slds-textarea.slds-is-disabled { background-color: #e0e5ee; border-color: #a8b7c7; cursor: not-allowed; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .slds .slds-textarea[disabled]:focus, .slds .slds-textarea[disabled]:active, .slds .slds-textarea.slds-is-disabled:focus, .slds .slds-textarea.slds-is-disabled:active { box-shadow: none; } .slds .slds-radio { display: inline-block; } .slds .slds-radio .slds-radio--faux { width: 16px; height: 16px; display: inline-block; position: relative; vertical-align: middle; border: 1px solid #d8dde6; border-radius: 50%; background: white; transition: border 0.1s linear, background-color 0.1s linear; } .slds .slds-radio .slds-form-element__label { display: inline; vertical-align: middle; font-size: 14px; } .slds .slds-radio [type="radio"] { width: 1px; height: 1px; border: 0; clip: rect(0 0 0 0); margin: -1px; overflow: hidden; padding: 0; position: absolute; } .slds .slds-radio [type="radio"]:checked + .slds-radio--faux, .slds .slds-radio [type="radio"]:checked ~ .slds-radio--faux { background: white; } .slds .slds-radio [type="radio"]:checked + .slds-radio--faux:after, .slds .slds-radio [type="radio"]:checked ~ .slds-radio--faux:after { width: 8px; height: 8px; content: ''; position: absolute; top: 50%; left: 50%; -webkit-transform: translate3d(-50%, -50%, 0); transform: translate3d(-50%, -50%, 0); border-radius: 50%; background: #1589ee; } .slds .slds-radio [type="radio"]:focus + .slds-radio--faux, .slds .slds-radio [type="radio"]:focus ~ .slds-radio--faux { border-color: #1589ee; box-shadow: 0 0 3px #0070D2; } .slds .slds-radio [type="radio"][disabled] { cursor: not-allowed; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .slds .slds-radio [type="radio"][disabled] ~ .slds-radio--faux { background-color: #e0e5ee; border-color: #a8b7c7; } .slds .slds-has-error .slds-radio [type="radio"] + .slds-radio--faux, .slds .slds-has-error .slds-radio [type="radio"] ~ .slds-radio--faux { border-color: #c23934; border-width: 2px; } .slds .slds-has-error .slds-radio [type="radio"]:checked + .slds-radio--faux, .slds .slds-has-error .slds-radio [type="radio"]:checked ~ .slds-radio--faux { background: white; } .slds .slds-has-error .slds-radio [type="radio"]:checked + .slds-radio--faux:after, .slds .slds-has-error .slds-radio [type="radio"]:checked ~ .slds-radio--faux:after { background: #d4504c; } .slds .slds-form-element .slds-radio [type="radio"] + .slds-radio--faux, .slds .slds-form-element .slds-radio [type="radio"] ~ .slds-radio--faux { margin-right: 8px; } .slds .slds-checkbox { display: inline-block; } .slds .slds-checkbox .slds-checkbox--faux { width: 16px; height: 16px; display: inline-block; position: relative; vertical-align: middle; border: 1px solid #d8dde6; border-radius: 2px; background: white; transition: border 0.1s linear, background-color 0.1s linear; } .slds .slds-checkbox .slds-form-element__label { display: inline; vertical-align: middle; font-size: 14px; } .slds .slds-checkbox [type="checkbox"] { width: 1px; height: 1px; border: 0; clip: rect(0 0 0 0); margin: -1px; overflow: hidden; padding: 0; position: absolute; } .slds .slds-checkbox [type="checkbox"]:checked + .slds-checkbox--faux:after, .slds .slds-checkbox [type="checkbox"]:checked ~ .slds-checkbox--faux:after { display: block; content: ''; height: 4px; width: 8px; position: absolute; top: 50%; left: 50%; -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg); transform: translate3d(-50%, -50%, 0) rotate(-45deg); border-bottom: 2px solid #1589ee; border-left: 2px solid #1589ee; } .slds .slds-checkbox [type="checkbox"]:focus + .slds-checkbox--faux, .slds .slds-checkbox [type="checkbox"]:focus ~ .slds-checkbox--faux { content: ''; border-color: #1589ee; box-shadow: 0 0 3px #0070D2; } .slds .slds-checkbox [type="checkbox"]:focus:checked > .slds-checkbox--faux, .slds .slds-checkbox [type="checkbox"]:focus:checked ~ .slds-checkbox--faux { border-color: #1589ee; background-color: white; } .slds .slds-checkbox [type="checkbox"][disabled] + .slds-checkbox--faux, .slds .slds-checkbox [type="checkbox"][disabled] ~ .slds-checkbox--faux { background-color: #e0e5ee; border-color: #a8b7c7; } .slds .slds-checkbox [type="checkbox"][disabled] + .slds-checkbox--faux:after, .slds .slds-checkbox [type="checkbox"][disabled] ~ .slds-checkbox--faux:after { border-color: white; } .slds .slds-has-error .slds-checkbox [type="checkbox"] + .slds-checkbox--faux, .slds .slds-has-error .slds-checkbox [type="checkbox"] ~ .slds-checkbox--faux { border-color: #c23934; border-width: 2px; } .slds .slds-has-error .slds-checkbox [type="checkbox"]:checked + .slds-checkbox--faux, .slds .slds-has-error .slds-checkbox [type="checkbox"]:checked ~ .slds-checkbox--faux { border-color: #c23934; background-color: white; } .slds .slds-has-error .slds-checkbox [type="checkbox"]:checked + .slds-checkbox--faux:after, .slds .slds-has-error .slds-checkbox [type="checkbox"]:checked ~ .slds-checkbox--faux:after { border-color: #d4504c; } .slds .slds-form-element .slds-checkbox [type="checkbox"] + .slds-checkbox--faux, .slds .slds-form-element .slds-checkbox [type="checkbox"] ~ .slds-checkbox--faux { margin-right: 8px; } .slds .slds-select { background-color: white; color: #16325c; border: 1px solid #d8dde6; border-radius: 4px; width: 100%; transition: border 0.1s linear, background-color 0.1s linear; height: 34px; } .slds .slds-select:focus, .slds .slds-select:active { outline: 0; border-color: #1589ee; background-color: white; box-shadow: 0 0 3px #0070D2; } .slds .slds-select[disabled], .slds .slds-select.slds-is-disabled { background-color: #e0e5ee; border-color: #a8b7c7; cursor: not-allowed; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .slds .slds-select[disabled]:focus, .slds .slds-select[disabled]:active, .slds .slds-select.slds-is-disabled:focus, .slds .slds-select.slds-is-disabled:active { box-shadow: none; } .slds .slds-select[size], .slds .slds-select[multiple] { min-height: 34px; height: inherit; } .slds .slds-select[size] option, .slds .slds-select[multiple] option { padding: 8px; } .slds .slds-select_container { position: relative; } .slds .slds-select_container .slds-select { -moz-appearance: none; -webkit-appearance: none; padding-left: 8px; padding-right: 24px; } .slds .slds-select_container .slds-select::-ms-expand { display: none; } .slds .slds-select_container:before, .slds .slds-select_container:after { position: absolute; content: ''; display: block; right: 8px; width: 0; height: 0; border-left: 3px solid transparent; border-right: 3px solid transparent; } .slds .slds-select_container:before { border-bottom: 5px solid #061c3f; top: calc((34px / 2) - 6px); } .slds .slds-select_container:after { border-top: 5px solid #061c3f; bottom: calc((34px / 2) - 6px); } .slds .slds-picklist--draggable .slds-button { margin: 4px; } .slds .slds-picklist--draggable .slds-button:first-of-type { margin-top: 24px; } .slds .slds-picklist__options { border: 1px solid #d8dde6; border-radius: 4px; padding: 4px 0; width: 240px; height: 240px; background-color: white; } .slds .slds-picklist__options--multi { overflow: auto; } .slds .slds-picklist__item { position: relative; line-height: 1.5; } .slds .slds-picklist__item > a, .slds .slds-picklist__item > span { display: block; padding: 8px 12px; } .slds .slds-picklist__item > a:hover, .slds .slds-picklist__item > span:hover { background-color: #f4f6f9; cursor: pointer; } .slds .slds-picklist__item > a:active, .slds .slds-picklist__item > span:active { background-color: #eef1f6; } .slds .slds-picklist__item[aria-selected="true"] { background-color: #eef1f6; } .slds .slds-modal--form .slds-modal__container, .slds .slds-modal--form .slds-modal__header { border-radius: 0; } .slds .slds-modal--form .slds-modal__container { margin: 0; padding: 0; } .slds .slds-modal--form .slds-modal__header .slds-button { display: inline-block; width: auto; } .slds .slds-modal--form .slds-modal__header .slds-button:first-child { float: left; } .slds .slds-modal--form .slds-modal__header .slds-button:first-child + .slds-button { float: right; margin-top: 0; } .slds .slds-form-element { position: relative; } .slds .slds-form-element__helper { font-size: 12px; } .slds .slds-form-element__label { display: inline-block; color: #54698d; font-size: 12px; line-height: 1.5; margin-right: 12px; margin-bottom: 4px; } .slds .slds-form-element__label:empty { margin: 0; } .slds .slds-form-element__control .slds-radio, .slds .slds-form-element__control .slds-checkbox { display: block; } .slds .slds-form-element__icon { display: inline-block; position: relative; margin-right: 8px; } .slds .slds-form-element__help { font-size: 12px; margin-top: 8px; display: block; } .slds .slds-form-element__static { display: inline-block; line-height: 34px; min-height: calc(34px + 2px); /* Note: for IE */ } .slds .slds-form-element__static.slds-text-longform { line-height: 1.5; padding-bottom: calc((1.5 * 14px) - 14px); } .slds .slds-required { color: #c23934; margin: 0 2px; } .slds .slds-has-error .slds-input { background-color: white; border-color: #c23934; box-shadow: #c23934 0 0 0 1px inset; background-clip: padding-box; } .slds .slds-has-error .slds-input:focus, .slds .slds-has-error .slds-input:active { box-shadow: #c23934 0 0 0 1px inset, 0 0 3px #0070D2; } .slds .slds-has-error .slds-textarea { background-color: white; border-color: #c23934; box-shadow: #c23934 0 0 0 1px inset; background-clip: padding-box; } .slds .slds-has-error .slds-textarea:focus, .slds .slds-has-error .slds-textarea:active { box-shadow: #c23934 0 0 0 1px inset, 0 0 3px #0070D2; } .slds .slds-has-error .slds-select { background-color: white; border-color: #c23934; box-shadow: #c23934 0 0 0 1px inset; background-clip: padding-box; } .slds .slds-has-error .slds-select:focus, .slds .slds-has-error .slds-select:active { box-shadow: #c23934 0 0 0 1px inset, 0 0 3px #0070D2; } .slds .slds-has-error .slds-form-element__help { color: #c23934; } .slds .slds-has-error .slds-input__icon { fill: #c23934; } @media (min-width: 48em) { .slds .slds-form--horizontal { text-align: right; } } @media (min-width: 48em) { .slds .slds-form--horizontal .slds-form-element > .slds-form-element__label { float: left; text-align: right; display: inline-block; width: 33%; vertical-align: top; position: relative; top: 5px; margin-right: 0; margin-bottom: 0; } } .slds .slds-form--horizontal .slds-form-element + .slds-form-element { margin-top: 12px; } @media (min-width: 64em) { .slds .slds-form--horizontal .slds-form-element + .slds-form-element { margin-top: 8px; } } .slds .slds-form--horizontal .slds-form-element__control { width: 100%; } @media (min-width: 48em) { .slds .slds-form--horizontal .slds-form-element__control { width: 66%; display: inline-block; text-align: left; } } .slds .slds-form--horizontal .slds-form-element__control .slds-checkbox, .slds .slds-form--horizontal .slds-form-element__control .slds-radio { display: block; } .slds .slds-form--stacked .slds-form-element { display: block; } .slds .slds-form--stacked .slds-form-element + .slds-form-element { margin-top: 12px; } @media (min-width: 64em) { .slds .slds-form--stacked .slds-form-element + .slds-form-element { margin-top: 8px; } } .slds .slds-form--stacked .slds-form-element .slds-checkbox, .slds .slds-form--stacked .slds-form-element .slds-radio { display: block; } .slds .slds-form--inline .slds-form-element, .slds .slds-form--inline .slds-form-element__label, .slds .slds-form--inline .slds-form-element__control { display: block; } .slds .slds-form--inline .slds-form-element + .slds-form-element { margin-top: 12px; } @media (min-width: 64em) { .slds .slds-form--inline .slds-form-element { margin-right: 8px; } .slds .slds-form--inline .slds-form-element + .slds-form-element { margin-top: 0; } .slds .slds-form--inline .slds-form-element, .slds .slds-form--inline .slds-form-element__label, .slds .slds-form--inline .slds-form-element__control { display: inline-block; vertical-align: middle; margin-bottom: 0; } } .slds .slds-form--compound .slds-form-element__row { display: -webkit-flex; display: -ms-flexbox; display: flex; margin-bottom: 8px; } .slds .slds-form--compound .slds-form-element__row + .slds-form-element__row { clear: both; } .slds .slds-form--compound .slds-form-element { width: 100%; } .slds .slds-form--compound .slds-form-element + .slds-form-element { padding-left: 8px; } .slds .slds-form--compound .slds-form-element__control { position: relative; } .slds .slds-form--compound .slds-form-element__control + .slds-form-element__control { padding-left: 8px; } .slds .slds-grid { display: -webkit-flex; display: -ms-flexbox; display: flex; position: relative; } .slds .slds-grid--frame { min-width: 100vw; min-height: 100vh; overflow: hidden; } .slds .slds-grid--vertical { -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } .slds .slds-grid--vertical-reverse { -webkit-flex-direction: column-reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; } .slds .slds-grid--reverse { -webkit-flex-direction: row-reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; } .slds .slds-col, .slds [class*="slds-col--padded"] { -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; } .slds .slds-col--padded { padding-right: 12px; padding-left: 12px; } .slds .slds-col--padded-medium { padding-right: 16px; padding-left: 16px; } .slds .slds-col--padded-large { padding-right: 24px; padding-left: 24px; } .slds .slds-grid--pull-padded { margin-right: -12px; margin-left: -12px; } .slds .slds-grid--pull-padded-medium { margin-right: -16px; margin-left: -16px; } .slds .slds-grid--pull-padded-large { margin-right: -24px; margin-left: -24px; } @media (min-width: 64em) { .slds .slds-col-rule--top { border-top: 1px solid #f4f6f9; } .slds .slds-col-rule--right { border-right: 1px solid #f4f6f9; } .slds .slds-col-rule--bottom { border-bottom: 1px solid #f4f6f9; } .slds .slds-col-rule--left { border-left: 1px solid #f4f6f9; } } @media (min-width: 64em) { .slds .slds-col--rule-top { border-top: 1px solid #f4f6f9; } .slds .slds-col--rule-right { border-right: 1px solid #f4f6f9; } .slds .slds-col--rule-bottom { border-bottom: 1px solid #f4f6f9; } .slds .slds-col--rule-left { border-left: 1px solid #f4f6f9; } } .slds .slds-wrap { -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-align-items: flex-start; -ms-flex-align: start; -ms-grid-row-align: flex-start; align-items: flex-start; } .slds .slds-nowrap { -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-align-items: stretch; -ms-flex-align: stretch; -ms-grid-row-align: stretch; align-items: stretch; } @media (min-width: 30em) { .slds .slds-nowrap--small { -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-align-items: stretch; -ms-flex-align: stretch; -ms-grid-row-align: stretch; align-items: stretch; } } @media (min-width: 48em) { .slds .slds-nowrap--medium { -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-align-items: stretch; -ms-flex-align: stretch; -ms-grid-row-align: stretch; align-items: stretch; } } @media (min-width: 64em) { .slds .slds-nowrap--large { -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-align-items: stretch; -ms-flex-align: stretch; -ms-grid-row-align: stretch; align-items: stretch; } } @media (min-width: 20em) { .slds .slds-x-small-nowrap { -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-align-items: stretch; -ms-flex-align: stretch; -ms-grid-row-align: stretch; align-items: stretch; } } @media (min-width: 30em) { .slds .slds-small-nowrap { -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-align-items: stretch; -ms-flex-align: stretch; -ms-grid-row-align: stretch; align-items: stretch; } } @media (min-width: 48em) { .slds .slds-medium-nowrap { -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-align-items: stretch; -ms-flex-align: stretch; -ms-grid-row-align: stretch; align-items: stretch; } } @media (min-width: 64em) { .slds .slds-large-nowrap { -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; -webkit-flex-wrap: nowrap; -ms-flex-wrap: nowrap; flex-wrap: nowrap; -webkit-align-items: stretch; -ms-flex-align: stretch; -ms-grid-row-align: stretch; align-items: stretch; } } .slds .slds-has-flexi-truncate { -webkit-flex: 1 1 0%; -ms-flex: 1 1 0%; flex: 1 1 0%; min-width: 0; } .slds .slds-no-flex { -webkit-flex: none; -ms-flex: none; flex: none; } .slds .slds-no-space { min-width: 0; } .slds .slds-grow { -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; } .slds .slds-grow-none { -webkit-flex-grow: 0; -ms-flex-positive: 0; flex-grow: 0; } .slds .slds-shrink { -webkit-flex-shrink: 1; -ms-flex-negative: 1; flex-shrink: 1; } .slds .slds-shrink-none { -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; } .slds .slds-text-longform ul.slds-grid { margin-left: 0; list-style: none; } .slds .slds-grid--align-center { -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .slds .slds-grid--align-center .slds-col, .slds .slds-grid--align-center [class*="slds-col--padded"] { -webkit-flex-grow: 0; -ms-flex-positive: 0; flex-grow: 0; } .slds .slds-grid--align-space { -webkit-justify-content: space-around; -ms-flex-pack: distribute; justify-content: space-around; } .slds .slds-grid--align-space .slds-col, .slds .slds-grid--align-space [class*="slds-col--padded"] { -webkit-flex-grow: 0; -ms-flex-positive: 0; flex-grow: 0; } .slds .slds-grid--align-spread { -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; } .slds .slds-grid--align-spread .slds-col, .slds .slds-grid--align-spread [class*="slds-col--padded"] { -webkit-flex-grow: 0; -ms-flex-positive: 0; flex-grow: 0; } .slds .slds-grid--align-end { -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .slds .slds-grid--align-end .slds-col, .slds .slds-grid--align-end [class*="slds-col--padded"] { -webkit-flex-grow: 0; -ms-flex-positive: 0; flex-grow: 0; } .slds .slds-grid--vertical-align-center { -webkit-align-items: center; -ms-flex-align: center; -ms-grid-row-align: center; align-items: center; -webkit-align-content: center; -ms-flex-line-pack: center; align-content: center; } .slds .slds-grid--vertical-align-end { -webkit-align-items: flex-end; -ms-flex-align: end; -ms-grid-row-align: flex-end; align-items: flex-end; -webkit-align-content: flex-end; -ms-flex-line-pack: end; align-content: flex-end; } .slds .slds-align-top { vertical-align: top; -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; } .slds .slds-align-middle { vertical-align: middle; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; } .slds .slds-align-bottom { vertical-align: bottom; -webkit-align-self: flex-end; -ms-flex-item-align: end; align-self: flex-end; } .slds .slds-align-content-center { -webkit-flex: 1; -ms-flex: 1; flex: 1; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } .slds .slds-grid--vertical-stretch { -webkit-align-items: stretch; -ms-flex-align: stretch; -ms-grid-row-align: stretch; align-items: stretch; -webkit-align-content: stretch; -ms-flex-line-pack: stretch; align-content: stretch; } .slds .slds-col--bump-top { margin-top: auto; } .slds .slds-col--bump-right { margin-right: auto; } .slds .slds-col--bump-bottom { margin-right: auto; } .slds .slds-col--bump-left { margin-left: auto; } .slds .slds-container--small { max-width: 480px; } .slds .slds-container--medium { max-width: 768px; } .slds .slds-container--large { max-width: 1024px; } .slds .slds-container--x-large { max-width: 1280px; } .slds .slds-container--fluid { width: 100%; } .slds .slds-container--center { margin-left: auto; margin-right: auto; } .slds .slds-container--left { margin-right: auto; } .slds .slds-container--right { margin-left: auto; } .slds .slds-grid--overflow { -webkit-flex-flow: row nowrap; -ms-flex-flow: row nowrap; flex-flow: row nowrap; } .slds .slds-grid--overflow .slds-col { min-width: 11.25em; max-width: 22.5em; } .slds .slds-tooltip { position: relative; border-radius: 4px; width: 320px; min-height: 32px; z-index: 6000; background-color: #061c3f; display: inline-block; } .slds .slds-tooltip__body { padding: 8px 12px; font-size: 12px; color: white; } .slds .slds-page-header { padding: 16px 12px; border-bottom: 1px solid #d8dde6; background: #f4f6f9; } .slds .slds-page-header__title { margin-top: 2px; font-weight: 300; font-size: 18px; line-height: 1.25; } .slds .slds-page-header__info { margin-top: 4px; } @media (min-width: 48em) { .slds .slds-page-header { padding: 24px 24px 12px; } .slds .slds-page-header__title { margin-top: 0; font-size: 24px; } .slds .slds-page-header__info { margin-top: 8px; } } .slds .slds-page-header__detail-row { /* Note: This takes the width of the icon into account for alignment */ margin: 24px 0 12px 48px; } .slds .slds-popover { position: relative; border-radius: 4px; width: 320px; min-height: 32px; z-index: 6000; background-color: white; display: inline-block; box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.16); border: 1px solid #d8dde6; } .slds .slds-popover__body { position: relative; padding: 8px 12px; } .slds .slds-popover[class*="theme--"] { border: 0; } .slds .slds-popover--tooltip { width: auto; max-width: 320px; background: #16325c; border: 0; } .slds .slds-popover--tooltip .slds-popover__body { font-size: 12px; color: white; } .slds .slds-rise-from-ground { visibility: visible; opacity: 1; -webkit-transform: translate(0%, 0%); transform: translate(0%, 0%); transition: opacity 0.1s linear, visibility 0.1s linear, -webkit-transform 0.1s linear; transition: opacity 0.1s linear, visibility 0.1s linear, transform 0.1s linear; transition: opacity 0.1s linear, visibility 0.1s linear, transform 0.1s linear, -webkit-transform 0.1s linear; will-change: transform; } .slds .slds-fall-into-ground { visibility: hidden; opacity: 0; -webkit-transform: translate(0%, 0%); transform: translate(0%, 0%); transition: opacity 0.1s linear, visibility 0.1s linear, -webkit-transform 0.1s linear; transition: opacity 0.1s linear, visibility 0.1s linear, transform 0.1s linear; transition: opacity 0.1s linear, visibility 0.1s linear, transform 0.1s linear, -webkit-transform 0.1s linear; will-change: transform; } .slds .slds-slide-from-bottom-to-top { -webkit-transform: translateY(10%); transform: translateY(10%); will-change: transform; } .slds .slds-slide-from-top-to-bottom { -webkit-transform: translateY(-10%); transform: translateY(-10%); will-change: transform; } .slds .slds-slide-from-right-to-left { -webkit-transform: translateX(5%); transform: translateX(5%); will-change: transform; } .slds .slds-slide-from-left-to-right { -webkit-transform: translateX(-5%); transform: translateX(-5%); will-change: transform; } .slds .slds-popover--panel .slds-popover__header { background: #f4f6f9; padding: 16px; border-radius: 4px 4px 0 0; } .slds .slds-popover--panel .slds-popover__body { padding: 0; } .slds .slds-popover--panel .slds-popover__body-list { padding: 16px; border-top: 1px solid #d8dde6; } .slds .slds-popover--panel.slds-nubbin--left-top:before, .slds .slds-popover--panel.slds-nubbin--left-top:after, .slds .slds-popover--panel.slds-nubbin--right-top:before, .slds .slds-popover--panel.slds-nubbin--right-top:after, .slds .slds-popover--panel.slds-nubbin--top-left:before, .slds .slds-popover--panel.slds-nubbin--top-left:after, .slds .slds-popover--panel.slds-nubbin--top-right:before, .slds .slds-popover--panel.slds-nubbin--top-right:after { background: #f4f6f9; } .slds .slds-nubbin--top:before { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; left: 50%; top: -8px; margin-left: -8px; } .slds .slds-nubbin--top:after { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; left: 50%; top: -8px; margin-left: -8px; } .slds .slds-nubbin--top:after { box-shadow: -1px -1px 0 0 rgba(0, 0, 0, 0.16); z-index: -1; } .slds .slds-nubbin--top-left:before { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; left: 50%; top: -8px; margin-left: -8px; } .slds .slds-nubbin--top-left:after { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; left: 50%; top: -8px; margin-left: -8px; } .slds .slds-nubbin--top-left:after { box-shadow: -1px -1px 0 0 rgba(0, 0, 0, 0.16); z-index: -1; } .slds .slds-nubbin--top-left:before, .slds .slds-nubbin--top-left:after { left: 32px; top: -8px; } .slds .slds-nubbin--top-right:before { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; left: 50%; top: -8px; margin-left: -8px; } .slds .slds-nubbin--top-right:after { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; left: 50%; top: -8px; margin-left: -8px; } .slds .slds-nubbin--top-right:after { box-shadow: -1px -1px 0 0 rgba(0, 0, 0, 0.16); z-index: -1; } .slds .slds-nubbin--top-right:before, .slds .slds-nubbin--top-right:after { left: auto; right: 32px; top: -8px; margin-right: -8px; } .slds .slds-nubbin--bottom:before { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; left: 50%; bottom: -8px; margin-left: -8px; } .slds .slds-nubbin--bottom:after { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; left: 50%; bottom: -8px; margin-left: -8px; } .slds .slds-nubbin--bottom:after { box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16); z-index: -1; } .slds .slds-nubbin--bottom-left:before { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; left: 50%; bottom: -8px; margin-left: -8px; } .slds .slds-nubbin--bottom-left:after { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; left: 50%; bottom: -8px; margin-left: -8px; } .slds .slds-nubbin--bottom-left:after { box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16); z-index: -1; } .slds .slds-nubbin--bottom-left:before, .slds .slds-nubbin--bottom-left:after { left: 32px; top: 100%; margin-top: -8px; } .slds .slds-nubbin--bottom-right:before { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; left: 50%; bottom: -8px; margin-left: -8px; } .slds .slds-nubbin--bottom-right:after { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; left: 50%; bottom: -8px; margin-left: -8px; } .slds .slds-nubbin--bottom-right:after { box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.16); z-index: -1; } .slds .slds-nubbin--bottom-right:before, .slds .slds-nubbin--bottom-right:after { left: auto; right: 32px; top: 100%; margin-top: -8px; margin-right: -8px; } .slds .slds-nubbin--left:before { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; top: 50%; left: -8px; margin-top: -8px; } .slds .slds-nubbin--left:after { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; top: 50%; left: -8px; margin-top: -8px; } .slds .slds-nubbin--left:after { box-shadow: -1px 1px 2px 0 rgba(0, 0, 0, 0.16); z-index: -1; } .slds .slds-nubbin--left-top:before { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; top: 50%; left: -8px; margin-top: -8px; } .slds .slds-nubbin--left-top:after { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; top: 50%; left: -8px; margin-top: -8px; } .slds .slds-nubbin--left-top:after { box-shadow: -1px 1px 2px 0 rgba(0, 0, 0, 0.16); z-index: -1; } .slds .slds-nubbin--left-top:before, .slds .slds-nubbin--left-top:after { top: 32px; } .slds .slds-nubbin--left-bottom:before { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; top: 50%; left: -8px; margin-top: -8px; } .slds .slds-nubbin--left-bottom:after { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; top: 50%; left: -8px; margin-top: -8px; } .slds .slds-nubbin--left-bottom:before { margin-bottom: -1px; } .slds .slds-nubbin--left-bottom:after { box-shadow: -1px 2px 3px 0 rgba(0, 0, 0, 0.16); z-index: -1; } .slds .slds-nubbin--left-bottom:before, .slds .slds-nubbin--left-bottom:after { top: auto; bottom: 32px; } .slds .slds-nubbin--right:before { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; top: 50%; right: -8px; margin-top: -8px; } .slds .slds-nubbin--right:after { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; top: 50%; right: -8px; margin-top: -8px; } .slds .slds-nubbin--right:after { box-shadow: 1px -1px 2px 0 rgba(0, 0, 0, 0.16); z-index: -1; } .slds .slds-nubbin--right-top:before { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; top: 50%; right: -8px; margin-top: -8px; } .slds .slds-nubbin--right-top:after { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; top: 50%; right: -8px; margin-top: -8px; } .slds .slds-nubbin--right-top:after { box-shadow: 1px -1px 2px 0 rgba(0, 0, 0, 0.16); z-index: -1; } .slds .slds-nubbin--right-top:before, .slds .slds-nubbin--right-top:after { top: 32px; } .slds .slds-nubbin--right-bottom:before { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; top: 50%; right: -8px; margin-top: -8px; } .slds .slds-nubbin--right-bottom:after { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: inherit; top: 50%; right: -8px; margin-top: -8px; } .slds .slds-nubbin--right-bottom:before { margin-bottom: -1px; } .slds .slds-nubbin--right-bottom:after { box-shadow: 2px -1px 3px 0 rgba(0, 0, 0, 0.16); z-index: -1; } .slds .slds-nubbin--right-bottom:before, .slds .slds-nubbin--right-bottom:after { top: auto; bottom: 32px; } .slds .slds-dropdown { position: absolute; z-index: 7000; left: 50%; float: left; min-width: 96px; max-width: 320px; margin-top: 2px; border: 1px solid #d8dde6; border-radius: 4px; padding: 4px 0; background: white; box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.16); -webkit-transform: translateX(-50%); transform: translateX(-50%); } .slds .slds-dropdown--left { left: 0; -webkit-transform: translateX(0); transform: translateX(0); } .slds .slds-dropdown--right { left: auto; right: 0; -webkit-transform: translateX(0); transform: translateX(0); } .slds .slds-dropdown--bottom { bottom: 100%; } .slds .slds-dropdown--small { min-width: 240px; } .slds .slds-dropdown--medium { min-width: 320px; } .slds .slds-dropdown--large { min-width: 400px; max-width: 512px; } .slds .slds-dropdown--length-5 { max-height: calc(((14px * 1.5) + 16px) * 5); overflow-y: auto; -webkit-overflow-scrolling: touch; } .slds .slds-dropdown--length-7 { max-height: calc(((14px * 1.5) + 16px) * 7); overflow-y: auto; -webkit-overflow-scrolling: touch; } .slds .slds-dropdown--length-10 { max-height: calc(((14px * 1.5) + 16px) * 10); overflow-y: auto; -webkit-overflow-scrolling: touch; } .slds .slds-dropdown--length-with-icon-5 { max-height: calc((24px + 16px) * 5); overflow-y: auto; -webkit-overflow-scrolling: touch; } .slds .slds-dropdown--length-with-icon-7 { max-height: calc((24px + 16px) * 7); overflow-y: auto; -webkit-overflow-scrolling: touch; } .slds .slds-dropdown--length-with-icon-10 { max-height: calc((24px + 16px) * 10); overflow-y: auto; -webkit-overflow-scrolling: touch; } .slds .slds-dropdown mark { font-weight: 700; background-color: transparent; } .slds .slds-dropdown[class*="slds-nubbin--top"] { margin-top: 8px; } .slds .slds-dropdown[class*="slds-nubbin--bottom"] { margin-bottom: 8px; } .slds .slds-dropdown--nubbin-top { margin-top: 8px; } .slds .slds-dropdown--nubbin-top:before { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: white; left: 50%; top: -8px; margin-left: -8px; } .slds .slds-dropdown--nubbin-top:after { width: 16px; height: 16px; position: absolute; -webkit-transform: rotate(45deg); transform: rotate(45deg); content: ''; background-color: white; left: 50%; top: -8px; margin-left: -8px; } .slds .slds-dropdown--nubbin-top:before { background: white; } .slds .slds-dropdown--nubbin-top:after { background: white; box-shadow: -1px -1px 0 0 rgba(0, 0, 0, 0.16); z-index: -1; } .slds .slds-dropdown--nubbin-top.slds-dropdown--left { left: -16px; } .slds .slds-dropdown--nubbin-top.slds-dropdown--left:before, .slds .slds-dropdown--nubbin-top.slds-dropdown--left:after { left: 24px; margin-left: 0; } .slds .slds-dropdown--nubbin-top.slds-dropdown--right { right: -16px; } .slds .slds-dropdown--nubbin-top.slds-dropdown--right:before, .slds .slds-dropdown--nubbin-top.slds-dropdown--right:after { left: auto; right: 24px; margin-left: 0; } .slds .slds-dropdown__header { padding: 8px 12px; } .slds .slds-dropdown__item { line-height: 1.5; } .slds .slds-dropdown__item > a { position: relative; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; padding: 8px 12px; color: #16325c; white-space: nowrap; cursor: pointer; } .slds .slds-dropdown__item > a:hover, .slds .slds-dropdown__item > a:focus { outline: 0; text-decoration: none; background-color: #f4f6f9; } .slds .slds-dropdown__item > a:active { text-decoration: none; background-color: #eef1f6; } .slds .slds-dropdown__item > a[aria-disabled="true"] { color: #d8dde6; cursor: default; } .slds .slds-dropdown__item > a[aria-disabled="true"]:hover { background-color: transparent; } .slds .slds-dropdown__item .slds-icon--selected { opacity: 0; transition: opacity 0.05s ease; } .slds .slds-dropdown__item.slds-is-selected .slds-icon--selected { fill: #0070d2; opacity: 1; } .slds .slds-dropdown .slds-has-icon { position: relative; } .slds .slds-dropdown .slds-has-icon--left > a, .slds .slds-dropdown .slds-has-icon--left > span { padding-left: 32px; } .slds .slds-dropdown .slds-has-icon--right > a, .slds .slds-dropdown .slds-has-icon--right > span { padding-right: 32px; } .slds .slds-dropdown .slds-has-icon--left-right > a, .slds .slds-dropdown .slds-has-icon--left-right > span { padding-left: 32px; padding-right: 32px; } .slds .slds-dropdown .slds-has-icon .slds-icon { width: 16px; height: 16px; position: absolute; top: 50%; margin-top: -8px; fill: #54698d; } .slds .slds-dropdown .slds-has-icon .slds-icon--left { left: 12px; } .slds .slds-dropdown .slds-has-icon .slds-icon--right { right: 12px; } .slds .slds-dropdown-trigger { position: relative; display: inline-block; } .slds .slds-dropdown-trigger .slds-dropdown { top: 100%; } .slds .slds-dropdown-trigger .slds-dropdown--bottom { top: auto; } .slds .slds-dropdown-trigger .slds-dropdown { visibility: hidden; opacity: 0; transition: opacity 0.1s linear, visibility 0.1s linear; } .slds .slds-dropdown-trigger:hover, .slds .slds-dropdown-trigger:focus { outline: 0; } .slds .slds-dropdown-trigger:hover .slds-dropdown, .slds .slds-dropdown-trigger:focus .slds-dropdown { visibility: visible; opacity: 1; transition: opacity 0.1s linear, visibility 0.1s linear; } .slds .slds-dropdown-trigger--hover .slds-dropdown { visibility: hidden; opacity: 0; transition: opacity 0.1s linear, visibility 0.1s linear; } .slds .slds-dropdown-trigger--hover:hover, .slds .slds-dropdown-trigger--hover:focus { outline: 0; } .slds .slds-dropdown-trigger--hover:hover .slds-dropdown, .slds .slds-dropdown-trigger--hover:focus .slds-dropdown { visibility: visible; opacity: 1; transition: opacity 0.1s linear, visibility 0.1s linear; } .slds .slds-dropdown-trigger--click .slds-dropdown { display: none; } .slds .slds-dropdown-trigger--click.slds-is-open .slds-dropdown { display: block; visibility: visible; opacity: 1; } .slds .slds-dropdown-trigger > [class*="slds-button--icon"] ~ .slds-dropdown--left[class*="slds-nubbin"] { left: -16px; } .slds .slds-dropdown-trigger > [class*="slds-button--icon"] ~ .slds-dropdown--right[class*="slds-nubbin"] { right: -16px; } .slds .slds-picklist { position: relative; } .slds .slds-picklist .slds-dropdown { width: 240px; } .slds .slds-picklist--fluid .slds-picklist__label, .slds .slds-picklist--fluid .slds-dropdown { width: auto; min-width: 0; max-width: 240px; } .slds .slds-picklist__label { padding-right: 32px; width: 240px; color: #16325c; text-align: left; } .slds .slds-picklist__label .slds-icon { width: 12px; height: 12px; position: absolute; right: 16px; top: 50%; margin-top: -6px; fill: #54698d; } .slds .slds-picklist__label .slds-truncate { display: block; } .slds .slds-dropdown--actions a { color: #0070d2; } .slds .slds-action-overflow--touch { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9001; } .slds .slds-action-overflow--touch__container { position: relative; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; height: 100%; } .slds .slds-action-overflow--touch__content { padding-top: 33.33333333333333%; overflow: hidden; overflow-y: auto; } .slds .slds-action-overflow--touch__body { position: relative; top: 32px; background: white; box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.07); } .slds .slds-action-overflow--touch__footer { position: relative; -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; border-top: 1px solid #d8dde6; padding: 12px 16px; background-color: #f4f6f9; box-shadow: 0 -2px 4px #F4F6F9; } .slds .slds-datepicker { padding: 0; font-size: 12px; } .slds .slds-datepicker th, .slds .slds-datepicker td { text-align: center; } .slds .slds-datepicker th { padding: 8px; font-weight: 400; color: #54698d; } .slds .slds-datepicker td { padding: 4px; text-align: center; font-size: 12px; } .slds .slds-datepicker td > .slds-day { width: 32px; height: 32px; display: block; position: relative; min-width: 32px; line-height: 32px; border-radius: 50%; margin: auto; } .slds .slds-datepicker td:hover:not(.slds-disabled-text) > .slds-day, .slds .slds-datepicker td:focus:not(.slds-disabled-text) > .slds-day, .slds .slds-datepicker td.slds-is-today > .slds-day { background: #f4f6f9; cursor: pointer; } .slds .slds-datepicker td.slds-is-selected:not(.slds-disabled-text) > .slds-day { background: #005fb2; color: white; } .slds .slds-datepicker td.slds-is-selected-multi > .slds-day { overflow: visible; } .slds .slds-datepicker td.slds-is-selected-multi + .slds-is-selected-multi > .slds-day:before { content: ''; position: absolute; background: #005fb2; top: 0; left: -50%; height: 100%; width: 40px; -webkit-transform: translateX(-8px); transform: translateX(-8px); z-index: -1; } .slds .slds-datepicker .slds-has-multi-row-selection .slds-is-selected-multi:first-child > .slds-day:before, .slds .slds-datepicker .slds-has-multi-row-selection .slds-is-selected-multi:last-child > .slds-day:after { content: ''; position: absolute; background: #005fb2; top: 0; left: -50%; height: 100%; width: 40px; -webkit-transform: translateX(-8px); transform: translateX(-8px); z-index: -1; } .slds .slds-datepicker .slds-has-multi-row-selection .slds-is-selected-multi:first-child > .slds-day:before { left: 0; -webkit-transform: translateX(-4px); transform: translateX(-4px); } .slds .slds-datepicker .slds-has-multi-row-selection .slds-is-selected-multi:last-child > .slds-day:after { left: auto; right: 0; -webkit-transform: translateX(4px); transform: translateX(4px); } .slds .slds-datepicker__filter { padding: 4px; } .slds .slds-datepicker__filter--month { padding: 0 4px 0 0; } .slds .slds-disabled-text { color: #d8dde6; } .slds .slds-datepicker--time { max-width: 192px; max-height: 216px; overflow: hidden; overflow-y: auto; } .slds .slds-datepicker--time__list > li { white-space: nowrap; padding: 8px; padding-left: 32px; padding-right: 32px; } .slds .slds-datepicker--time__list > li:hover, .slds .slds-datepicker--time__list > li:focus { background: #f4f6f9; text-decoration: none; cursor: pointer; } .slds .slds-docked_container { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-end; -ms-flex-align: end; align-items: flex-end; position: fixed; bottom: 0; right: 0; padding: 0 24px; height: 40px; } .slds .slds-docked-composer { position: relative; border-radius: 4px 4px 0 0; width: 480px; height: 40px; float: left; box-shadow: 0px -2px 2px 0px rgba(0, 0, 0, 0.16); border: 1px solid #d8dde6; border-bottom: none; } .slds .slds-docked-composer.slds-is-open { height: 480px; } .slds .slds-docked-composer:hover .slds-docked-composer__header, .slds .slds-docked-composer:focus .slds-docked-composer__header { background: #061c3f; } .slds .slds-docked-composer + .slds-docked-composer { margin-left: 24px; } .slds .slds-docked-composer__header { background: #16325c; border-radius: 4px 4px 0 0; padding: 8px; color: white; } .slds .slds-docked-composer__header:hover { cursor: pointer; } .slds .slds-docked-composer__actions .slds-button { margin-left: 12px; } .slds .slds-docked-composer__body { background: white; } .slds .slds-docked-composer__lead { background: white; padding: 16px 8px; } .slds .slds-docked-composer__toolbar { background: #f4f6f9; padding: 4px 8px; max-height: 60px; overflow-y: auto; border-top: 1px solid #d8dde6; border-bottom: 1px solid #d8dde6; } .slds .slds-docked-composer__input { background: white; padding: 16px; min-height: 96px; resize: none; overflow: hidden; overflow-y: auto; } .slds .slds-docked-composer__footer { background: #f4f6f9; padding: 12px 8px; border-top: 1px solid #d8dde6; } .slds .slds-docked-composer--overflow { width: auto; } .slds .slds-docked-composer--overflow__pill { display: -webkit-flex; display: -ms-flexbox; display: flex; padding: 0 12px; height: inherit; white-space: nowrap; border-top-left-radius: 4px; border-top-right-radius: 4px; } .slds .slds-docked-composer--overflow__pill:hover, .slds .slds-docked-composer--overflow__pill:focus { color: white; text-decoration: none; } .slds .slds-docked-composer--overflow__pill .slds-text-body--small { color: white; margin-left: 8px; } .slds .slds-docked-composer.slds-is-recording .slds-icon-record .slds-button__icon { fill: #c23934; } .slds .slds-docked-composer-modal .slds-docked-composer { width: 100%; height: 100%; box-shadow: none; float: none; border-radius: 0; border: 0; } .slds .slds-docked-composer-modal .slds-docked-composer__header { border-radius: 0; } .slds .slds-docked-composer-modal .slds-docked-composer__body { min-height: 260px; } .slds .slds-docked-composer__body--email { position: relative; } .slds .slds-docked-composer__body--email .slds-input { border-radius: 0; } .slds .slds-docked-composer__body--email .slds-input:focus { z-index: 1; } .slds .slds-docked-composer__body--email .slds-input:not(:focus) { border-color: transparent; border-top: 1px solid #d8dde6; } .slds .slds-docked-composer__body--email .slds-picklist__label { padding-left: 12px; padding-right: 24px; } .slds .slds-docked-composer__body--email .slds-picklist__label .slds-icon { right: 8px; } .slds .slds-email-composer__label { width: 32px; font-size: 12px; } .slds .slds-docked-composer__body--form { padding: 16px; } .slds .slds-publisher.slds-is-active .slds-publisher__toggle-visibility { display: inherit; } .slds .slds-publisher.slds-is-active .slds-publisher__input { line-height: 1.5; height: auto; max-height: 160px; resize: vertical; padding-top: 12px; padding-bottom: 12px; } .slds .slds-publisher__input { line-height: 34px; padding: 0 16px; resize: none; min-height: calc(34px + 2px); max-height: calc(34px + 2px); width: 100%; } .slds .slds-publisher__actions > .slds-button { margin-left: 12px; } .slds .slds-publisher .slds-publisher__toggle-visibility { display: none; } .slds .slds-publisher--discussion { display: -webkit-flex; display: -ms-flexbox; display: flex; } .slds .slds-publisher--discussion.slds-is-active { display: block; } .slds .slds-publisher--comment { background-color: white; color: #16325c; border: 1px solid #d8dde6; border-radius: 4px; width: 100%; position: relative; min-height: calc(34px + 2px); max-height: calc(34px + 2px); } .slds .slds-publisher--comment.slds-is-active { min-height: 96px; max-height: 240px; } .slds .slds-publisher--comment.slds-is-active .slds-publisher__actions { opacity: 1; } .slds .slds-publisher--comment.slds-has-focus { outline: 0; border-color: #1589ee; background-color: white; box-shadow: 0 0 3px #0070D2; } .slds .slds-publisher--comment .slds-publisher__actions { opacity: 0; padding: 0 12px 12px; } .slds .slds-publisher--comment .slds-attachments { padding: 8px 12px; } .slds .slds-feed { position: relative; } .slds .slds-feed__list { margin: 0; padding: 0; } .slds .slds-feed__item { padding: 16px 0; } .slds .slds-feed__item + .slds-feed__item { border-top: 1px solid #d8dde6; } .slds .slds-comment__content { padding-top: 8px; padding-bottom: 8px; } .slds .slds-comment__overflow { margin-bottom: 16px; } .slds .slds-comment .slds-text-body--small a { color: inherit; } .slds .slds-comment__replies { padding-top: 16px; margin-left: 60px; } .slds .slds-comment__replies > :last-child, .slds .slds-comment__replies > :last-child .slds-comment { padding-bottom: 0; } .slds .slds-comment__replies > :last-child:before, .slds .slds-comment__replies > :last-child .slds-comment:before { content: none; } .slds .slds-comment__replies .slds-comment { position: relative; margin-bottom: 0; padding-bottom: 16px; } .slds .slds-comment__replies .slds-comment:before { content: ''; background: #d8dde6; height: 100%; width: 1px; position: absolute; left: 18px; top: 0; bottom: 0; margin-left: -0.5px; z-index: -1; } .slds .slds-comment__replies .slds-avatar { border: 2px solid white; } .slds .slds-tags { display: -webkit-flex; display: -ms-flexbox; display: flex; } .slds .slds-tags__list { display: -webkit-flex; display: -ms-flexbox; display: flex; } .slds .slds-tags__item { margin-left: 4px; } .slds .slds-tags__item:after { content: ', '; } .slds .slds-tags__item:last-child:after { content: none; } .slds .slds-attachments { padding: 8px 0; } .slds .slds-attachments:empty { padding: 0; } .slds .slds-attachments__item + .slds .slds-attachments__item { margin-top: 16px; } .slds .slds-modal { opacity: 0; visibility: hidden; transition: opacity 0.1s linear, -webkit-transform 0.1s linear; transition: transform 0.1s linear, opacity 0.1s linear; transition: transform 0.1s linear, opacity 0.1s linear, -webkit-transform 0.1s linear; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9001; } .slds .slds-modal__container { position: relative; -webkit-transform: translate(0, 0); transform: translate(0, 0); transition: opacity 0.1s linear, -webkit-transform 0.1s linear; transition: transform 0.1s linear, opacity 0.1s linear; transition: transform 0.1s linear, opacity 0.1s linear, -webkit-transform 0.1s linear; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; margin: 0 32px; height: 100%; padding: 48px 0; border-radius: 4px; } @media (min-width: 48em) { .slds .slds-modal__container { margin: 0 auto; width: 50%; max-width: 640px; min-width: 320px; } } .slds .slds-modal__header, .slds .slds-modal__content { background: white; } .slds .slds-modal__header, .slds .slds-modal__footer { -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; } .slds .slds-modal__header { position: relative; border-top-right-radius: 4px; border-top-left-radius: 4px; border-bottom: 2px solid #d8dde6; padding: 24px 16px; text-align: center; } .slds .slds-modal__header + .slds-modal__menu { border-top-left-radius: 0; border-top-right-radius: 0; } .slds .slds-modal__content { overflow: hidden; overflow-y: auto; } .slds .slds-modal__menu { position: relative; border-radius: 4px; padding: 16px; background-color: #f4f6f9; } @media (max-width: 48em) { .slds .slds-modal__menu .slds-button { width: 100%; margin: 2px 0; } } .slds .slds-modal__footer { border-top: 2px solid #d8dde6; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; padding: 12px 16px; background-color: #f4f6f9; text-align: right; box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.16); } .slds .slds-modal__footer--directional .slds-button:first-child { float: left; } .slds .slds-modal__close { width: 48px; height: 48px; position: absolute; top: -48px; right: -8px; } @media (min-width: 48em) { .slds .slds-modal--large .slds-modal__container { width: 90%; max-width: none; min-width: 640px; } } .slds .slds-modal-backdrop { transition-duration: 0.4s; width: 100%; height: 100%; opacity: 0; visibility: hidden; position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(126, 140, 153, 0.8); z-index: 9000; } .slds .slds-modal-backdrop--open { visibility: visible; opacity: 1; transition: opacity 0.4s linear; } .slds .slds-backdrop { transition-duration: 0.4s; width: 100%; height: 100%; opacity: 0; visibility: hidden; position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(126, 140, 153, 0.8); z-index: 9000; } .slds .slds-backdrop--open { visibility: visible; opacity: 1; transition: opacity 0.4s linear; } .slds .slds-fade-in-open { opacity: 1; visibility: visible; transition: opacity 0.1s linear; } .slds .slds-fade-in-open .slds-modal__container-reset { opacity: 1; visibility: visible; -webkit-transform: translate(0, 0); transform: translate(0, 0); } .slds .slds-slide-up-open { opacity: 1; visibility: visible; -webkit-transform: translate(0, 0); transform: translate(0, 0); transition: opacity 0.1s linear, -webkit-transform 0.2s linear; transition: opacity 0.1s linear, transform 0.2s linear; transition: opacity 0.1s linear, transform 0.2s linear, -webkit-transform 0.2s linear; } .slds .slds-slide-up-open .slds-modal__container-reset { opacity: 0; visibility: hidden; -webkit-transform: translate(0, 16px); transform: translate(0, 16px); transition: opacity 0.2s linear, -webkit-transform 0.2s linear; transition: opacity 0.2s linear, transform 0.2s linear; transition: opacity 0.2s linear, transform 0.2s linear, -webkit-transform 0.2s linear; } .slds .slds-slide-up-saving { opacity: 1; visibility: visible; -webkit-transform: translate(0, -16px); transform: translate(0, -16px); } .slds .slds-slide-down-cancel { opacity: 1; visibility: visible; -webkit-transform: translate(0, 16px); transform: translate(0, 16px); } .slds .slds-pill { background-color: white; display: inline-block; padding: 4px; border: 1px solid #d8dde6; border-radius: 4px; vertical-align: middle; line-height: 1.5; } .slds .slds-pill + .slds-pill { margin-left: 4px; } .slds .slds-pill:hover { background-color: #f4f6f9; } .slds .slds-pill:focus { outline: 0; box-shadow: 0 0 3px #0070D2; } .slds .slds-pill--bare { background-color: transparent; border: 0; } .slds .slds-pill--bare:hover { background-color: transparent; } .slds .slds-pill-container { padding: 1px; border: 1px solid #d8dde6; border-radius: 4px; min-height: calc(34px + 2px); } .slds .slds-pill__container, .slds .slds-pill_container { padding: 1px; border: 1px solid #d8dde6; border-radius: 4px; min-height: calc(34px + 2px); } .slds .slds-pill__container--bare, .slds .slds-pill_container--bare { padding: 2px 1px; } .slds .slds-pill__label { max-width: 216px; display: inline-block; vertical-align: middle; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .slds .slds-pill__icon { width: 20px; height: 20px; margin-right: 8px; border-radius: 2px; } .slds .slds-pill__remove { margin-left: 8px; } .slds .slds-pill .slds-avatar { margin-right: 8px; } .slds .slds-wizard { position: relative; } .slds .slds-wizard__list { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; position: relative; margin: auto; } .slds .slds-wizard__item { -webkit-flex: 2 0 auto; -ms-flex: 2 0 auto; flex: 2 0 auto; text-align: center; width: 0%; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .slds .slds-wizard__item:first-child { text-align: left; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; } .slds .slds-wizard__item:last-child { text-align: right; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; } .slds .slds-wizard__item a:hover, .slds .slds-wizard__item a:focus { outline: 0; text-decoration: none; } .slds .slds-wizard__item a:hover .slds-wizard__marker, .slds .slds-wizard__item a:focus .slds-wizard__marker { background: #d8dde6; } .slds .slds-wizard__link { display: block; } .slds .slds-wizard__marker { width: 24px; height: 24px; border-radius: 50%; background: #e0e5ee; display: inline-block; vertical-align: middle; z-index: 1; position: relative; } .slds .slds-wizard__label { display: block; margin-top: 12px; } .slds .slds-wizard__progress { position: absolute; left: 0; top: 10px; height: 4px; display: block; width: 100%; z-index: -1; background: #e0e5ee; } .slds .slds-wizard__progress-bar { position: absolute; left: 0; top: 0; height: 100%; background: #0076de; transition: width 0.2s ease; } .slds .slds-wizard .slds-is-active .slds-wizard__marker { background: #0076de; } .slds .slds-wizard .slds-is-active a:hover .slds-wizard__marker, .slds .slds-wizard .slds-is-active a:focus .slds-wizard__marker { background: #005fb2; } .slds .slds-tabs--path { display: block; width: 100%; } .slds .slds-tabs--path__nav { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .slds .slds-tabs--path .slds-is-complete { background-color: #4bca81; } .slds .slds-tabs--path .slds-is-complete .slds-tabs--path__stage { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); } .slds .slds-tabs--path .slds-is-complete .slds-tabs--path__title { -webkit-transform: rotateX(180deg); transform: rotateX(180deg); } .slds .slds-tabs--path .slds-is-complete:hover { background-color: #04844b; } .slds .slds-tabs--path .slds-is-complete:hover .slds-tabs--path__stage { -webkit-transform: rotateX(-180deg); transform: rotateX(-180deg); } .slds .slds-tabs--path .slds-is-complete:hover .slds-tabs--path__title { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); } .slds .slds-tabs--path .slds-is-current { background-color: #0076de; } .slds .slds-tabs--path .slds-is-current:hover { background-color: #005fb2; } .slds .slds-tabs--path .slds-is-current + .slds-is-incomplete:before { background-color: #0076de; } .slds .slds-tabs--path .slds-is-current:hover + .slds-is-incomplete:before { background-color: #005fb2; } .slds .slds-tabs--path .slds-is-incomplete { background-color: #e0e5ee; } .slds .slds-tabs--path .slds-is-incomplete:hover { background-color: #d8dde6; } .slds .slds-tabs--path .slds-is-incomplete .slds-tabs--path__link { color: #16325c; } .slds .slds-tabs--path .slds-is-lost, .slds .slds-tabs--path .slds-is-lost:hover { background-color: #c23934; } .slds .slds-tabs--path .slds-is-current .slds-tabs--path__link, .slds .slds-tabs--path .slds-is-complete .slds-tabs--path__link, .slds .slds-tabs--path .slds-is-lost .slds-tabs--path__link { color: white; } .slds .slds-tabs--path .slds-is-active { background-color: #061c3f; } .slds .slds-tabs--path .slds-is-active .slds-tabs--path__link { color: white; } .slds .slds-tabs--path .slds-is-active:hover { background-color: #16325c; } .slds .slds-tabs--path .slds-is-active:hover + .slds-tabs--path__item:before { background-color: #16325c; } .slds .slds-tabs--path .slds-is-active + .slds-tabs--path__item:before { background-color: #061c3f; } .slds .slds-tabs--path .slds-is-active .slds-tabs--path__title, .slds .slds-tabs--path .slds-is-won .slds-tabs--path__title { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); } .slds .slds-tabs--path .slds-is-active .slds-tabs--path__stage, .slds .slds-tabs--path .slds-is-won .slds-tabs--path__stage { -webkit-transform: rotateX(-180deg); transform: rotateX(-180deg); } .slds .slds-tabs--path__item { overflow: hidden; position: relative; -webkit-flex: 1 1 0%; -ms-flex: 1 1 0%; flex: 1 1 0%; min-width: 80px; text-align: center; -webkit-perspective: 500; perspective: 500; transition: background-color 0.1s linear, -webkit-transform 0.1s ease-in-out; transition: transform 0.1s ease-in-out, background-color 0.1s linear; transition: transform 0.1s ease-in-out, background-color 0.1s linear, -webkit-transform 0.1s ease-in-out; } .slds .slds-tabs--path__item:first-child { border-radius: 240px 0 0 240px; } .slds .slds-tabs--path__item:last-child { border-radius: 0 240px 240px 0; border-right: 0; } .slds .slds-tabs--path__item:before { content: ''; display: block; position: absolute; top: 2px; left: -16px; width: calc(32px - (2px * 2)); height: calc(32px - (2px * 2)); border: 2px solid white; border-left: 0; border-bottom: 0; background-clip: padding-box; -webkit-transform: scale3d(0.8, 1.1, 1) rotate(45deg); transform: scale3d(0.8, 1.1, 1) rotate(45deg); transition: background-color 0.1s linear, -webkit-transform 0.1s ease-in-out; transition: transform 0.1s ease-in-out, background-color 0.1s linear; transition: transform 0.1s ease-in-out, background-color 0.1s linear, -webkit-transform 0.1s ease-in-out; } .slds .slds-tabs--path__item:first-child:before { display: none; } .slds .slds-tabs--path__item + .slds-is-complete:before, .slds .slds-tabs--path__item + .slds-is-current:before { background-color: #4bca81; } .slds .slds-tabs--path__item:hover + .slds-is-complete:before, .slds .slds-tabs--path__item:hover + .slds-is-current:before { background-color: #04844b; } .slds .slds-tabs--path__item + .slds-is-incomplete:before, .slds .slds-tabs--path__item + .slds-is-lost:before { background-color: #e0e5ee; } .slds .slds-tabs--path__item:hover + .slds-is-incomplete:before, .slds .slds-tabs--path__item:hover + .slds-is-lost:before { background-color: #d8dde6; } .slds .slds-tabs--path__title, .slds .slds-tabs--path__stage { display: block; transition: -webkit-transform 0.2s linear; transition: transform 0.2s linear; transition: transform 0.2s linear, -webkit-transform 0.2s linear; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .slds .slds-tabs--path__title { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .slds .slds-tabs--path__stage { position: absolute; top: 50%; left: 8px; width: 100%; margin-top: -12px; -webkit-transform: rotateX(-180deg); transform: rotateX(-180deg); } .slds .slds-tabs--path__link { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; position: relative; padding: 4px 4px 4px 20px; line-height: 24px; text-decoration: none; cursor: pointer; } .slds .slds-tabs--path__link:hover, .slds .slds-tabs--path__link:focus { text-decoration: none; } .slds .slds-tabs--path__link:focus { outline: 0; } .slds .slds-path-coach { border: #d8dde6 1px solid; border-top: 0; padding-bottom: 16px; } .slds .slds-path__trigger { border-radius: 50%; transition: 0.1s transform ease-in-out; } .slds .slds-flip--vertical { -webkit-transform: rotateX(180deg); transform: rotateX(180deg); } .slds .slds-flip--horizontal { -webkit-transform: rotateY(180deg); transform: rotateY(180deg); } .slds .slds-path__mark-complete { border-radius: 240px; } .slds .slds-path__mark-current { border-color: #061c3f; background-color: #061c3f; } .slds .slds-path__mark-current:hover, .slds .slds-path__mark-current:focus { background-color: #16325c; } .slds .slds-tabs--path__content { position: relative; padding-left: 24px; padding-right: 16px; } .slds .slds-coach__keys, .slds .slds-coach__guidance { margin-top: 16px; padding-top: 16px; padding-right: 24px; } .slds .slds-coach__keys { padding-left: 12px; } .slds .slds-coach__guidance { padding-left: 24px; padding-bottom: 16px; background-color: #fafafb; } .slds .slds-coach__item { border-top: #d8dde6 1px solid; padding: 16px 0; color: #54698d; } .slds .slds-coach__value { border-top: #d8dde6 1px solid; padding-top: 16px; color: #16325c; } .slds .slds-spinner_container { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: calc(9000 + 2); background-color: rgba(255, 255, 255, 0.75); visibility: visible; opacity: 1; transition: opacity 0.2s ease, visibility 0s; transition-delay: 0s, 0.3s; } .slds .slds-spinner_container.is-hidden { visibility: hidden; opacity: 0; transition: opacity 0.2s ease, visibility 0s; transition-delay: 0s, 0s; } .slds .slds-spinner_container.hide { display: none; } .slds .slds-spinner { position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%) rotate(90deg); transform: translate(-50%, -50%) rotate(90deg); } .slds .slds-spinner, .slds .slds-spinner__dot-a, .slds .slds-spinner__dot-b { -webkit-transform-origin: 50% 50%; transform-origin: 50% 50%; } .slds .slds-spinner__dot-a, .slds .slds-spinner__dot-b { position: absolute; top: 0; left: 0; width: 100%; } .slds .slds-spinner:before, .slds .slds-spinner:after, .slds .slds-spinner__dot-a:before, .slds .slds-spinner__dot-b:before, .slds .slds-spinner__dot-a:after, .slds .slds-spinner__dot-b:after { position: absolute; content: ''; background: #9faab5; border-radius: 50%; -webkit-animation-duration: 1000ms; animation-duration: 1000ms; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; } .slds .slds-spinner__dot-a { -webkit-transform: rotate(60deg) translateY(0); transform: rotate(60deg) translateY(0); } .slds .slds-spinner__dot-b { -webkit-transform: rotate(120deg) translateY(0); transform: rotate(120deg) translateY(0); } .slds .slds-spinner:before { -webkit-animation-delay: -83.33333ms; animation-delay: -83.33333ms; } .slds .slds-spinner__dot-a:before { -webkit-animation-delay: 83.33333ms; animation-delay: 83.33333ms; } .slds .slds-spinner__dot-b:before { -webkit-animation-delay: 250ms; animation-delay: 250ms; } .slds .slds-spinner:after { -webkit-animation-delay: 416.66667ms; animation-delay: 416.66667ms; } .slds .slds-spinner__dot-a:after { -webkit-animation-delay: 583.33333ms; animation-delay: 583.33333ms; } .slds .slds-spinner__dot-b:after { -webkit-animation-delay: 750ms; animation-delay: 750ms; } .slds .slds-spinner--small { width: 20px; } .slds .slds-spinner--small.slds-spinner:before, .slds .slds-spinner--small.slds-spinner:after, .slds .slds-spinner--small .slds-spinner__dot-a:before, .slds .slds-spinner--small .slds-spinner__dot-b:before, .slds .slds-spinner--small .slds-spinner__dot-a:after, .slds .slds-spinner--small .slds-spinner__dot-b:after { width: 4px; height: 4px; } .slds .slds-spinner--small.slds-spinner:before, .slds .slds-spinner--small .slds-spinner__dot-a:before, .slds .slds-spinner--small .slds-spinner__dot-b:before { top: -2px; left: -2px; -webkit-animation-name: dotsBounceBefore-extraSmall; animation-name: dotsBounceBefore-extraSmall; } .slds .slds-spinner--small.slds-spinner:after, .slds .slds-spinner--small .slds-spinner__dot-a:after, .slds .slds-spinner--small .slds-spinner__dot-b:after { top: -2px; right: -2px; -webkit-animation-name: dotsBounceAfter-extraSmall; animation-name: dotsBounceAfter-extraSmall; } @-webkit-keyframes dotsBounceBefore-extraSmall { 60% { -webkit-transform: translateX(0); transform: translateX(0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(-4px); transform: translateX(-4px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes dotsBounceBefore-extraSmall { 60% { -webkit-transform: translateX(0); transform: translateX(0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(-4px); transform: translateX(-4px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @-webkit-keyframes dotsBounceAfter-extraSmall { 60% { -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); -webkit-transform: translateX(0); transform: translateX(0); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(4px); transform: translateX(4px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes dotsBounceAfter-extraSmall { 60% { -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); -webkit-transform: translateX(0); transform: translateX(0); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(4px); transform: translateX(4px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @-webkit-keyframes dotsBounceBefore-small { 60% { -webkit-transform: translateX(0); transform: translateX(0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(-6px); transform: translateX(-6px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes dotsBounceBefore-small { 60% { -webkit-transform: translateX(0); transform: translateX(0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(-6px); transform: translateX(-6px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @-webkit-keyframes dotsBounceAfter-small { 60% { -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); -webkit-transform: translateX(0); transform: translateX(0); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(6px); transform: translateX(6px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes dotsBounceAfter-small { 60% { -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); -webkit-transform: translateX(0); transform: translateX(0); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(6px); transform: translateX(6px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } .slds .slds-spinner--medium { width: 32px; } .slds .slds-spinner--medium.slds-spinner:before, .slds .slds-spinner--medium.slds-spinner:after, .slds .slds-spinner--medium .slds-spinner__dot-a:before, .slds .slds-spinner--medium .slds-spinner__dot-b:before, .slds .slds-spinner--medium .slds-spinner__dot-a:after, .slds .slds-spinner--medium .slds-spinner__dot-b:after { width: 8px; height: 8px; } .slds .slds-spinner--medium.slds-spinner:before, .slds .slds-spinner--medium .slds-spinner__dot-a:before, .slds .slds-spinner--medium .slds-spinner__dot-b:before { -webkit-animation-name: dotsBounceBefore-medium; animation-name: dotsBounceBefore-medium; top: -4px; left: -4px; } .slds .slds-spinner--medium.slds-spinner:after, .slds .slds-spinner--medium .slds-spinner__dot-a:after, .slds .slds-spinner--medium .slds-spinner__dot-b:after { -webkit-animation-name: dotsBounceAfter-medium; animation-name: dotsBounceAfter-medium; top: -4px; right: -4px; } @-webkit-keyframes dotsBounceBefore-medium { 60% { -webkit-transform: translateX(0); transform: translateX(0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(-8px); transform: translateX(-8px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes dotsBounceBefore-medium { 60% { -webkit-transform: translateX(0); transform: translateX(0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(-8px); transform: translateX(-8px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @-webkit-keyframes dotsBounceAfter-medium { 60% { -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); -webkit-transform: translateX(0); transform: translateX(0); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(8px); transform: translateX(8px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes dotsBounceAfter-medium { 60% { -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); -webkit-transform: translateX(0); transform: translateX(0); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(8px); transform: translateX(8px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } .slds .slds-spinner--large { width: 44px; } .slds .slds-spinner--large.slds-spinner:before, .slds .slds-spinner--large.slds-spinner:after, .slds .slds-spinner--large .slds-spinner__dot-a:before, .slds .slds-spinner--large .slds-spinner__dot-b:before, .slds .slds-spinner--large .slds-spinner__dot-a:after, .slds .slds-spinner--large .slds-spinner__dot-b:after { width: 10px; height: 10px; } .slds .slds-spinner--large.slds-spinner:before, .slds .slds-spinner--large .slds-spinner__dot-a:before, .slds .slds-spinner--large .slds-spinner__dot-b:before { -webkit-animation-name: dotsBounceBefore-medium; animation-name: dotsBounceBefore-medium; top: -5px; left: -5px; } .slds .slds-spinner--large.slds-spinner:after, .slds .slds-spinner--large .slds-spinner__dot-a:after, .slds .slds-spinner--large .slds-spinner__dot-b:after { -webkit-animation-name: dotsBounceAfter-medium; animation-name: dotsBounceAfter-medium; top: -5px; right: -5px; } @-webkit-keyframes dotsBounceBefore-large { 60% { -webkit-transform: translateX(0); transform: translateX(0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(-12px); transform: translateX(-12px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes dotsBounceBefore-large { 60% { -webkit-transform: translateX(0); transform: translateX(0); -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(-12px); transform: translateX(-12px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @-webkit-keyframes dotsBounceAfter-large { 60% { -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); -webkit-transform: translateX(0); transform: translateX(0); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(12px); transform: translateX(12px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } @keyframes dotsBounceAfter-large { 60% { -webkit-animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); -webkit-transform: translateX(0); transform: translateX(0); } 80% { -webkit-animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); animation-timing-function: cubic-bezier(0, 1.11, 0.7, 1.43); -webkit-transform: translateX(12px); transform: translateX(12px); } 100% { -webkit-transform: translateX(0); transform: translateX(0); } } .slds .slds-spinner--brand.slds-spinner:before, .slds .slds-spinner--brand.slds-spinner:after, .slds .slds-spinner--brand .slds-spinner__dot-a:before, .slds .slds-spinner--brand .slds-spinner__dot-b:before, .slds .slds-spinner--brand .slds-spinner__dot-a:after, .slds .slds-spinner--brand .slds-spinner__dot-b:after { background-color: #1589ee; } .slds .slds-spinner--inverse.slds-spinner:before, .slds .slds-spinner--inverse.slds-spinner:after, .slds .slds-spinner--inverse .slds-spinner__dot-a:before, .slds .slds-spinner--inverse .slds-spinner__dot-b:before, .slds .slds-spinner--inverse .slds-spinner__dot-a:after, .slds .slds-spinner--inverse .slds-spinner__dot-b:after { background-color: white; } .slds .slds-tile + .slds-tile { margin-top: 8px; } .slds .slds-tile__title, .slds .slds-tile__detail { position: relative; } .slds .slds-tile__meta { color: #16325c; } .slds .slds-tile--board { position: relative; } .slds .slds-tile--board__icon { width: 16px; height: 16px; position: absolute; bottom: 4px; right: 4px; } .slds .slds-tile--board .slds-has-alert { padding-right: 24px; } .slds .slds-tree-container, .slds .slds-tree_container { min-width: 120px; max-width: 400px; } .slds .slds-tree-container > .slds-text-heading--label, .slds .slds-tree_container > .slds-text-heading--label { margin-bottom: 8px; } .slds .slds-tree__item { display: -webkit-flex; display: -ms-flexbox; display: flex; line-height: 34px; padding-left: 16px; } .slds .slds-tree__item .slds-is-disabled { visibility: hidden; } .slds .slds-tree__item a { color: #16325c; } .slds .slds-tree__item a:hover, .slds .slds-tree__item a:focus { outline: 0; text-decoration: none; } .slds .slds-tree__item:hover, .slds .slds-tree__item:focus { background: #f4f6f9; cursor: pointer; } .slds .slds-tree .slds-is-selected { background: #f0f8fc; box-shadow: #0070d2 4px 0 0 inset; } .slds .slds-tree .slds-is-hovered, .slds .slds-tree .slds-is-focused { background: #f4f6f9; cursor: pointer; } [aria-level="1"] > .slds .slds-tree__item { padding-left: 24px; } [aria-level="2"] > .slds .slds-tree__item { padding-left: 48px; } [aria-level="3"] > .slds .slds-tree__item { padding-left: 72px; } [aria-level="4"] > .slds .slds-tree__item { padding-left: 96px; } [aria-level="5"] > .slds .slds-tree__item { padding-left: 120px; } [aria-level="6"] > .slds .slds-tree__item { padding-left: 144px; } [aria-level="7"] > .slds .slds-tree__item { padding-left: 168px; } [aria-level="8"] > .slds .slds-tree__item { padding-left: 192px; } [aria-level="9"] > .slds .slds-tree__item { padding-left: 216px; } [aria-level="10"] > .slds .slds-tree__item { padding-left: 240px; } [aria-level="11"] > .slds .slds-tree__item { padding-left: 264px; } [aria-level="12"] > .slds .slds-tree__item { padding-left: 288px; } [aria-level="13"] > .slds .slds-tree__item { padding-left: 312px; } [aria-level="14"] > .slds .slds-tree__item { padding-left: 336px; } [aria-level="15"] > .slds .slds-tree__item { padding-left: 360px; } [aria-level="16"] > .slds .slds-tree__item { padding-left: 384px; } [aria-level="17"] > .slds .slds-tree__item { padding-left: 408px; } [aria-level="18"] > .slds .slds-tree__item { padding-left: 432px; } [aria-level="19"] > .slds .slds-tree__item { padding-left: 456px; } [aria-level="20"] > .slds .slds-tree__item { padding-left: 480px; } [aria-expanded="false"] > .slds .slds-tree__item > .slds-button[aria-controls] > .slds-button__icon, [aria-expanded="false"] > .slds .slds-tree__item > .slds-button[aria-controls] > span > .slds-button__icon { transition: 0.2s transform ease-in-out; -webkit-transform: rotate(0deg); transform: rotate(0deg); } [aria-expanded="true"] > .slds .slds-tree__item > .slds-button[aria-controls] > .slds-button__icon, [aria-expanded="true"] > .slds .slds-tree__item > .slds-button[aria-controls] > span > .slds-button__icon { transition: 0.2s transform ease-in-out; -webkit-transform: rotate(90deg); transform: rotate(90deg); } .slds .slds-tree .slds-button { -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; } .slds .slds-tree .slds-pill { margin-left: 12px; } .slds .slds-tabs--default { display: block; width: 100%; } .slds .slds-tabs--default__nav { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; border-bottom: 1px solid #d8dde6; } .slds .slds-tabs--default .slds-tabs__item { overflow: hidden; } @media (min-width: 48em) { .slds .slds-tabs--default .slds-tabs__item + .slds-tabs__item { margin-left: 24px; } } .slds .slds-tabs--default .slds-tabs__item > a { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; text-decoration: none; cursor: pointer; height: 48px; line-height: 48px; border-bottom: 2px solid transparent; padding: 0 8px; color: #54698d; } .slds .slds-tabs--default .slds-tabs__item > a:focus { outline: 0; } @media (min-width: 48em) { .slds .slds-tabs--default .slds-tabs__item > a { padding: 0 16px; } } .slds .slds-tabs--default .slds-tabs__item > a:hover, .slds .slds-tabs--default .slds-tabs__item > a:focus { text-decoration: none; border-color: #0070d2; color: #16325c; } .slds .slds-tabs--default .slds-tabs__item > a:focus { color: #0070d2; box-shadow: #0070d2 0 -1px 0 inset; } .slds .slds-tabs--default .slds-tabs__item.slds-active a { border-color: #0070d2; color: #16325c; } .slds .slds-tabs--default .slds-tabs__item.slds-active a:focus { color: #0070d2; } .slds .slds-tabs--default > .slds-tabs__content { position: relative; padding: 16px 0; } .slds .slds-tabs--default .slds-tabs__item--overflow { overflow: visible; } .slds .slds-tabs--default__item { overflow: hidden; } @media (min-width: 48em) { .slds .slds-tabs--default__item + .slds-tabs--default__item { margin-left: 24px; } } .slds .slds-tabs--default__item.slds-active .slds-tabs--default__link { border-color: #0070d2; color: #16325c; } .slds .slds-tabs--default__item.slds-active .slds-tabs--default__link:focus { color: #0070d2; } .slds .slds-tabs--default__content { position: relative; padding: 16px 0; } .slds .slds-tabs--default__link { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; text-decoration: none; cursor: pointer; height: 48px; line-height: 48px; border-bottom: 2px solid transparent; padding: 0 8px; color: #54698d; } .slds .slds-tabs--default__link:focus { outline: 0; } @media (min-width: 48em) { .slds .slds-tabs--default__link { padding: 0 16px; } } .slds .slds-tabs--default__link:hover, .slds .slds-tabs--default__link:focus { text-decoration: none; border-color: #0070d2; color: #16325c; } .slds .slds-tabs--default__link:focus { color: #0070d2; box-shadow: #0070d2 0 -1px 0 inset; } .slds .slds-tabs--scoped { display: block; width: 100%; } .slds .slds-tabs--scoped__nav { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; background-color: #f4f6f9; border: 1px solid #d8dde6; border-radius: 4px 4px 0 0; } .slds .slds-tabs--scoped .slds-tabs__item { overflow: hidden; position: relative; margin-bottom: -1px; } .slds .slds-tabs--scoped .slds-tabs__item + .slds-tabs__item { margin-left: -1px; } .slds .slds-tabs--scoped .slds-tabs__item:first-child > a { border-left: 0; border-radius: 4px 0 0 0; } .slds .slds-tabs--scoped .slds-tabs__item > a { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; text-decoration: none; cursor: pointer; height: 48px; line-height: 48px; padding: 0 24px; color: #54698d; background-clip: padding-box; border-left: 1px solid transparent; border-right: 1px solid transparent; } .slds .slds-tabs--scoped .slds-tabs__item > a:focus { outline: 0; } .slds .slds-tabs--scoped .slds-tabs__item > a:hover, .slds .slds-tabs--scoped .slds-tabs__item > a:focus { text-decoration: none; color: #005fb2; border-color: #d8dde6; } .slds .slds-tabs--scoped .slds-tabs__item .slds-active > a { background-color: white; color: #0070d2; border-color: #d8dde6; } .slds .slds-tabs--scoped .slds-tabs__item .slds-active > a:focus { text-decoration: underline; } .slds .slds-tabs--scoped > .slds-tabs__content { background-color: white; border: 1px solid #d8dde6; border-top: 0; border-radius: 0 0 4px 4px; padding: 16px; } .slds .slds-tabs--scoped__item { overflow: hidden; position: relative; margin-bottom: -1px; } .slds .slds-tabs--scoped__item + .slds-tabs--scoped__item { margin-left: -1px; } .slds .slds-tabs--scoped__item:first-child .slds-tabs--scoped__link { border-left: 0; border-radius: 4px 0 0 0; } .slds .slds-tabs--scoped__content { background-color: white; border: 1px solid #d8dde6; border-top: 0; border-radius: 0 0 4px 4px; padding: 16px; } .slds .slds-tabs--scoped__link { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; text-decoration: none; cursor: pointer; height: 48px; line-height: 48px; padding: 0 24px; color: #54698d; background-clip: padding-box; border-left: 1px solid transparent; border-right: 1px solid transparent; } .slds .slds-tabs--scoped__link:focus { outline: 0; } .slds .slds-tabs--scoped__link:hover, .slds .slds-tabs--scoped__link:focus { text-decoration: none; color: #005fb2; border-color: #d8dde6; } .slds .slds-active .slds-tabs--scoped__link { background-color: white; color: #0070d2; border-color: #d8dde6; } .slds .slds-active .slds-tabs--scoped__link:focus { text-decoration: underline; } .slds .slds-notify-container, .slds .slds-notify_container { position: fixed; width: 100%; left: 0; top: 0; z-index: 10000; text-align: center; } .slds .slds-notify { color: white; position: relative; background: #54698d; font-weight: 300; } .slds .slds-notify a:not(.slds-button--neutral) { color: white; text-decoration: underline; } .slds .slds-notify a:not(.slds-button--neutral):link, .slds .slds-notify a:not(.slds-button--neutral):visited { color: white; } .slds .slds-notify a:not(.slds-button--neutral):hover, .slds .slds-notify a:not(.slds-button--neutral):focus { color: rgba(255, 255, 255, 0.75); } .slds .slds-notify a:not(.slds-button--neutral):active { color: rgba(255, 255, 255, 0.5); } .slds .slds-notify a:not(.slds-button--neutral)[disabled] { color: rgba(255, 255, 255, 0.15); } .slds .slds-notify__close { float: right; margin-left: 4px; line-height: 1; } .slds .slds-notify--alert { padding: 8px; text-align: center; } .slds .slds-modal--prompt .slds-modal__header { border-bottom: 0; } .slds .slds-modal--prompt .slds-modal__content { padding-left: 32px; padding-right: 32px; } .slds .slds-modal--prompt .slds-modal__footer { border-top: 0; text-align: center; } .slds .slds-modal--prompt .slds-modal__close { display: none; } .slds .slds-notify--toast { border-radius: 4px; margin: 8px; padding: 16px 24px; min-width: 480px; display: inline-block; text-align: left; } .slds .slds-notify--toast .slds-notify__close { -webkit-transform: translate3d(8px, 0, 0); transform: translate3d(8px, 0, 0); } .slds .slds-modal__header .slds-notify-container, .slds .slds-modal__header .slds-notify_container { position: absolute; } .slds .slds-modal__header .slds-notify--toast { display: block; } .slds .slds-lookup { position: relative; } .slds .slds-lookup__list { max-height: 200px; overflow-y: auto; } .slds .slds-lookup__menu { background: white; border: 1px solid #d8dde6; border-radius: 4px; z-index: 7000; position: absolute; width: 100%; margin-top: 4px; padding: 4px 0; } .slds .slds-lookup__item > a, .slds .slds-lookup__item > span, .slds .slds-lookup__item > button { display: block; padding: 8px; color: #16325c; text-align: left; width: 100%; line-height: 1.5; border-radius: 0; } .slds .slds-lookup__item > a:hover, .slds .slds-lookup__item > a:focus, .slds .slds-lookup__item > span:hover, .slds .slds-lookup__item > span:focus, .slds .slds-lookup__item > button:hover, .slds .slds-lookup__item > button:focus { outline: 0; background-color: #f4f6f9; color: #16325c; text-decoration: none; } .slds .slds-lookup__item > a .slds-icon, .slds .slds-lookup__item > span .slds-icon, .slds .slds-lookup__item > button .slds-icon { margin-right: 8px; } .slds .slds-lookup[data-select="single"] .slds-pill { display: block; width: 100%; } .slds .slds-lookup[data-select="single"] .slds-pill .slds-button { position: absolute; right: 12px; top: 50%; margin-top: -8px; } .slds .slds-lookup[data-select="single"].slds-has-selection .slds-input, .slds .slds-lookup[data-select="single"].slds-has-selection .slds-input__icon { display: none; } .slds .slds-lookup[data-select="multi"] .slds-pill__container { border: transparent; border-bottom: 1px solid #d8dde6; border-radius: 0; } .slds .slds-lookup[data-scope="multi"] .slds-form-element__label { -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; margin-left: 8px; margin-right: 0; margin-bottom: 0; max-width: 192px; -webkit-justify-content: flex-end; -ms-flex-pack: end; justify-content: flex-end; } .slds .slds-lookup[data-scope="multi"] .slds-lookup__menu { max-width: calc(100% - 96px); right: 0; top: calc(34px + 2px); } .slds .slds-lookup[data-scope="multi"] .slds-lookup__list { max-height: 280px; } .slds .slds-lookup[data-scope="multi"] .slds-dropdown-trigger { margin-left: 8px; } .slds .slds-lookup[data-scope="multi"] .slds-input { padding-left: 192px; } .slds .slds-lookup[data-scope="multi"] .slds-form-element__control { -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; display: -webkit-flex; display: -ms-flexbox; display: flex; } .slds .slds-lookup[data-scope="multi"] .slds-form-element__control .slds-input--bare { -webkit-flex: 1; -ms-flex: 1; flex: 1; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; margin-left: 8px; line-height: 34px; } .slds .slds-modal .slds-lookup thead tr:first-child > th { border-top: 2px solid #d8dde6; } .slds .slds-modal .slds-lookup thead tr:last-child > th { border-bottom: 2px solid #d8dde6; } .slds .slds-media { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; } .slds .slds-media__figure { -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; margin-right: 12px; } .slds .slds-media__body { -webkit-flex: 1; -ms-flex: 1; flex: 1; min-width: 0; } .slds .slds-media__body, .slds .slds-media__body > :last-child { margin-bottom: 0; } .slds .slds-media--small .slds-media__figure { margin-right: 4px; } .slds .slds-media--large .slds-media__figure { margin-right: 24px; } .slds .slds-media--center { -webkit-align-items: center; -ms-flex-align: center; -ms-grid-row-align: center; align-items: center; } .slds .slds-media__figure--reverse { margin: 0 0 0 12px; } .slds .slds-media--small .slds-media__figure--reverse { margin-left: 4px; } .slds .slds-media--reverse > .slds-media__figure { -webkit-order: 1; -ms-flex-order: 1; order: 1; } .slds .slds-media--reverse.slds-media--small .slds-media__figure { margin-left: 4px; } .slds .slds-media--double > .slds-media__figure { -webkit-order: 1; -ms-flex-order: 1; order: 1; } .slds .slds-media--double .slds-media__figure--reverse { -webkit-order: 3; -ms-flex-order: 3; order: 3; margin: 0 0 0 16px; } .slds .slds-media--double .slds-media__body { -webkit-order: 2; -ms-flex-order: 2; order: 2; } @media (max-width: 48em) { .slds .slds-media--responsive { display: block; } .slds .slds-media--responsive .slds-media__figure { margin: 0 0 12px; } } .slds .slds-avatar { overflow: hidden; display: inline-block; vertical-align: middle; border-radius: 4px; line-height: 1; } .slds .slds-avatar--x-small { width: 24px; height: 24px; } .slds .slds-avatar--small { width: 36px; height: 36px; } .slds .slds-avatar--medium { width: 48px; height: 48px; } .slds .slds-avatar--large { width: 80px; height: 80px; } .slds .slds-avatar--circle { border-radius: 50%; } .slds .slds-badge { background-color: #e0e5ee; padding: 4px 8px; border-radius: 240px; font-size: 10px; line-height: 1.25; text-transform: uppercase; letter-spacing: 0.0625em; color: #16325c; vertical-align: middle; white-space: nowrap; } .slds .slds-badge + .slds-badge { margin-left: 8px; } .slds .slds-badge:empty { padding: 0; } .slds .slds-table { background-color: white; } .slds .slds-table th, .slds .slds-table td { padding: 8px; white-space: nowrap; position: relative; } .slds .slds-table tr > th:first-child, .slds .slds-table tr > td:first-child { padding-left: 24px; } .slds .slds-table tr > th:last-child, .slds .slds-table tr > td:last-child { padding-right: 24px; } .slds .slds-table th { font-weight: 400; } .slds .slds-table:not(.slds-no-row-hover) tbody tr:hover > td, .slds .slds-table:not(.slds-no-row-hover) tbody tr:hover > th { background-color: #f4f6f9; } .slds .slds-table tbody tr.slds-is-selected > td, .slds .slds-table tbody tr.slds-is-selected > th, .slds .slds-table:not(.slds-no-row-hover) tr.slds-is-selected:hover > td, .slds .slds-table:not(.slds-no-row-hover) tr.slds-is-selected:hover > th { background-color: #f0f8fc; } .slds .slds-table td.slds-is-selected, .slds .slds-table td.slds-is-selected:hover { box-shadow: #0070d2 0 0 0 2px inset; } .slds .slds-table .slds-truncate { min-width: 52px; max-width: 240px; } .slds .slds-table .slds-cell-wrap { white-space: normal; } .slds .slds-table .slds-cell-shrink { width: 1%; } .slds .slds-table--bordered { border-top: 1px solid #d8dde6; border-bottom: 1px solid #d8dde6; } .slds .slds-table--bordered thead > tr + tr > th { border-top: 1px solid #d8dde6; } .slds .slds-table--bordered td, .slds .slds-table--bordered th { border-top: 1px solid #d8dde6; } .slds .slds-table--bordered:not(.slds-no-row-hover) tbody tr:hover > td, .slds .slds-table--bordered:not(.slds-no-row-hover) tbody tr:hover > th { box-shadow: #d8dde6 0 -1px 0 inset; } .slds .slds-table--bordered:not(.slds-no-row-hover) .slds-is-selected:hover > td, .slds .slds-table--bordered:not(.slds-no-row-hover) .slds-is-selected:hover > th { border-color: #0070d2; box-shadow: #0070d2 0 -2px 0 inset; } .slds .slds-table--bordered:not(.slds-no-row-hover) .slds-is-selected:hover > td.slds-is-selected, .slds .slds-table--bordered:not(.slds-no-row-hover) .slds-is-selected:hover > th.slds-is-selected { box-shadow: #0070d2 0 -1px 0 2px inset; } .slds .slds-table--striped tr:nth-of-type(even) > td { background-color: #f4f6f9; } .slds .slds-is-sortable { cursor: pointer; } .slds .slds-is-sortable .slds-button { visibility: hidden; margin-left: 8px; } .slds .slds-is-sortable .slds-button__icon { fill: #0070d2; } .slds .slds-is-sortable:hover { background-color: #f4f6f9; color: #0070d2; } .slds .slds-is-sortable:hover .slds-button { visibility: visible; } .slds .slds-table--fixed-layout { position: relative; table-layout: fixed; width: 100%; white-space: nowrap; } .slds .slds-table--fixed-layout .slds-cell-shrink { width: 48px; } .slds .slds-table--fixed-layout .slds-cell-shrink:nth-child(n) { padding: 0; } .slds .slds-table--fixed-layout .slds-cell-shrink:first-child { text-align: right; padding-right: 8px; } .slds .slds-table--fixed-layout .slds-cell-shrink:last-child { text-align: left; padding-left: 8px; } .slds .slds-is-resizable:hover { box-shadow: #d8dde6 -4px 0 0 inset; } .slds .slds-resizable { max-width: 100%; } .slds .slds-resizable__handle { position: absolute; right: 0; top: 0; width: 4px; height: 100%; background: #0070d2; display: block; cursor: col-resize; opacity: 0; z-index: 5000; } .slds .slds-resizable__handle:hover, .slds .slds-resizable__handle:active { opacity: 1; } .slds .slds-resizable__handle--indicator { right: auto; } .slds .slds-resizable__divider { position: absolute; left: 50%; height: 100vh; width: 1px; background: #0070d2; } @media (max-width: 48em) { .slds .slds-max-medium-table--stacked { border: 0; } .slds .slds-max-medium-table--stacked thead { position: absolute; top: 0; left: -9999em; } .slds .slds-max-medium-table--stacked th { border-top: 0; } .slds .slds-max-medium-table--stacked tr { display: block; border-top: 2px solid #d8dde6; } .slds .slds-max-medium-table--stacked th, .slds .slds-max-medium-table--stacked td { display: block; padding: 12px; max-width: 100%; width: 100%; clear: both; white-space: normal; overflow: hidden; text-align: left; } .slds .slds-max-medium-table--stacked th.slds-truncate, .slds .slds-max-medium-table--stacked td.slds-truncate { max-width: 100%; } .slds .slds-max-medium-table--stacked th:before, .slds .slds-max-medium-table--stacked td:before { display: block; padding-bottom: 4px; content: attr(data-label); color: #54698d; text-transform: uppercase; font-family: "Salesforce Sans", Arial, sans-serif; font-size: 12px; font-weight: 300; } .slds .slds-max-medium-table--stacked tr > td:first-child, .slds .slds-max-medium-table--stacked tr > td:last-child { padding: 12px; } .slds .slds-max-medium-table--stacked:not(.slds-no-row-hover) tbody tr:hover td, .slds .slds-max-medium-table--stacked:not(.slds-no-row-hover) tbody tr:hover th { background-color: inherit; box-shadow: none; } .slds .slds-max-medium-table--stacked .slds-is-interactive .slds-button { visibility: visible; } .slds .slds-max-medium-table--stacked .slds-cell-shrink { width: auto; } } @media (max-width: 48em) { .slds .slds-max-medium-table--stacked td:before, .slds .slds-max-medium-table--stacked th:before { padding-bottom: 4px; } } @media (max-width: 48em) { .slds .slds-max-medium-table--stacked-horizontal { border: 0; } .slds .slds-max-medium-table--stacked-horizontal thead { position: absolute; top: 0; left: -9999em; } .slds .slds-max-medium-table--stacked-horizontal th { border-top: 0; } .slds .slds-max-medium-table--stacked-horizontal tr { display: block; border-top: 2px solid #d8dde6; } .slds .slds-max-medium-table--stacked-horizontal th, .slds .slds-max-medium-table--stacked-horizontal td { display: block; padding: 12px; max-width: 100%; width: 100%; clear: both; white-space: normal; overflow: hidden; text-align: left; } .slds .slds-max-medium-table--stacked-horizontal th.slds-truncate, .slds .slds-max-medium-table--stacked-horizontal td.slds-truncate { max-width: 100%; } .slds .slds-max-medium-table--stacked-horizontal th:before, .slds .slds-max-medium-table--stacked-horizontal td:before { display: block; padding-bottom: 4px; content: attr(data-label); color: #54698d; text-transform: uppercase; font-family: "Salesforce Sans", Arial, sans-serif; font-size: 12px; font-weight: 300; } .slds .slds-max-medium-table--stacked-horizontal tr > td:first-child, .slds .slds-max-medium-table--stacked-horizontal tr > td:last-child { padding: 12px; } .slds .slds-max-medium-table--stacked-horizontal:not(.slds-no-row-hover) tbody tr:hover td, .slds .slds-max-medium-table--stacked-horizontal:not(.slds-no-row-hover) tbody tr:hover th { background-color: inherit; box-shadow: none; } .slds .slds-max-medium-table--stacked-horizontal .slds-is-interactive .slds-button { visibility: visible; } .slds .slds-max-medium-table--stacked-horizontal .slds-cell-shrink { width: auto; } } @media (max-width: 48em) { .slds .slds-max-medium-table--stacked-horizontal td { text-align: right; } .slds .slds-max-medium-table--stacked-horizontal td:before { float: left; margin-top: 2px; } } .slds .slds-m-top--none { margin-top: 0; } .slds .slds-m-right--none { margin-right: 0; } .slds .slds-m-bottom--none { margin-bottom: 0; } .slds .slds-m-left--none { margin-left: 0; } .slds .slds-m-vertical--none { margin-top: 0; margin-bottom: 0; } .slds .slds-m-horizontal--none { margin-right: 0; margin-left: 0; } .slds .slds-m-around--none { margin: 0; } .slds .slds-m-top--xxx-small { margin-top: 2px; } .slds .slds-m-right--xxx-small { margin-right: 2px; } .slds .slds-m-bottom--xxx-small { margin-bottom: 2px; } .slds .slds-m-left--xxx-small { margin-left: 2px; } .slds .slds-m-vertical--xxx-small { margin-top: 2px; margin-bottom: 2px; } .slds .slds-m-horizontal--xxx-small { margin-right: 2px; margin-left: 2px; } .slds .slds-m-around--xxx-small { margin: 2px; } .slds .slds-m-top--xx-small { margin-top: 4px; } .slds .slds-m-right--xx-small { margin-right: 4px; } .slds .slds-m-bottom--xx-small { margin-bottom: 4px; } .slds .slds-m-left--xx-small { margin-left: 4px; } .slds .slds-m-vertical--xx-small { margin-top: 4px; margin-bottom: 4px; } .slds .slds-m-horizontal--xx-small { margin-right: 4px; margin-left: 4px; } .slds .slds-m-around--xx-small { margin: 4px; } .slds .slds-m-top--x-small { margin-top: 8px; } .slds .slds-m-right--x-small { margin-right: 8px; } .slds .slds-m-bottom--x-small { margin-bottom: 8px; } .slds .slds-m-left--x-small { margin-left: 8px; } .slds .slds-m-vertical--x-small { margin-top: 8px; margin-bottom: 8px; } .slds .slds-m-horizontal--x-small { margin-right: 8px; margin-left: 8px; } .slds .slds-m-around--x-small { margin: 8px; } .slds .slds-m-top--small { margin-top: 12px; } .slds .slds-m-right--small { margin-right: 12px; } .slds .slds-m-bottom--small { margin-bottom: 12px; } .slds .slds-m-left--small { margin-left: 12px; } .slds .slds-m-vertical--small { margin-top: 12px; margin-bottom: 12px; } .slds .slds-m-horizontal--small { margin-right: 12px; margin-left: 12px; } .slds .slds-m-around--small { margin: 12px; } .slds .slds-m-top--medium { margin-top: 16px; } .slds .slds-m-right--medium { margin-right: 16px; } .slds .slds-m-bottom--medium { margin-bottom: 16px; } .slds .slds-m-left--medium { margin-left: 16px; } .slds .slds-m-vertical--medium { margin-top: 16px; margin-bottom: 16px; } .slds .slds-m-horizontal--medium { margin-right: 16px; margin-left: 16px; } .slds .slds-m-around--medium { margin: 16px; } .slds .slds-m-top--large { margin-top: 24px; } .slds .slds-m-right--large { margin-right: 24px; } .slds .slds-m-bottom--large { margin-bottom: 24px; } .slds .slds-m-left--large { margin-left: 24px; } .slds .slds-m-vertical--large { margin-top: 24px; margin-bottom: 24px; } .slds .slds-m-horizontal--large { margin-right: 24px; margin-left: 24px; } .slds .slds-m-around--large { margin: 24px; } .slds .slds-m-top--x-large { margin-top: 32px; } .slds .slds-m-right--x-large { margin-right: 32px; } .slds .slds-m-bottom--x-large { margin-bottom: 32px; } .slds .slds-m-left--x-large { margin-left: 32px; } .slds .slds-m-vertical--x-large { margin-top: 32px; margin-bottom: 32px; } .slds .slds-m-horizontal--x-large { margin-right: 32px; margin-left: 32px; } .slds .slds-m-around--x-large { margin: 32px; } .slds .slds-m-top--xx-large { margin-top: 48px; } .slds .slds-m-right--xx-large { margin-right: 48px; } .slds .slds-m-bottom--xx-large { margin-bottom: 48px; } .slds .slds-m-left--xx-large { margin-left: 48px; } .slds .slds-m-vertical--xx-large { margin-top: 48px; margin-bottom: 48px; } .slds .slds-m-horizontal--xx-large { margin-right: 48px; margin-left: 48px; } .slds .slds-m-around--xx-large { margin: 48px; } .slds .slds-p-top--none { padding-top: 0; } .slds .slds-p-right--none { padding-right: 0; } .slds .slds-p-bottom--none { padding-bottom: 0; } .slds .slds-p-left--none { padding-left: 0; } .slds .slds-p-vertical--none { padding-top: 0; padding-bottom: 0; } .slds .slds-p-horizontal--none { padding-right: 0; padding-left: 0; } .slds .slds-p-around--none { padding: 0; } .slds .slds-p-top--xxx-small { padding-top: 2px; } .slds .slds-p-right--xxx-small { padding-right: 2px; } .slds .slds-p-bottom--xxx-small { padding-bottom: 2px; } .slds .slds-p-left--xxx-small { padding-left: 2px; } .slds .slds-p-vertical--xxx-small { padding-top: 2px; padding-bottom: 2px; } .slds .slds-p-horizontal--xxx-small { padding-right: 2px; padding-left: 2px; } .slds .slds-p-around--xxx-small { padding: 2px; } .slds .slds-p-top--xx-small { padding-top: 4px; } .slds .slds-p-right--xx-small { padding-right: 4px; } .slds .slds-p-bottom--xx-small { padding-bottom: 4px; } .slds .slds-p-left--xx-small { padding-left: 4px; } .slds .slds-p-vertical--xx-small { padding-top: 4px; padding-bottom: 4px; } .slds .slds-p-horizontal--xx-small { padding-right: 4px; padding-left: 4px; } .slds .slds-p-around--xx-small { padding: 4px; } .slds .slds-p-top--x-small { padding-top: 8px; } .slds .slds-p-right--x-small { padding-right: 8px; } .slds .slds-p-bottom--x-small { padding-bottom: 8px; } .slds .slds-p-left--x-small { padding-left: 8px; } .slds .slds-p-vertical--x-small { padding-top: 8px; padding-bottom: 8px; } .slds .slds-p-horizontal--x-small { padding-right: 8px; padding-left: 8px; } .slds .slds-p-around--x-small { padding: 8px; } .slds .slds-p-top--small { padding-top: 12px; } .slds .slds-p-right--small { padding-right: 12px; } .slds .slds-p-bottom--small { padding-bottom: 12px; } .slds .slds-p-left--small { padding-left: 12px; } .slds .slds-p-vertical--small { padding-top: 12px; padding-bottom: 12px; } .slds .slds-p-horizontal--small { padding-right: 12px; padding-left: 12px; } .slds .slds-p-around--small { padding: 12px; } .slds .slds-p-top--medium { padding-top: 16px; } .slds .slds-p-right--medium { padding-right: 16px; } .slds .slds-p-bottom--medium { padding-bottom: 16px; } .slds .slds-p-left--medium { padding-left: 16px; } .slds .slds-p-vertical--medium { padding-top: 16px; padding-bottom: 16px; } .slds .slds-p-horizontal--medium { padding-right: 16px; padding-left: 16px; } .slds .slds-p-around--medium { padding: 16px; } .slds .slds-p-top--large { padding-top: 24px; } .slds .slds-p-right--large { padding-right: 24px; } .slds .slds-p-bottom--large { padding-bottom: 24px; } .slds .slds-p-left--large { padding-left: 24px; } .slds .slds-p-vertical--large { padding-top: 24px; padding-bottom: 24px; } .slds .slds-p-horizontal--large { padding-right: 24px; padding-left: 24px; } .slds .slds-p-around--large { padding: 24px; } .slds .slds-p-top--x-large { padding-top: 32px; } .slds .slds-p-right--x-large { padding-right: 32px; } .slds .slds-p-bottom--x-large { padding-bottom: 32px; } .slds .slds-p-left--x-large { padding-left: 32px; } .slds .slds-p-vertical--x-large { padding-top: 32px; padding-bottom: 32px; } .slds .slds-p-horizontal--x-large { padding-right: 32px; padding-left: 32px; } .slds .slds-p-around--x-large { padding: 32px; } .slds .slds-p-top--xx-large { padding-top: 48px; } .slds .slds-p-right--xx-large { padding-right: 48px; } .slds .slds-p-bottom--xx-large { padding-bottom: 48px; } .slds .slds-p-left--xx-large { padding-left: 48px; } .slds .slds-p-vertical--xx-large { padding-top: 48px; padding-bottom: 48px; } .slds .slds-p-horizontal--xx-large { padding-right: 48px; padding-left: 48px; } .slds .slds-p-around--xx-large { padding: 48px; } .slds .slds-float--left { float: left; } .slds .slds-float--right { float: right; } .slds .slds-clearfix:after { content: ''; display: table; clear: both; } .slds .slds-clear { clear: both; } .slds .slds-list--dotted { margin-left: 24px; list-style: disc; } .slds .slds-list--ordered { margin-left: 24px; list-style: decimal; } .slds .slds-dl--inline:after { content: ''; display: table; clear: both; } @media (min-width: 48em) { .slds .slds-dl--inline__label { float: left; clear: left; } .slds .slds-dl--inline__detail { float: left; padding-left: 4px; } } @media (min-width: 48em) { .slds .slds-dl--horizontal { -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; display: -webkit-flex; display: -ms-flexbox; display: flex; } .slds .slds-dl--horizontal__label { width: 33%; padding-right: 12px; } .slds .slds-dl--horizontal__detail { width: 66%; } } .slds .slds-list--horizontal { display: -webkit-flex; display: -ms-flexbox; display: flex; } .slds .slds-list--horizontal > .slds-list__item { -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; display: inline-block; vertical-align: middle; } .slds .slds-list--horizontal-large > .slds-list__item > a { padding: 12px 16px; } .slds .slds-is-nested { margin-left: 16px; } .slds .slds-has-divider { margin-top: 8px; padding-top: 8px; border-top: 1px solid #d8dde6; } .slds .slds-has-divider--top { border-top: 1px solid #d8dde6; } .slds .slds-has-divider--top-space { border-top: 1px solid #d8dde6; margin-top: 8px; padding-top: 8px; } .slds .slds-has-divider--bottom { border-bottom: 1px solid #d8dde6; } .slds .slds-has-divider--bottom-space { border-bottom: 1px solid #d8dde6; margin-bottom: 8px; padding-bottom: 8px; } .slds .slds-list--vertical.slds-has-dividers > .slds-list__item { padding: 8px; border-bottom: 1px solid #d8dde6; } .slds .slds-list--vertical.slds-has-dividers > .slds-list__item:hover { background-color: #f4f6f9; border-color: #d8dde6; cursor: pointer; } .slds .slds-list--vertical.slds-has-dividers > .slds-list__item:active { background-color: #eef1f6; box-shadow: #d8dde6 0 -1px 0 inset; } .slds .slds-list--vertical.slds-has-dividers > .slds-list__item.slds-is-selected { box-shadow: #0070d2 0 0 0 1px inset; background-color: #f0f8fc; } .slds .slds-list--vertical.slds-has-dividers > .slds-list__item.slds-is-selected:hover, .slds .slds-list--vertical.slds-has-dividers > .slds-list__item.slds-is-selected:focus { box-shadow: #1589ee 0 -2px 0 inset, #1589ee 0 0 0 1px inset; } .slds .slds-has-dividers--top > .slds-list__item { border-top: 1px solid #d8dde6; } .slds .slds-has-dividers--top-space > .slds-list__item { border-top: 1px solid #d8dde6; padding: 12px; } @media (min-width: 30em) { .slds .slds-has-dividers--top-space > .slds-list__item { padding: 8px; } } .slds .slds-has-dividers--bottom > .slds-list__item { border-bottom: 1px solid #d8dde6; } .slds .slds-has-dividers--bottom-space > .slds-list__item { border-bottom: 1px solid #d8dde6; padding: 12px; } @media (min-width: 30em) { .slds .slds-has-dividers--bottom-space > .slds-list__item { padding: 8px; } } .slds .slds-has-list-interactions > .slds-list__item:hover { background-color: #f4f6f9; border-color: #d8dde6; cursor: pointer; } .slds .slds-has-list-interactions > .slds-list__item:active { background-color: #eef1f6; box-shadow: #d8dde6 0 -1px 0 inset; } .slds .slds-has-list-interactions > .slds-list__item.slds-is-selected { box-shadow: #0070d2 0 0 0 1px inset; background-color: #f0f8fc; } .slds .slds-has-list-interactions > .slds-list__item.slds-is-selected:hover, .slds .slds-has-list-interactions > .slds-list__item.slds-is-selected:focus { box-shadow: #1589ee 0 -2px 0 inset, #1589ee 0 0 0 1px inset; } .slds .slds-list--horizontal.slds-has-dividers > .slds-list__item { position: relative; } .slds .slds-list--horizontal.slds-has-dividers > .slds-list__item:after { width: 4px; height: 4px; content: ''; display: inline-block; vertical-align: middle; margin-left: 8px; margin-right: 8px; border-radius: 50%; background-color: #54698d; } .slds .slds-list--horizontal.slds-has-dividers > .slds-list__item:last-child { margin-right: 0; padding-right: 0; } .slds .slds-list--horizontal.slds-has-dividers > .slds-list__item:last-child:after { content: none; } .slds .slds-has-dividers--left > .slds-list__item { position: relative; } .slds .slds-has-dividers--left > .slds-list__item:before { width: 4px; height: 4px; content: ''; display: inline-block; vertical-align: middle; margin-left: 8px; margin-right: 8px; border-radius: 50%; background-color: #54698d; } .slds .slds-has-dividers--left > .slds-list__item:first-child { margin-right: 0; padding-right: 0; } .slds .slds-has-dividers--left > .slds-list__item:first-child:before { content: none; } .slds .slds-has-dividers--right > .slds-list__item { position: relative; } .slds .slds-has-dividers--right > .slds-list__item:after { width: 4px; height: 4px; content: ''; display: inline-block; vertical-align: middle; margin-left: 8px; margin-right: 8px; border-radius: 50%; background-color: #54698d; } .slds .slds-has-dividers--right > .slds-list__item:last-child { margin-right: 0; padding-right: 0; } .slds .slds-has-dividers--right > .slds-list__item:last-child:after { content: none; } .slds .slds-has-cards .slds-list__item { border: 1px solid #d8dde6; border-radius: 4px; background-clip: padding-box; } .slds .slds-has-cards .slds-list__item + .slds-list__item { margin-top: 8px; } .slds .slds-has-cards--space .slds-list__item { border: 1px solid #d8dde6; border-radius: 4px; background-clip: padding-box; padding: 12px; } @media (min-width: 30em) { .slds .slds-has-cards--space .slds-list__item { padding: 8px; } } .slds .slds-has-cards--space .slds-list__item + .slds-list__item { margin-top: 8px; } .slds .slds-has-block-links a { display: block; text-decoration: none; } .slds .slds-has-block-links .slds-is-nested { margin-left: 16px; } .slds .slds-has-block-links--space .slds-list__item { padding: 0; } .slds .slds-has-block-links--space a { display: block; text-decoration: none; padding: 12px; } @media (min-width: 48em) { .slds .slds-has-block-links--space a { padding: 8px; } } .slds .slds-has-inline-block-links a { display: inline-block; text-decoration: none; } .slds .slds-has-inline-block-links--space a { display: inline-block; text-decoration: none; padding: 12px; } @media (min-width: 48em) { .slds .slds-has-inline-block-links--space a { padding: 8px; } } .slds .slds-truncate { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .slds .slds-box { padding: 16px; border-radius: 4px; background-clip: padding-box; border: 1px solid #d8dde6; } .slds .slds-box--x-small { padding: 8px; } .slds .slds-box--small { padding: 12px; } .slds .slds-box--border { padding: 0; border-radius: 4px; background-clip: padding-box; border: 1px solid #d8dde6; } .slds .slds-theme--default { background-color: white; } .slds .slds-theme--shade { background-color: #f4f6f9; } .slds .slds-theme--inverse { background-color: #061c3f; color: white; border-color: #061c3f; } .slds .slds-theme--inverse a:not(.slds-button--neutral) { color: white; text-decoration: underline; } .slds .slds-theme--inverse a:not(.slds-button--neutral):link, .slds .slds-theme--inverse a:not(.slds-button--neutral):visited { color: white; } .slds .slds-theme--inverse a:not(.slds-button--neutral):hover, .slds .slds-theme--inverse a:not(.slds-button--neutral):focus { color: rgba(255, 255, 255, 0.75); } .slds .slds-theme--inverse a:not(.slds-button--neutral):active { color: rgba(255, 255, 255, 0.5); } .slds .slds-theme--inverse a:not(.slds-button--neutral)[disabled] { color: rgba(255, 255, 255, 0.15); } .slds .slds-theme--alt-inverse { background-color: #16325c; color: white; border-color: #16325c; } .slds .slds-theme--alt-inverse a:not(.slds-button--neutral) { color: white; text-decoration: underline; } .slds .slds-theme--alt-inverse a:not(.slds-button--neutral):link, .slds .slds-theme--alt-inverse a:not(.slds-button--neutral):visited { color: white; } .slds .slds-theme--alt-inverse a:not(.slds-button--neutral):hover, .slds .slds-theme--alt-inverse a:not(.slds-button--neutral):focus { color: rgba(255, 255, 255, 0.75); } .slds .slds-theme--alt-inverse a:not(.slds-button--neutral):active { color: rgba(255, 255, 255, 0.5); } .slds .slds-theme--alt-inverse a:not(.slds-button--neutral)[disabled] { color: rgba(255, 255, 255, 0.15); } .slds .slds-theme--success { color: white; background-color: #04844b; } .slds .slds-theme--success a:not(.slds-button--neutral) { color: white; text-decoration: underline; } .slds .slds-theme--success a:not(.slds-button--neutral):link, .slds .slds-theme--success a:not(.slds-button--neutral):visited { color: white; } .slds .slds-theme--success a:not(.slds-button--neutral):hover, .slds .slds-theme--success a:not(.slds-button--neutral):focus { color: rgba(255, 255, 255, 0.75); } .slds .slds-theme--success a:not(.slds-button--neutral):active { color: rgba(255, 255, 255, 0.5); } .slds .slds-theme--success a:not(.slds-button--neutral)[disabled] { color: rgba(255, 255, 255, 0.15); } .slds .slds-theme--info { color: white; background-color: #54698d; } .slds .slds-theme--info a:not(.slds-button--neutral) { color: white; text-decoration: underline; } .slds .slds-theme--info a:not(.slds-button--neutral):link, .slds .slds-theme--info a:not(.slds-button--neutral):visited { color: white; } .slds .slds-theme--info a:not(.slds-button--neutral):hover, .slds .slds-theme--info a:not(.slds-button--neutral):focus { color: rgba(255, 255, 255, 0.75); } .slds .slds-theme--info a:not(.slds-button--neutral):active { color: rgba(255, 255, 255, 0.5); } .slds .slds-theme--info a:not(.slds-button--neutral)[disabled] { color: rgba(255, 255, 255, 0.15); } .slds .slds-theme--warning { background-color: #ffb75d; color: #16325c; } .slds .slds-theme--warning .slds-button__icon { fill: #54698d; } .slds .slds-theme--error { color: white; background-color: #c23934; } .slds .slds-theme--error a:not(.slds-button--neutral) { color: white; text-decoration: underline; } .slds .slds-theme--error a:not(.slds-button--neutral):link, .slds .slds-theme--error a:not(.slds-button--neutral):visited { color: white; } .slds .slds-theme--error a:not(.slds-button--neutral):hover, .slds .slds-theme--error a:not(.slds-button--neutral):focus { color: rgba(255, 255, 255, 0.75); } .slds .slds-theme--error a:not(.slds-button--neutral):active { color: rgba(255, 255, 255, 0.5); } .slds .slds-theme--error a:not(.slds-button--neutral)[disabled] { color: rgba(255, 255, 255, 0.15); } .slds .slds-theme--offline { color: white; background-color: #444; } .slds .slds-theme--offline a:not(.slds-button--neutral) { color: white; text-decoration: underline; } .slds .slds-theme--offline a:not(.slds-button--neutral):link, .slds .slds-theme--offline a:not(.slds-button--neutral):visited { color: white; } .slds .slds-theme--offline a:not(.slds-button--neutral):hover, .slds .slds-theme--offline a:not(.slds-button--neutral):focus { color: rgba(255, 255, 255, 0.75); } .slds .slds-theme--offline a:not(.slds-button--neutral):active { color: rgba(255, 255, 255, 0.5); } .slds .slds-theme--offline a:not(.slds-button--neutral)[disabled] { color: rgba(255, 255, 255, 0.15); } .slds .slds-theme--alert-texture { background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.035) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.035) 50%, rgba(0, 0, 0, 0.035) 75%, transparent 75%, transparent); background-size: 64px 64px; } .slds .slds-theme--inverse-text { color: white; } .slds .slds-theme--inverse-text a:not(.slds-button--neutral) { color: white; text-decoration: underline; } .slds .slds-theme--inverse-text a:not(.slds-button--neutral):link, .slds .slds-theme--inverse-text a:not(.slds-button--neutral):visited { color: white; } .slds .slds-theme--inverse-text a:not(.slds-button--neutral):hover, .slds .slds-theme--inverse-text a:not(.slds-button--neutral):focus { color: rgba(255, 255, 255, 0.75); } .slds .slds-theme--inverse-text a:not(.slds-button--neutral):active { color: rgba(255, 255, 255, 0.5); } .slds .slds-theme--inverse-text a:not(.slds-button--neutral)[disabled] { color: rgba(255, 255, 255, 0.15); } .slds .slds-theme--default .slds-text-body--small, .slds .slds-theme--shade .slds-text-body--small, .slds .slds-theme--inverse .slds-text-body--small, .slds .slds-theme--alt-inverse .slds-text-body--small, .slds .slds-theme--success .slds-text-body--small, .slds .slds-theme--info .slds-text-body--small, .slds .slds-theme--warning .slds-text-body--small, .slds .slds-theme--error .slds-text-body--small, .slds .slds-theme--offline .slds-text-body--small, .slds .slds-theme--alert-texture .slds-text-body--small, .slds .slds-theme--inverse-text .slds-text-body--small { color: inherit; } .slds .slds-text-body--regular { font-size: 14px; } .slds .slds-text-heading--small { font-weight: 300; font-size: 18px; line-height: 1.25; } .slds .slds-text-heading--medium { font-weight: 300; font-size: 24px; line-height: 1.25; } .slds .slds-text-heading--large { font-weight: 300; font-size: 32px; line-height: 1.25; } .slds .slds-text-heading--label { font-size: 12px; line-height: 1.25; text-transform: uppercase; letter-spacing: 0.0625em; color: #54698d; } .slds .slds-text-body--small { font-size: 12px; color: #54698d; } .slds .slds-text-align--left { text-align: left; } .slds .slds-text-align--center { text-align: center; } .slds .slds-text-align--right { text-align: right; } .slds .slds-text-longform h1, .slds .slds-text-longform h2, .slds .slds-text-longform h3, .slds .slds-text-longform p, .slds .slds-text-longform ul, .slds .slds-text-longform ol, .slds .slds-text-longform dl, .slds .slds-text-longform img { margin-bottom: 12px; } .slds .slds-text-longform h1:last-child, .slds .slds-text-longform h2:last-child, .slds .slds-text-longform h3:last-child, .slds .slds-text-longform p:last-child, .slds .slds-text-longform ul:last-child, .slds .slds-text-longform ol:last-child, .slds .slds-text-longform dl:last-child, .slds .slds-text-longform img:last-child { margin-bottom: 0; } .slds .slds-text-longform ul { margin-left: 24px; list-style: disc; } .slds .slds-text-longform ol { margin-left: 24px; list-style: decimal; } .slds .slds-section { margin-top: 8px; margin-bottom: 8px; } .slds .slds-section__title { display: -webkit-flex; display: -ms-flexbox; display: flex; font-size: 18px; } .slds .slds-section__title-action { cursor: pointer; } .slds .slds-section__content { visibility: hidden; opacity: 0; max-height: 0; transition: all 0.05s; } .slds .slds-section .slds-button__icon { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); } .slds .slds-section.slds-is-open .slds-button__icon { -webkit-transform: rotate(0deg); transform: rotate(0deg); -webkit-transform-origin: 45%; transform-origin: 45%; } .slds .slds-section.slds-is-open .slds-section__content { padding-top: 12px; visibility: visible; opacity: 1; max-height: 100vh; } .slds .slds-section-title { font-size: 18px; } .slds .slds-section-title > a { display: inline-block; color: #16325c; } .slds .slds-section-title > a:hover, .slds .slds-section-title > a:focus { color: #005fb2; } .slds .slds-section-title > a:focus { box-shadow: 0 0 3px #0070D2; } .slds .slds-section-title > a:active { color: #16325c; } .slds .slds-section-title .slds-icon { width: 16px; height: 16px; fill: currentColor; } .slds .slds-section-title .slds-section-group--is-closed .slds-icon { -webkit-transform: rotate(-90deg); transform: rotate(-90deg); } .slds .slds-section-title--divider { font-size: 12px; line-height: 1.25; text-transform: uppercase; letter-spacing: 0.0625em; color: #54698d; padding: 12px 16px; background: #f4f6f9; } .slds .slds-type-focus { border-bottom: 1px solid transparent; cursor: pointer; } .slds .slds-type-focus:hover { border-bottom: 1px solid #005fb2; } .slds .slds-type-focus:focus { outline: thin dotted; outline: 5px auto #1589ee; outline-offset: -2px; } .slds .slds-scrollable--y { -webkit-overflow-scrolling: touch; max-height: 100%; overflow: hidden; overflow-y: auto; } .slds .slds-scrollable--y::-webkit-scrollbar { width: 10px; height: 10px; } .slds .slds-scrollable--y::-webkit-scrollbar:window-inactive { opacity: 0; } .slds .slds-scrollable--y::-webkit-scrollbar-thumb { background: #e0e5ee; border-radius: 8px; box-shadow: #a8b7c7 0 0 0 1px inset; } .slds .slds-scrollable--y::-webkit-scrollbar-track { background: #a8b7c7; } .slds .slds-scrollable--x { -webkit-overflow-scrolling: touch; max-width: 100%; overflow: hidden; overflow-x: auto; } .slds .slds-scrollable--x::-webkit-scrollbar { width: 10px; height: 10px; } .slds .slds-scrollable--x::-webkit-scrollbar:window-inactive { opacity: 0; } .slds .slds-scrollable--x::-webkit-scrollbar-thumb { background: #e0e5ee; border-radius: 8px; box-shadow: #a8b7c7 0 0 0 1px inset; } .slds .slds-scrollable--x::-webkit-scrollbar-track { background: #a8b7c7; } .slds .slds-size--1-of-1 { width: 100%; } .slds .slds-size--1-of-2 { width: 50%; } .slds .slds-size--2-of-2 { width: 100%; } .slds .slds-size--1-of-3 { width: 33.3333333333%; } .slds .slds-size--2-of-3 { width: 66.6666666667%; } .slds .slds-size--3-of-3 { width: 100%; } .slds .slds-size--1-of-4 { width: 25%; } .slds .slds-size--2-of-4 { width: 50%; } .slds .slds-size--3-of-4 { width: 75%; } .slds .slds-size--4-of-4 { width: 100%; } .slds .slds-size--1-of-5 { width: 20%; } .slds .slds-size--2-of-5 { width: 40%; } .slds .slds-size--3-of-5 { width: 60%; } .slds .slds-size--4-of-5 { width: 80%; } .slds .slds-size--5-of-5 { width: 100%; } .slds .slds-size--1-of-6 { width: 16.6666666667%; } .slds .slds-size--2-of-6 { width: 33.3333333333%; } .slds .slds-size--3-of-6 { width: 50%; } .slds .slds-size--4-of-6 { width: 66.6666666667%; } .slds .slds-size--5-of-6 { width: 83.3333333333%; } .slds .slds-size--6-of-6 { width: 100%; } .slds .slds-size--1-of-7 { width: 14.2857142857%; } .slds .slds-size--2-of-7 { width: 28.5714285714%; } .slds .slds-size--3-of-7 { width: 42.8571428571%; } .slds .slds-size--4-of-7 { width: 57.1428571429%; } .slds .slds-size--5-of-7 { width: 71.4285714286%; } .slds .slds-size--6-of-7 { width: 85.7142857143%; } .slds .slds-size--7-of-7 { width: 100%; } .slds .slds-size--1-of-8 { width: 12.5%; } .slds .slds-size--2-of-8 { width: 25%; } .slds .slds-size--3-of-8 { width: 37.5%; } .slds .slds-size--4-of-8 { width: 50%; } .slds .slds-size--5-of-8 { width: 62.5%; } .slds .slds-size--6-of-8 { width: 75%; } .slds .slds-size--7-of-8 { width: 87.5%; } .slds .slds-size--8-of-8 { width: 100%; } .slds .slds-size--1-of-12 { width: 8.3333333333%; } .slds .slds-size--2-of-12 { width: 16.6666666667%; } .slds .slds-size--3-of-12 { width: 25%; } .slds .slds-size--4-of-12 { width: 33.3333333333%; } .slds .slds-size--5-of-12 { width: 41.6666666667%; } .slds .slds-size--6-of-12 { width: 50%; } .slds .slds-size--7-of-12 { width: 58.3333333333%; } .slds .slds-size--8-of-12 { width: 66.6666666667%; } .slds .slds-size--9-of-12 { width: 75%; } .slds .slds-size--10-of-12 { width: 83.3333333333%; } .slds .slds-size--11-of-12 { width: 91.6666666667%; } .slds .slds-size--12-of-12 { width: 100%; } .slds .slds-order--1 { -webkit-order: 1; -ms-flex-order: 1; order: 1; } .slds .slds-order--2 { -webkit-order: 2; -ms-flex-order: 2; order: 2; } .slds .slds-order--3 { -webkit-order: 3; -ms-flex-order: 3; order: 3; } .slds .slds-order--4 { -webkit-order: 4; -ms-flex-order: 4; order: 4; } .slds .slds-order--5 { -webkit-order: 5; -ms-flex-order: 5; order: 5; } .slds .slds-order--6 { -webkit-order: 6; -ms-flex-order: 6; order: 6; } .slds .slds-order--7 { -webkit-order: 7; -ms-flex-order: 7; order: 7; } .slds .slds-order--8 { -webkit-order: 8; -ms-flex-order: 8; order: 8; } .slds .slds-order--9 { -webkit-order: 9; -ms-flex-order: 9; order: 9; } .slds .slds-order--10 { -webkit-order: 10; -ms-flex-order: 10; order: 10; } .slds .slds-order--11 { -webkit-order: 11; -ms-flex-order: 11; order: 11; } @media (min-width: 20em) { .slds .slds-x-small-size--1-of-1 { width: 100%; } .slds .slds-x-small-size--1-of-2 { width: 50%; } .slds .slds-x-small-size--2-of-2 { width: 100%; } .slds .slds-x-small-size--1-of-3 { width: 33.3333333333%; } .slds .slds-x-small-size--2-of-3 { width: 66.6666666667%; } .slds .slds-x-small-size--3-of-3 { width: 100%; } .slds .slds-x-small-size--1-of-4 { width: 25%; } .slds .slds-x-small-size--2-of-4 { width: 50%; } .slds .slds-x-small-size--3-of-4 { width: 75%; } .slds .slds-x-small-size--4-of-4 { width: 100%; } .slds .slds-x-small-order--1 { -webkit-order: 1; -ms-flex-order: 1; order: 1; } .slds .slds-x-small-order--2 { -webkit-order: 2; -ms-flex-order: 2; order: 2; } .slds .slds-x-small-order--3 { -webkit-order: 3; -ms-flex-order: 3; order: 3; } .slds .slds-x-small-order--4 { -webkit-order: 4; -ms-flex-order: 4; order: 4; } } @media (max-width: 20em) { .slds .slds-max-x-small-size--1-of-1 { width: 100%; } .slds .slds-max-x-small-size--1-of-2 { width: 50%; } .slds .slds-max-x-small-size--2-of-2 { width: 100%; } .slds .slds-max-x-small-size--1-of-3 { width: 33.3333333333%; } .slds .slds-max-x-small-size--2-of-3 { width: 66.6666666667%; } .slds .slds-max-x-small-size--3-of-3 { width: 100%; } .slds .slds-max-x-small-size--1-of-4 { width: 25%; } .slds .slds-max-x-small-size--2-of-4 { width: 50%; } .slds .slds-max-x-small-size--3-of-4 { width: 75%; } .slds .slds-max-x-small-size--4-of-4 { width: 100%; } .slds .slds-max-x-small-order--1 { -webkit-order: 1; -ms-flex-order: 1; order: 1; } .slds .slds-max-x-small-order--2 { -webkit-order: 2; -ms-flex-order: 2; order: 2; } .slds .slds-max-x-small-order--3 { -webkit-order: 3; -ms-flex-order: 3; order: 3; } .slds .slds-max-x-small-order--4 { -webkit-order: 4; -ms-flex-order: 4; order: 4; } } @media (min-width: 30em) { .slds .slds-small-size--1-of-1 { width: 100%; } .slds .slds-small-size--1-of-2 { width: 50%; } .slds .slds-small-size--2-of-2 { width: 100%; } .slds .slds-small-size--1-of-3 { width: 33.3333333333%; } .slds .slds-small-size--2-of-3 { width: 66.6666666667%; } .slds .slds-small-size--3-of-3 { width: 100%; } .slds .slds-small-size--1-of-4 { width: 25%; } .slds .slds-small-size--2-of-4 { width: 50%; } .slds .slds-small-size--3-of-4 { width: 75%; } .slds .slds-small-size--4-of-4 { width: 100%; } .slds .slds-small-size--1-of-5 { width: 20%; } .slds .slds-small-size--2-of-5 { width: 40%; } .slds .slds-small-size--3-of-5 { width: 60%; } .slds .slds-small-size--4-of-5 { width: 80%; } .slds .slds-small-size--5-of-5 { width: 100%; } .slds .slds-small-size--1-of-6 { width: 16.6666666667%; } .slds .slds-small-size--2-of-6 { width: 33.3333333333%; } .slds .slds-small-size--3-of-6 { width: 50%; } .slds .slds-small-size--4-of-6 { width: 66.6666666667%; } .slds .slds-small-size--5-of-6 { width: 83.3333333333%; } .slds .slds-small-size--6-of-6 { width: 100%; } .slds .slds-small-size--1-of-7 { width: 14.2857142857%; } .slds .slds-small-size--2-of-7 { width: 28.5714285714%; } .slds .slds-small-size--3-of-7 { width: 42.8571428571%; } .slds .slds-small-size--4-of-7 { width: 57.1428571429%; } .slds .slds-small-size--5-of-7 { width: 71.4285714286%; } .slds .slds-small-size--6-of-7 { width: 85.7142857143%; } .slds .slds-small-size--7-of-7 { width: 100%; } .slds .slds-small-size--1-of-8 { width: 12.5%; } .slds .slds-small-size--2-of-8 { width: 25%; } .slds .slds-small-size--3-of-8 { width: 37.5%; } .slds .slds-small-size--4-of-8 { width: 50%; } .slds .slds-small-size--5-of-8 { width: 62.5%; } .slds .slds-small-size--6-of-8 { width: 75%; } .slds .slds-small-size--7-of-8 { width: 87.5%; } .slds .slds-small-size--8-of-8 { width: 100%; } .slds .slds-small-order--1 { -webkit-order: 1; -ms-flex-order: 1; order: 1; } .slds .slds-small-order--2 { -webkit-order: 2; -ms-flex-order: 2; order: 2; } .slds .slds-small-order--3 { -webkit-order: 3; -ms-flex-order: 3; order: 3; } .slds .slds-small-order--4 { -webkit-order: 4; -ms-flex-order: 4; order: 4; } .slds .slds-small-order--5 { -webkit-order: 5; -ms-flex-order: 5; order: 5; } .slds .slds-small-order--6 { -webkit-order: 6; -ms-flex-order: 6; order: 6; } .slds .slds-small-order--7 { -webkit-order: 7; -ms-flex-order: 7; order: 7; } .slds .slds-small-order--8 { -webkit-order: 8; -ms-flex-order: 8; order: 8; } } @media (max-width: 30em) { .slds .slds-max-small-size--1-of-1 { width: 100%; } .slds .slds-max-small-size--1-of-2 { width: 50%; } .slds .slds-max-small-size--2-of-2 { width: 100%; } .slds .slds-max-small-size--1-of-3 { width: 33.3333333333%; } .slds .slds-max-small-size--2-of-3 { width: 66.6666666667%; } .slds .slds-max-small-size--3-of-3 { width: 100%; } .slds .slds-max-small-size--1-of-4 { width: 25%; } .slds .slds-max-small-size--2-of-4 { width: 50%; } .slds .slds-max-small-size--3-of-4 { width: 75%; } .slds .slds-max-small-size--4-of-4 { width: 100%; } .slds .slds-max-small-size--1-of-5 { width: 20%; } .slds .slds-max-small-size--2-of-5 { width: 40%; } .slds .slds-max-small-size--3-of-5 { width: 60%; } .slds .slds-max-small-size--4-of-5 { width: 80%; } .slds .slds-max-small-size--5-of-5 { width: 100%; } .slds .slds-max-small-size--1-of-6 { width: 16.6666666667%; } .slds .slds-max-small-size--2-of-6 { width: 33.3333333333%; } .slds .slds-max-small-size--3-of-6 { width: 50%; } .slds .slds-max-small-size--4-of-6 { width: 66.6666666667%; } .slds .slds-max-small-size--5-of-6 { width: 83.3333333333%; } .slds .slds-max-small-size--6-of-6 { width: 100%; } .slds .slds-max-small-size--1-of-7 { width: 14.2857142857%; } .slds .slds-max-small-size--2-of-7 { width: 28.5714285714%; } .slds .slds-max-small-size--3-of-7 { width: 42.8571428571%; } .slds .slds-max-small-size--4-of-7 { width: 57.1428571429%; } .slds .slds-max-small-size--5-of-7 { width: 71.4285714286%; } .slds .slds-max-small-size--6-of-7 { width: 85.7142857143%; } .slds .slds-max-small-size--7-of-7 { width: 100%; } .slds .slds-max-small-size--1-of-8 { width: 12.5%; } .slds .slds-max-small-size--2-of-8 { width: 25%; } .slds .slds-max-small-size--3-of-8 { width: 37.5%; } .slds .slds-max-small-size--4-of-8 { width: 50%; } .slds .slds-max-small-size--5-of-8 { width: 62.5%; } .slds .slds-max-small-size--6-of-8 { width: 75%; } .slds .slds-max-small-size--7-of-8 { width: 87.5%; } .slds .slds-max-small-size--8-of-8 { width: 100%; } .slds .slds-max-small-order--1 { -webkit-order: 1; -ms-flex-order: 1; order: 1; } .slds .slds-max-small-order--2 { -webkit-order: 2; -ms-flex-order: 2; order: 2; } .slds .slds-max-small-order--3 { -webkit-order: 3; -ms-flex-order: 3; order: 3; } .slds .slds-max-small-order--4 { -webkit-order: 4; -ms-flex-order: 4; order: 4; } .slds .slds-max-small-order--5 { -webkit-order: 5; -ms-flex-order: 5; order: 5; } .slds .slds-max-small-order--6 { -webkit-order: 6; -ms-flex-order: 6; order: 6; } .slds .slds-max-small-order--7 { -webkit-order: 7; -ms-flex-order: 7; order: 7; } .slds .slds-max-small-order--8 { -webkit-order: 8; -ms-flex-order: 8; order: 8; } } @media (min-width: 48em) { .slds .slds-medium-size--1-of-1 { width: 100%; } .slds .slds-medium-size--1-of-2 { width: 50%; } .slds .slds-medium-size--2-of-2 { width: 100%; } .slds .slds-medium-size--1-of-3 { width: 33.3333333333%; } .slds .slds-medium-size--2-of-3 { width: 66.6666666667%; } .slds .slds-medium-size--3-of-3 { width: 100%; } .slds .slds-medium-size--1-of-4 { width: 25%; } .slds .slds-medium-size--2-of-4 { width: 50%; } .slds .slds-medium-size--3-of-4 { width: 75%; } .slds .slds-medium-size--4-of-4 { width: 100%; } .slds .slds-medium-size--1-of-5 { width: 20%; } .slds .slds-medium-size--2-of-5 { width: 40%; } .slds .slds-medium-size--3-of-5 { width: 60%; } .slds .slds-medium-size--4-of-5 { width: 80%; } .slds .slds-medium-size--5-of-5 { width: 100%; } .slds .slds-medium-size--1-of-6 { width: 16.6666666667%; } .slds .slds-medium-size--2-of-6 { width: 33.3333333333%; } .slds .slds-medium-size--3-of-6 { width: 50%; } .slds .slds-medium-size--4-of-6 { width: 66.6666666667%; } .slds .slds-medium-size--5-of-6 { width: 83.3333333333%; } .slds .slds-medium-size--6-of-6 { width: 100%; } .slds .slds-medium-size--1-of-7 { width: 14.2857142857%; } .slds .slds-medium-size--2-of-7 { width: 28.5714285714%; } .slds .slds-medium-size--3-of-7 { width: 42.8571428571%; } .slds .slds-medium-size--4-of-7 { width: 57.1428571429%; } .slds .slds-medium-size--5-of-7 { width: 71.4285714286%; } .slds .slds-medium-size--6-of-7 { width: 85.7142857143%; } .slds .slds-medium-size--7-of-7 { width: 100%; } .slds .slds-medium-size--1-of-8 { width: 12.5%; } .slds .slds-medium-size--2-of-8 { width: 25%; } .slds .slds-medium-size--3-of-8 { width: 37.5%; } .slds .slds-medium-size--4-of-8 { width: 50%; } .slds .slds-medium-size--5-of-8 { width: 62.5%; } .slds .slds-medium-size--6-of-8 { width: 75%; } .slds .slds-medium-size--7-of-8 { width: 87.5%; } .slds .slds-medium-size--8-of-8 { width: 100%; } .slds .slds-medium-size--1-of-12 { width: 8.3333333333%; } .slds .slds-medium-size--2-of-12 { width: 16.6666666667%; } .slds .slds-medium-size--3-of-12 { width: 25%; } .slds .slds-medium-size--4-of-12 { width: 33.3333333333%; } .slds .slds-medium-size--5-of-12 { width: 41.6666666667%; } .slds .slds-medium-size--6-of-12 { width: 50%; } .slds .slds-medium-size--7-of-12 { width: 58.3333333333%; } .slds .slds-medium-size--8-of-12 { width: 66.6666666667%; } .slds .slds-medium-size--9-of-12 { width: 75%; } .slds .slds-medium-size--10-of-12 { width: 83.3333333333%; } .slds .slds-medium-size--11-of-12 { width: 91.6666666667%; } .slds .slds-medium-size--12-of-12 { width: 100%; } .slds .slds-medium-order--1 { -webkit-order: 1; -ms-flex-order: 1; order: 1; } .slds .slds-medium-order--2 { -webkit-order: 2; -ms-flex-order: 2; order: 2; } .slds .slds-medium-order--3 { -webkit-order: 3; -ms-flex-order: 3; order: 3; } .slds .slds-medium-order--4 { -webkit-order: 4; -ms-flex-order: 4; order: 4; } .slds .slds-medium-order--5 { -webkit-order: 5; -ms-flex-order: 5; order: 5; } .slds .slds-medium-order--6 { -webkit-order: 6; -ms-flex-order: 6; order: 6; } .slds .slds-medium-order--7 { -webkit-order: 7; -ms-flex-order: 7; order: 7; } .slds .slds-medium-order--8 { -webkit-order: 8; -ms-flex-order: 8; order: 8; } .slds .slds-medium-order--9 { -webkit-order: 9; -ms-flex-order: 9; order: 9; } .slds .slds-medium-order--10 { -webkit-order: 10; -ms-flex-order: 10; order: 10; } .slds .slds-medium-order--11 { -webkit-order: 11; -ms-flex-order: 11; order: 11; } .slds .slds-medium-order--12 { -webkit-order: 12; -ms-flex-order: 12; order: 12; } } @media (max-width: 48em) { .slds .slds-max-medium-size--1-of-1 { width: 100%; } .slds .slds-max-medium-size--1-of-2 { width: 50%; } .slds .slds-max-medium-size--2-of-2 { width: 100%; } .slds .slds-max-medium-size--1-of-3 { width: 33.3333333333%; } .slds .slds-max-medium-size--2-of-3 { width: 66.6666666667%; } .slds .slds-max-medium-size--3-of-3 { width: 100%; } .slds .slds-max-medium-size--1-of-4 { width: 25%; } .slds .slds-max-medium-size--2-of-4 { width: 50%; } .slds .slds-max-medium-size--3-of-4 { width: 75%; } .slds .slds-max-medium-size--4-of-4 { width: 100%; } .slds .slds-max-medium-size--1-of-5 { width: 20%; } .slds .slds-max-medium-size--2-of-5 { width: 40%; } .slds .slds-max-medium-size--3-of-5 { width: 60%; } .slds .slds-max-medium-size--4-of-5 { width: 80%; } .slds .slds-max-medium-size--5-of-5 { width: 100%; } .slds .slds-max-medium-size--1-of-6 { width: 16.6666666667%; } .slds .slds-max-medium-size--2-of-6 { width: 33.3333333333%; } .slds .slds-max-medium-size--3-of-6 { width: 50%; } .slds .slds-max-medium-size--4-of-6 { width: 66.6666666667%; } .slds .slds-max-medium-size--5-of-6 { width: 83.3333333333%; } .slds .slds-max-medium-size--6-of-6 { width: 100%; } .slds .slds-max-medium-size--1-of-7 { width: 14.2857142857%; } .slds .slds-max-medium-size--2-of-7 { width: 28.5714285714%; } .slds .slds-max-medium-size--3-of-7 { width: 42.8571428571%; } .slds .slds-max-medium-size--4-of-7 { width: 57.1428571429%; } .slds .slds-max-medium-size--5-of-7 { width: 71.4285714286%; } .slds .slds-max-medium-size--6-of-7 { width: 85.7142857143%; } .slds .slds-max-medium-size--7-of-7 { width: 100%; } .slds .slds-max-medium-size--1-of-8 { width: 12.5%; } .slds .slds-max-medium-size--2-of-8 { width: 25%; } .slds .slds-max-medium-size--3-of-8 { width: 37.5%; } .slds .slds-max-medium-size--4-of-8 { width: 50%; } .slds .slds-max-medium-size--5-of-8 { width: 62.5%; } .slds .slds-max-medium-size--6-of-8 { width: 75%; } .slds .slds-max-medium-size--7-of-8 { width: 87.5%; } .slds .slds-max-medium-size--8-of-8 { width: 100%; } .slds .slds-max-medium-size--1-of-12 { width: 8.3333333333%; } .slds .slds-max-medium-size--2-of-12 { width: 16.6666666667%; } .slds .slds-max-medium-size--3-of-12 { width: 25%; } .slds .slds-max-medium-size--4-of-12 { width: 33.3333333333%; } .slds .slds-max-medium-size--5-of-12 { width: 41.6666666667%; } .slds .slds-max-medium-size--6-of-12 { width: 50%; } .slds .slds-max-medium-size--7-of-12 { width: 58.3333333333%; } .slds .slds-max-medium-size--8-of-12 { width: 66.6666666667%; } .slds .slds-max-medium-size--9-of-12 { width: 75%; } .slds .slds-max-medium-size--10-of-12 { width: 83.3333333333%; } .slds .slds-max-medium-size--11-of-12 { width: 91.6666666667%; } .slds .slds-max-medium-size--12-of-12 { width: 100%; } .slds .slds-max-medium-order--1 { -webkit-order: 1; -ms-flex-order: 1; order: 1; } .slds .slds-max-medium-order--2 { -webkit-order: 2; -ms-flex-order: 2; order: 2; } .slds .slds-max-medium-order--3 { -webkit-order: 3; -ms-flex-order: 3; order: 3; } .slds .slds-max-medium-order--4 { -webkit-order: 4; -ms-flex-order: 4; order: 4; } .slds .slds-max-medium-order--5 { -webkit-order: 5; -ms-flex-order: 5; order: 5; } .slds .slds-max-medium-order--6 { -webkit-order: 6; -ms-flex-order: 6; order: 6; } .slds .slds-max-medium-order--7 { -webkit-order: 7; -ms-flex-order: 7; order: 7; } .slds .slds-max-medium-order--8 { -webkit-order: 8; -ms-flex-order: 8; order: 8; } .slds .slds-max-medium-order--9 { -webkit-order: 9; -ms-flex-order: 9; order: 9; } .slds .slds-max-medium-order--10 { -webkit-order: 10; -ms-flex-order: 10; order: 10; } .slds .slds-max-medium-order--11 { -webkit-order: 11; -ms-flex-order: 11; order: 11; } .slds .slds-max-medium-order--12 { -webkit-order: 12; -ms-flex-order: 12; order: 12; } } @media (min-width: 64em) { .slds .slds-large-size--1-of-1 { width: 100%; } .slds .slds-large-size--1-of-2 { width: 50%; } .slds .slds-large-size--2-of-2 { width: 100%; } .slds .slds-large-size--1-of-3 { width: 33.3333333333%; } .slds .slds-large-size--2-of-3 { width: 66.6666666667%; } .slds .slds-large-size--3-of-3 { width: 100%; } .slds .slds-large-size--1-of-4 { width: 25%; } .slds .slds-large-size--2-of-4 { width: 50%; } .slds .slds-large-size--3-of-4 { width: 75%; } .slds .slds-large-size--4-of-4 { width: 100%; } .slds .slds-large-size--1-of-5 { width: 20%; } .slds .slds-large-size--2-of-5 { width: 40%; } .slds .slds-large-size--3-of-5 { width: 60%; } .slds .slds-large-size--4-of-5 { width: 80%; } .slds .slds-large-size--5-of-5 { width: 100%; } .slds .slds-large-size--1-of-6 { width: 16.6666666667%; } .slds .slds-large-size--2-of-6 { width: 33.3333333333%; } .slds .slds-large-size--3-of-6 { width: 50%; } .slds .slds-large-size--4-of-6 { width: 66.6666666667%; } .slds .slds-large-size--5-of-6 { width: 83.3333333333%; } .slds .slds-large-size--6-of-6 { width: 100%; } .slds .slds-large-size--1-of-7 { width: 14.2857142857%; } .slds .slds-large-size--2-of-7 { width: 28.5714285714%; } .slds .slds-large-size--3-of-7 { width: 42.8571428571%; } .slds .slds-large-size--4-of-7 { width: 57.1428571429%; } .slds .slds-large-size--5-of-7 { width: 71.4285714286%; } .slds .slds-large-size--6-of-7 { width: 85.7142857143%; } .slds .slds-large-size--7-of-7 { width: 100%; } .slds .slds-large-size--1-of-8 { width: 12.5%; } .slds .slds-large-size--2-of-8 { width: 25%; } .slds .slds-large-size--3-of-8 { width: 37.5%; } .slds .slds-large-size--4-of-8 { width: 50%; } .slds .slds-large-size--5-of-8 { width: 62.5%; } .slds .slds-large-size--6-of-8 { width: 75%; } .slds .slds-large-size--7-of-8 { width: 87.5%; } .slds .slds-large-size--8-of-8 { width: 100%; } .slds .slds-large-size--1-of-12 { width: 8.3333333333%; } .slds .slds-large-size--2-of-12 { width: 16.6666666667%; } .slds .slds-large-size--3-of-12 { width: 25%; } .slds .slds-large-size--4-of-12 { width: 33.3333333333%; } .slds .slds-large-size--5-of-12 { width: 41.6666666667%; } .slds .slds-large-size--6-of-12 { width: 50%; } .slds .slds-large-size--7-of-12 { width: 58.3333333333%; } .slds .slds-large-size--8-of-12 { width: 66.6666666667%; } .slds .slds-large-size--9-of-12 { width: 75%; } .slds .slds-large-size--10-of-12 { width: 83.3333333333%; } .slds .slds-large-size--11-of-12 { width: 91.6666666667%; } .slds .slds-large-size--12-of-12 { width: 100%; } .slds .slds-large-order--1 { -webkit-order: 1; -ms-flex-order: 1; order: 1; } .slds .slds-large-order--2 { -webkit-order: 2; -ms-flex-order: 2; order: 2; } .slds .slds-large-order--3 { -webkit-order: 3; -ms-flex-order: 3; order: 3; } .slds .slds-large-order--4 { -webkit-order: 4; -ms-flex-order: 4; order: 4; } .slds .slds-large-order--5 { -webkit-order: 5; -ms-flex-order: 5; order: 5; } .slds .slds-large-order--6 { -webkit-order: 6; -ms-flex-order: 6; order: 6; } .slds .slds-large-order--7 { -webkit-order: 7; -ms-flex-order: 7; order: 7; } .slds .slds-large-order--8 { -webkit-order: 8; -ms-flex-order: 8; order: 8; } .slds .slds-large-order--9 { -webkit-order: 9; -ms-flex-order: 9; order: 9; } .slds .slds-large-order--10 { -webkit-order: 10; -ms-flex-order: 10; order: 10; } .slds .slds-large-order--11 { -webkit-order: 11; -ms-flex-order: 11; order: 11; } .slds .slds-large-order--12 { -webkit-order: 12; -ms-flex-order: 12; order: 12; } } @media (max-width: 64em) { .slds .slds-max-large-size--1-of-1 { width: 100%; } .slds .slds-max-large-size--1-of-2 { width: 50%; } .slds .slds-max-large-size--2-of-2 { width: 100%; } .slds .slds-max-large-size--1-of-3 { width: 33.3333333333%; } .slds .slds-max-large-size--2-of-3 { width: 66.6666666667%; } .slds .slds-max-large-size--3-of-3 { width: 100%; } .slds .slds-max-large-size--1-of-4 { width: 25%; } .slds .slds-max-large-size--2-of-4 { width: 50%; } .slds .slds-max-large-size--3-of-4 { width: 75%; } .slds .slds-max-large-size--4-of-4 { width: 100%; } .slds .slds-max-large-size--1-of-5 { width: 20%; } .slds .slds-max-large-size--2-of-5 { width: 40%; } .slds .slds-max-large-size--3-of-5 { width: 60%; } .slds .slds-max-large-size--4-of-5 { width: 80%; } .slds .slds-max-large-size--5-of-5 { width: 100%; } .slds .slds-max-large-size--1-of-6 { width: 16.6666666667%; } .slds .slds-max-large-size--2-of-6 { width: 33.3333333333%; } .slds .slds-max-large-size--3-of-6 { width: 50%; } .slds .slds-max-large-size--4-of-6 { width: 66.6666666667%; } .slds .slds-max-large-size--5-of-6 { width: 83.3333333333%; } .slds .slds-max-large-size--6-of-6 { width: 100%; } .slds .slds-max-large-size--1-of-7 { width: 14.2857142857%; } .slds .slds-max-large-size--2-of-7 { width: 28.5714285714%; } .slds .slds-max-large-size--3-of-7 { width: 42.8571428571%; } .slds .slds-max-large-size--4-of-7 { width: 57.1428571429%; } .slds .slds-max-large-size--5-of-7 { width: 71.4285714286%; } .slds .slds-max-large-size--6-of-7 { width: 85.7142857143%; } .slds .slds-max-large-size--7-of-7 { width: 100%; } .slds .slds-max-large-size--1-of-8 { width: 12.5%; } .slds .slds-max-large-size--2-of-8 { width: 25%; } .slds .slds-max-large-size--3-of-8 { width: 37.5%; } .slds .slds-max-large-size--4-of-8 { width: 50%; } .slds .slds-max-large-size--5-of-8 { width: 62.5%; } .slds .slds-max-large-size--6-of-8 { width: 75%; } .slds .slds-max-large-size--7-of-8 { width: 87.5%; } .slds .slds-max-large-size--8-of-8 { width: 100%; } .slds .slds-max-large-size--1-of-12 { width: 8.3333333333%; } .slds .slds-max-large-size--2-of-12 { width: 16.6666666667%; } .slds .slds-max-large-size--3-of-12 { width: 25%; } .slds .slds-max-large-size--4-of-12 { width: 33.3333333333%; } .slds .slds-max-large-size--5-of-12 { width: 41.6666666667%; } .slds .slds-max-large-size--6-of-12 { width: 50%; } .slds .slds-max-large-size--7-of-12 { width: 58.3333333333%; } .slds .slds-max-large-size--8-of-12 { width: 66.6666666667%; } .slds .slds-max-large-size--9-of-12 { width: 75%; } .slds .slds-max-large-size--10-of-12 { width: 83.3333333333%; } .slds .slds-max-large-size--11-of-12 { width: 91.6666666667%; } .slds .slds-max-large-size--12-of-12 { width: 100%; } .slds .slds-max-large-order--1 { -webkit-order: 1; -ms-flex-order: 1; order: 1; } .slds .slds-max-large-order--2 { -webkit-order: 2; -ms-flex-order: 2; order: 2; } .slds .slds-max-large-order--3 { -webkit-order: 3; -ms-flex-order: 3; order: 3; } .slds .slds-max-large-order--4 { -webkit-order: 4; -ms-flex-order: 4; order: 4; } .slds .slds-max-large-order--5 { -webkit-order: 5; -ms-flex-order: 5; order: 5; } .slds .slds-max-large-order--6 { -webkit-order: 6; -ms-flex-order: 6; order: 6; } .slds .slds-max-large-order--7 { -webkit-order: 7; -ms-flex-order: 7; order: 7; } .slds .slds-max-large-order--8 { -webkit-order: 8; -ms-flex-order: 8; order: 8; } .slds .slds-max-large-order--9 { -webkit-order: 9; -ms-flex-order: 9; order: 9; } .slds .slds-max-large-order--10 { -webkit-order: 10; -ms-flex-order: 10; order: 10; } .slds .slds-max-large-order--11 { -webkit-order: 11; -ms-flex-order: 11; order: 11; } .slds .slds-max-large-order--12 { -webkit-order: 12; -ms-flex-order: 12; order: 12; } } .slds .slds-hide { display: none; } .slds .slds-show { display: block; } .slds .slds-show--inline-block { display: inline-block; } .slds .slds-show--inline { display: inline; } .slds .slds-hidden { visibility: hidden; } .slds .slds-visible { visibility: visible; } .slds .slds-transition-hide { opacity: 0; } .slds .slds-transition-show { opacity: 1; } .slds .slds-is-collapsed { height: 0; overflow: hidden; } .slds .slds-collapsed { height: 0; overflow: hidden; } .slds .slds-is-expanded { height: auto; overflow: visible; } .slds .slds-expanded { height: auto; overflow: visible; } .slds .slds-assistive-text { position: absolute !important; margin: -1px !important; border: 0 !important; padding: 0 !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; } .slds .slds-x-small-show { display: none; } @media (min-width: 320px) { .slds .slds-x-small-show { display: block; } .slds .slds-x-small-show--inline-block { display: inline-block; } .slds .slds-x-small-show--inline { display: inline; } } .slds .slds-x-small-show-only { display: none; } @media (min-width: 320px) and (max-width: 479px) { .slds .slds-x-small-show-only { display: block; } .slds .slds-x-small-show-only--inline-block { display: inline-block; } .slds .slds-x-small-show-only--inline { display: inline; } } @media (max-width: 479px) { .slds .slds-max-x-small-hide { display: none; } } .slds .slds-small-show { display: none; } @media (min-width: 480px) { .slds .slds-small-show { display: block; } .slds .slds-small-show--inline-block { display: inline-block; } .slds .slds-small-show--inline { display: inline; } } .slds .slds-small-show-only { display: none; } @media (min-width: 480px) and (max-width: 767px) { .slds .slds-small-show-only { display: block; } .slds .slds-small-show-only--inline-block { display: inline-block; } .slds .slds-small-show-only--inline { display: inline; } } @media (max-width: 767px) { .slds .slds-max-small-hide { display: none; } } .slds .slds-medium-show { display: none; } @media (min-width: 768px) { .slds .slds-medium-show { display: block; } .slds .slds-medium-show--inline-block { display: inline-block; } .slds .slds-medium-show--inline { display: inline; } } .slds .slds-medium-show-only { display: none; } @media (min-width: 768px) and (max-width: 1023px) { .slds .slds-medium-show-only { display: block; } .slds .slds-medium-show-only--inline-block { display: inline-block; } .slds .slds-medium-show-only--inline { display: inline; } } @media (max-width: 1023px) { .slds .slds-max-medium-hide { display: none; } } .slds .slds-large-show { display: none; } @media (min-width: 1024px) { .slds .slds-large-show { display: block; } .slds .slds-large-show--inline-block { display: inline-block; } .slds .slds-large-show--inline { display: inline; } } @media print { .slds *, .slds *:before, .slds *:after { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; } .slds a, .slds a:visited { text-decoration: underline; } .slds a[href]:after { content: " (" attr(href) ")"; } .slds abbr[title]:after { content: " (" attr(title) ")"; } .slds a[href^="#"]:after, .slds a[href^="javascript:"]:after { content: ''; } .slds pre, .slds blockquote { border: 1px solid #999; page-break-inside: avoid; } .slds thead { display: table-header-group; } .slds tr, .slds img { page-break-inside: avoid; } .slds img { max-width: 100% !important; } .slds p, .slds h2, .slds h3 { orphans: 3; widows: 3; } .slds h2, .slds h3 { page-break-after: avoid; } }
static/css/foundation.css
qsic/qsic3
/* line 311, _global.scss */ meta.foundation-version { font-family: "/5.2.2/"; } /* line 315, _global.scss */ meta.foundation-mq-small { font-family: "/only screen/"; width: 0em; } /* line 320, _global.scss */ meta.foundation-mq-medium { font-family: "/only screen and (min-width:40.063em)/"; width: 40.063em; } /* line 325, _global.scss */ meta.foundation-mq-large { font-family: "/only screen and (min-width:64.063em)/"; width: 64.063em; } /* line 330, _global.scss */ meta.foundation-mq-xlarge { font-family: "/only screen and (min-width:90.063em)/"; width: 90.063em; } /* line 335, _global.scss */ meta.foundation-mq-xxlarge { font-family: "/only screen and (min-width:120.063em)/"; width: 120.063em; } /* line 340, _global.scss */ meta.foundation-data-attribute-namespace { font-family: false; } /* line 347, _global.scss */ html, body { height: 100%; } /* line 352, _global.scss */ *, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } /* line 357, _global.scss */ html, body { font-size: 100%; } /* line 360, _global.scss */ body { background: white; color: #222222; padding: 0; margin: 0; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; line-height: 1; position: relative; cursor: default; } /* line 373, _global.scss */ a:hover { cursor: pointer; } /* line 376, _global.scss */ img { max-width: 100%; height: auto; } /* line 378, _global.scss */ img { -ms-interpolation-mode: bicubic; } /* line 384, _global.scss */ #map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important; } /* line 389, _global.scss */ .left { float: left !important; } /* line 390, _global.scss */ .right { float: right !important; } /* line 163, _global.scss */ .clearfix:before, .clearfix:after { content: " "; display: table; } /* line 164, _global.scss */ .clearfix:after { clear: both; } /* line 392, _global.scss */ .hide { display: none; } /* line 398, _global.scss */ .antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } /* line 401, _global.scss */ img { display: inline-block; vertical-align: middle; } /* line 411, _global.scss */ textarea { height: auto; min-height: 50px; } /* line 414, _global.scss */ select { width: 100%; } /* line 206, _grid.scss */ .row { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 62.5rem; } /* line 163, _global.scss */ .row:before, .row:after { content: " "; display: table; } /* line 164, _global.scss */ .row:after { clear: both; } /* line 211, _grid.scss */ .row.collapse > .column, .row.collapse > .columns { padding-left: 0; padding-right: 0; } /* line 213, _grid.scss */ .row.collapse .row { margin-left: 0; margin-right: 0; } /* line 216, _grid.scss */ .row .row { width: auto; margin-left: -0.9375rem; margin-right: -0.9375rem; margin-top: 0; margin-bottom: 0; max-width: none; } /* line 163, _global.scss */ .row .row:before, .row .row:after { content: " "; display: table; } /* line 164, _global.scss */ .row .row:after { clear: both; } /* line 217, _grid.scss */ .row .row.collapse { width: auto; margin: 0; max-width: none; } /* line 163, _global.scss */ .row .row.collapse:before, .row .row.collapse:after { content: " "; display: table; } /* line 164, _global.scss */ .row .row.collapse:after { clear: both; } /* line 222, _grid.scss */ .column, .columns { padding-left: 0.9375rem; padding-right: 0.9375rem; width: 100%; float: left; } @media only screen { /* line 157, _grid.scss */ .small-push-0 { position: relative; left: 0%; right: auto; } /* line 160, _grid.scss */ .small-pull-0 { position: relative; right: 0%; left: auto; } /* line 157, _grid.scss */ .small-push-1 { position: relative; left: 8.33333%; right: auto; } /* line 160, _grid.scss */ .small-pull-1 { position: relative; right: 8.33333%; left: auto; } /* line 157, _grid.scss */ .small-push-2 { position: relative; left: 16.66667%; right: auto; } /* line 160, _grid.scss */ .small-pull-2 { position: relative; right: 16.66667%; left: auto; } /* line 157, _grid.scss */ .small-push-3 { position: relative; left: 25%; right: auto; } /* line 160, _grid.scss */ .small-pull-3 { position: relative; right: 25%; left: auto; } /* line 157, _grid.scss */ .small-push-4 { position: relative; left: 33.33333%; right: auto; } /* line 160, _grid.scss */ .small-pull-4 { position: relative; right: 33.33333%; left: auto; } /* line 157, _grid.scss */ .small-push-5 { position: relative; left: 41.66667%; right: auto; } /* line 160, _grid.scss */ .small-pull-5 { position: relative; right: 41.66667%; left: auto; } /* line 157, _grid.scss */ .small-push-6 { position: relative; left: 50%; right: auto; } /* line 160, _grid.scss */ .small-pull-6 { position: relative; right: 50%; left: auto; } /* line 157, _grid.scss */ .small-push-7 { position: relative; left: 58.33333%; right: auto; } /* line 160, _grid.scss */ .small-pull-7 { position: relative; right: 58.33333%; left: auto; } /* line 157, _grid.scss */ .small-push-8 { position: relative; left: 66.66667%; right: auto; } /* line 160, _grid.scss */ .small-pull-8 { position: relative; right: 66.66667%; left: auto; } /* line 157, _grid.scss */ .small-push-9 { position: relative; left: 75%; right: auto; } /* line 160, _grid.scss */ .small-pull-9 { position: relative; right: 75%; left: auto; } /* line 157, _grid.scss */ .small-push-10 { position: relative; left: 83.33333%; right: auto; } /* line 160, _grid.scss */ .small-pull-10 { position: relative; right: 83.33333%; left: auto; } /* line 157, _grid.scss */ .small-push-11 { position: relative; left: 91.66667%; right: auto; } /* line 160, _grid.scss */ .small-pull-11 { position: relative; right: 91.66667%; left: auto; } /* line 166, _grid.scss */ .column, .columns { position: relative; padding-left: 0.9375rem; padding-right: 0.9375rem; float: left; } /* line 170, _grid.scss */ .small-1 { width: 8.33333%; } /* line 170, _grid.scss */ .small-2 { width: 16.66667%; } /* line 170, _grid.scss */ .small-3 { width: 25%; } /* line 170, _grid.scss */ .small-4 { width: 33.33333%; } /* line 170, _grid.scss */ .small-5 { width: 41.66667%; } /* line 170, _grid.scss */ .small-6 { width: 50%; } /* line 170, _grid.scss */ .small-7 { width: 58.33333%; } /* line 170, _grid.scss */ .small-8 { width: 66.66667%; } /* line 170, _grid.scss */ .small-9 { width: 75%; } /* line 170, _grid.scss */ .small-10 { width: 83.33333%; } /* line 170, _grid.scss */ .small-11 { width: 91.66667%; } /* line 170, _grid.scss */ .small-12 { width: 100%; } /* line 173, _grid.scss */ [class*="column"] + [class*="column"]:last-child { float: right; } /* line 174, _grid.scss */ [class*="column"] + [class*="column"].end { float: left; } /* line 178, _grid.scss */ .small-offset-0 { margin-left: 0% !important; } /* line 178, _grid.scss */ .small-offset-1 { margin-left: 8.33333% !important; } /* line 178, _grid.scss */ .small-offset-2 { margin-left: 16.66667% !important; } /* line 178, _grid.scss */ .small-offset-3 { margin-left: 25% !important; } /* line 178, _grid.scss */ .small-offset-4 { margin-left: 33.33333% !important; } /* line 178, _grid.scss */ .small-offset-5 { margin-left: 41.66667% !important; } /* line 178, _grid.scss */ .small-offset-6 { margin-left: 50% !important; } /* line 178, _grid.scss */ .small-offset-7 { margin-left: 58.33333% !important; } /* line 178, _grid.scss */ .small-offset-8 { margin-left: 66.66667% !important; } /* line 178, _grid.scss */ .small-offset-9 { margin-left: 75% !important; } /* line 178, _grid.scss */ .small-offset-10 { margin-left: 83.33333% !important; } /* line 178, _grid.scss */ .small-offset-11 { margin-left: 91.66667% !important; } /* line 180, _grid.scss */ .small-reset-order { margin-left: 0; margin-right: 0; left: auto; right: auto; float: left; } /* line 189, _grid.scss */ .column.small-centered, .columns.small-centered { margin-left: auto; margin-right: auto; float: none !important; } /* line 192, _grid.scss */ .column.small-uncentered, .columns.small-uncentered { margin-left: 0; margin-right: 0; float: left !important; } /* line 199, _grid.scss */ .column.small-uncentered.opposite, .columns.small-uncentered.opposite { float: right; } } @media only screen and (min-width: 40.063em) { /* line 157, _grid.scss */ .medium-push-0 { position: relative; left: 0%; right: auto; } /* line 160, _grid.scss */ .medium-pull-0 { position: relative; right: 0%; left: auto; } /* line 157, _grid.scss */ .medium-push-1 { position: relative; left: 8.33333%; right: auto; } /* line 160, _grid.scss */ .medium-pull-1 { position: relative; right: 8.33333%; left: auto; } /* line 157, _grid.scss */ .medium-push-2 { position: relative; left: 16.66667%; right: auto; } /* line 160, _grid.scss */ .medium-pull-2 { position: relative; right: 16.66667%; left: auto; } /* line 157, _grid.scss */ .medium-push-3 { position: relative; left: 25%; right: auto; } /* line 160, _grid.scss */ .medium-pull-3 { position: relative; right: 25%; left: auto; } /* line 157, _grid.scss */ .medium-push-4 { position: relative; left: 33.33333%; right: auto; } /* line 160, _grid.scss */ .medium-pull-4 { position: relative; right: 33.33333%; left: auto; } /* line 157, _grid.scss */ .medium-push-5 { position: relative; left: 41.66667%; right: auto; } /* line 160, _grid.scss */ .medium-pull-5 { position: relative; right: 41.66667%; left: auto; } /* line 157, _grid.scss */ .medium-push-6 { position: relative; left: 50%; right: auto; } /* line 160, _grid.scss */ .medium-pull-6 { position: relative; right: 50%; left: auto; } /* line 157, _grid.scss */ .medium-push-7 { position: relative; left: 58.33333%; right: auto; } /* line 160, _grid.scss */ .medium-pull-7 { position: relative; right: 58.33333%; left: auto; } /* line 157, _grid.scss */ .medium-push-8 { position: relative; left: 66.66667%; right: auto; } /* line 160, _grid.scss */ .medium-pull-8 { position: relative; right: 66.66667%; left: auto; } /* line 157, _grid.scss */ .medium-push-9 { position: relative; left: 75%; right: auto; } /* line 160, _grid.scss */ .medium-pull-9 { position: relative; right: 75%; left: auto; } /* line 157, _grid.scss */ .medium-push-10 { position: relative; left: 83.33333%; right: auto; } /* line 160, _grid.scss */ .medium-pull-10 { position: relative; right: 83.33333%; left: auto; } /* line 157, _grid.scss */ .medium-push-11 { position: relative; left: 91.66667%; right: auto; } /* line 160, _grid.scss */ .medium-pull-11 { position: relative; right: 91.66667%; left: auto; } /* line 166, _grid.scss */ .column, .columns { position: relative; padding-left: 0.9375rem; padding-right: 0.9375rem; float: left; } /* line 170, _grid.scss */ .medium-1 { width: 8.33333%; } /* line 170, _grid.scss */ .medium-2 { width: 16.66667%; } /* line 170, _grid.scss */ .medium-3 { width: 25%; } /* line 170, _grid.scss */ .medium-4 { width: 33.33333%; } /* line 170, _grid.scss */ .medium-5 { width: 41.66667%; } /* line 170, _grid.scss */ .medium-6 { width: 50%; } /* line 170, _grid.scss */ .medium-7 { width: 58.33333%; } /* line 170, _grid.scss */ .medium-8 { width: 66.66667%; } /* line 170, _grid.scss */ .medium-9 { width: 75%; } /* line 170, _grid.scss */ .medium-10 { width: 83.33333%; } /* line 170, _grid.scss */ .medium-11 { width: 91.66667%; } /* line 170, _grid.scss */ .medium-12 { width: 100%; } /* line 173, _grid.scss */ [class*="column"] + [class*="column"]:last-child { float: right; } /* line 174, _grid.scss */ [class*="column"] + [class*="column"].end { float: left; } /* line 178, _grid.scss */ .medium-offset-0 { margin-left: 0% !important; } /* line 178, _grid.scss */ .medium-offset-1 { margin-left: 8.33333% !important; } /* line 178, _grid.scss */ .medium-offset-2 { margin-left: 16.66667% !important; } /* line 178, _grid.scss */ .medium-offset-3 { margin-left: 25% !important; } /* line 178, _grid.scss */ .medium-offset-4 { margin-left: 33.33333% !important; } /* line 178, _grid.scss */ .medium-offset-5 { margin-left: 41.66667% !important; } /* line 178, _grid.scss */ .medium-offset-6 { margin-left: 50% !important; } /* line 178, _grid.scss */ .medium-offset-7 { margin-left: 58.33333% !important; } /* line 178, _grid.scss */ .medium-offset-8 { margin-left: 66.66667% !important; } /* line 178, _grid.scss */ .medium-offset-9 { margin-left: 75% !important; } /* line 178, _grid.scss */ .medium-offset-10 { margin-left: 83.33333% !important; } /* line 178, _grid.scss */ .medium-offset-11 { margin-left: 91.66667% !important; } /* line 180, _grid.scss */ .medium-reset-order { margin-left: 0; margin-right: 0; left: auto; right: auto; float: left; } /* line 189, _grid.scss */ .column.medium-centered, .columns.medium-centered { margin-left: auto; margin-right: auto; float: none !important; } /* line 192, _grid.scss */ .column.medium-uncentered, .columns.medium-uncentered { margin-left: 0; margin-right: 0; float: left !important; } /* line 199, _grid.scss */ .column.medium-uncentered.opposite, .columns.medium-uncentered.opposite { float: right; } /* line 232, _grid.scss */ .push-0 { position: relative; left: 0%; right: auto; } /* line 235, _grid.scss */ .pull-0 { position: relative; right: 0%; left: auto; } /* line 232, _grid.scss */ .push-1 { position: relative; left: 8.33333%; right: auto; } /* line 235, _grid.scss */ .pull-1 { position: relative; right: 8.33333%; left: auto; } /* line 232, _grid.scss */ .push-2 { position: relative; left: 16.66667%; right: auto; } /* line 235, _grid.scss */ .pull-2 { position: relative; right: 16.66667%; left: auto; } /* line 232, _grid.scss */ .push-3 { position: relative; left: 25%; right: auto; } /* line 235, _grid.scss */ .pull-3 { position: relative; right: 25%; left: auto; } /* line 232, _grid.scss */ .push-4 { position: relative; left: 33.33333%; right: auto; } /* line 235, _grid.scss */ .pull-4 { position: relative; right: 33.33333%; left: auto; } /* line 232, _grid.scss */ .push-5 { position: relative; left: 41.66667%; right: auto; } /* line 235, _grid.scss */ .pull-5 { position: relative; right: 41.66667%; left: auto; } /* line 232, _grid.scss */ .push-6 { position: relative; left: 50%; right: auto; } /* line 235, _grid.scss */ .pull-6 { position: relative; right: 50%; left: auto; } /* line 232, _grid.scss */ .push-7 { position: relative; left: 58.33333%; right: auto; } /* line 235, _grid.scss */ .pull-7 { position: relative; right: 58.33333%; left: auto; } /* line 232, _grid.scss */ .push-8 { position: relative; left: 66.66667%; right: auto; } /* line 235, _grid.scss */ .pull-8 { position: relative; right: 66.66667%; left: auto; } /* line 232, _grid.scss */ .push-9 { position: relative; left: 75%; right: auto; } /* line 235, _grid.scss */ .pull-9 { position: relative; right: 75%; left: auto; } /* line 232, _grid.scss */ .push-10 { position: relative; left: 83.33333%; right: auto; } /* line 235, _grid.scss */ .pull-10 { position: relative; right: 83.33333%; left: auto; } /* line 232, _grid.scss */ .push-11 { position: relative; left: 91.66667%; right: auto; } /* line 235, _grid.scss */ .pull-11 { position: relative; right: 91.66667%; left: auto; } } @media only screen and (min-width: 64.063em) { /* line 157, _grid.scss */ .large-push-0 { position: relative; left: 0%; right: auto; } /* line 160, _grid.scss */ .large-pull-0 { position: relative; right: 0%; left: auto; } /* line 157, _grid.scss */ .large-push-1 { position: relative; left: 8.33333%; right: auto; } /* line 160, _grid.scss */ .large-pull-1 { position: relative; right: 8.33333%; left: auto; } /* line 157, _grid.scss */ .large-push-2 { position: relative; left: 16.66667%; right: auto; } /* line 160, _grid.scss */ .large-pull-2 { position: relative; right: 16.66667%; left: auto; } /* line 157, _grid.scss */ .large-push-3 { position: relative; left: 25%; right: auto; } /* line 160, _grid.scss */ .large-pull-3 { position: relative; right: 25%; left: auto; } /* line 157, _grid.scss */ .large-push-4 { position: relative; left: 33.33333%; right: auto; } /* line 160, _grid.scss */ .large-pull-4 { position: relative; right: 33.33333%; left: auto; } /* line 157, _grid.scss */ .large-push-5 { position: relative; left: 41.66667%; right: auto; } /* line 160, _grid.scss */ .large-pull-5 { position: relative; right: 41.66667%; left: auto; } /* line 157, _grid.scss */ .large-push-6 { position: relative; left: 50%; right: auto; } /* line 160, _grid.scss */ .large-pull-6 { position: relative; right: 50%; left: auto; } /* line 157, _grid.scss */ .large-push-7 { position: relative; left: 58.33333%; right: auto; } /* line 160, _grid.scss */ .large-pull-7 { position: relative; right: 58.33333%; left: auto; } /* line 157, _grid.scss */ .large-push-8 { position: relative; left: 66.66667%; right: auto; } /* line 160, _grid.scss */ .large-pull-8 { position: relative; right: 66.66667%; left: auto; } /* line 157, _grid.scss */ .large-push-9 { position: relative; left: 75%; right: auto; } /* line 160, _grid.scss */ .large-pull-9 { position: relative; right: 75%; left: auto; } /* line 157, _grid.scss */ .large-push-10 { position: relative; left: 83.33333%; right: auto; } /* line 160, _grid.scss */ .large-pull-10 { position: relative; right: 83.33333%; left: auto; } /* line 157, _grid.scss */ .large-push-11 { position: relative; left: 91.66667%; right: auto; } /* line 160, _grid.scss */ .large-pull-11 { position: relative; right: 91.66667%; left: auto; } /* line 166, _grid.scss */ .column, .columns { position: relative; padding-left: 0.9375rem; padding-right: 0.9375rem; float: left; } /* line 170, _grid.scss */ .large-1 { width: 8.33333%; } /* line 170, _grid.scss */ .large-2 { width: 16.66667%; } /* line 170, _grid.scss */ .large-3 { width: 25%; } /* line 170, _grid.scss */ .large-4 { width: 33.33333%; } /* line 170, _grid.scss */ .large-5 { width: 41.66667%; } /* line 170, _grid.scss */ .large-6 { width: 50%; } /* line 170, _grid.scss */ .large-7 { width: 58.33333%; } /* line 170, _grid.scss */ .large-8 { width: 66.66667%; } /* line 170, _grid.scss */ .large-9 { width: 75%; } /* line 170, _grid.scss */ .large-10 { width: 83.33333%; } /* line 170, _grid.scss */ .large-11 { width: 91.66667%; } /* line 170, _grid.scss */ .large-12 { width: 100%; } /* line 173, _grid.scss */ [class*="column"] + [class*="column"]:last-child { float: right; } /* line 174, _grid.scss */ [class*="column"] + [class*="column"].end { float: left; } /* line 178, _grid.scss */ .large-offset-0 { margin-left: 0% !important; } /* line 178, _grid.scss */ .large-offset-1 { margin-left: 8.33333% !important; } /* line 178, _grid.scss */ .large-offset-2 { margin-left: 16.66667% !important; } /* line 178, _grid.scss */ .large-offset-3 { margin-left: 25% !important; } /* line 178, _grid.scss */ .large-offset-4 { margin-left: 33.33333% !important; } /* line 178, _grid.scss */ .large-offset-5 { margin-left: 41.66667% !important; } /* line 178, _grid.scss */ .large-offset-6 { margin-left: 50% !important; } /* line 178, _grid.scss */ .large-offset-7 { margin-left: 58.33333% !important; } /* line 178, _grid.scss */ .large-offset-8 { margin-left: 66.66667% !important; } /* line 178, _grid.scss */ .large-offset-9 { margin-left: 75% !important; } /* line 178, _grid.scss */ .large-offset-10 { margin-left: 83.33333% !important; } /* line 178, _grid.scss */ .large-offset-11 { margin-left: 91.66667% !important; } /* line 180, _grid.scss */ .large-reset-order { margin-left: 0; margin-right: 0; left: auto; right: auto; float: left; } /* line 189, _grid.scss */ .column.large-centered, .columns.large-centered { margin-left: auto; margin-right: auto; float: none !important; } /* line 192, _grid.scss */ .column.large-uncentered, .columns.large-uncentered { margin-left: 0; margin-right: 0; float: left !important; } /* line 199, _grid.scss */ .column.large-uncentered.opposite, .columns.large-uncentered.opposite { float: right; } /* line 243, _grid.scss */ .push-0 { position: relative; left: 0%; right: auto; } /* line 246, _grid.scss */ .pull-0 { position: relative; right: 0%; left: auto; } /* line 243, _grid.scss */ .push-1 { position: relative; left: 8.33333%; right: auto; } /* line 246, _grid.scss */ .pull-1 { position: relative; right: 8.33333%; left: auto; } /* line 243, _grid.scss */ .push-2 { position: relative; left: 16.66667%; right: auto; } /* line 246, _grid.scss */ .pull-2 { position: relative; right: 16.66667%; left: auto; } /* line 243, _grid.scss */ .push-3 { position: relative; left: 25%; right: auto; } /* line 246, _grid.scss */ .pull-3 { position: relative; right: 25%; left: auto; } /* line 243, _grid.scss */ .push-4 { position: relative; left: 33.33333%; right: auto; } /* line 246, _grid.scss */ .pull-4 { position: relative; right: 33.33333%; left: auto; } /* line 243, _grid.scss */ .push-5 { position: relative; left: 41.66667%; right: auto; } /* line 246, _grid.scss */ .pull-5 { position: relative; right: 41.66667%; left: auto; } /* line 243, _grid.scss */ .push-6 { position: relative; left: 50%; right: auto; } /* line 246, _grid.scss */ .pull-6 { position: relative; right: 50%; left: auto; } /* line 243, _grid.scss */ .push-7 { position: relative; left: 58.33333%; right: auto; } /* line 246, _grid.scss */ .pull-7 { position: relative; right: 58.33333%; left: auto; } /* line 243, _grid.scss */ .push-8 { position: relative; left: 66.66667%; right: auto; } /* line 246, _grid.scss */ .pull-8 { position: relative; right: 66.66667%; left: auto; } /* line 243, _grid.scss */ .push-9 { position: relative; left: 75%; right: auto; } /* line 246, _grid.scss */ .pull-9 { position: relative; right: 75%; left: auto; } /* line 243, _grid.scss */ .push-10 { position: relative; left: 83.33333%; right: auto; } /* line 246, _grid.scss */ .pull-10 { position: relative; right: 83.33333%; left: auto; } /* line 243, _grid.scss */ .push-11 { position: relative; left: 91.66667%; right: auto; } /* line 246, _grid.scss */ .pull-11 { position: relative; right: 91.66667%; left: auto; } } /* line 26, _accordion.scss */ .accordion { margin-bottom: 0; } /* line 163, _global.scss */ .accordion:before, .accordion:after { content: " "; display: table; } /* line 164, _global.scss */ .accordion:after { clear: both; } /* line 28, _accordion.scss */ .accordion dd { display: block; margin-bottom: 0 !important; } /* line 31, _accordion.scss */ .accordion dd.active > a { background: #e8e8e8; } /* line 32, _accordion.scss */ .accordion dd > a { background: #efefef; color: #222222; padding: 1rem; display: block; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-size: 1rem; } /* line 39, _accordion.scss */ .accordion dd > a:hover { background: #e3e3e3; } /* line 42, _accordion.scss */ .accordion dd > .content { display: none; padding: 0.9375rem; } /* line 45, _accordion.scss */ .accordion dd > .content.active { display: block; background: white; } /* line 110, _alert-boxes.scss */ .alert-box { border-style: solid; border-width: 1px; display: block; font-weight: normal; margin-bottom: 1.25rem; position: relative; padding: 0.875rem 1.5rem 0.875rem 0.875rem; font-size: 0.8125rem; transition: opacity 300ms ease-out; background-color: #008cba; border-color: #0078a0; color: white; } /* line 113, _alert-boxes.scss */ .alert-box .close { font-size: 1.375rem; padding: 9px 6px 4px; line-height: 0; position: absolute; top: 50%; margin-top: -0.6875rem; right: 0.25rem; color: #333333; opacity: 0.3; } /* line 95, _alert-boxes.scss */ .alert-box .close:hover, .alert-box .close:focus { opacity: 0.5; } /* line 115, _alert-boxes.scss */ .alert-box.radius { border-radius: 3px; } /* line 116, _alert-boxes.scss */ .alert-box.round { border-radius: 1000px; } /* line 118, _alert-boxes.scss */ .alert-box.success { background-color: #43ac6a; border-color: #3a945b; color: white; } /* line 119, _alert-boxes.scss */ .alert-box.alert { background-color: #f04124; border-color: #de2d0f; color: white; } /* line 120, _alert-boxes.scss */ .alert-box.secondary { background-color: #e7e7e7; border-color: #c7c7c7; color: #4f4f4f; } /* line 121, _alert-boxes.scss */ .alert-box.warning { background-color: #f08a24; border-color: #de770f; color: white; } /* line 122, _alert-boxes.scss */ .alert-box.info { background-color: #a0d3e8; border-color: #74bfdd; color: #4f4f4f; } /* line 123, _alert-boxes.scss */ .alert-box.alert-close { opacity: 0; } /* line 106, _block-grid.scss */ [class*="block-grid-"] { display: block; padding: 0; margin: 0 -0.625rem; } /* line 163, _global.scss */ [class*="block-grid-"]:before, [class*="block-grid-"]:after { content: " "; display: table; } /* line 164, _global.scss */ [class*="block-grid-"]:after { clear: both; } /* line 50, _block-grid.scss */ [class*="block-grid-"] > li { display: block; height: auto; float: left; padding: 0 0.625rem 1.25rem; } @media only screen { /* line 61, _block-grid.scss */ .small-block-grid-1 > li { width: 100%; list-style: none; } /* line 68, _block-grid.scss */ .small-block-grid-1 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .small-block-grid-1 > li:nth-of-type(1n+1) { clear: both; } /* line 61, _block-grid.scss */ .small-block-grid-2 > li { width: 50%; list-style: none; } /* line 68, _block-grid.scss */ .small-block-grid-2 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .small-block-grid-2 > li:nth-of-type(2n+1) { clear: both; } /* line 61, _block-grid.scss */ .small-block-grid-3 > li { width: 33.33333%; list-style: none; } /* line 68, _block-grid.scss */ .small-block-grid-3 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .small-block-grid-3 > li:nth-of-type(3n+1) { clear: both; } /* line 61, _block-grid.scss */ .small-block-grid-4 > li { width: 25%; list-style: none; } /* line 68, _block-grid.scss */ .small-block-grid-4 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .small-block-grid-4 > li:nth-of-type(4n+1) { clear: both; } /* line 61, _block-grid.scss */ .small-block-grid-5 > li { width: 20%; list-style: none; } /* line 68, _block-grid.scss */ .small-block-grid-5 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .small-block-grid-5 > li:nth-of-type(5n+1) { clear: both; } /* line 61, _block-grid.scss */ .small-block-grid-6 > li { width: 16.66667%; list-style: none; } /* line 68, _block-grid.scss */ .small-block-grid-6 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .small-block-grid-6 > li:nth-of-type(6n+1) { clear: both; } /* line 61, _block-grid.scss */ .small-block-grid-7 > li { width: 14.28571%; list-style: none; } /* line 68, _block-grid.scss */ .small-block-grid-7 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .small-block-grid-7 > li:nth-of-type(7n+1) { clear: both; } /* line 61, _block-grid.scss */ .small-block-grid-8 > li { width: 12.5%; list-style: none; } /* line 68, _block-grid.scss */ .small-block-grid-8 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .small-block-grid-8 > li:nth-of-type(8n+1) { clear: both; } /* line 61, _block-grid.scss */ .small-block-grid-9 > li { width: 11.11111%; list-style: none; } /* line 68, _block-grid.scss */ .small-block-grid-9 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .small-block-grid-9 > li:nth-of-type(9n+1) { clear: both; } /* line 61, _block-grid.scss */ .small-block-grid-10 > li { width: 10%; list-style: none; } /* line 68, _block-grid.scss */ .small-block-grid-10 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .small-block-grid-10 > li:nth-of-type(10n+1) { clear: both; } /* line 61, _block-grid.scss */ .small-block-grid-11 > li { width: 9.09091%; list-style: none; } /* line 68, _block-grid.scss */ .small-block-grid-11 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .small-block-grid-11 > li:nth-of-type(11n+1) { clear: both; } /* line 61, _block-grid.scss */ .small-block-grid-12 > li { width: 8.33333%; list-style: none; } /* line 68, _block-grid.scss */ .small-block-grid-12 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .small-block-grid-12 > li:nth-of-type(12n+1) { clear: both; } } @media only screen and (min-width: 40.063em) { /* line 61, _block-grid.scss */ .medium-block-grid-1 > li { width: 100%; list-style: none; } /* line 68, _block-grid.scss */ .medium-block-grid-1 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .medium-block-grid-1 > li:nth-of-type(1n+1) { clear: both; } /* line 61, _block-grid.scss */ .medium-block-grid-2 > li { width: 50%; list-style: none; } /* line 68, _block-grid.scss */ .medium-block-grid-2 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .medium-block-grid-2 > li:nth-of-type(2n+1) { clear: both; } /* line 61, _block-grid.scss */ .medium-block-grid-3 > li { width: 33.33333%; list-style: none; } /* line 68, _block-grid.scss */ .medium-block-grid-3 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .medium-block-grid-3 > li:nth-of-type(3n+1) { clear: both; } /* line 61, _block-grid.scss */ .medium-block-grid-4 > li { width: 25%; list-style: none; } /* line 68, _block-grid.scss */ .medium-block-grid-4 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .medium-block-grid-4 > li:nth-of-type(4n+1) { clear: both; } /* line 61, _block-grid.scss */ .medium-block-grid-5 > li { width: 20%; list-style: none; } /* line 68, _block-grid.scss */ .medium-block-grid-5 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .medium-block-grid-5 > li:nth-of-type(5n+1) { clear: both; } /* line 61, _block-grid.scss */ .medium-block-grid-6 > li { width: 16.66667%; list-style: none; } /* line 68, _block-grid.scss */ .medium-block-grid-6 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .medium-block-grid-6 > li:nth-of-type(6n+1) { clear: both; } /* line 61, _block-grid.scss */ .medium-block-grid-7 > li { width: 14.28571%; list-style: none; } /* line 68, _block-grid.scss */ .medium-block-grid-7 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .medium-block-grid-7 > li:nth-of-type(7n+1) { clear: both; } /* line 61, _block-grid.scss */ .medium-block-grid-8 > li { width: 12.5%; list-style: none; } /* line 68, _block-grid.scss */ .medium-block-grid-8 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .medium-block-grid-8 > li:nth-of-type(8n+1) { clear: both; } /* line 61, _block-grid.scss */ .medium-block-grid-9 > li { width: 11.11111%; list-style: none; } /* line 68, _block-grid.scss */ .medium-block-grid-9 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .medium-block-grid-9 > li:nth-of-type(9n+1) { clear: both; } /* line 61, _block-grid.scss */ .medium-block-grid-10 > li { width: 10%; list-style: none; } /* line 68, _block-grid.scss */ .medium-block-grid-10 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .medium-block-grid-10 > li:nth-of-type(10n+1) { clear: both; } /* line 61, _block-grid.scss */ .medium-block-grid-11 > li { width: 9.09091%; list-style: none; } /* line 68, _block-grid.scss */ .medium-block-grid-11 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .medium-block-grid-11 > li:nth-of-type(11n+1) { clear: both; } /* line 61, _block-grid.scss */ .medium-block-grid-12 > li { width: 8.33333%; list-style: none; } /* line 68, _block-grid.scss */ .medium-block-grid-12 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .medium-block-grid-12 > li:nth-of-type(12n+1) { clear: both; } } @media only screen and (min-width: 64.063em) { /* line 61, _block-grid.scss */ .large-block-grid-1 > li { width: 100%; list-style: none; } /* line 68, _block-grid.scss */ .large-block-grid-1 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .large-block-grid-1 > li:nth-of-type(1n+1) { clear: both; } /* line 61, _block-grid.scss */ .large-block-grid-2 > li { width: 50%; list-style: none; } /* line 68, _block-grid.scss */ .large-block-grid-2 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .large-block-grid-2 > li:nth-of-type(2n+1) { clear: both; } /* line 61, _block-grid.scss */ .large-block-grid-3 > li { width: 33.33333%; list-style: none; } /* line 68, _block-grid.scss */ .large-block-grid-3 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .large-block-grid-3 > li:nth-of-type(3n+1) { clear: both; } /* line 61, _block-grid.scss */ .large-block-grid-4 > li { width: 25%; list-style: none; } /* line 68, _block-grid.scss */ .large-block-grid-4 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .large-block-grid-4 > li:nth-of-type(4n+1) { clear: both; } /* line 61, _block-grid.scss */ .large-block-grid-5 > li { width: 20%; list-style: none; } /* line 68, _block-grid.scss */ .large-block-grid-5 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .large-block-grid-5 > li:nth-of-type(5n+1) { clear: both; } /* line 61, _block-grid.scss */ .large-block-grid-6 > li { width: 16.66667%; list-style: none; } /* line 68, _block-grid.scss */ .large-block-grid-6 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .large-block-grid-6 > li:nth-of-type(6n+1) { clear: both; } /* line 61, _block-grid.scss */ .large-block-grid-7 > li { width: 14.28571%; list-style: none; } /* line 68, _block-grid.scss */ .large-block-grid-7 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .large-block-grid-7 > li:nth-of-type(7n+1) { clear: both; } /* line 61, _block-grid.scss */ .large-block-grid-8 > li { width: 12.5%; list-style: none; } /* line 68, _block-grid.scss */ .large-block-grid-8 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .large-block-grid-8 > li:nth-of-type(8n+1) { clear: both; } /* line 61, _block-grid.scss */ .large-block-grid-9 > li { width: 11.11111%; list-style: none; } /* line 68, _block-grid.scss */ .large-block-grid-9 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .large-block-grid-9 > li:nth-of-type(9n+1) { clear: both; } /* line 61, _block-grid.scss */ .large-block-grid-10 > li { width: 10%; list-style: none; } /* line 68, _block-grid.scss */ .large-block-grid-10 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .large-block-grid-10 > li:nth-of-type(10n+1) { clear: both; } /* line 61, _block-grid.scss */ .large-block-grid-11 > li { width: 9.09091%; list-style: none; } /* line 68, _block-grid.scss */ .large-block-grid-11 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .large-block-grid-11 > li:nth-of-type(11n+1) { clear: both; } /* line 61, _block-grid.scss */ .large-block-grid-12 > li { width: 8.33333%; list-style: none; } /* line 68, _block-grid.scss */ .large-block-grid-12 > li:nth-of-type(n) { clear: none; } /* line 69, _block-grid.scss */ .large-block-grid-12 > li:nth-of-type(12n+1) { clear: both; } } /* line 118, _breadcrumbs.scss */ .breadcrumbs { display: block; padding: 0.5625rem 0.875rem 0.5625rem; overflow: hidden; margin-left: 0; list-style: none; border-style: solid; border-width: 1px; background-color: #f4f4f4; border-color: gainsboro; border-radius: 3px; } /* line 122, _breadcrumbs.scss */ .breadcrumbs > * { margin: 0; float: left; font-size: 0.6875rem; line-height: 0.6875rem; text-transform: uppercase; color: #008cba; } /* line 68, _breadcrumbs.scss */ .breadcrumbs > *:hover a, .breadcrumbs > *:focus a { text-decoration: underline; } /* line 70, _breadcrumbs.scss */ .breadcrumbs > * a { color: #008cba; } /* line 75, _breadcrumbs.scss */ .breadcrumbs > *.current { cursor: default; color: #333333; } /* line 78, _breadcrumbs.scss */ .breadcrumbs > *.current a { cursor: default; color: #333333; } /* line 84, _breadcrumbs.scss */ .breadcrumbs > *.current:hover, .breadcrumbs > *.current:hover a, .breadcrumbs > *.current:focus, .breadcrumbs > *.current:focus a { text-decoration: none; } /* line 88, _breadcrumbs.scss */ .breadcrumbs > *.unavailable { color: #999999; } /* line 90, _breadcrumbs.scss */ .breadcrumbs > *.unavailable a { color: #999999; } /* line 95, _breadcrumbs.scss */ .breadcrumbs > *.unavailable:hover, .breadcrumbs > *.unavailable:hover a, .breadcrumbs > *.unavailable:focus, .breadcrumbs > *.unavailable a:focus { text-decoration: none; color: #999999; cursor: default; } /* line 102, _breadcrumbs.scss */ .breadcrumbs > *:before { content: "/"; color: #aaaaaa; margin: 0 0.75rem; position: relative; top: 1px; } /* line 110, _breadcrumbs.scss */ .breadcrumbs > *:first-child:before { content: " "; margin: 0; } /* line 186, _buttons.scss */ button, .button { border-style: solid; border-width: 0px; cursor: pointer; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; line-height: normal; margin: 0 0 1.25rem; position: relative; text-decoration: none; text-align: center; -webkit-appearance: none; -webkit-border-radius: 0; display: inline-block; padding-top: 1rem; padding-right: 2rem; padding-bottom: 1.0625rem; padding-left: 2rem; font-size: 1rem; background-color: #008cba; border-color: #007095; color: white; transition: background-color 300ms ease-out; } /* line 134, _buttons.scss */ button:hover, button:focus, .button:hover, .button:focus { background-color: #007095; } /* line 145, _buttons.scss */ button:hover, button:focus, .button:hover, .button:focus { color: white; } /* line 193, _buttons.scss */ button.secondary, .button.secondary { background-color: #e7e7e7; border-color: #b9b9b9; color: #333333; } /* line 134, _buttons.scss */ button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { background-color: #b9b9b9; } /* line 140, _buttons.scss */ button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus { color: #333333; } /* line 194, _buttons.scss */ button.success, .button.success { background-color: #43ac6a; border-color: #368a55; color: white; } /* line 134, _buttons.scss */ button.success:hover, button.success:focus, .button.success:hover, .button.success:focus { background-color: #368a55; } /* line 145, _buttons.scss */ button.success:hover, button.success:focus, .button.success:hover, .button.success:focus { color: white; } /* line 195, _buttons.scss */ button.alert, .button.alert { background-color: #f04124; border-color: #cf2a0e; color: white; } /* line 134, _buttons.scss */ button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus { background-color: #cf2a0e; } /* line 145, _buttons.scss */ button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus { color: white; } /* line 197, _buttons.scss */ button.large, .button.large { padding-top: 1.125rem; padding-right: 2.25rem; padding-bottom: 1.1875rem; padding-left: 2.25rem; font-size: 1.25rem; } /* line 198, _buttons.scss */ button.small, .button.small { padding-top: 0.875rem; padding-right: 1.75rem; padding-bottom: 0.9375rem; padding-left: 1.75rem; font-size: 0.8125rem; } /* line 199, _buttons.scss */ button.tiny, .button.tiny { padding-top: 0.625rem; padding-right: 1.25rem; padding-bottom: 0.6875rem; padding-left: 1.25rem; font-size: 0.6875rem; } /* line 200, _buttons.scss */ button.expand, .button.expand { padding-right: 0; padding-left: 0; width: 100%; } /* line 202, _buttons.scss */ button.left-align, .button.left-align { text-align: left; text-indent: 0.75rem; } /* line 203, _buttons.scss */ button.right-align, .button.right-align { text-align: right; padding-right: 0.75rem; } /* line 205, _buttons.scss */ button.radius, .button.radius { border-radius: 3px; } /* line 206, _buttons.scss */ button.round, .button.round { border-radius: 1000px; } /* line 208, _buttons.scss */ button.disabled, button[disabled], .button.disabled, .button[disabled] { background-color: #008cba; border-color: #007095; color: white; cursor: default; opacity: 0.7; box-shadow: none; } /* line 134, _buttons.scss */ button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { background-color: #007095; } /* line 145, _buttons.scss */ button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { color: white; } /* line 155, _buttons.scss */ button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus { background-color: #008cba; } /* line 209, _buttons.scss */ button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary { background-color: #e7e7e7; border-color: #b9b9b9; color: #333333; cursor: default; opacity: 0.7; box-shadow: none; } /* line 134, _buttons.scss */ button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { background-color: #b9b9b9; } /* line 140, _buttons.scss */ button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { color: #333333; } /* line 155, _buttons.scss */ button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus { background-color: #e7e7e7; } /* line 210, _buttons.scss */ button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success { background-color: #43ac6a; border-color: #368a55; color: white; cursor: default; opacity: 0.7; box-shadow: none; } /* line 134, _buttons.scss */ button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { background-color: #368a55; } /* line 145, _buttons.scss */ button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { color: white; } /* line 155, _buttons.scss */ button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus { background-color: #43ac6a; } /* line 211, _buttons.scss */ button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert { background-color: #f04124; border-color: #cf2a0e; color: white; cursor: default; opacity: 0.7; box-shadow: none; } /* line 134, _buttons.scss */ button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { background-color: #cf2a0e; } /* line 145, _buttons.scss */ button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { color: white; } /* line 155, _buttons.scss */ button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus { background-color: #f04124; } @media only screen and (min-width: 40.063em) { /* line 216, _buttons.scss */ button, .button { display: inline-block; } } /* line 91, _button-groups.scss */ .button-group { list-style: none; margin: 0; left: 0; } /* line 163, _global.scss */ .button-group:before, .button-group:after { content: " "; display: table; } /* line 164, _global.scss */ .button-group:after { clear: both; } /* line 93, _button-groups.scss */ .button-group li { margin: 0; float: left; } /* line 40, _button-groups.scss */ .button-group li > button, .button-group li .button { border-left: 1px solid; border-color: rgba(255, 255, 255, 0.5); } /* line 46, _button-groups.scss */ .button-group li:first-child button, .button-group li:first-child .button { border-left: 0; } /* line 56, _button-groups.scss */ .button-group li:first-child { margin-left: 0; } /* line 40, _button-groups.scss */ .button-group.radius > * > button, .button-group.radius > * .button { border-left: 1px solid; border-color: rgba(255, 255, 255, 0.5); } /* line 46, _button-groups.scss */ .button-group.radius > *:first-child button, .button-group.radius > *:first-child .button { border-left: 0; } /* line 74, _button-groups.scss */ .button-group.radius > *:first-child, .button-group.radius > *:first-child > a, .button-group.radius > *:first-child > button, .button-group.radius > *:first-child > .button { border-bottom-left-radius: 3px; border-top-left-radius: 3px; } /* line 78, _button-groups.scss */ .button-group.radius > *:last-child, .button-group.radius > *:last-child > a, .button-group.radius > *:last-child > button, .button-group.radius > *:last-child > .button { border-bottom-right-radius: 3px; border-top-right-radius: 3px; } /* line 40, _button-groups.scss */ .button-group.round > * > button, .button-group.round > * .button { border-left: 1px solid; border-color: rgba(255, 255, 255, 0.5); } /* line 46, _button-groups.scss */ .button-group.round > *:first-child button, .button-group.round > *:first-child .button { border-left: 0; } /* line 74, _button-groups.scss */ .button-group.round > *:first-child, .button-group.round > *:first-child > a, .button-group.round > *:first-child > button, .button-group.round > *:first-child > .button { border-bottom-left-radius: 1000px; border-top-left-radius: 1000px; } /* line 78, _button-groups.scss */ .button-group.round > *:last-child, .button-group.round > *:last-child > a, .button-group.round > *:last-child > button, .button-group.round > *:last-child > .button { border-bottom-right-radius: 1000px; border-top-right-radius: 1000px; } /* line 99, _button-groups.scss */ .button-group.even-2 li { width: 50%; } /* line 40, _button-groups.scss */ .button-group.even-2 li > button, .button-group.even-2 li .button { border-left: 1px solid; border-color: rgba(255, 255, 255, 0.5); } /* line 46, _button-groups.scss */ .button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button { border-left: 0; } /* line 84, _button-groups.scss */ .button-group.even-2 li button, .button-group.even-2 li .button { width: 100%; } /* line 99, _button-groups.scss */ .button-group.even-3 li { width: 33.33333%; } /* line 40, _button-groups.scss */ .button-group.even-3 li > button, .button-group.even-3 li .button { border-left: 1px solid; border-color: rgba(255, 255, 255, 0.5); } /* line 46, _button-groups.scss */ .button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button { border-left: 0; } /* line 84, _button-groups.scss */ .button-group.even-3 li button, .button-group.even-3 li .button { width: 100%; } /* line 99, _button-groups.scss */ .button-group.even-4 li { width: 25%; } /* line 40, _button-groups.scss */ .button-group.even-4 li > button, .button-group.even-4 li .button { border-left: 1px solid; border-color: rgba(255, 255, 255, 0.5); } /* line 46, _button-groups.scss */ .button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button { border-left: 0; } /* line 84, _button-groups.scss */ .button-group.even-4 li button, .button-group.even-4 li .button { width: 100%; } /* line 99, _button-groups.scss */ .button-group.even-5 li { width: 20%; } /* line 40, _button-groups.scss */ .button-group.even-5 li > button, .button-group.even-5 li .button { border-left: 1px solid; border-color: rgba(255, 255, 255, 0.5); } /* line 46, _button-groups.scss */ .button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button { border-left: 0; } /* line 84, _button-groups.scss */ .button-group.even-5 li button, .button-group.even-5 li .button { width: 100%; } /* line 99, _button-groups.scss */ .button-group.even-6 li { width: 16.66667%; } /* line 40, _button-groups.scss */ .button-group.even-6 li > button, .button-group.even-6 li .button { border-left: 1px solid; border-color: rgba(255, 255, 255, 0.5); } /* line 46, _button-groups.scss */ .button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button { border-left: 0; } /* line 84, _button-groups.scss */ .button-group.even-6 li button, .button-group.even-6 li .button { width: 100%; } /* line 99, _button-groups.scss */ .button-group.even-7 li { width: 14.28571%; } /* line 40, _button-groups.scss */ .button-group.even-7 li > button, .button-group.even-7 li .button { border-left: 1px solid; border-color: rgba(255, 255, 255, 0.5); } /* line 46, _button-groups.scss */ .button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button { border-left: 0; } /* line 84, _button-groups.scss */ .button-group.even-7 li button, .button-group.even-7 li .button { width: 100%; } /* line 99, _button-groups.scss */ .button-group.even-8 li { width: 12.5%; } /* line 40, _button-groups.scss */ .button-group.even-8 li > button, .button-group.even-8 li .button { border-left: 1px solid; border-color: rgba(255, 255, 255, 0.5); } /* line 46, _button-groups.scss */ .button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button { border-left: 0; } /* line 84, _button-groups.scss */ .button-group.even-8 li button, .button-group.even-8 li .button { width: 100%; } /* line 163, _global.scss */ .button-bar:before, .button-bar:after { content: " "; display: table; } /* line 164, _global.scss */ .button-bar:after { clear: both; } /* line 105, _button-groups.scss */ .button-bar .button-group { float: left; margin-right: 0.625rem; } /* line 33, _button-groups.scss */ .button-bar .button-group div { overflow: hidden; } /* Clearing Styles */ /* line 44, _clearing.scss */ .clearing-thumbs, [data-clearing] { margin-bottom: 0; margin-left: 0; list-style: none; } /* line 163, _global.scss */ .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after { content: " "; display: table; } /* line 164, _global.scss */ .clearing-thumbs:after, [data-clearing]:after { clear: both; } /* line 50, _clearing.scss */ .clearing-thumbs li, [data-clearing] li { float: left; margin-right: 10px; } /* line 55, _clearing.scss */ .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li { margin-right: 0; } /* line 60, _clearing.scss */ .clearing-blackout { background: #333333; position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: 998; } /* line 69, _clearing.scss */ .clearing-blackout .clearing-close { display: block; } /* line 72, _clearing.scss */ .clearing-container { position: relative; z-index: 998; height: 100%; overflow: hidden; margin: 0; } /* line 80, _clearing.scss */ .clearing-touch-label { position: absolute; top: 50%; left: 50%; color: #aaa; font-size: 0.6em; } /* line 88, _clearing.scss */ .visible-img { height: 95%; position: relative; } /* line 92, _clearing.scss */ .visible-img img { position: absolute; left: 50%; top: 50%; margin-left: -50%; max-height: 100%; max-width: 100%; } /* line 102, _clearing.scss */ .clearing-caption { color: #cccccc; font-size: 0.875em; line-height: 1.3; margin-bottom: 0; text-align: center; bottom: 0; background: #333333; width: 100%; padding: 10px 30px 20px; position: absolute; left: 0; } /* line 116, _clearing.scss */ .clearing-close { z-index: 999; padding-left: 20px; padding-top: 10px; font-size: 30px; line-height: 1; color: #cccccc; display: none; } /* line 126, _clearing.scss */ .clearing-close:hover, .clearing-close:focus { color: #ccc; } /* line 129, _clearing.scss */ .clearing-assembled .clearing-container { height: 100%; } /* line 130, _clearing.scss */ .clearing-assembled .clearing-container .carousel > ul { display: none; } /* line 134, _clearing.scss */ .clearing-feature li { display: none; } /* line 136, _clearing.scss */ .clearing-feature li.clearing-featured-img { display: block; } @media only screen and (min-width: 40.063em) { /* line 144, _clearing.scss */ .clearing-main-prev, .clearing-main-next { position: absolute; height: 100%; width: 40px; top: 0; } /* line 149, _clearing.scss */ .clearing-main-prev > span, .clearing-main-next > span { position: absolute; top: 50%; display: block; width: 0; height: 0; border: solid 12px; } /* line 156, _clearing.scss */ .clearing-main-prev > span:hover, .clearing-main-next > span:hover { opacity: 0.8; } /* line 159, _clearing.scss */ .clearing-main-prev { left: 0; } /* line 161, _clearing.scss */ .clearing-main-prev > span { left: 5px; border-color: transparent; border-right-color: #cccccc; } /* line 167, _clearing.scss */ .clearing-main-next { right: 0; } /* line 169, _clearing.scss */ .clearing-main-next > span { border-color: transparent; border-left-color: #cccccc; } /* line 176, _clearing.scss */ .clearing-main-prev.disabled, .clearing-main-next.disabled { opacity: 0.3; } /* line 180, _clearing.scss */ .clearing-assembled .clearing-container .carousel { background: rgba(51, 51, 51, 0.8); height: 120px; margin-top: 10px; text-align: center; } /* line 186, _clearing.scss */ .clearing-assembled .clearing-container .carousel > ul { display: inline-block; z-index: 999; height: 100%; position: relative; float: none; } /* line 193, _clearing.scss */ .clearing-assembled .clearing-container .carousel > ul li { display: block; width: 120px; min-height: inherit; float: left; overflow: hidden; margin-right: 0; padding: 0; position: relative; cursor: pointer; opacity: 0.4; clear: none; } /* line 207, _clearing.scss */ .clearing-assembled .clearing-container .carousel > ul li.fix-height img { height: 100%; max-width: none; } /* line 213, _clearing.scss */ .clearing-assembled .clearing-container .carousel > ul li a.th { border: none; box-shadow: none; display: block; } /* line 219, _clearing.scss */ .clearing-assembled .clearing-container .carousel > ul li img { cursor: pointer !important; width: 100% !important; } /* line 224, _clearing.scss */ .clearing-assembled .clearing-container .carousel > ul li.visible { opacity: 1; } /* line 225, _clearing.scss */ .clearing-assembled .clearing-container .carousel > ul li:hover { opacity: 0.8; } /* line 230, _clearing.scss */ .clearing-assembled .clearing-container .visible-img { background: #333333; overflow: hidden; height: 85%; } /* line 237, _clearing.scss */ .clearing-close { position: absolute; top: 10px; right: 20px; padding-left: 0; padding-top: 0; } } /* Foundation Dropdowns */ /* line 219, _dropdown.scss */ .f-dropdown { position: absolute; left: -9999px; list-style: none; margin-left: 0; width: 100%; max-height: none; height: auto; background: white; border: solid 1px #cccccc; font-size: 0.875rem; z-index: 99; margin-top: 2px; max-width: 200px; } /* line 69, _dropdown.scss */ .f-dropdown > *:first-child { margin-top: 0; } /* line 70, _dropdown.scss */ .f-dropdown > *:last-child { margin-bottom: 0; } /* line 95, _dropdown.scss */ .f-dropdown:before { content: ""; display: block; width: 0; height: 0; border: inset 6px; border-color: transparent transparent white transparent; border-bottom-style: solid; position: absolute; top: -12px; left: 10px; z-index: 99; } /* line 102, _dropdown.scss */ .f-dropdown:after { content: ""; display: block; width: 0; height: 0; border: inset 7px; border-color: transparent transparent #cccccc transparent; border-bottom-style: solid; position: absolute; top: -14px; left: 9px; z-index: 98; } /* line 110, _dropdown.scss */ .f-dropdown.right:before { left: auto; right: 10px; } /* line 114, _dropdown.scss */ .f-dropdown.right:after { left: auto; right: 9px; } /* line 222, _dropdown.scss */ .f-dropdown.drop-right { position: absolute; left: -9999px; list-style: none; margin-left: 0; width: 100%; max-height: none; height: auto; background: white; border: solid 1px #cccccc; font-size: 0.875rem; z-index: 99; margin-top: 0; margin-left: 2px; max-width: 200px; } /* line 69, _dropdown.scss */ .f-dropdown.drop-right > *:first-child { margin-top: 0; } /* line 70, _dropdown.scss */ .f-dropdown.drop-right > *:last-child { margin-bottom: 0; } /* line 124, _dropdown.scss */ .f-dropdown.drop-right:before { content: ""; display: block; width: 0; height: 0; border: inset 6px; border-color: transparent white transparent transparent; border-right-style: solid; position: absolute; top: 10px; left: -12px; z-index: 99; } /* line 131, _dropdown.scss */ .f-dropdown.drop-right:after { content: ""; display: block; width: 0; height: 0; border: inset 7px; border-color: transparent #cccccc transparent transparent; border-right-style: solid; position: absolute; top: 9px; left: -14px; z-index: 98; } /* line 226, _dropdown.scss */ .f-dropdown.drop-left { position: absolute; left: -9999px; list-style: none; margin-left: 0; width: 100%; max-height: none; height: auto; background: white; border: solid 1px #cccccc; font-size: 0.875rem; z-index: 99; margin-top: 0; margin-left: -2px; max-width: 200px; } /* line 69, _dropdown.scss */ .f-dropdown.drop-left > *:first-child { margin-top: 0; } /* line 70, _dropdown.scss */ .f-dropdown.drop-left > *:last-child { margin-bottom: 0; } /* line 145, _dropdown.scss */ .f-dropdown.drop-left:before { content: ""; display: block; width: 0; height: 0; border: inset 6px; border-color: transparent transparent transparent white; border-left-style: solid; position: absolute; top: 10px; right: -12px; left: auto; z-index: 99; } /* line 153, _dropdown.scss */ .f-dropdown.drop-left:after { content: ""; display: block; width: 0; height: 0; border: inset 7px; border-color: transparent transparent transparent #cccccc; border-left-style: solid; position: absolute; top: 9px; right: -14px; left: auto; z-index: 98; } /* line 230, _dropdown.scss */ .f-dropdown.drop-top { position: absolute; left: -9999px; list-style: none; margin-left: 0; width: 100%; max-height: none; height: auto; background: white; border: solid 1px #cccccc; font-size: 0.875rem; z-index: 99; margin-top: -2px; margin-left: 0; max-width: 200px; } /* line 69, _dropdown.scss */ .f-dropdown.drop-top > *:first-child { margin-top: 0; } /* line 70, _dropdown.scss */ .f-dropdown.drop-top > *:last-child { margin-bottom: 0; } /* line 168, _dropdown.scss */ .f-dropdown.drop-top:before { content: ""; display: block; width: 0; height: 0; border: inset 6px; border-color: white transparent transparent transparent; border-top-style: solid; position: absolute; top: auto; bottom: -12px; left: 10px; right: auto; z-index: 99; } /* line 177, _dropdown.scss */ .f-dropdown.drop-top:after { content: ""; display: block; width: 0; height: 0; border: inset 7px; border-color: #cccccc transparent transparent transparent; border-top-style: solid; position: absolute; top: auto; bottom: -14px; left: 9px; right: auto; z-index: 98; } /* line 235, _dropdown.scss */ .f-dropdown li { font-size: 0.875rem; cursor: pointer; line-height: 1.125rem; margin: 0; } /* line 206, _dropdown.scss */ .f-dropdown li:hover, .f-dropdown li:focus { background: #eeeeee; } /* line 208, _dropdown.scss */ .f-dropdown li a { display: block; padding: 0.5rem; color: #555555; } /* line 238, _dropdown.scss */ .f-dropdown.content { position: absolute; left: -9999px; list-style: none; margin-left: 0; padding: 1.25rem; width: 100%; height: auto; max-height: none; background: white; border: solid 1px #cccccc; font-size: 0.875rem; z-index: 99; max-width: 200px; } /* line 69, _dropdown.scss */ .f-dropdown.content > *:first-child { margin-top: 0; } /* line 70, _dropdown.scss */ .f-dropdown.content > *:last-child { margin-bottom: 0; } /* line 241, _dropdown.scss */ .f-dropdown.tiny { max-width: 200px; } /* line 242, _dropdown.scss */ .f-dropdown.small { max-width: 300px; } /* line 243, _dropdown.scss */ .f-dropdown.medium { max-width: 500px; } /* line 244, _dropdown.scss */ .f-dropdown.large { max-width: 800px; } /* line 122, _dropdown-buttons.scss */ .dropdown.button, button.dropdown { position: relative; padding-right: 3.5625rem; } /* line 62, _dropdown-buttons.scss */ .dropdown.button:after, button.dropdown:after { position: absolute; content: ""; width: 0; height: 0; display: block; border-style: solid; border-color: white transparent transparent transparent; top: 50%; } /* line 97, _dropdown-buttons.scss */ .dropdown.button:after, button.dropdown:after { border-width: 0.375rem; right: 1.40625rem; margin-top: -0.15625rem; } /* line 116, _dropdown-buttons.scss */ .dropdown.button:after, button.dropdown:after { border-color: white transparent transparent transparent; } /* line 123, _dropdown-buttons.scss */ .dropdown.button.tiny, button.dropdown.tiny { padding-right: 2.625rem; } /* line 77, _dropdown-buttons.scss */ .dropdown.button.tiny:before, button.dropdown.tiny:before { border-width: 0.375rem; right: 1.125rem; margin-top: -0.125rem; } /* line 116, _dropdown-buttons.scss */ .dropdown.button.tiny:after, button.dropdown.tiny:after { border-color: white transparent transparent transparent; } /* line 124, _dropdown-buttons.scss */ .dropdown.button.small, button.dropdown.small { padding-right: 3.0625rem; } /* line 87, _dropdown-buttons.scss */ .dropdown.button.small:after, button.dropdown.small:after { border-width: 0.4375rem; right: 1.3125rem; margin-top: -0.15625rem; } /* line 116, _dropdown-buttons.scss */ .dropdown.button.small:after, button.dropdown.small:after { border-color: white transparent transparent transparent; } /* line 125, _dropdown-buttons.scss */ .dropdown.button.large, button.dropdown.large { padding-right: 3.625rem; } /* line 107, _dropdown-buttons.scss */ .dropdown.button.large:after, button.dropdown.large:after { border-width: 0.3125rem; right: 1.71875rem; margin-top: -0.15625rem; } /* line 116, _dropdown-buttons.scss */ .dropdown.button.large:after, button.dropdown.large:after { border-color: white transparent transparent transparent; } /* line 126, _dropdown-buttons.scss */ .dropdown.button.secondary:after, button.dropdown.secondary:after { border-color: #333333 transparent transparent transparent; } /* line 49, _flex-video.scss */ .flex-video { position: relative; padding-top: 1.5625rem; padding-bottom: 67.5%; height: 0; margin-bottom: 1rem; overflow: hidden; } /* line 32, _flex-video.scss */ .flex-video.widescreen { padding-bottom: 56.34%; } /* line 33, _flex-video.scss */ .flex-video.vimeo { padding-top: 0; } /* line 38, _flex-video.scss */ .flex-video iframe, .flex-video object, .flex-video embed, .flex-video video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* Standard Forms */ /* line 328, _forms.scss */ form { margin: 0 0 1rem; } /* Using forms within rows, we need to set some defaults */ /* line 82, _forms.scss */ form .row .row { margin: 0 -0.5rem; } /* line 85, _forms.scss */ form .row .row .column, form .row .row .columns { padding: 0 0.5rem; } /* line 88, _forms.scss */ form .row .row.collapse { margin: 0; } /* line 91, _forms.scss */ form .row .row.collapse .column, form .row .row.collapse .columns { padding: 0; } /* line 92, _forms.scss */ form .row .row.collapse input { border-bottom-right-radius: 0; border-top-right-radius: 0; } /* line 101, _forms.scss */ form .row input.column, form .row input.columns, form .row textarea.column, form .row textarea.columns { padding-left: 0.5rem; } /* Label Styles */ /* line 334, _forms.scss */ label { font-size: 0.875rem; color: #4d4d4d; cursor: pointer; display: block; font-weight: normal; line-height: 1.5; margin-bottom: 0; /* Styles for required inputs */ } /* line 335, _forms.scss */ label.right { float: none !important; text-align: right; } /* line 336, _forms.scss */ label.inline { margin: 0 0 1rem 0; padding: 0.5625rem 0; } /* line 338, _forms.scss */ label small { text-transform: capitalize; color: #676767; } /* line 344, _forms.scss */ select::-ms-expand { display: none; } @-moz-document url-prefix() { /* line 349, _forms.scss */ select { background: #fafafa; } /* line 350, _forms.scss */ select:hover { background: #f3f3f3; } } /* Attach elements to the beginning or end of an input */ /* line 354, _forms.scss */ .prefix, .postfix { display: block; position: relative; z-index: 2; text-align: center; width: 100%; padding-top: 0; padding-bottom: 0; border-style: solid; border-width: 1px; overflow: hidden; font-size: 0.875rem; height: 2.3125rem; line-height: 2.3125rem; } /* Adjust padding, alignment and radius if pre/post element is a button */ /* line 357, _forms.scss */ .postfix.button { padding-left: 0; padding-right: 0; padding-top: 0; padding-bottom: 0; text-align: center; line-height: 2.125rem; border: none; } /* line 358, _forms.scss */ .prefix.button { padding-left: 0; padding-right: 0; padding-top: 0; padding-bottom: 0; text-align: center; line-height: 2.125rem; border: none; } /* line 360, _forms.scss */ .prefix.button.radius { border-radius: 0; border-bottom-left-radius: 3px; border-top-left-radius: 3px; } /* line 361, _forms.scss */ .postfix.button.radius { border-radius: 0; border-bottom-right-radius: 3px; border-top-right-radius: 3px; } /* line 362, _forms.scss */ .prefix.button.round { border-radius: 0; border-bottom-left-radius: 1000px; border-top-left-radius: 1000px; } /* line 363, _forms.scss */ .postfix.button.round { border-radius: 0; border-bottom-right-radius: 1000px; border-top-right-radius: 1000px; } /* Separate prefix and postfix styles when on span or label so buttons keep their own */ /* line 366, _forms.scss */ span.prefix, label.prefix { background: #f2f2f2; border-right: none; color: #333333; border-color: #cccccc; } /* line 367, _forms.scss */ span.prefix.radius, label.prefix.radius { border-radius: 0; border-bottom-left-radius: 3px; border-top-left-radius: 3px; } /* line 369, _forms.scss */ span.postfix, label.postfix { background: #f2f2f2; border-left: none; color: #333333; border-color: #cccccc; } /* line 370, _forms.scss */ span.postfix.radius, label.postfix.radius { border-radius: 0; border-bottom-right-radius: 3px; border-top-right-radius: 3px; } /* We use this to get basic styling on all basic form elements */ /* line 387, _forms.scss */ input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea { -webkit-appearance: none; background-color: white; font-family: inherit; border: 1px solid #cccccc; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); color: rgba(0, 0, 0, 0.75); display: block; font-size: 0.875rem; margin: 0 0 1rem 0; padding: 0.5rem; height: 2.3125rem; width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; transition: box-shadow 0.45s, border-color 0.45s ease-in-out; } /* line 176, _global.scss */ input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, textarea:focus { box-shadow: 0 0 5px #999999; border-color: #999999; } /* line 124, _forms.scss */ input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, textarea:focus { background: #fafafa; border-color: #999999; outline: none; } /* line 131, _forms.scss */ input[type="text"][disabled], fieldset[disabled] input[type="text"], input[type="password"][disabled], fieldset[disabled] input[type="password"], input[type="date"][disabled], fieldset[disabled] input[type="date"], input[type="datetime"][disabled], fieldset[disabled] input[type="datetime"], input[type="datetime-local"][disabled], fieldset[disabled] input[type="datetime-local"], input[type="month"][disabled], fieldset[disabled] input[type="month"], input[type="week"][disabled], fieldset[disabled] input[type="week"], input[type="email"][disabled], fieldset[disabled] input[type="email"], input[type="number"][disabled], fieldset[disabled] input[type="number"], input[type="search"][disabled], fieldset[disabled] input[type="search"], input[type="tel"][disabled], fieldset[disabled] input[type="tel"], input[type="time"][disabled], fieldset[disabled] input[type="time"], input[type="url"][disabled], fieldset[disabled] input[type="url"], textarea[disabled], fieldset[disabled] textarea { background-color: #dddddd; } /* line 393, _forms.scss */ input[type="text"].radius, input[type="password"].radius, input[type="date"].radius, input[type="datetime"].radius, input[type="datetime-local"].radius, input[type="month"].radius, input[type="week"].radius, input[type="email"].radius, input[type="number"].radius, input[type="search"].radius, input[type="tel"].radius, input[type="time"].radius, input[type="url"].radius, textarea.radius { border-radius: 3px; } /* line 398, _forms.scss */ input[type="submit"] { -webkit-appearance: none; } /* Respect enforced amount of rows for textarea */ /* line 403, _forms.scss */ textarea[rows] { height: auto; } /* Add height value for select elements to match text input height */ /* line 408, _forms.scss */ select { -webkit-appearance: none !important; background-color: #fafafa; background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iM3B4IiB2aWV3Qm94PSIwIDAgNiAzIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA2IDMiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5Z29uIHBvaW50cz0iNS45OTIsMCAyLjk5MiwzIC0wLjAwOCwwICIvPjwvc3ZnPg=="); background-repeat: no-repeat; background-position: 97% center; border: 1px solid #cccccc; padding: 0.5rem; font-size: 0.875rem; color: rgba(0, 0, 0, 0.75); line-height: normal; border-radius: 0; height: 2.3125rem; } /* line 318, _forms.scss */ select.radius { border-radius: 3px; } /* line 319, _forms.scss */ select:hover { background-color: #f3f3f3; border-color: #999999; } /* Adjust margin for form elements below */ /* line 417, _forms.scss */ input[type="file"], input[type="checkbox"], input[type="radio"], select { margin: 0 0 1rem 0; } /* line 422, _forms.scss */ input[type="checkbox"] + label, input[type="radio"] + label { display: inline-block; margin-left: 0.5rem; margin-right: 1rem; margin-bottom: 0; vertical-align: baseline; } /* Normalize file input width */ /* line 431, _forms.scss */ input[type="file"] { width: 100%; } /* We add basic fieldset styling */ /* line 436, _forms.scss */ fieldset { border: 1px solid #dddddd; padding: 1.25rem; margin: 1.125rem 0; } /* line 255, _forms.scss */ fieldset legend { font-weight: bold; background: white; padding: 0 0.1875rem; margin: 0; margin-left: -0.1875rem; } /* Error Handling */ /* line 443, _forms.scss */ [data-abide] .error small.error, [data-abide] span.error, [data-abide] small.error { display: block; padding: 0.375rem 0.5625rem 0.5625rem; margin-top: -1px; margin-bottom: 1rem; font-size: 0.75rem; font-weight: normal; font-style: italic; background: #f04124; color: white; } /* line 446, _forms.scss */ [data-abide] span.error, [data-abide] small.error { display: none; } /* line 449, _forms.scss */ span.error, small.error { display: block; padding: 0.375rem 0.5625rem 0.5625rem; margin-top: -1px; margin-bottom: 1rem; font-size: 0.75rem; font-weight: normal; font-style: italic; background: #f04124; color: white; } /* line 456, _forms.scss */ .error input, .error textarea, .error select { margin-bottom: 0; } /* line 461, _forms.scss */ .error input[type="checkbox"], .error input[type="radio"] { margin-bottom: 1rem; } /* line 466, _forms.scss */ .error label, .error label.error { color: #f04124; } /* line 470, _forms.scss */ .error small.error { display: block; padding: 0.375rem 0.5625rem 0.5625rem; margin-top: -1px; margin-bottom: 1rem; font-size: 0.75rem; font-weight: normal; font-style: italic; background: #f04124; color: white; } /* line 475, _forms.scss */ .error > label > small { color: #676767; background: transparent; padding: 0; text-transform: capitalize; font-style: normal; font-size: 60%; margin: 0; display: inline; } /* line 487, _forms.scss */ .error span.error-message { display: block; } /* line 493, _forms.scss */ input.error, textarea.error { margin-bottom: 0; } /* line 496, _forms.scss */ label.error { color: #f04124; } /* line 53, _inline-lists.scss */ .inline-list { margin: 0 auto 1.0625rem auto; margin-left: -1.375rem; margin-right: 0; padding: 0; list-style: none; overflow: hidden; } /* line 42, _inline-lists.scss */ .inline-list > li { list-style: none; float: left; margin-left: 1.375rem; display: block; } /* line 47, _inline-lists.scss */ .inline-list > li > * { display: block; } /* Foundation Joyride */ /* line 48, _joyride.scss */ .joyride-list { display: none; } /* Default styles for the container */ /* line 51, _joyride.scss */ .joyride-tip-guide { display: none; position: absolute; background: #333333; color: white; z-index: 101; top: 0; left: 2.5%; font-family: inherit; font-weight: normal; width: 95%; } /* line 64, _joyride.scss */ .lt-ie9 .joyride-tip-guide { max-width: 800px; left: 50%; margin-left: -400px; } /* line 70, _joyride.scss */ .joyride-content-wrapper { width: 100%; padding: 1.125rem 1.25rem 1.5rem; } /* line 75, _joyride.scss */ .joyride-content-wrapper .button { margin-bottom: 0 !important; } /* Add a little css triangle pip, older browser just miss out on the fanciness of it */ /* line 80, _joyride.scss */ .joyride-tip-guide .joyride-nub { display: block; position: absolute; left: 22px; width: 0; height: 0; border: 10px solid #333333; } /* line 88, _joyride.scss */ .joyride-tip-guide .joyride-nub.top { border-top-style: solid; border-color: #333333; border-top-color: transparent !important; border-left-color: transparent !important; border-right-color: transparent !important; top: -20px; } /* line 96, _joyride.scss */ .joyride-tip-guide .joyride-nub.bottom { border-bottom-style: solid; border-color: #333333 !important; border-bottom-color: transparent !important; border-left-color: transparent !important; border-right-color: transparent !important; bottom: -20px; } /* line 105, _joyride.scss */ .joyride-tip-guide .joyride-nub.right { right: -20px; } /* line 106, _joyride.scss */ .joyride-tip-guide .joyride-nub.left { left: -20px; } /* Typography */ /* line 116, _joyride.scss */ .joyride-tip-guide h1, .joyride-tip-guide h2, .joyride-tip-guide h3, .joyride-tip-guide h4, .joyride-tip-guide h5, .joyride-tip-guide h6 { line-height: 1.25; margin: 0; font-weight: bold; color: white; } /* line 122, _joyride.scss */ .joyride-tip-guide p { margin: 0 0 1.125rem 0; font-size: 0.875rem; line-height: 1.3; } /* line 128, _joyride.scss */ .joyride-timer-indicator-wrap { width: 50px; height: 3px; border: solid 1px #555555; position: absolute; right: 1.0625rem; bottom: 1rem; } /* line 136, _joyride.scss */ .joyride-timer-indicator { display: block; width: 0; height: inherit; background: #666666; } /* line 143, _joyride.scss */ .joyride-close-tip { position: absolute; right: 12px; top: 10px; color: #777777 !important; text-decoration: none; font-size: 24px; font-weight: normal; line-height: .5 !important; } /* line 154, _joyride.scss */ .joyride-close-tip:hover, .joyride-close-tip:focus { color: #eee !important; } /* line 157, _joyride.scss */ .joyride-modal-bg { position: fixed; height: 100%; width: 100%; background: transparent; background: rgba(0, 0, 0, 0.5); z-index: 100; display: none; top: 0; left: 0; cursor: pointer; } /* line 170, _joyride.scss */ .joyride-expose-wrapper { background-color: #ffffff; position: absolute; border-radius: 3px; z-index: 102; box-shadow: 0 0 15px #ffffff; } /* line 178, _joyride.scss */ .joyride-expose-cover { background: transparent; border-radius: 3px; position: absolute; z-index: 9999; top: 0; left: 0; } /* Styles for screens that are at least 768px; */ @media only screen and (min-width: 40.063em) { /* line 190, _joyride.scss */ .joyride-tip-guide { width: 300px; left: inherit; } /* line 192, _joyride.scss */ .joyride-tip-guide .joyride-nub.bottom { border-color: #333333 !important; border-bottom-color: transparent !important; border-left-color: transparent !important; border-right-color: transparent !important; bottom: -20px; } /* line 199, _joyride.scss */ .joyride-tip-guide .joyride-nub.right { border-color: #333333 !important; border-top-color: transparent !important; border-right-color: transparent !important; border-bottom-color: transparent !important; top: 22px; left: auto; right: -20px; } /* line 207, _joyride.scss */ .joyride-tip-guide .joyride-nub.left { border-color: #333333 !important; border-top-color: transparent !important; border-left-color: transparent !important; border-bottom-color: transparent !important; top: 22px; left: -20px; right: auto; } } /* line 56, _keystrokes.scss */ .keystroke, kbd { background-color: #ededed; border-color: #dddddd; color: #222222; border-style: solid; border-width: 1px; margin: 0; font-family: "Consolas", "Menlo", "Courier", monospace; font-size: inherit; padding: 0.125rem 0.25rem 0; border-radius: 3px; } /* line 91, _labels.scss */ .label { font-weight: normal; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; text-align: center; text-decoration: none; line-height: 1; white-space: nowrap; display: inline-block; position: relative; margin-bottom: inherit; padding: 0.25rem 0.5rem 0.375rem; font-size: 0.6875rem; background-color: #008cba; color: white; } /* line 96, _labels.scss */ .label.radius { border-radius: 3px; } /* line 97, _labels.scss */ .label.round { border-radius: 1000px; } /* line 99, _labels.scss */ .label.alert { background-color: #f04124; color: white; } /* line 100, _labels.scss */ .label.success { background-color: #43ac6a; color: white; } /* line 101, _labels.scss */ .label.secondary { background-color: #e7e7e7; color: #333333; } /* line 18, _magellan.scss */ [data-magellan-expedition], [data-magellan-expedition-clone] { background: white; z-index: 50; min-width: 100%; padding: 10px; } /* line 24, _magellan.scss */ [data-magellan-expedition] .sub-nav, [data-magellan-expedition-clone] .sub-nav { margin-bottom: 0; } /* line 26, _magellan.scss */ [data-magellan-expedition] .sub-nav dd, [data-magellan-expedition-clone] .sub-nav dd { margin-bottom: 0; } /* line 27, _magellan.scss */ [data-magellan-expedition] .sub-nav a, [data-magellan-expedition-clone] .sub-nav a { line-height: 1.8em; } @keyframes rotate { /* line 78, _orbit.scss */ from { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } /* line 79, _orbit.scss */ to { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } /* Orbit Graceful Loading */ /* line 83, _orbit.scss */ .slideshow-wrapper { position: relative; } /* line 86, _orbit.scss */ .slideshow-wrapper ul { list-style-type: none; margin: 0; } /* line 93, _orbit.scss */ .slideshow-wrapper ul li, .slideshow-wrapper ul li .orbit-caption { display: none; } /* line 96, _orbit.scss */ .slideshow-wrapper ul li:first-child { display: block; } /* line 99, _orbit.scss */ .slideshow-wrapper .orbit-container { background-color: transparent; } /* line 102, _orbit.scss */ .slideshow-wrapper .orbit-container li { display: block; } /* line 104, _orbit.scss */ .slideshow-wrapper .orbit-container li .orbit-caption { display: block; } /* line 109, _orbit.scss */ .slideshow-wrapper .preloader { display: block; width: 40px; height: 40px; position: absolute; top: 50%; left: 50%; margin-top: -20px; margin-left: -20px; border: solid 3px; border-color: #555 #fff; border-radius: 1000px; animation-name: rotate; animation-duration: 1.5s; animation-iteration-count: infinite; animation-timing-function: linear; } /* line 128, _orbit.scss */ .orbit-container { overflow: hidden; width: 100%; position: relative; background: none; } /* line 134, _orbit.scss */ .orbit-container .orbit-slides-container { list-style: none; margin: 0; padding: 0; position: relative; -webkit-transform: translateZ(0); } /* line 143, _orbit.scss */ .orbit-container .orbit-slides-container img { display: block; max-width: 100%; } /* line 145, _orbit.scss */ .orbit-container .orbit-slides-container.fade > li { opacity: 0; transition: opacity 500ms ease-in-out; -ms-transform: translate(0, 0); -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } /* line 149, _orbit.scss */ .orbit-container .orbit-slides-container.fade > li.animate-in { opacity: 1; z-index: 20; transition: opacity 500ms ease-in-out; } /* line 154, _orbit.scss */ .orbit-container .orbit-slides-container.fade > li.animate-out { z-index: 10; transition: opacity 500ms ease-in-out; } /* line 160, _orbit.scss */ .orbit-container .orbit-slides-container.swipe-next > li { -ms-transform: translate(100%, 0); -webkit-transform: translate3d(100%, 0, 0); -moz-transform: translate3d(100%, 0, 0); -o-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } /* line 162, _orbit.scss */ .orbit-container .orbit-slides-container.swipe-next > li.animate-in { -ms-transform: translate(0, 0); -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); transition-duration: 500ms; } /* line 166, _orbit.scss */ .orbit-container .orbit-slides-container.swipe-next > li.animate-out { -ms-transform: translate(-100%, 0); -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); -o-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); transition-duration: 500ms; } /* line 172, _orbit.scss */ .orbit-container .orbit-slides-container.swipe-prev > li { -ms-transform: translate(-100%, 0); -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); -o-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } /* line 174, _orbit.scss */ .orbit-container .orbit-slides-container.swipe-prev > li.animate-in { -ms-transform: translate(0, 0); -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); transition-duration: 500ms; } /* line 178, _orbit.scss */ .orbit-container .orbit-slides-container.swipe-prev > li.animate-out { -ms-transform: translate(100%, 0); -webkit-transform: translate3d(100%, 0, 0); -moz-transform: translate3d(100%, 0, 0); -o-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); transition-duration: 500ms; } /* line 184, _orbit.scss */ .orbit-container .orbit-slides-container > li { position: absolute; top: 0; left: 0; width: 100%; -ms-transform: translate(100%, 0); -webkit-transform: translate3d(100%, 0, 0); -moz-transform: translate3d(100%, 0, 0); -o-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } /* line 191, _orbit.scss */ .orbit-container .orbit-slides-container > li > a { display: block; } /* line 193, _orbit.scss */ .orbit-container .orbit-slides-container > li.active { opacity: 1; position: relative; top: 0; left: 0; -ms-transform: translate(0, 0); -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } /* line 202, _orbit.scss */ .orbit-container .orbit-slides-container > li .orbit-caption { position: absolute; bottom: 0; background-color: rgba(51, 51, 51, 0.8); color: white; width: 100%; padding: 0.625rem 0.875rem; font-size: 0.875rem; } /* line 219, _orbit.scss */ .orbit-container .orbit-slide-number { position: absolute; top: 10px; left: 10px; font-size: 12px; color: white; background: rgba(0, 0, 0, 0); z-index: 10; } /* line 224, _orbit.scss */ .orbit-container .orbit-slide-number span { font-weight: bold; padding: 0.3125rem; } /* line 230, _orbit.scss */ .orbit-container .orbit-timer { position: absolute; top: 12px; right: 10px; height: 6px; width: 100px; z-index: 10; } /* line 237, _orbit.scss */ .orbit-container .orbit-timer .orbit-progress { height: 3px; background-color: rgba(255, 255, 255, 0.3); display: block; width: 0%; position: relative; right: 20px; top: 5px; } /* line 252, _orbit.scss */ .orbit-container .orbit-timer > span { display: none; position: absolute; top: 0px; right: 0; width: 11px; height: 14px; border: solid 4px #fff; border-top: none; border-bottom: none; } /* line 266, _orbit.scss */ .orbit-container .orbit-timer.paused > span { right: -4px; top: 0px; width: 11px; height: 14px; border: inset 8px; border-left-style: solid; -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); border-color: transparent #fff transparent transparent; } /* line 275, _orbit.scss */ .orbit-container .orbit-timer.paused > span.dark { border-color: transparent #333 transparent transparent; } /* line 284, _orbit.scss */ .orbit-container:hover .orbit-timer > span { display: block; } /* line 288, _orbit.scss */ .orbit-container .orbit-prev, .orbit-container .orbit-next { position: absolute; top: 45%; margin-top: -25px; width: 36px; height: 60px; line-height: 50px; color: white; background-color: transparent; text-indent: -9999px !important; z-index: 10; } /* line 300, _orbit.scss */ .orbit-container .orbit-prev:hover, .orbit-container .orbit-next:hover { background-color: rgba(0, 0, 0, 0.3); } /* line 304, _orbit.scss */ .orbit-container .orbit-prev > span, .orbit-container .orbit-next > span { position: absolute; top: 50%; margin-top: -10px; display: block; width: 0; height: 0; border: inset 10px; } /* line 314, _orbit.scss */ .orbit-container .orbit-prev { left: 0; } /* line 315, _orbit.scss */ .orbit-container .orbit-prev > span { border-right-style: solid; border-color: transparent; border-right-color: white; } /* line 320, _orbit.scss */ .orbit-container .orbit-prev:hover > span { border-right-color: white; } /* line 324, _orbit.scss */ .orbit-container .orbit-next { right: 0; } /* line 325, _orbit.scss */ .orbit-container .orbit-next > span { border-color: transparent; border-left-style: solid; border-left-color: white; left: 50%; margin-left: -4px; } /* line 332, _orbit.scss */ .orbit-container .orbit-next:hover > span { border-left-color: white; } /* line 337, _orbit.scss */ .orbit-container .orbit-bullets-container { text-align: center; } /* line 338, _orbit.scss */ .orbit-container .orbit-bullets { margin: 0 auto 30px auto; overflow: hidden; position: relative; top: 10px; float: none; text-align: center; display: block; } /* line 347, _orbit.scss */ .orbit-container .orbit-bullets li { display: inline-block; width: 0.5625rem; height: 0.5625rem; background: #cccccc; float: none; margin-right: 6px; border-radius: 1000px; } /* line 357, _orbit.scss */ .orbit-container .orbit-bullets li.active { background: #999999; } /* line 361, _orbit.scss */ .orbit-container .orbit-bullets li:last-child { margin-right: 0; } /* line 370, _orbit.scss */ .touch .orbit-container .orbit-prev, .touch .orbit-container .orbit-next { display: none; } /* line 373, _orbit.scss */ .touch .orbit-bullets { display: none; } @media only screen and (min-width: 40.063em) { /* line 382, _orbit.scss */ .touch .orbit-container .orbit-prev, .touch .orbit-container .orbit-next { display: inherit; } /* line 385, _orbit.scss */ .touch .orbit-bullets { display: block; } } @media only screen and (max-width: 40em) { /* line 393, _orbit.scss */ .orbit-stack-on-small .orbit-slides-container { height: auto !important; } /* line 394, _orbit.scss */ .orbit-stack-on-small .orbit-slides-container > * { position: relative !important; margin-left: 0% !important; opacity: 1 !important; -webkit-transform: none !important; -moz-transform: none !important; -ms-transform: none !important; -o-transform: none !important; transform: none !important; transition: none !important; } /* line 407, _orbit.scss */ .orbit-stack-on-small .orbit-timer { display: none; } /* line 410, _orbit.scss */ .orbit-stack-on-small .orbit-next, .orbit-stack-on-small .orbit-prev { display: none; } /* line 413, _orbit.scss */ .orbit-stack-on-small .orbit-bullets { display: none; } /* line 416, _orbit.scss */ .orbit-stack-on-small .orbit-slide-number { display: none; } } /* line 137, _pagination.scss */ ul.pagination { display: block; min-height: 1.5rem; margin-left: -0.3125rem; } /* line 100, _pagination.scss */ ul.pagination li { height: 1.5rem; color: #222222; font-size: 0.875rem; margin-left: 0.3125rem; } /* line 106, _pagination.scss */ ul.pagination li a { display: block; padding: 0.0625rem 0.625rem 0.0625rem; color: #999999; border-radius: 3px; } /* line 114, _pagination.scss */ ul.pagination li:hover a, ul.pagination li a:focus { background: #e6e6e6; } /* line 51, _pagination.scss */ ul.pagination li.unavailable a { cursor: default; color: #999999; } /* line 56, _pagination.scss */ ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus { background: transparent; } /* line 64, _pagination.scss */ ul.pagination li.current a { background: #008cba; color: white; font-weight: bold; cursor: default; } /* line 71, _pagination.scss */ ul.pagination li.current a:hover, ul.pagination li.current a:focus { background: #008cba; } /* line 124, _pagination.scss */ ul.pagination li { float: left; display: block; } /* Pagination centred wrapper */ /* line 142, _pagination.scss */ .pagination-centered { text-align: center; } /* line 124, _pagination.scss */ .pagination-centered ul.pagination li { float: none; display: inline-block; } /* Panels */ /* line 74, _panels.scss */ .panel { border-style: solid; border-width: 1px; border-color: #d8d8d8; margin-bottom: 1.25rem; padding: 1.25rem; background: #f2f2f2; } /* line 52, _panels.scss */ .panel > :first-child { margin-top: 0; } /* line 53, _panels.scss */ .panel > :last-child { margin-bottom: 0; } /* line 58, _panels.scss */ .panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p { color: #333333; } /* line 62, _panels.scss */ .panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 { line-height: 1; margin-bottom: 0.625rem; } /* line 64, _panels.scss */ .panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader { line-height: 1.4; } /* line 76, _panels.scss */ .panel.callout { border-style: solid; border-width: 1px; border-color: #b6edff; margin-bottom: 1.25rem; padding: 1.25rem; background: #ecfaff; } /* line 52, _panels.scss */ .panel.callout > :first-child { margin-top: 0; } /* line 53, _panels.scss */ .panel.callout > :last-child { margin-bottom: 0; } /* line 58, _panels.scss */ .panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6, .panel.callout p { color: #333333; } /* line 62, _panels.scss */ .panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 { line-height: 1; margin-bottom: 0.625rem; } /* line 64, _panels.scss */ .panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader { line-height: 1.4; } /* line 78, _panels.scss */ .panel.callout a:not(.button) { color: #008cba; } /* line 83, _panels.scss */ .panel.radius { border-radius: 3px; } /* Pricing Tables */ /* line 139, _pricing-tables.scss */ .pricing-table { border: solid 1px #dddddd; margin-left: 0; margin-bottom: 1.25rem; } /* line 68, _pricing-tables.scss */ .pricing-table * { list-style: none; line-height: 1; } /* line 142, _pricing-tables.scss */ .pricing-table .title { background-color: #333333; padding: 0.9375rem 1.25rem; text-align: center; color: #eeeeee; font-weight: normal; font-size: 1rem; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; } /* line 143, _pricing-tables.scss */ .pricing-table .price { background-color: #f6f6f6; padding: 0.9375rem 1.25rem; text-align: center; color: #333333; font-weight: normal; font-size: 2rem; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; } /* line 144, _pricing-tables.scss */ .pricing-table .description { background-color: white; padding: 0.9375rem; text-align: center; color: #777777; font-size: 0.75rem; font-weight: normal; line-height: 1.4; border-bottom: dotted 1px #dddddd; } /* line 145, _pricing-tables.scss */ .pricing-table .bullet-item { background-color: white; padding: 0.9375rem; text-align: center; color: #333333; font-size: 0.875rem; font-weight: normal; border-bottom: dotted 1px #dddddd; } /* line 146, _pricing-tables.scss */ .pricing-table .cta-button { background-color: white; text-align: center; padding: 1.25rem 1.25rem 0; } /* Progress Bar */ /* line 57, _progress-bars.scss */ .progress { background-color: #f6f6f6; height: 1.5625rem; border: 1px solid white; padding: 0.125rem; margin-bottom: 0.625rem; } /* line 61, _progress-bars.scss */ .progress .meter { background: #008cba; height: 100%; display: block; } /* line 64, _progress-bars.scss */ .progress.secondary .meter { background: #e7e7e7; height: 100%; display: block; } /* line 65, _progress-bars.scss */ .progress.success .meter { background: #43ac6a; height: 100%; display: block; } /* line 66, _progress-bars.scss */ .progress.alert .meter { background: #f04124; height: 100%; display: block; } /* line 68, _progress-bars.scss */ .progress.radius { border-radius: 3px; } /* line 69, _progress-bars.scss */ .progress.radius .meter { border-radius: 2px; } /* line 72, _progress-bars.scss */ .progress.round { border-radius: 1000px; } /* line 73, _progress-bars.scss */ .progress.round .meter { border-radius: 999px; } /* line 111, _range-slider.scss */ .range-slider { display: block; position: relative; width: 100%; height: 1rem; border: 1px solid #dddddd; margin: 1.25rem 0; -ms-touch-action: none; touch-action: none; background: #fafafa; } /* line 114, _range-slider.scss */ .range-slider.vertical-range { display: block; position: relative; width: 100%; height: 1rem; border: 1px solid #dddddd; margin: 1.25rem 0; -ms-touch-action: none; touch-action: none; display: inline-block; width: 1rem; height: 12.5rem; } /* line 116, _range-slider.scss */ .range-slider.vertical-range .range-slider-handle { margin-top: 0; margin-left: -0.5rem; position: absolute; bottom: -10.5rem; } /* line 122, _range-slider.scss */ .range-slider.vertical-range .range-slider-active-segment { width: 0.875rem; height: auto; bottom: 0; } /* line 128, _range-slider.scss */ .range-slider.radius { background: #fafafa; border-radius: 3px; } /* line 130, _range-slider.scss */ .range-slider.radius .range-slider-handle { background: #008cba; border-radius: 3px; } /* line 99, _range-slider.scss */ .range-slider.radius .range-slider-handle:hover { background: #007ba4; } /* line 132, _range-slider.scss */ .range-slider.round { background: #fafafa; border-radius: 1000px; } /* line 134, _range-slider.scss */ .range-slider.round .range-slider-handle { background: #008cba; border-radius: 1000px; } /* line 99, _range-slider.scss */ .range-slider.round .range-slider-handle:hover { background: #007ba4; } /* line 137, _range-slider.scss */ .range-slider-active-segment { display: inline-block; position: absolute; height: 0.875rem; background: #e5e5e5; } /* line 143, _range-slider.scss */ .range-slider-handle { display: inline-block; position: absolute; z-index: 1; top: -0.3125rem; width: 2rem; height: 1.375rem; border: 1px solid none; cursor: pointer; background: #008cba; } /* line 99, _range-slider.scss */ .range-slider-handle:hover { background: #007ba4; } /* line 162, _reveal.scss */ .reveal-modal-bg { position: fixed; height: 100%; width: 100%; background: black; background: rgba(0, 0, 0, 0.45); z-index: 99; display: none; top: 0; left: 0; } /* line 164, _reveal.scss */ dialog, .reveal-modal { visibility: hidden; display: none; position: absolute; z-index: 100; width: 100vw; top: 0; left: 0; background-color: white; padding: 1.25rem; border: solid 1px #666666; box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); } @media only screen and (max-width: 40em) { /* line 164, _reveal.scss */ dialog, .reveal-modal { min-height: 100vh; } } @media only screen and (min-width: 40.063em) { /* line 164, _reveal.scss */ dialog, .reveal-modal { left: 50%; } } /* line 86, _reveal.scss */ dialog .column, dialog .columns, .reveal-modal .column, .reveal-modal .columns { min-width: 0; } /* line 89, _reveal.scss */ dialog > :first-child, .reveal-modal > :first-child { margin-top: 0; } /* line 90, _reveal.scss */ dialog > :last-child, .reveal-modal > :last-child { margin-bottom: 0; } @media only screen and (min-width: 40.063em) { /* line 164, _reveal.scss */ dialog, .reveal-modal { margin-left: -40%; width: 80%; } } @media only screen and (min-width: 40.063em) { /* line 164, _reveal.scss */ dialog, .reveal-modal { top: 6.25rem; } } /* line 174, _reveal.scss */ dialog .close-reveal-modal, .reveal-modal .close-reveal-modal { font-size: 2.5rem; line-height: 1; position: absolute; top: 0.5rem; right: 0.6875rem; color: #aaaaaa; font-weight: bold; cursor: pointer; } /* line 177, _reveal.scss */ dialog[open] { display: block; visibility: visible; } @media only screen and (min-width: 40.063em) { /* line 184, _reveal.scss */ dialog, .reveal-modal { padding: 1.875rem; } /* line 187, _reveal.scss */ dialog.radius, .reveal-modal.radius { border-radius: 3px; } /* line 188, _reveal.scss */ dialog.round, .reveal-modal.round { border-radius: 1000px; } /* line 190, _reveal.scss */ dialog.collapse, .reveal-modal.collapse { padding: 0; } /* line 200, _reveal.scss */ dialog.full, .reveal-modal.full { top: 0; left: 0; height: 100vh; min-height: 100vh; margin-left: 0 !important; } } @media only screen and (min-width: 40.063em) and (min-width: 40.063em) { /* line 192, _reveal.scss */ dialog.tiny, .reveal-modal.tiny { margin-left: -15%; width: 30%; } } @media only screen and (min-width: 40.063em) and (min-width: 40.063em) { /* line 193, _reveal.scss */ dialog.small, .reveal-modal.small { margin-left: -20%; width: 40%; } } @media only screen and (min-width: 40.063em) and (min-width: 40.063em) { /* line 194, _reveal.scss */ dialog.medium, .reveal-modal.medium { margin-left: -30%; width: 60%; } } @media only screen and (min-width: 40.063em) and (min-width: 40.063em) { /* line 195, _reveal.scss */ dialog.large, .reveal-modal.large { margin-left: -35%; width: 70%; } } @media only screen and (min-width: 40.063em) and (min-width: 40.063em) { /* line 196, _reveal.scss */ dialog.xlarge, .reveal-modal.xlarge { margin-left: -47.5%; width: 95%; } } @media only screen and (min-width: 40.063em) and (min-width: 40.063em) { /* line 200, _reveal.scss */ dialog.full, .reveal-modal.full { margin-left: -50vw; width: 100vw; } } @media print { /* line 213, _reveal.scss */ dialog, .reveal-modal { background: #fff !important; } } /* line 91, _side-nav.scss */ .side-nav { display: block; margin: 0; padding: 0.875rem 0; list-style-type: none; list-style-position: inside; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; } /* line 62, _side-nav.scss */ .side-nav li { margin: 0 0 0.4375rem 0; font-size: 0.875rem; } /* line 66, _side-nav.scss */ .side-nav li a:not(.button) { display: block; color: #008cba; } /* line 70, _side-nav.scss */ .side-nav li a:not(.button):hover, .side-nav li a:not(.button):focus { color: #1cc7ff; } /* line 73, _side-nav.scss */ .side-nav li.active > a:first-child:not(.button) { color: #1cc7ff; font-weight: normal; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; } /* line 79, _side-nav.scss */ .side-nav li.divider { border-top: 1px solid; height: 0; padding: 0; list-style: none; border-top-color: white; } /* line 173, _split-buttons.scss */ .split.button { position: relative; padding-right: 5.0625rem; } /* line 76, _split-buttons.scss */ .split.button span { display: block; height: 100%; position: absolute; right: 0; top: 0; border-left: solid 1px; } /* line 85, _split-buttons.scss */ .split.button span:after { position: absolute; content: ""; width: 0; height: 0; display: block; border-style: inset; top: 50%; left: 50%; } /* line 97, _split-buttons.scss */ .split.button span:active { background-color: rgba(0, 0, 0, 0.1); } /* line 103, _split-buttons.scss */ .split.button span { border-left-color: rgba(255, 255, 255, 0.5); } /* line 140, _split-buttons.scss */ .split.button span { width: 3.09375rem; } /* line 141, _split-buttons.scss */ .split.button span:after { border-top-style: solid; border-width: 0.375rem; top: 48%; margin-left: -0.375rem; } /* line 166, _split-buttons.scss */ .split.button span:after { border-color: white transparent transparent transparent; } /* line 103, _split-buttons.scss */ .split.button.secondary span { border-left-color: rgba(255, 255, 255, 0.5); } /* line 166, _split-buttons.scss */ .split.button.secondary span:after { border-color: white transparent transparent transparent; } /* line 103, _split-buttons.scss */ .split.button.alert span { border-left-color: rgba(255, 255, 255, 0.5); } /* line 103, _split-buttons.scss */ .split.button.success span { border-left-color: rgba(255, 255, 255, 0.5); } /* line 179, _split-buttons.scss */ .split.button.tiny { padding-right: 3.75rem; } /* line 112, _split-buttons.scss */ .split.button.tiny span { width: 2.25rem; } /* line 113, _split-buttons.scss */ .split.button.tiny span:after { border-top-style: solid; border-width: 0.375rem; top: 48%; margin-left: -0.375rem; } /* line 180, _split-buttons.scss */ .split.button.small { padding-right: 4.375rem; } /* line 126, _split-buttons.scss */ .split.button.small span { width: 2.625rem; } /* line 127, _split-buttons.scss */ .split.button.small span:after { border-top-style: solid; border-width: 0.4375rem; top: 48%; margin-left: -0.375rem; } /* line 181, _split-buttons.scss */ .split.button.large { padding-right: 5.5rem; } /* line 154, _split-buttons.scss */ .split.button.large span { width: 3.4375rem; } /* line 155, _split-buttons.scss */ .split.button.large span:after { border-top-style: solid; border-width: 0.3125rem; top: 48%; margin-left: -0.375rem; } /* line 182, _split-buttons.scss */ .split.button.expand { padding-left: 2rem; } /* line 166, _split-buttons.scss */ .split.button.secondary span:after { border-color: #333333 transparent transparent transparent; } /* line 186, _split-buttons.scss */ .split.button.radius span { border-bottom-right-radius: 3px; border-top-right-radius: 3px; } /* line 187, _split-buttons.scss */ .split.button.round span { border-bottom-right-radius: 1000px; border-top-right-radius: 1000px; } /* line 123, _sub-nav.scss */ .sub-nav { display: block; width: auto; overflow: hidden; margin: -0.25rem 0 1.125rem; padding-top: 0.25rem; margin-right: 0; margin-left: -0.75rem; } /* line 69, _sub-nav.scss */ .sub-nav dt { text-transform: uppercase; } /* line 75, _sub-nav.scss */ .sub-nav dt, .sub-nav dd, .sub-nav li { float: left; display: inline; margin-left: 1rem; margin-bottom: 0.625rem; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-size: 0.875rem; color: #999999; } /* line 85, _sub-nav.scss */ .sub-nav dt a, .sub-nav dd a, .sub-nav li a { text-decoration: none; color: #999999; padding: 0.1875rem 1rem; } /* line 89, _sub-nav.scss */ .sub-nav dt a:hover, .sub-nav dd a:hover, .sub-nav li a:hover { color: #737373; } /* line 94, _sub-nav.scss */ .sub-nav dt.active a, .sub-nav dd.active a, .sub-nav li.active a { border-radius: 3px; font-weight: normal; background: #008cba; padding: 0.1875rem 1rem; cursor: default; color: white; } /* line 101, _sub-nav.scss */ .sub-nav dt.active a:hover, .sub-nav dd.active a:hover, .sub-nav li.active a:hover { background: #0078a0; } /* line 269, _switch.scss */ div.switch { position: relative; padding: 0; display: block; overflow: hidden; border-style: solid; border-width: 1px; margin-bottom: 1.25rem; height: 2.25rem; background: white; border-color: #cccccc; } /* line 77, _switch.scss */ div.switch label { position: relative; left: 0; z-index: 2; float: left; width: 50%; height: 100%; margin: 0; font-weight: bold; text-align: left; transition: all 0.1s ease-out; } /* line 94, _switch.scss */ div.switch input { position: absolute; z-index: 3; opacity: 0; width: 100%; height: 100%; -moz-appearance: none; } /* line 104, _switch.scss */ div.switch input:hover, div.switch input:focus { cursor: pointer; } /* line 110, _switch.scss */ div.switch span:last-child { position: absolute; top: -1px; left: -1px; z-index: 1; display: block; padding: 0; border-width: 1px; border-style: solid; transition: all 0.1s ease-out; } /* line 125, _switch.scss */ div.switch input:not(:checked) + label { opacity: 0; } /* line 128, _switch.scss */ div.switch input:checked { display: none !important; } /* line 129, _switch.scss */ div.switch input { left: 0; display: block !important; } /* line 133, _switch.scss */ div.switch input:first-of-type + label, div.switch input:first-of-type + span + label { left: -50%; } /* line 135, _switch.scss */ div.switch input:first-of-type:checked + label, div.switch input:first-of-type:checked + span + label { left: 0%; } /* line 139, _switch.scss */ div.switch input:last-of-type + label, div.switch input:last-of-type + span + label { right: -50%; left: auto; text-align: right; } /* line 141, _switch.scss */ div.switch input:last-of-type:checked + label, div.switch input:last-of-type:checked + span + label { right: 0%; left: auto; } /* line 144, _switch.scss */ div.switch span.custom { display: none !important; } /* line 146, _switch.scss */ form.custom div.switch .hidden-field { margin-left: auto; position: absolute; visibility: visible; } /* line 165, _switch.scss */ div.switch label { padding: 0; line-height: 2.3rem; font-size: 0.875rem; } /* line 173, _switch.scss */ div.switch input:first-of-type:checked ~ span:last-child { left: 100%; margin-left: -2.1875rem; } /* line 179, _switch.scss */ div.switch span:last-child { width: 2.25rem; height: 2.25rem; } /* line 204, _switch.scss */ div.switch span:last-child { border-color: #b3b3b3; background: white; background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%); box-shadow: 2px 0 10px 0 rgba(0, 0, 0, 0.07), 1000px 0 0 980px #f3faf6, -2px 0 10px 0 rgba(0, 0, 0, 0.07), -1000px 0 0 1000px whitesmoke; } /* line 218, _switch.scss */ div.switch:hover span:last-child, div.switch:focus span:last-child { background: white; background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%); } /* line 224, _switch.scss */ div.switch:active { background: transparent; } /* line 273, _switch.scss */ div.switch.large { height: 2.75rem; } /* line 165, _switch.scss */ div.switch.large label { padding: 0; line-height: 2.3rem; font-size: 1.0625rem; } /* line 173, _switch.scss */ div.switch.large input:first-of-type:checked ~ span:last-child { left: 100%; margin-left: -2.6875rem; } /* line 179, _switch.scss */ div.switch.large span:last-child { width: 2.75rem; height: 2.75rem; } /* line 276, _switch.scss */ div.switch.small { height: 1.75rem; } /* line 165, _switch.scss */ div.switch.small label { padding: 0; line-height: 2.1rem; font-size: 0.75rem; } /* line 173, _switch.scss */ div.switch.small input:first-of-type:checked ~ span:last-child { left: 100%; margin-left: -1.6875rem; } /* line 179, _switch.scss */ div.switch.small span:last-child { width: 1.75rem; height: 1.75rem; } /* line 279, _switch.scss */ div.switch.tiny { height: 1.375rem; } /* line 165, _switch.scss */ div.switch.tiny label { padding: 0; line-height: 1.9rem; font-size: 0.6875rem; } /* line 173, _switch.scss */ div.switch.tiny input:first-of-type:checked ~ span:last-child { left: 100%; margin-left: -1.3125rem; } /* line 179, _switch.scss */ div.switch.tiny span:last-child { width: 1.375rem; height: 1.375rem; } /* line 282, _switch.scss */ div.switch.radius { border-radius: 4px; } /* line 283, _switch.scss */ div.switch.radius span:last-child { border-radius: 3px; } /* line 287, _switch.scss */ div.switch.round { border-radius: 1000px; } /* line 288, _switch.scss */ div.switch.round span:last-child { border-radius: 999px; } /* line 289, _switch.scss */ div.switch.round label { padding: 0 0.5625rem; } /* line 110, _tables.scss */ table { background: white; margin-bottom: 1.25rem; border: solid 1px #dddddd; } /* line 57, _tables.scss */ table thead { background: whitesmoke; } /* line 62, _tables.scss */ table thead tr th, table thead tr td { padding: 0.5rem 0.625rem 0.625rem; font-size: 0.875rem; font-weight: bold; color: #222222; } /* line 71, _tables.scss */ table tfoot { background: whitesmoke; } /* line 76, _tables.scss */ table tfoot tr th, table tfoot tr td { padding: 0.5rem 0.625rem 0.625rem; font-size: 0.875rem; font-weight: bold; color: #222222; } /* line 87, _tables.scss */ table tr th, table tr td { padding: 0.5625rem 0.625rem; font-size: 0.875rem; color: #222222; text-align: left; } /* line 96, _tables.scss */ table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #f9f9f9; } /* line 104, _tables.scss */ table thead tr th, table tfoot tr th, table tfoot tr td, table tbody tr th, table tbody tr td, table tr td { display: table-cell; line-height: 1.125rem; } /* line 142, _type.scss */ .text-left { text-align: left !important; } /* line 143, _type.scss */ .text-right { text-align: right !important; } /* line 144, _type.scss */ .text-center { text-align: center !important; } /* line 145, _type.scss */ .text-justify { text-align: justify !important; } @media only screen and (max-width: 40em) { /* line 149, _type.scss */ .small-only-text-left { text-align: left !important; } /* line 150, _type.scss */ .small-only-text-right { text-align: right !important; } /* line 151, _type.scss */ .small-only-text-center { text-align: center !important; } /* line 152, _type.scss */ .small-only-text-justify { text-align: justify !important; } } @media only screen { /* line 149, _type.scss */ .small-text-left { text-align: left !important; } /* line 150, _type.scss */ .small-text-right { text-align: right !important; } /* line 151, _type.scss */ .small-text-center { text-align: center !important; } /* line 152, _type.scss */ .small-text-justify { text-align: justify !important; } } @media only screen and (min-width: 40.063em) and (max-width: 64em) { /* line 149, _type.scss */ .medium-only-text-left { text-align: left !important; } /* line 150, _type.scss */ .medium-only-text-right { text-align: right !important; } /* line 151, _type.scss */ .medium-only-text-center { text-align: center !important; } /* line 152, _type.scss */ .medium-only-text-justify { text-align: justify !important; } } @media only screen and (min-width: 40.063em) { /* line 149, _type.scss */ .medium-text-left { text-align: left !important; } /* line 150, _type.scss */ .medium-text-right { text-align: right !important; } /* line 151, _type.scss */ .medium-text-center { text-align: center !important; } /* line 152, _type.scss */ .medium-text-justify { text-align: justify !important; } } @media only screen and (min-width: 64.063em) and (max-width: 90em) { /* line 149, _type.scss */ .large-only-text-left { text-align: left !important; } /* line 150, _type.scss */ .large-only-text-right { text-align: right !important; } /* line 151, _type.scss */ .large-only-text-center { text-align: center !important; } /* line 152, _type.scss */ .large-only-text-justify { text-align: justify !important; } } @media only screen and (min-width: 64.063em) { /* line 149, _type.scss */ .large-text-left { text-align: left !important; } /* line 150, _type.scss */ .large-text-right { text-align: right !important; } /* line 151, _type.scss */ .large-text-center { text-align: center !important; } /* line 152, _type.scss */ .large-text-justify { text-align: justify !important; } } @media only screen and (min-width: 90.063em) and (max-width: 120em) { /* line 149, _type.scss */ .xlarge-only-text-left { text-align: left !important; } /* line 150, _type.scss */ .xlarge-only-text-right { text-align: right !important; } /* line 151, _type.scss */ .xlarge-only-text-center { text-align: center !important; } /* line 152, _type.scss */ .xlarge-only-text-justify { text-align: justify !important; } } @media only screen and (min-width: 90.063em) { /* line 149, _type.scss */ .xlarge-text-left { text-align: left !important; } /* line 150, _type.scss */ .xlarge-text-right { text-align: right !important; } /* line 151, _type.scss */ .xlarge-text-center { text-align: center !important; } /* line 152, _type.scss */ .xlarge-text-justify { text-align: justify !important; } } @media only screen and (min-width: 120.063em) and (max-width: 99999999em) { /* line 149, _type.scss */ .xxlarge-only-text-left { text-align: left !important; } /* line 150, _type.scss */ .xxlarge-only-text-right { text-align: right !important; } /* line 151, _type.scss */ .xxlarge-only-text-center { text-align: center !important; } /* line 152, _type.scss */ .xxlarge-only-text-justify { text-align: justify !important; } } @media only screen and (min-width: 120.063em) { /* line 149, _type.scss */ .xxlarge-text-left { text-align: left !important; } /* line 150, _type.scss */ .xxlarge-text-right { text-align: right !important; } /* line 151, _type.scss */ .xxlarge-text-center { text-align: center !important; } /* line 152, _type.scss */ .xxlarge-text-justify { text-align: justify !important; } } /* Typography resets */ /* line 198, _type.scss */ div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; } /* Default Link Styles */ /* line 204, _type.scss */ a { color: #008cba; text-decoration: none; line-height: inherit; } /* line 210, _type.scss */ a:hover, a:focus { color: #0078a0; } /* line 217, _type.scss */ a img { border: none; } /* Default paragraph styles */ /* line 221, _type.scss */ p { font-family: inherit; font-weight: normal; font-size: 1rem; line-height: 1.6; margin-bottom: 1.25rem; text-rendering: optimizeLegibility; } /* line 229, _type.scss */ p.lead { font-size: 1.21875rem; line-height: 1.6; } /* line 231, _type.scss */ p aside { font-size: 0.875rem; line-height: 1.35; font-style: italic; } /* Default header styles */ /* line 239, _type.scss */ h1, h2, h3, h4, h5, h6 { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; color: #222222; text-rendering: optimizeLegibility; margin-top: 0.2rem; margin-bottom: 0.5rem; line-height: 1.4; } /* line 249, _type.scss */ h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; } /* line 256, _type.scss */ h1 { font-size: 2.125rem; } /* line 257, _type.scss */ h2 { font-size: 1.6875rem; } /* line 258, _type.scss */ h3 { font-size: 1.375rem; } /* line 259, _type.scss */ h4 { font-size: 1.125rem; } /* line 260, _type.scss */ h5 { font-size: 1.125rem; } /* line 261, _type.scss */ h6 { font-size: 1rem; } /* line 263, _type.scss */ .subheader { line-height: 1.4; color: #6f6f6f; font-weight: normal; margin-top: 0.2rem; margin-bottom: 0.5rem; } /* line 265, _type.scss */ hr { border: solid #dddddd; border-width: 1px 0 0; clear: both; margin: 1.25rem 0 1.1875rem; height: 0; } /* Helpful Typography Defaults */ /* line 275, _type.scss */ em, i { font-style: italic; line-height: inherit; } /* line 281, _type.scss */ strong, b { font-weight: bold; line-height: inherit; } /* line 286, _type.scss */ small { font-size: 60%; line-height: inherit; } /* line 291, _type.scss */ code { font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: bold; color: #bd260d; } /* Lists */ /* line 300, _type.scss */ ul, ol, dl { font-size: 1rem; line-height: 1.6; margin-bottom: 1.25rem; list-style-position: outside; font-family: inherit; } /* line 308, _type.scss */ ul { margin-left: 1.1rem; } /* line 310, _type.scss */ ul.no-bullet { margin-left: 0; } /* line 314, _type.scss */ ul.no-bullet li ul, ul.no-bullet li ol { margin-left: 1.25rem; margin-bottom: 0; list-style: none; } /* Unordered Lists */ /* line 327, _type.scss */ ul li ul, ul li ol { margin-left: 1.25rem; margin-bottom: 0; } /* line 335, _type.scss */ ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit; } /* line 338, _type.scss */ ul.square { list-style-type: square; margin-left: 1.1rem; } /* line 339, _type.scss */ ul.circle { list-style-type: circle; margin-left: 1.1rem; } /* line 340, _type.scss */ ul.disc { list-style-type: disc; margin-left: 1.1rem; } /* line 341, _type.scss */ ul.no-bullet { list-style: none; } /* Ordered Lists */ /* line 345, _type.scss */ ol { margin-left: 1.4rem; } /* line 349, _type.scss */ ol li ul, ol li ol { margin-left: 1.25rem; margin-bottom: 0; } /* Definition Lists */ /* line 358, _type.scss */ dl dt { margin-bottom: 0.3rem; font-weight: bold; } /* line 362, _type.scss */ dl dd { margin-bottom: 0.75rem; } /* Abbreviations */ /* line 367, _type.scss */ abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222222; border-bottom: 1px dotted #dddddd; cursor: help; } /* line 374, _type.scss */ abbr { text-transform: none; } /* Blockquotes */ /* line 379, _type.scss */ blockquote { margin: 0 0 1.25rem; padding: 0.5625rem 1.25rem 0 1.1875rem; border-left: 1px solid #dddddd; } /* line 384, _type.scss */ blockquote cite { display: block; font-size: 0.8125rem; color: #555555; } /* line 388, _type.scss */ blockquote cite:before { content: "\2014 \0020"; } /* line 393, _type.scss */ blockquote cite a, blockquote cite a:visited { color: #555555; } /* line 399, _type.scss */ blockquote, blockquote p { line-height: 1.6; color: #6f6f6f; } /* Microformats */ /* line 405, _type.scss */ .vcard { display: inline-block; margin: 0 0 1.25rem 0; border: 1px solid #dddddd; padding: 0.625rem 0.75rem; } /* line 411, _type.scss */ .vcard li { margin: 0; display: block; } /* line 415, _type.scss */ .vcard .fn { font-weight: bold; font-size: 0.9375rem; } /* line 422, _type.scss */ .vevent .summary { font-weight: bold; } /* line 424, _type.scss */ .vevent abbr { cursor: default; text-decoration: none; font-weight: bold; border: none; padding: 0 0.0625rem; } @media only screen and (min-width: 40.063em) { /* line 435, _type.scss */ h1, h2, h3, h4, h5, h6 { line-height: 1.4; } /* line 436, _type.scss */ h1 { font-size: 2.75rem; } /* line 437, _type.scss */ h2 { font-size: 2.3125rem; } /* line 438, _type.scss */ h3 { font-size: 1.6875rem; } /* line 439, _type.scss */ h4 { font-size: 1.4375rem; } } /* * Print styles. * * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/ * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com) */ /* line 450, _type.scss */ .print-only { display: none !important; } @media print { /* line 452, _type.scss */ * { background: transparent !important; color: #000 !important; /* Black prints faster: h5bp.com/s */ box-shadow: none !important; text-shadow: none !important; } /* line 460, _type.scss */ a, a:visited { text-decoration: underline; } /* line 461, _type.scss */ a[href]:after { content: " (" attr(href) ")"; } /* line 463, _type.scss */ abbr[title]:after { content: " (" attr(title) ")"; } /* line 468, _type.scss */ .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* line 471, _type.scss */ pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } /* line 476, _type.scss */ thead { display: table-header-group; /* h5bp.com/t */ } /* line 479, _type.scss */ tr, img { page-break-inside: avoid; } /* line 481, _type.scss */ img { max-width: 100% !important; } @page { margin: 0.5cm; } /* line 487, _type.scss */ p, h2, h3 { orphans: 3; widows: 3; } /* line 493, _type.scss */ h2, h3 { page-break-after: avoid; } /* line 495, _type.scss */ .hide-on-print { display: none !important; } /* line 496, _type.scss */ .print-only { display: block !important; } /* line 497, _type.scss */ .hide-for-print { display: none !important; } /* line 498, _type.scss */ .show-for-print { display: inherit !important; } } /* line 30, _tabs.scss */ .tabs { margin-bottom: 0 !important; } /* line 163, _global.scss */ .tabs:before, .tabs:after { content: " "; display: table; } /* line 164, _global.scss */ .tabs:after { clear: both; } /* line 33, _tabs.scss */ .tabs dd { position: relative; margin-bottom: 0 !important; float: left; } /* line 37, _tabs.scss */ .tabs dd > a { display: block; background: #efefef; color: #222222; padding: 1rem 2rem; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-size: 1rem; } /* line 44, _tabs.scss */ .tabs dd > a:hover { background: #e1e1e1; } /* line 46, _tabs.scss */ .tabs dd.active a { background: white; } /* line 50, _tabs.scss */ .tabs.radius dd:first-child a { border-bottom-left-radius: 3px; border-top-left-radius: 3px; } /* line 53, _tabs.scss */ .tabs.radius dd:last-child a { border-bottom-right-radius: 3px; border-top-right-radius: 3px; } /* line 57, _tabs.scss */ .tabs.vertical dd { position: inherit; float: none; display: block; top: auto; } /* line 66, _tabs.scss */ .tabs-content { margin-bottom: 1.5rem; width: 100%; } /* line 163, _global.scss */ .tabs-content:before, .tabs-content:after { content: " "; display: table; } /* line 164, _global.scss */ .tabs-content:after { clear: both; } /* line 70, _tabs.scss */ .tabs-content > .content { display: none; float: left; padding: 0.9375rem 0; width: 100%; } /* line 75, _tabs.scss */ .tabs-content > .content.active { display: block; float: none; } /* line 76, _tabs.scss */ .tabs-content > .content.contained { padding: 0.9375rem; } /* line 78, _tabs.scss */ .tabs-content.vertical { display: block; } /* line 80, _tabs.scss */ .tabs-content.vertical > .content { padding: 0 0.9375rem; } @media only screen and (min-width: 40.063em) { /* line 85, _tabs.scss */ .tabs.vertical { width: 20%; float: left; margin-bottom: 1.25rem; } /* line 92, _tabs.scss */ .tabs-content.vertical { width: 80%; float: left; margin-left: -1px; } } /* line 100, _tabs.scss */ .no-js .tabs-content > .content { display: block; float: none; } /* Image Thumbnails */ /* line 61, _thumbs.scss */ .th { line-height: 0; display: inline-block; border: solid 4px white; max-width: 100%; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2); transition: all 200ms ease-out; } /* line 51, _thumbs.scss */ .th:hover, .th:focus { box-shadow: 0 0 6px 1px rgba(0, 140, 186, 0.5); } /* line 65, _thumbs.scss */ .th.radius { border-radius: 3px; } /* Tooltips */ /* line 37, _tooltips.scss */ .has-tip { border-bottom: dotted 1px #cccccc; cursor: help; font-weight: bold; color: #333333; } /* line 44, _tooltips.scss */ .has-tip:hover, .has-tip:focus { border-bottom: dotted 1px #003f54; color: #008cba; } /* line 50, _tooltips.scss */ .has-tip.tip-left, .has-tip.tip-right { float: none !important; } /* line 53, _tooltips.scss */ .tooltip { display: none; position: absolute; z-index: 999; font-weight: normal; font-size: 0.875rem; line-height: 1.3; padding: 0.75rem; max-width: 85%; left: 50%; width: 100%; color: white; background: #333333; } /* line 67, _tooltips.scss */ .tooltip > .nub { display: block; left: 5px; position: absolute; width: 0; height: 0; border: solid 5px; border-color: transparent transparent #333333 transparent; top: -10px; } /* line 77, _tooltips.scss */ .tooltip > .nub.rtl { left: auto; right: 5px; } /* line 83, _tooltips.scss */ .tooltip.radius { border-radius: 3px; } /* line 86, _tooltips.scss */ .tooltip.round { border-radius: 1000px; } /* line 88, _tooltips.scss */ .tooltip.round > .nub { left: 2rem; } /* line 93, _tooltips.scss */ .tooltip.opened { color: #008cba !important; border-bottom: dotted 1px #003f54 !important; } /* line 99, _tooltips.scss */ .tap-to-close { display: block; font-size: 0.625rem; color: #777777; font-weight: normal; } @media only screen and (min-width: 40.063em) { /* line 108, _tooltips.scss */ .tooltip > .nub { border-color: transparent transparent #333333 transparent; top: -10px; } /* line 112, _tooltips.scss */ .tooltip.tip-top > .nub { border-color: #333333 transparent transparent transparent; top: auto; bottom: -10px; } /* line 119, _tooltips.scss */ .tooltip.tip-left, .tooltip.tip-right { float: none !important; } /* line 121, _tooltips.scss */ .tooltip.tip-left > .nub { border-color: transparent transparent transparent #333333; right: -10px; left: auto; top: 50%; margin-top: -5px; } /* line 128, _tooltips.scss */ .tooltip.tip-right > .nub { border-color: transparent #333333 transparent transparent; right: auto; left: -10px; top: 50%; margin-top: -5px; } } /* line 103, _top-bar.scss */ meta.foundation-mq-topbar { font-family: "/only screen and (min-width:40.063em)/"; width: 40.063em; } /* Wrapped around .top-bar to contain to grid width */ /* line 109, _top-bar.scss */ .contain-to-grid { width: 100%; background: #333333; } /* line 113, _top-bar.scss */ .contain-to-grid .top-bar { margin-bottom: 0; } /* line 117, _top-bar.scss */ .fixed { width: 100%; left: 0; position: fixed; top: 0; z-index: 99; } /* line 124, _top-bar.scss */ .fixed.expanded:not(.top-bar) { overflow-y: auto; height: auto; width: 100%; max-height: 100%; } /* line 130, _top-bar.scss */ .fixed.expanded:not(.top-bar) .title-area { position: fixed; width: 100%; z-index: 99; } /* line 136, _top-bar.scss */ .fixed.expanded:not(.top-bar) .top-bar-section { z-index: 98; margin-top: 45px; } /* line 143, _top-bar.scss */ .top-bar { overflow: hidden; height: 45px; line-height: 45px; position: relative; background: #333333; margin-bottom: 0; } /* line 152, _top-bar.scss */ .top-bar ul { margin-bottom: 0; list-style: none; } /* line 157, _top-bar.scss */ .top-bar .row { max-width: none; } /* line 160, _top-bar.scss */ .top-bar form, .top-bar input { margin-bottom: 0; } /* line 162, _top-bar.scss */ .top-bar input { height: auto; padding-top: .35rem; padding-bottom: .35rem; font-size: 0.75rem; } /* line 164, _top-bar.scss */ .top-bar .button, .top-bar button { padding-top: .45rem; padding-bottom: .35rem; margin-bottom: 0; font-size: 0.75rem; } /* line 175, _top-bar.scss */ .top-bar .title-area { position: relative; margin: 0; } /* line 180, _top-bar.scss */ .top-bar .name { height: 45px; margin: 0; font-size: 16px; } /* line 185, _top-bar.scss */ .top-bar .name h1 { line-height: 45px; font-size: 1.0625rem; margin: 0; } /* line 189, _top-bar.scss */ .top-bar .name h1 a { font-weight: normal; color: white; width: 75%; display: block; padding: 0 15px; } /* line 200, _top-bar.scss */ .top-bar .toggle-topbar { position: absolute; right: 0; top: 0; } /* line 205, _top-bar.scss */ .top-bar .toggle-topbar a { color: white; text-transform: uppercase; font-size: 0.8125rem; font-weight: bold; position: relative; display: block; padding: 0 15px; height: 45px; line-height: 45px; } /* line 218, _top-bar.scss */ .top-bar .toggle-topbar.menu-icon { right: 15px; top: 50%; margin-top: -16px; padding-left: 40px; } /* line 224, _top-bar.scss */ .top-bar .toggle-topbar.menu-icon a { height: 34px; line-height: 33px; padding: 0; color: white; position: relative; } /* line 234, _top-bar.scss */ .top-bar .toggle-topbar.menu-icon a::after { right: 0; } /* line 125, _global.scss */ .top-bar .toggle-topbar.menu-icon a::after span:after { content: ''; position: absolute; display: block; height: 0; box-shadow: 0 0px 0 1px white, 0 7px 0 1px white, 0 14px 0 1px white; width: 16px; } /* line 153, _global.scss */ .top-bar .toggle-topbar.menu-icon a::after span:hover:after { box-shadow: 0 0px 0 1px white, 0 7px 0 1px white, 0 14px 0 1px white; } /* line 254, _top-bar.scss */ .top-bar.expanded { height: auto; background: transparent; } /* line 258, _top-bar.scss */ .top-bar.expanded .title-area { background: #333333; } /* line 261, _top-bar.scss */ .top-bar.expanded .toggle-topbar a { color: #888888; } /* line 262, _top-bar.scss */ .top-bar.expanded .toggle-topbar a::after { box-shadow: 0 10px 0 1px #888888, 0 16px 0 1px #888888, 0 22px 0 1px #888888; } /* line 277, _top-bar.scss */ .top-bar-section { left: 0; position: relative; width: auto; transition: left 300ms ease-out; } /* line 283, _top-bar.scss */ .top-bar-section ul { padding: 0; width: 100%; height: auto; display: block; font-size: 16px; margin: 0; } /* line 293, _top-bar.scss */ .top-bar-section .divider, .top-bar-section [role="separator"] { border-top: solid 1px #1a1a1a; clear: both; height: 1px; width: 100%; } /* line 300, _top-bar.scss */ .top-bar-section ul li { background: #333333; } /* line 302, _top-bar.scss */ .top-bar-section ul li > a { display: block; width: 100%; color: white; padding: 12px 0 12px 0; padding-left: 15px; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-size: 0.8125rem; font-weight: normal; text-transform: none; } /* line 314, _top-bar.scss */ .top-bar-section ul li > a.button { font-size: 0.8125rem; padding-right: 15px; padding-left: 15px; background-color: #008cba; border-color: #007095; color: white; } /* line 134, _buttons.scss */ .top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus { background-color: #007095; } /* line 145, _buttons.scss */ .top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus { color: white; } /* line 320, _top-bar.scss */ .top-bar-section ul li > a.button.secondary { background-color: #e7e7e7; border-color: #b9b9b9; color: #333333; } /* line 134, _buttons.scss */ .top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus { background-color: #b9b9b9; } /* line 140, _buttons.scss */ .top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus { color: #333333; } /* line 321, _top-bar.scss */ .top-bar-section ul li > a.button.success { background-color: #43ac6a; border-color: #368a55; color: white; } /* line 134, _buttons.scss */ .top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus { background-color: #368a55; } /* line 145, _buttons.scss */ .top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus { color: white; } /* line 322, _top-bar.scss */ .top-bar-section ul li > a.button.alert { background-color: #f04124; border-color: #cf2a0e; color: white; } /* line 134, _buttons.scss */ .top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus { background-color: #cf2a0e; } /* line 145, _buttons.scss */ .top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus { color: white; } /* line 325, _top-bar.scss */ .top-bar-section ul li > button { font-size: 0.8125rem; padding-right: 15px; padding-left: 15px; background-color: #008cba; border-color: #007095; color: white; } /* line 134, _buttons.scss */ .top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus { background-color: #007095; } /* line 145, _buttons.scss */ .top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus { color: white; } /* line 331, _top-bar.scss */ .top-bar-section ul li > button.secondary { background-color: #e7e7e7; border-color: #b9b9b9; color: #333333; } /* line 134, _buttons.scss */ .top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus { background-color: #b9b9b9; } /* line 140, _buttons.scss */ .top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus { color: #333333; } /* line 332, _top-bar.scss */ .top-bar-section ul li > button.success { background-color: #43ac6a; border-color: #368a55; color: white; } /* line 134, _buttons.scss */ .top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus { background-color: #368a55; } /* line 145, _buttons.scss */ .top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus { color: white; } /* line 333, _top-bar.scss */ .top-bar-section ul li > button.alert { background-color: #f04124; border-color: #cf2a0e; color: white; } /* line 134, _buttons.scss */ .top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus { background-color: #cf2a0e; } /* line 145, _buttons.scss */ .top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus { color: white; } /* line 337, _top-bar.scss */ .top-bar-section ul li:hover:not(.has-form) > a { background: #272727; color: white; } /* line 344, _top-bar.scss */ .top-bar-section ul li.active > a { background: #008cba; color: white; } /* line 347, _top-bar.scss */ .top-bar-section ul li.active > a:hover { background: #0078a0; color: white; } /* line 355, _top-bar.scss */ .top-bar-section .has-form { padding: 15px; } /* line 358, _top-bar.scss */ .top-bar-section .has-dropdown { position: relative; } /* line 362, _top-bar.scss */ .top-bar-section .has-dropdown > a:after { content: ""; display: block; width: 0; height: 0; border: inset 5px; border-color: transparent transparent transparent rgba(255, 255, 255, 0.4); border-left-style: solid; margin-right: 15px; margin-top: -4.5px; position: absolute; top: 50%; right: 0; } /* line 374, _top-bar.scss */ .top-bar-section .has-dropdown.moved { position: static; } /* line 375, _top-bar.scss */ .top-bar-section .has-dropdown.moved > .dropdown { display: block; position: static !important; height: auto; width: auto; overflow: visible; clip: auto; position: absolute !important; width: 100%; } /* line 379, _top-bar.scss */ .top-bar-section .has-dropdown.moved > a:after { display: none; } /* line 386, _top-bar.scss */ .top-bar-section .dropdown { padding: 0; position: absolute; left: 100%; top: 0; z-index: 99; display: block; position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); } /* line 394, _top-bar.scss */ .top-bar-section .dropdown li { width: 100%; height: auto; } /* line 398, _top-bar.scss */ .top-bar-section .dropdown li a { font-weight: normal; padding: 8px 15px; } /* line 401, _top-bar.scss */ .top-bar-section .dropdown li a.parent-link { font-weight: normal; } /* line 406, _top-bar.scss */ .top-bar-section .dropdown li.title h5 { margin-bottom: 0; margin-top: 0; } /* line 409, _top-bar.scss */ .top-bar-section .dropdown li.title h5 a { color: white; line-height: 22.5px; display: block; } /* line 415, _top-bar.scss */ .top-bar-section .dropdown li.has-form { padding: 8px 15px; } /* line 416, _top-bar.scss */ .top-bar-section .dropdown li .button, .top-bar-section .dropdown li button { top: auto; } /* line 419, _top-bar.scss */ .top-bar-section .dropdown label { padding: 8px 15px 2px; margin-bottom: 0; text-transform: uppercase; color: #777777; font-weight: bold; font-size: 0.625rem; } /* line 430, _top-bar.scss */ .js-generated { display: block; } @media only screen and (min-width: 40.063em) { /* line 435, _top-bar.scss */ .top-bar { background: #333333; overflow: visible; } /* line 163, _global.scss */ .top-bar:before, .top-bar:after { content: " "; display: table; } /* line 164, _global.scss */ .top-bar:after { clear: both; } /* line 440, _top-bar.scss */ .top-bar .toggle-topbar { display: none; } /* line 442, _top-bar.scss */ .top-bar .title-area { float: left; } /* line 443, _top-bar.scss */ .top-bar .name h1 a { width: auto; } /* line 447, _top-bar.scss */ .top-bar input, .top-bar .button, .top-bar button { font-size: 0.875rem; position: relative; top: 7px; } /* line 453, _top-bar.scss */ .top-bar.expanded { background: #333333; } /* line 456, _top-bar.scss */ .contain-to-grid .top-bar { max-width: 62.5rem; margin: 0 auto; margin-bottom: 0; } /* line 462, _top-bar.scss */ .top-bar-section { transition: none 0 0; left: 0 !important; } /* line 466, _top-bar.scss */ .top-bar-section ul { width: auto; height: auto !important; display: inline; } /* line 471, _top-bar.scss */ .top-bar-section ul li { float: left; } /* line 473, _top-bar.scss */ .top-bar-section ul li .js-generated { display: none; } /* line 479, _top-bar.scss */ .top-bar-section li.hover > a:not(.button) { background: #272727; color: white; } /* line 485, _top-bar.scss */ .top-bar-section li:not(.has-form) a:not(.button) { padding: 0 15px; line-height: 45px; background: #333333; } /* line 489, _top-bar.scss */ .top-bar-section li:not(.has-form) a:not(.button):hover { background: #272727; } /* line 493, _top-bar.scss */ .top-bar-section li.active:not(.has-form) a:not(.button) { padding: 0 15px; line-height: 45px; color: white; background: #008cba; } /* line 498, _top-bar.scss */ .top-bar-section li.active:not(.has-form) a:not(.button):hover { background: #0078a0; } /* line 507, _top-bar.scss */ .top-bar-section .has-dropdown > a { padding-right: 15px !important; } /* line 509, _top-bar.scss */ .top-bar-section .has-dropdown > a:after { content: ""; display: block; width: 0; height: 0; border: inset 5px; border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent; border-top-style: solid; margin-top: -2.5px; top: 22.5px; } /* line 518, _top-bar.scss */ .top-bar-section .has-dropdown.moved { position: relative; } /* line 519, _top-bar.scss */ .top-bar-section .has-dropdown.moved > .dropdown { display: block; position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); } /* line 525, _top-bar.scss */ .top-bar-section .has-dropdown.hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown { display: block; position: static !important; height: auto; width: auto; overflow: visible; clip: auto; position: absolute !important; } /* line 532, _top-bar.scss */ .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after { border: none; content: "\00bb"; top: 1rem; margin-top: -1px; right: 5px; line-height: 1.2; } /* line 545, _top-bar.scss */ .top-bar-section .dropdown { left: 0; top: auto; background: transparent; min-width: 100%; } /* line 552, _top-bar.scss */ .top-bar-section .dropdown li a { color: white; line-height: 45px; white-space: nowrap; padding: 12px 15px; background: #333333; } /* line 560, _top-bar.scss */ .top-bar-section .dropdown li:not(.has-form) a:not(.button) { color: white; background: #333333; } /* line 564, _top-bar.scss */ .top-bar-section .dropdown li:not(.has-form):hover > a:not(.button) { color: white; background: #272727; } /* line 569, _top-bar.scss */ .top-bar-section .dropdown li label { white-space: nowrap; background: #333333; } /* line 575, _top-bar.scss */ .top-bar-section .dropdown li .dropdown { left: 100%; top: 0; } /* line 583, _top-bar.scss */ .top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] { border-bottom: none; border-top: none; border-right: solid 1px #4e4e4e; clear: none; height: 45px; width: 0; } /* line 592, _top-bar.scss */ .top-bar-section .has-form { background: #333333; padding: 0 15px; height: 45px; } /* line 600, _top-bar.scss */ .top-bar-section .right li .dropdown { left: auto; right: 0; } /* line 604, _top-bar.scss */ .top-bar-section .right li .dropdown li .dropdown { right: 100%; } /* line 608, _top-bar.scss */ .top-bar-section .left li .dropdown { right: auto; left: 0; } /* line 612, _top-bar.scss */ .top-bar-section .left li .dropdown li .dropdown { left: 100%; } /* line 622, _top-bar.scss */ .no-js .top-bar-section ul li:hover > a { background: #272727; color: white; } /* line 628, _top-bar.scss */ .no-js .top-bar-section ul li:active > a { background: #008cba; color: white; } /* line 636, _top-bar.scss */ .no-js .top-bar-section .has-dropdown:hover > .dropdown { display: block; position: static !important; height: auto; width: auto; overflow: visible; clip: auto; position: absolute !important; } } /* line 271, _offcanvas.scss */ .off-canvas-wrap { -webkit-backface-visibility: hidden; position: relative; width: 100%; overflow: hidden; } /* line 125, _offcanvas.scss */ .off-canvas-wrap.move-right, .off-canvas-wrap.move-left { min-height: 100%; -webkit-overflow-scrolling: touch; } /* line 272, _offcanvas.scss */ .inner-wrap { -webkit-backface-visibility: hidden; position: relative; width: 100%; -webkit-transition: -webkit-transform 500ms ease; -moz-transition: -moz-transform 500ms ease; -ms-transition: -ms-transform 500ms ease; -o-transition: -o-transform 500ms ease; transition: transform 500ms ease; } /* line 163, _global.scss */ .inner-wrap:before, .inner-wrap:after { content: " "; display: table; } /* line 164, _global.scss */ .inner-wrap:after { clear: both; } /* line 274, _offcanvas.scss */ .tab-bar { -webkit-backface-visibility: hidden; background: #333333; color: white; height: 2.8125rem; line-height: 2.8125rem; position: relative; } /* line 157, _offcanvas.scss */ .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4, .tab-bar h5, .tab-bar h6 { color: white; font-weight: bold; line-height: 2.8125rem; margin: 0; } /* line 163, _offcanvas.scss */ .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4 { font-size: 1.125rem; } /* line 276, _offcanvas.scss */ .left-small { width: 2.8125rem; height: 2.8125rem; position: absolute; top: 0; border-right: solid 1px #1a1a1a; left: 0; } /* line 277, _offcanvas.scss */ .right-small { width: 2.8125rem; height: 2.8125rem; position: absolute; top: 0; border-left: solid 1px #1a1a1a; right: 0; } /* line 279, _offcanvas.scss */ .tab-bar-section { padding: 0 0.625rem; position: absolute; text-align: center; height: 2.8125rem; top: 0; } @media only screen and (min-width: 40.063em) { /* line 279, _offcanvas.scss */ .tab-bar-section { text-align: left; } } /* line 194, _offcanvas.scss */ .tab-bar-section.left { left: 0; right: 2.8125rem; } /* line 198, _offcanvas.scss */ .tab-bar-section.right { left: 2.8125rem; right: 0; } /* line 202, _offcanvas.scss */ .tab-bar-section.middle { left: 2.8125rem; right: 2.8125rem; } /* line 283, _offcanvas.scss */ .tab-bar .menu-icon { text-indent: 2.1875rem; width: 2.8125rem; height: 2.8125rem; display: block; line-height: 2.0625rem; padding: 0; color: white; position: relative; -ms-transform: translate(0, 0); -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -o-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } /* line 125, _global.scss */ .tab-bar .menu-icon span:after { content: ''; position: absolute; display: block; height: 0; top: 50%; margin-top: -0.5rem; left: 0.90625rem; box-shadow: 0 0px 0 1px white, 0 7px 0 1px white, 0 14px 0 1px white; width: 1rem; } /* line 153, _global.scss */ .tab-bar .menu-icon span:hover:after { box-shadow: 0 0px 0 1px #b3b3b3, 0 7px 0 1px #b3b3b3, 0 14px 0 1px #b3b3b3; } /* line 308, _offcanvas.scss */ .left-off-canvas-menu { -webkit-backface-visibility: hidden; width: 15.625rem; top: 0; bottom: 0; position: absolute; overflow-y: auto; background: #333333; z-index: 1001; box-sizing: content-box; transition: transform 500ms ease 0s; -webkit-overflow-scrolling: touch; -ms-transform: translate(-100%, 0); -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); -ms-transform: translate3d(-100%, 0, 0); -o-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); left: 0; } /* line 97, _offcanvas.scss */ .left-off-canvas-menu * { -webkit-backface-visibility: hidden; } /* line 309, _offcanvas.scss */ .right-off-canvas-menu { -webkit-backface-visibility: hidden; width: 15.625rem; top: 0; bottom: 0; position: absolute; overflow-y: auto; background: #333333; z-index: 1001; box-sizing: content-box; transition: transform 500ms ease 0s; -webkit-overflow-scrolling: touch; -ms-transform: translate(100%, 0); -webkit-transform: translate3d(100%, 0, 0); -moz-transform: translate3d(100%, 0, 0); -ms-transform: translate3d(100%, 0, 0); -o-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); right: 0; } /* line 97, _offcanvas.scss */ .right-off-canvas-menu * { -webkit-backface-visibility: hidden; } /* line 311, _offcanvas.scss */ ul.off-canvas-list { list-style-type: none; padding: 0; margin: 0; } /* line 216, _offcanvas.scss */ ul.off-canvas-list li label { padding: 0.3rem 0.9375rem; color: #999999; text-transform: uppercase; font-weight: bold; background: #444444; border-top: 1px solid #5e5e5e; border-bottom: none; margin: 0; } /* line 226, _offcanvas.scss */ ul.off-canvas-list li a { display: block; padding: 0.66667rem; color: rgba(255, 255, 255, 0.7); border-bottom: 1px solid #262626; transition: background 300ms ease; } /* line 231, _offcanvas.scss */ ul.off-canvas-list li a:hover { background: #242424; } /* line 317, _offcanvas.scss */ .move-right > .inner-wrap { -ms-transform: translate(15.625rem, 0); -webkit-transform: translate3d(15.625rem, 0, 0); -moz-transform: translate3d(15.625rem, 0, 0); -ms-transform: translate3d(15.625rem, 0, 0); -o-transform: translate3d(15.625rem, 0, 0); transform: translate3d(15.625rem, 0, 0); } /* line 320, _offcanvas.scss */ .move-right .exit-off-canvas { -webkit-backface-visibility: hidden; transition: background 300ms ease; cursor: pointer; box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5); display: block; position: absolute; background: rgba(255, 255, 255, 0.2); top: 0; bottom: 0; left: 0; right: 0; z-index: 1002; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } @media only screen and (min-width: 40.063em) { /* line 259, _offcanvas.scss */ .move-right .exit-off-canvas:hover { background: rgba(255, 255, 255, 0.05); } } /* line 324, _offcanvas.scss */ .move-left > .inner-wrap { -ms-transform: translate(-15.625rem, 0); -webkit-transform: translate3d(-15.625rem, 0, 0); -moz-transform: translate3d(-15.625rem, 0, 0); -ms-transform: translate3d(-15.625rem, 0, 0); -o-transform: translate3d(-15.625rem, 0, 0); transform: translate3d(-15.625rem, 0, 0); } /* line 328, _offcanvas.scss */ .move-left .exit-off-canvas { -webkit-backface-visibility: hidden; transition: background 300ms ease; cursor: pointer; box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5); display: block; position: absolute; background: rgba(255, 255, 255, 0.2); top: 0; bottom: 0; left: 0; right: 0; z-index: 1002; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } @media only screen and (min-width: 40.063em) { /* line 259, _offcanvas.scss */ .move-left .exit-off-canvas:hover { background: rgba(255, 255, 255, 0.05); } } /* line 331, _offcanvas.scss */ .offcanvas-overlap .left-off-canvas-menu, .offcanvas-overlap .right-off-canvas-menu { -ms-transform: none; -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; z-index: 1003; } /* line 339, _offcanvas.scss */ .offcanvas-overlap .exit-offcanvas-menu { -webkit-backface-visibility: hidden; transition: background 300ms ease; cursor: pointer; box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5); display: block; position: absolute; background: rgba(255, 255, 255, 0.2); top: 0; bottom: 0; left: 0; right: 0; z-index: 1002; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); z-index: 1002; } @media only screen and (min-width: 40.063em) { /* line 259, _offcanvas.scss */ .offcanvas-overlap .exit-offcanvas-menu:hover { background: rgba(255, 255, 255, 0.05); } } /* line 347, _offcanvas.scss */ .no-csstransforms .left-off-canvas-menu { left: -15.625rem; } /* line 348, _offcanvas.scss */ .no-csstransforms .right-off-canvas-menu { right: -15.625rem; } /* line 350, _offcanvas.scss */ .no-csstransforms .move-left > .inner-wrap { right: 15.625rem; } /* line 351, _offcanvas.scss */ .no-csstransforms .move-right > .inner-wrap { left: 15.625rem; } /* small displays */ @media only screen { /* line 244, _visibility.scss */ .show-for-small-only, .show-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xxlarge-only, .hide-for-xxlarge-up { display: inherit !important; } /* line 247, _visibility.scss */ .hide-for-small-only, .hide-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xxlarge-only, .show-for-xxlarge-up { display: none !important; } /* line 251, _visibility.scss */ .visible-for-small-only, .visible-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up { position: static !important; height: auto; width: auto; overflow: visible; clip: auto; } /* line 254, _visibility.scss */ .hidden-for-small-only, .hidden-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xxlarge-only, .visible-for-xxlarge-up { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); } /* line 259, _visibility.scss */ table.show-for-small-only, table.show-for-small-up, table.show-for-small, table.show-for-small-down, table.hide-for-medium-only, table.hide-for-medium-up, table.hide-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up { display: table; } /* line 262, _visibility.scss */ thead.show-for-small-only, thead.show-for-small-up, thead.show-for-small, thead.show-for-small-down, thead.hide-for-medium-only, thead.hide-for-medium-up, thead.hide-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up { display: table-header-group !important; } /* line 265, _visibility.scss */ tbody.show-for-small-only, tbody.show-for-small-up, tbody.show-for-small, tbody.show-for-small-down, tbody.hide-for-medium-only, tbody.hide-for-medium-up, tbody.hide-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up { display: table-row-group !important; } /* line 268, _visibility.scss */ tr.show-for-small-only, tr.show-for-small-up, tr.show-for-small, tr.show-for-small-down, tr.hide-for-medium-only, tr.hide-for-medium-up, tr.hide-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up { display: table-row !important; } /* line 271, _visibility.scss */ th.show-for-small-only, td.show-for-small-only, th.show-for-small-up, td.show-for-small-up, th.show-for-small, td.show-for-small, th.show-for-small-down, td.show-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.hide-for-medium-up, td.hide-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up { display: table-cell !important; } } /* medium displays */ @media only screen and (min-width: 40.063em) { /* line 244, _visibility.scss */ .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xxlarge-only, .hide-for-xxlarge-up { display: inherit !important; } /* line 247, _visibility.scss */ .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xxlarge-only, .show-for-xxlarge-up { display: none !important; } /* line 251, _visibility.scss */ .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up { position: static !important; height: auto; width: auto; overflow: visible; clip: auto; } /* line 254, _visibility.scss */ .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xxlarge-only, .visible-for-xxlarge-up { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); } /* line 259, _visibility.scss */ table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.show-for-medium-only, table.show-for-medium-up, table.show-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up { display: table; } /* line 262, _visibility.scss */ thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.show-for-medium-only, thead.show-for-medium-up, thead.show-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up { display: table-header-group !important; } /* line 265, _visibility.scss */ tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.show-for-medium-only, tbody.show-for-medium-up, tbody.show-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up { display: table-row-group !important; } /* line 268, _visibility.scss */ tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.show-for-medium-only, tr.show-for-medium-up, tr.show-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up { display: table-row !important; } /* line 271, _visibility.scss */ th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.show-for-medium-only, td.show-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.show-for-medium, td.show-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up { display: table-cell !important; } } /* large displays */ @media only screen and (min-width: 64.063em) { /* line 244, _visibility.scss */ .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xxlarge-only, .hide-for-xxlarge-up { display: inherit !important; } /* line 247, _visibility.scss */ .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xxlarge-only, .show-for-xxlarge-up { display: none !important; } /* line 251, _visibility.scss */ .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up { position: static !important; height: auto; width: auto; overflow: visible; clip: auto; } /* line 254, _visibility.scss */ .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xxlarge-only, .visible-for-xxlarge-up { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); } /* line 259, _visibility.scss */ table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.show-for-large-only, table.show-for-large-up, table.show-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up { display: table; } /* line 262, _visibility.scss */ thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.show-for-large-only, thead.show-for-large-up, thead.show-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up { display: table-header-group !important; } /* line 265, _visibility.scss */ tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.show-for-large-only, tbody.show-for-large-up, tbody.show-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up { display: table-row-group !important; } /* line 268, _visibility.scss */ tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.show-for-large-only, tr.show-for-large-up, tr.show-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up { display: table-row !important; } /* line 271, _visibility.scss */ th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.show-for-large-only, td.show-for-large-only, th.show-for-large-up, td.show-for-large-up, th.show-for-large, td.show-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up { display: table-cell !important; } } /* xlarge displays */ @media only screen and (min-width: 90.063em) { /* line 244, _visibility.scss */ .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .hide-for-xxlarge-only, .hide-for-xxlarge-up { display: inherit !important; } /* line 247, _visibility.scss */ .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .show-for-xxlarge-only, .show-for-xxlarge-up { display: none !important; } /* line 251, _visibility.scss */ .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up { position: static !important; height: auto; width: auto; overflow: visible; clip: auto; } /* line 254, _visibility.scss */ .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .visible-for-xxlarge-only, .visible-for-xxlarge-up { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); } /* line 259, _visibility.scss */ table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.show-for-xlarge-only, table.show-for-xlarge-up, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up { display: table; } /* line 262, _visibility.scss */ thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.show-for-xlarge-only, thead.show-for-xlarge-up, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up { display: table-header-group !important; } /* line 265, _visibility.scss */ tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.show-for-xlarge-only, tbody.show-for-xlarge-up, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up { display: table-row-group !important; } /* line 268, _visibility.scss */ tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.show-for-xlarge-only, tr.show-for-xlarge-up, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up { display: table-row !important; } /* line 271, _visibility.scss */ th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.show-for-xlarge-only, td.show-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up { display: table-cell !important; } } /* xxlarge displays */ @media only screen and (min-width: 120.063em) { /* line 244, _visibility.scss */ .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .hide-for-xlarge-only, .show-for-xlarge-up, .show-for-xxlarge-only, .show-for-xxlarge-up { display: inherit !important; } /* line 247, _visibility.scss */ .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .show-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xxlarge-only, .hide-for-xxlarge-up { display: none !important; } /* line 251, _visibility.scss */ .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .hidden-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xxlarge-only, .visible-for-xxlarge-up { position: static !important; height: auto; width: auto; overflow: visible; clip: auto; } /* line 254, _visibility.scss */ .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .visible-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); } /* line 259, _visibility.scss */ table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.hide-for-xlarge-only, table.show-for-xlarge-up, table.show-for-xxlarge-only, table.show-for-xxlarge-up { display: table; } /* line 262, _visibility.scss */ thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.hide-for-xlarge-only, thead.show-for-xlarge-up, thead.show-for-xxlarge-only, thead.show-for-xxlarge-up { display: table-header-group !important; } /* line 265, _visibility.scss */ tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.hide-for-xlarge-only, tbody.show-for-xlarge-up, tbody.show-for-xxlarge-only, tbody.show-for-xxlarge-up { display: table-row-group !important; } /* line 268, _visibility.scss */ tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.hide-for-xlarge-only, tr.show-for-xlarge-up, tr.show-for-xxlarge-only, tr.show-for-xxlarge-up { display: table-row !important; } /* line 271, _visibility.scss */ th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.show-for-xxlarge-only, td.show-for-xxlarge-only, th.show-for-xxlarge-up, td.show-for-xxlarge-up { display: table-cell !important; } } /* Orientation targeting */ /* line 286, _visibility.scss */ .show-for-landscape, .hide-for-portrait { display: inherit !important; } /* line 288, _visibility.scss */ .hide-for-landscape, .show-for-portrait { display: none !important; } /* Specific visibility for tables */ /* line 293, _visibility.scss */ table.hide-for-landscape, table.show-for-portrait { display: table; } /* line 297, _visibility.scss */ thead.hide-for-landscape, thead.show-for-portrait { display: table-header-group !important; } /* line 301, _visibility.scss */ tbody.hide-for-landscape, tbody.show-for-portrait { display: table-row-group !important; } /* line 305, _visibility.scss */ tr.hide-for-landscape, tr.show-for-portrait { display: table-row !important; } /* line 310, _visibility.scss */ td.hide-for-landscape, td.show-for-portrait, th.hide-for-landscape, th.show-for-portrait { display: table-cell !important; } @media only screen and (orientation: landscape) { /* line 315, _visibility.scss */ .show-for-landscape, .hide-for-portrait { display: inherit !important; } /* line 317, _visibility.scss */ .hide-for-landscape, .show-for-portrait { display: none !important; } /* Specific visibility for tables */ /* line 322, _visibility.scss */ table.show-for-landscape, table.hide-for-portrait { display: table; } /* line 326, _visibility.scss */ thead.show-for-landscape, thead.hide-for-portrait { display: table-header-group !important; } /* line 330, _visibility.scss */ tbody.show-for-landscape, tbody.hide-for-portrait { display: table-row-group !important; } /* line 334, _visibility.scss */ tr.show-for-landscape, tr.hide-for-portrait { display: table-row !important; } /* line 339, _visibility.scss */ td.show-for-landscape, td.hide-for-portrait, th.show-for-landscape, th.hide-for-portrait { display: table-cell !important; } } @media only screen and (orientation: portrait) { /* line 345, _visibility.scss */ .show-for-portrait, .hide-for-landscape { display: inherit !important; } /* line 347, _visibility.scss */ .hide-for-portrait, .show-for-landscape { display: none !important; } /* Specific visibility for tables */ /* line 352, _visibility.scss */ table.show-for-portrait, table.hide-for-landscape { display: table; } /* line 356, _visibility.scss */ thead.show-for-portrait, thead.hide-for-landscape { display: table-header-group !important; } /* line 360, _visibility.scss */ tbody.show-for-portrait, tbody.hide-for-landscape { display: table-row-group !important; } /* line 364, _visibility.scss */ tr.show-for-portrait, tr.hide-for-landscape { display: table-row !important; } /* line 369, _visibility.scss */ td.show-for-portrait, td.hide-for-landscape, th.show-for-portrait, th.hide-for-landscape { display: table-cell !important; } } /* Touch-enabled device targeting */ /* line 374, _visibility.scss */ .show-for-touch { display: none !important; } /* line 375, _visibility.scss */ .hide-for-touch { display: inherit !important; } /* line 376, _visibility.scss */ .touch .show-for-touch { display: inherit !important; } /* line 377, _visibility.scss */ .touch .hide-for-touch { display: none !important; } /* Specific visibility for tables */ /* line 380, _visibility.scss */ table.hide-for-touch { display: table; } /* line 381, _visibility.scss */ .touch table.show-for-touch { display: table; } /* line 382, _visibility.scss */ thead.hide-for-touch { display: table-header-group !important; } /* line 383, _visibility.scss */ .touch thead.show-for-touch { display: table-header-group !important; } /* line 384, _visibility.scss */ tbody.hide-for-touch { display: table-row-group !important; } /* line 385, _visibility.scss */ .touch tbody.show-for-touch { display: table-row-group !important; } /* line 386, _visibility.scss */ tr.hide-for-touch { display: table-row !important; } /* line 387, _visibility.scss */ .touch tr.show-for-touch { display: table-row !important; } /* line 388, _visibility.scss */ td.hide-for-touch { display: table-cell !important; } /* line 389, _visibility.scss */ .touch td.show-for-touch { display: table-cell !important; } /* line 390, _visibility.scss */ th.hide-for-touch { display: table-cell !important; } /* line 391, _visibility.scss */ .touch th.show-for-touch { display: table-cell !important; }
src/main/webapp/help-quiet.html
maksonlee/repo-plugin
<div> <p> Make repo more quiet. This is passed to repo as <code>repo sync <i>-q</i></code>. </p> </div>
gradle_groovydoc/org/gradle/tooling/exceptions/package-frame.html
huntervwang/bobingqing_www
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>org.gradle.tooling.exceptions</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="keywords" CONTENT="org/gradle/tooling/exceptions package"> <link href="groovy.ico" type="image/x-icon" rel="shortcut icon"> <link href="groovy.ico" type="image/x-icon" rel="icon"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body class="left"> <div class="indexHeader"> <b><a href="package-summary.html" target="classFrame">org.gradle.tooling.exceptions</a></b> </div> <div class="indexContainer"> <h2>Exceptions</h2> <ul> <li><a href="UnsupportedBuildArgumentException.html" title="exception in org.gradle.tooling.exceptions" target="classFrame">UnsupportedBuildArgumentException</a></li><li><a href="UnsupportedOperationConfigurationException.html" title="exception in org.gradle.tooling.exceptions" target="classFrame">UnsupportedOperationConfigurationException</a></li> </ul> </div> </body> </html>
test/expected/template.en_us.html
AdesisNetlife/grunt-jade-i18n
<body> <div> <h1>Hello world!</h1> <h2>and hello to you</h2> </div> </body>
Search Display Templates/AngularJS Templates (CSWP)/Part2/Control_Angular_Part2.html
robstefson/DisplayTemplates
<html xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"> <head> <title>AngularJS Part2</title> <!--[if gte mso 9]><xml> <mso:CustomDocumentProperties> <mso:TemplateHidden msdt:dt="string">0</mso:TemplateHidden> <mso:MasterPageDescription msdt:dt="string">This is the control display template for AngularJS.</mso:MasterPageDescription> <mso:ContentTypeId msdt:dt="string">0x0101002039C03B61C64EC4A04F5361F385106601</mso:ContentTypeId> <mso:TargetControlType msdt:dt="string">;#Content Web Parts;#</mso:TargetControlType> <mso:HtmlDesignAssociated msdt:dt="string">1</mso:HtmlDesignAssociated> </mso:CustomDocumentProperties> </xml><![endif]--> </head> <body> <script> SP.SOD.registerSod('angular', "//ajax.googleapis.com/ajax/libs/angularjs/1.2.20/angular.min.js"); </script> <div id="Angular_part2"> <!--#_ if (!$isNull(ctx.ClientControl) && !$isNull(ctx.ClientControl.shouldRenderControl) && !ctx.ClientControl.shouldRenderControl()) { return ""; } var elementId = $htmlEncode(ctx.ClientControl.get_nextUniqueId() + "_Results"); ctx.ElementId = elementId; _#--> <div ng-controller="DisplayControl" id="_#= elementId =#_" style="display:none;"> <ul class="cbs-List"> <li ng-show="ResultRows.length" ng-repeat="ResultRow in ResultRows"> <div class="cbs-Item"> <a class="cbs-ItemLink" title="{{ ResultRow.Line1.value }}"> <img class="cbs-Thumbnail" ng-src="{{ ResultRow.DocIcon }}" alt="{{ ResultRow.Line1.value }}" /> </a> <a class="cbs-Line1Link" href="{{ ResultRow.Path.value }}" title="{{ ResultRow.Line1.value }}">{{ ResultRow.Line1.value }}</a> <div ng-show="!ResultRow.Line2.isEmpty" class="cbs-Line2" title="{{ ResultRow.Line2.value }}">{{ ResultRow.Line2.value }}</div> </div> </li> <li ng-show="!ResultRows.length"> _#= Srch.ContentBySearch.getControlTemplateEncodedNoResultsMessage(ctx.ClientControl) =#_ </li> </ul> </div> <!--#_ ctx.ListDataJSONGroupsKey = "ResultTables"; _#--> _#= ctx.RenderGroups(ctx) =#_ </div> </body> </html>
poi-3.14/docs/apidocs/org/apache/poi/xssf/usermodel/TextAlign.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> TextAlign (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="TextAlign (POI API Documentation)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TextAlign.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/poi/xssf/usermodel/ListAutoNumber.html" title="enum in org.apache.poi.xssf.usermodel"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAutofit.html" title="enum in org.apache.poi.xssf.usermodel"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/poi/xssf/usermodel/TextAlign.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TextAlign.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#enum_constant_summary">ENUM CONSTANTS</A>&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#enum_constant_detail">ENUM CONSTANTS</A>&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.apache.poi.xssf.usermodel</FONT> <BR> Enum TextAlign</H2> <PRE> java.lang.Object <IMG SRC="../../../../../resources/inherit.gif" ALT="extended by ">java.lang.Enum&lt;<A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A>&gt; <IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.poi.xssf.usermodel.TextAlign</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable, java.lang.Comparable&lt;<A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A>&gt;</DD> </DL> <HR> <DL> <DT><PRE>public enum <B>TextAlign</B><DT>extends java.lang.Enum&lt;<A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A>&gt;</DL> </PRE> <P> Specified a list of text alignment types <P> <P> <HR> <P> <!-- =========== ENUM CONSTANT SUMMARY =========== --> <A NAME="enum_constant_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Enum Constant Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html#CENTER">CENTER</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Align text in the center.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html#DIST">DIST</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html#JUSTIFY">JUSTIFY</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Align text so that it is justified across the whole line.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html#JUSTIFY_LOW">JUSTIFY_LOW</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html#LEFT">LEFT</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Align text to the left margin.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html#RIGHT">RIGHT</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Align text to the right margin.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html#THAI_DIST">THAI_DIST</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html#valueOf(java.lang.String)">valueOf</A></B>(java.lang.String&nbsp;name)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the enum constant of this type with the specified name.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A>[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html#values()">values</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an array containing the constants of this enum type, in the order they are declared.</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Enum"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Enum</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>getClass, notify, notifyAll, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ============ ENUM CONSTANT DETAIL =========== --> <A NAME="enum_constant_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Enum Constant Detail</B></FONT></TH> </TR> </TABLE> <A NAME="LEFT"><!-- --></A><H3> LEFT</H3> <PRE> public static final <A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A> <B>LEFT</B></PRE> <DL> <DD>Align text to the left margin. <P> <DL> </DL> </DL> <HR> <A NAME="CENTER"><!-- --></A><H3> CENTER</H3> <PRE> public static final <A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A> <B>CENTER</B></PRE> <DL> <DD>Align text in the center. <P> <DL> </DL> </DL> <HR> <A NAME="RIGHT"><!-- --></A><H3> RIGHT</H3> <PRE> public static final <A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A> <B>RIGHT</B></PRE> <DL> <DD>Align text to the right margin. <P> <DL> </DL> </DL> <HR> <A NAME="JUSTIFY"><!-- --></A><H3> JUSTIFY</H3> <PRE> public static final <A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A> <B>JUSTIFY</B></PRE> <DL> <DD>Align text so that it is justified across the whole line. It is smart in the sense that it will not justify sentences which are short <P> <DL> </DL> </DL> <HR> <A NAME="JUSTIFY_LOW"><!-- --></A><H3> JUSTIFY_LOW</H3> <PRE> public static final <A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A> <B>JUSTIFY_LOW</B></PRE> <DL> <DL> </DL> </DL> <HR> <A NAME="DIST"><!-- --></A><H3> DIST</H3> <PRE> public static final <A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A> <B>DIST</B></PRE> <DL> <DL> </DL> </DL> <HR> <A NAME="THAI_DIST"><!-- --></A><H3> THAI_DIST</H3> <PRE> public static final <A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A> <B>THAI_DIST</B></PRE> <DL> <DL> </DL> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="values()"><!-- --></A><H3> values</H3> <PRE> public static <A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A>[] <B>values</B>()</PRE> <DL> <DD>Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows: <pre> for (TextAlign c : TextAlign.values()) &nbsp; System.out.println(c); </pre> <P> <DD><DL> <DT><B>Returns:</B><DD>an array containing the constants of this enum type, in the order they are declared</DL> </DD> </DL> <HR> <A NAME="valueOf(java.lang.String)"><!-- --></A><H3> valueOf</H3> <PRE> public static <A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAlign.html" title="enum in org.apache.poi.xssf.usermodel">TextAlign</A> <B>valueOf</B>(java.lang.String&nbsp;name)</PRE> <DL> <DD>Returns the enum constant of this type with the specified name. The string must match <I>exactly</I> an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.) <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>name</CODE> - the name of the enum constant to be returned. <DT><B>Returns:</B><DD>the enum constant with the specified name <DT><B>Throws:</B> <DD><CODE>java.lang.IllegalArgumentException</CODE> - if this enum type has no constant with the specified name <DD><CODE>java.lang.NullPointerException</CODE> - if the argument is null</DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TextAlign.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/poi/xssf/usermodel/ListAutoNumber.html" title="enum in org.apache.poi.xssf.usermodel"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/poi/xssf/usermodel/TextAutofit.html" title="enum in org.apache.poi.xssf.usermodel"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/poi/xssf/usermodel/TextAlign.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TextAlign.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#enum_constant_summary">ENUM CONSTANTS</A>&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#enum_constant_detail">ENUM CONSTANTS</A>&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></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>
client/components/views/triggers/channel-email.html
ZakMooney/cucumber-frontend
<div layout="column"> <md-input-container> <label> <translate>To Address</translate> </label> <input type="text" name="to" ng-model="trigger.attr_1" placeholder="{{ 'Destination email' | translate }}" required></input> <div ng-messages="myForm.to.$error" md-auto-hide="false"> <div ng-message="required" translate>You must set the email</div> </div> </md-input-container> <md-input-container> <label> <translate>Sender Address</translate> </label> <input type="email" name="from" ng-model="trigger.attr_2" placeholder="{{ 'Sender email' | translate }}" required></input> <div ng-messages="myForm.from.$error" md-auto-hide="false"> <div ng-message="required" translate>You must set a from address</div> <div ng-message="email" translate>Enter a valid email</div> </div> </md-input-container> <md-input-container> <label> <translate>Subject</translate> </label> <input type="text" name="subject" ng-model="trigger.attr_3" placeholder="{{ 'Enter a subject' | translate }}" required md-maxlength=100></input> <div ng-messages="myForm.subject.$error" md-auto-hide="false"> <div ng-message="required" translate>You must set a subject</div> <div ng-message="md-maxlength" translate>Must be less than 100 characters</div> </div> </md-input-container> <md-input-container> <label> <translate>Message Body</translate> </label> <textarea name="body" ng-model="trigger.attr_4" placeholder="What would you like to say" rows=7 md-maxlength=1000 required></textarea> <div ng-messages="myForm.body.$error" md-auto-hide="false"> <div ng-message="required" translate>You must set a body for the message</div> <div ng-message="md-maxlength" translate>Must be less than 1000 characters</div> </div> </md-input-container> </div>
poi-3.14/docs/apidocs/org/apache/poi/util/TempFile.DefaultTempFileCreationStrategy.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> TempFile.DefaultTempFileCreationStrategy (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="TempFile.DefaultTempFileCreationStrategy (POI API Documentation)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TempFile.DefaultTempFileCreationStrategy.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../org/apache/poi/util/TempFile.html" title="class in org.apache.poi.util"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/poi/util/TempFileCreationStrategy.html" title="interface in org.apache.poi.util"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/apache/poi/util/TempFile.DefaultTempFileCreationStrategy.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TempFile.DefaultTempFileCreationStrategy.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.apache.poi.util</FONT> <BR> Class TempFile.DefaultTempFileCreationStrategy</H2> <PRE> java.lang.Object <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.poi.util.TempFile.DefaultTempFileCreationStrategy</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../org/apache/poi/util/TempFileCreationStrategy.html" title="interface in org.apache.poi.util">TempFileCreationStrategy</A></DD> </DL> <DL> <DT><B>Enclosing class:</B><DD><A HREF="../../../../org/apache/poi/util/TempFile.html" title="class in org.apache.poi.util">TempFile</A></DD> </DL> <HR> <DL> <DT><PRE>public static class <B>TempFile.DefaultTempFileCreationStrategy</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../org/apache/poi/util/TempFileCreationStrategy.html" title="interface in org.apache.poi.util">TempFileCreationStrategy</A></DL> </PRE> <P> Default implementation of the <A HREF="../../../../org/apache/poi/util/TempFileCreationStrategy.html" title="interface in org.apache.poi.util"><CODE>TempFileCreationStrategy</CODE></A> used by <A HREF="../../../../org/apache/poi/util/TempFile.html" title="class in org.apache.poi.util"><CODE>TempFile</CODE></A>: Files are collected into one directory and by default are deleted on exit from the VM. Files can be kept by defining the system property <code>poi.keep.tmp.files</code>. <P> <P> <HR> <P> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../org/apache/poi/util/TempFile.DefaultTempFileCreationStrategy.html#TempFile.DefaultTempFileCreationStrategy()">TempFile.DefaultTempFileCreationStrategy</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates the strategy so that it creates the temporary files in the default directory.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../org/apache/poi/util/TempFile.DefaultTempFileCreationStrategy.html#TempFile.DefaultTempFileCreationStrategy(java.io.File)">TempFile.DefaultTempFileCreationStrategy</A></B>(java.io.File&nbsp;dir)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates the strategy allowing to set the</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.io.File</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/poi/util/TempFile.DefaultTempFileCreationStrategy.html#createTempFile(java.lang.String, java.lang.String)">createTempFile</A></B>(java.lang.String&nbsp;prefix, java.lang.String&nbsp;suffix)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates a new and empty temporary file.</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TH> </TR> </TABLE> <A NAME="TempFile.DefaultTempFileCreationStrategy()"><!-- --></A><H3> TempFile.DefaultTempFileCreationStrategy</H3> <PRE> public <B>TempFile.DefaultTempFileCreationStrategy</B>()</PRE> <DL> <DD>Creates the strategy so that it creates the temporary files in the default directory. <P> <DL> <DT><B>See Also:</B><DD><CODE>File.createTempFile(String, String)</CODE></DL> </DL> <HR> <A NAME="TempFile.DefaultTempFileCreationStrategy(java.io.File)"><!-- --></A><H3> TempFile.DefaultTempFileCreationStrategy</H3> <PRE> public <B>TempFile.DefaultTempFileCreationStrategy</B>(java.io.File&nbsp;dir)</PRE> <DL> <DD>Creates the strategy allowing to set the <P> <DL> <DT><B>Parameters:</B><DD><CODE>dir</CODE> - The directory where the temporary files will be created (<code>null</code> to use the default directory).<DT><B>See Also:</B><DD><CODE>File.createTempFile(String, String, File)</CODE></DL> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="createTempFile(java.lang.String, java.lang.String)"><!-- --></A><H3> createTempFile</H3> <PRE> public java.io.File <B>createTempFile</B>(java.lang.String&nbsp;prefix, java.lang.String&nbsp;suffix) throws java.io.IOException</PRE> <DL> <DD><B>Description copied from interface: <CODE><A HREF="../../../../org/apache/poi/util/TempFileCreationStrategy.html#createTempFile(java.lang.String, java.lang.String)">TempFileCreationStrategy</A></CODE></B></DD> <DD>Creates a new and empty temporary file. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/apache/poi/util/TempFileCreationStrategy.html#createTempFile(java.lang.String, java.lang.String)">createTempFile</A></CODE> in interface <CODE><A HREF="../../../../org/apache/poi/util/TempFileCreationStrategy.html" title="interface in org.apache.poi.util">TempFileCreationStrategy</A></CODE></DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>prefix</CODE> - The prefix to be used to generate the name of the temporary file.<DD><CODE>suffix</CODE> - The suffix to be used to generate the name of the temporary file. <DT><B>Returns:</B><DD>The path to the newly created and empty temporary file. <DT><B>Throws:</B> <DD><CODE>java.io.IOException</CODE> - If no temporary file could be created.</DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TempFile.DefaultTempFileCreationStrategy.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../org/apache/poi/util/TempFile.html" title="class in org.apache.poi.util"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/poi/util/TempFileCreationStrategy.html" title="interface in org.apache.poi.util"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/apache/poi/util/TempFile.DefaultTempFileCreationStrategy.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TempFile.DefaultTempFileCreationStrategy.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright 2016 The Apache Software Foundation or its licensors, as applicable.</i> </BODY> </HTML>
tools/ant-contrib/docs/api/net/sf/antcontrib/design/VerifyDesignDelegate.html
0x90sled/droidtowers
<!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_09) on Thu Nov 02 11:46:40 EST 2006 --> <TITLE> VerifyDesignDelegate (Ant Contrib) </TITLE> <META NAME="keywords" CONTENT="net.sf.antcontrib.design.VerifyDesignDelegate class"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="VerifyDesignDelegate (Ant Contrib)"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../net/sf/antcontrib/design/VerifyDesign.html" title="class in net.sf.antcontrib.design"><B>PREV CLASS</B></A>&nbsp; &nbsp;NEXT CLASS</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?net/sf/antcontrib/design/VerifyDesignDelegate.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="VerifyDesignDelegate.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> net.sf.antcontrib.design</FONT> <BR> Class VerifyDesignDelegate</H2> <PRE> java.lang.Object <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>net.sf.antcontrib.design.VerifyDesignDelegate</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../net/sf/antcontrib/design/Log.html" title="interface in net.sf.antcontrib.design">Log</A></DD> </DL> <HR> <DL> <DT><PRE>public class <B>VerifyDesignDelegate</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../net/sf/antcontrib/design/Log.html" title="interface in net.sf.antcontrib.design">Log</A></DL> </PRE> <P> <DL> <DT><B>Author:</B></DT> <DD>dhiller</DD> </DL> <HR> <P> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../net/sf/antcontrib/design/VerifyDesignDelegate.html#VerifyDesignDelegate(org.apache.tools.ant.Task)">VerifyDesignDelegate</A></B>(org.apache.tools.ant.Task&nbsp;task)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../net/sf/antcontrib/design/VerifyDesignDelegate.html#addConfiguredPath(org.apache.tools.ant.types.Path)">addConfiguredPath</A></B>(org.apache.tools.ant.types.Path&nbsp;path)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../net/sf/antcontrib/design/VerifyDesignDelegate.html#execute()">execute</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../net/sf/antcontrib/design/VerifyDesignDelegate.html#getPackageName(java.lang.String)">getPackageName</A></B>(java.lang.String&nbsp;className)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../net/sf/antcontrib/design/VerifyDesignDelegate.html#log(java.lang.String, int)">log</A></B>(java.lang.String&nbsp;msg, int&nbsp;level)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../net/sf/antcontrib/design/VerifyDesignDelegate.html#setCircularDesign(boolean)">setCircularDesign</A></B>(boolean&nbsp;isCircularDesign)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../net/sf/antcontrib/design/VerifyDesignDelegate.html#setDeleteFiles(boolean)">setDeleteFiles</A></B>(boolean&nbsp;deleteFiles)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../net/sf/antcontrib/design/VerifyDesignDelegate.html#setDesign(java.io.File)">setDesign</A></B>(java.io.File&nbsp;f)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../net/sf/antcontrib/design/VerifyDesignDelegate.html#setFillInBuildException(boolean)">setFillInBuildException</A></B>(boolean&nbsp;b)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../net/sf/antcontrib/design/VerifyDesignDelegate.html#setJar(java.io.File)">setJar</A></B>(java.io.File&nbsp;f)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../net/sf/antcontrib/design/VerifyDesignDelegate.html#setNeedDeclarationsDefault(boolean)">setNeedDeclarationsDefault</A></B>(boolean&nbsp;b)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../net/sf/antcontrib/design/VerifyDesignDelegate.html#setNeedDependsDefault(boolean)">setNeedDependsDefault</A></B>(boolean&nbsp;b)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TH> </TR> </TABLE> <A NAME="VerifyDesignDelegate(org.apache.tools.ant.Task)"><!-- --></A><H3> VerifyDesignDelegate</H3> <PRE> public <B>VerifyDesignDelegate</B>(org.apache.tools.ant.Task&nbsp;task)</PRE> <DL> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="addConfiguredPath(org.apache.tools.ant.types.Path)"><!-- --></A><H3> addConfiguredPath</H3> <PRE> public void <B>addConfiguredPath</B>(org.apache.tools.ant.types.Path&nbsp;path)</PRE> <DL> <DD><DL> </DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="setJar(java.io.File)"><!-- --></A><H3> setJar</H3> <PRE> public void <B>setJar</B>(java.io.File&nbsp;f)</PRE> <DL> <DD><DL> </DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="setDesign(java.io.File)"><!-- --></A><H3> setDesign</H3> <PRE> public void <B>setDesign</B>(java.io.File&nbsp;f)</PRE> <DL> <DD><DL> </DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="setCircularDesign(boolean)"><!-- --></A><H3> setCircularDesign</H3> <PRE> public void <B>setCircularDesign</B>(boolean&nbsp;isCircularDesign)</PRE> <DL> <DD><DL> </DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="setDeleteFiles(boolean)"><!-- --></A><H3> setDeleteFiles</H3> <PRE> public void <B>setDeleteFiles</B>(boolean&nbsp;deleteFiles)</PRE> <DL> <DD><DL> </DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="setFillInBuildException(boolean)"><!-- --></A><H3> setFillInBuildException</H3> <PRE> public void <B>setFillInBuildException</B>(boolean&nbsp;b)</PRE> <DL> <DD><DL> </DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="setNeedDeclarationsDefault(boolean)"><!-- --></A><H3> setNeedDeclarationsDefault</H3> <PRE> public void <B>setNeedDeclarationsDefault</B>(boolean&nbsp;b)</PRE> <DL> <DD><DL> </DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="setNeedDependsDefault(boolean)"><!-- --></A><H3> setNeedDependsDefault</H3> <PRE> public void <B>setNeedDependsDefault</B>(boolean&nbsp;b)</PRE> <DL> <DD><DL> </DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="execute()"><!-- --></A><H3> execute</H3> <PRE> public void <B>execute</B>()</PRE> <DL> <DD><DL> </DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getPackageName(java.lang.String)"><!-- --></A><H3> getPackageName</H3> <PRE> public static java.lang.String <B>getPackageName</B>(java.lang.String&nbsp;className)</PRE> <DL> <DD><DL> </DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="log(java.lang.String, int)"><!-- --></A><H3> log</H3> <PRE> public void <B>log</B>(java.lang.String&nbsp;msg, int&nbsp;level)</PRE> <DL> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../../../net/sf/antcontrib/design/Log.html#log(java.lang.String, int)">log</A></CODE> in interface <CODE><A HREF="../../../../net/sf/antcontrib/design/Log.html" title="interface in net.sf.antcontrib.design">Log</A></CODE></DL> </DD> <DD><DL> </DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../net/sf/antcontrib/design/VerifyDesign.html" title="class in net.sf.antcontrib.design"><B>PREV CLASS</B></A>&nbsp; &nbsp;NEXT CLASS</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?net/sf/antcontrib/design/VerifyDesignDelegate.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="VerifyDesignDelegate.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
src/Opten.Umbraco.Localization.Web.UI/App_Plugins/UmbracoForms/Backoffice/FormSecurity/edit.html
OPTEN/Opten.Umbraco.Localization
<form name="securityForm" ng-controller="UmbracoForms.Editors.Security.EditController" ng-show="loaded" ng-submit="save()" val-form-manager> <umb-panel> <umb-header> <div class="span7"> <h1 class="headline">Forms Security</h1> </div> <div class="span5"></div> </umb-header> <div class="umb-panel-body umb-scrollable row-fluid"> <div class="tab-content form-horizontal" style="padding-bottom: 90px"> <div class="umb-pane"> <umb-control-group label="Manage Forms" description="Grant or deny access to managing forms"> <input type="checkbox" ng-model="security.userSecurity.manageForms"> </umb-control-group> <umb-control-group label="Manage Workflows" description="Grant or deny access to managing all forms workflow items"> <input type="checkbox" ng-model="security.userSecurity.manageWorkflows"> </umb-control-group> <umb-control-group label="Manage Data Sources" description="Grant or deny access to managing any Data sources for all forms"> <input type="checkbox" ng-model="security.userSecurity.manageDataSources"> </umb-control-group> <umb-control-group label="Manage PreValue Sources" description="Grant or deny access to managing any PreValue sources for all forms"> <input type="checkbox" ng-model="security.userSecurity.managePreValueSources"> </umb-control-group> <umb-control-group label="Form Security" description="Grant or deny access to forms" ng-if="security.formsSecurity.length > 0"> <table class="table"> <thead> <tr> <th>Form Name</th> <th>Has Access</th> </tr> </thead> <tbody> <tr ng-repeat="form in security.formsSecurity | orderBy: 'FormName'"> <td> {{ form.FormName }} <small class="guiDialogTiny">{{ form.Fields }}</small> </td> <td><input type="checkbox" ng-model="form.HasAccess"></td> </tr> </tbody> </table> </umb-control-group> <div class="umb-tab-buttons" detect-fold> <div class="btn-group"> <button type="submit" data-hotkey="ctrl+s" class="btn btn-success"> <localize key="buttons_save">Save</localize> </button> </div> </div> </div> </div> </div> </umb-panel> </form>
src/deps/boost/doc/html/boost/accumulators/impl/variance_impl.html
mxrrow/zaicoin
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct template variance_impl</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="../../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.variance_hpp" title="Header &lt;boost/accumulators/statistics/variance.hpp&gt;"> <link rel="prev" href="lazy_variance_impl.html" title="Struct template lazy_variance_impl"> <link rel="next" href="../tag/lazy_variance.html" title="Struct lazy_variance"> </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="lazy_variance_impl.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.variance_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="../tag/lazy_variance.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.accumulators.impl.variance_impl"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template variance_impl</span></h2> <p>boost::accumulators::impl::variance_impl &#8212; Iterative calculation of variance. </p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.variance_hpp" title="Header &lt;boost/accumulators/statistics/variance.hpp&gt;">boost/accumulators/statistics/variance.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Sample<span class="special">,</span> <span class="keyword">typename</span> MeanFeature<span class="special">,</span> <span class="keyword">typename</span> Tag<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="variance_impl.html" title="Struct template variance_impl">variance_impl</a> <span class="special">{</span> <span class="comment">// types</span> <span class="keyword">typedef</span> <span class="identifier">numeric</span><span class="special">::</span><span class="identifier">functional</span><span class="special">::</span><span class="identifier">average</span><span class="special">&lt;</span> <span class="identifier">Sample</span><span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <span class="special">&gt;</span><span class="special">::</span><span class="identifier">result_type</span> <a name="boost.accumulators.impl.variance_impl.result_type"></a><span class="identifier">result_type</span><span class="special">;</span> <span class="comment">// <a class="link" href="variance_impl.html#boost.accumulators.impl.variance_implconstruct-copy-destruct">construct/copy/destruct</a></span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Args<span class="special">&gt;</span> <a class="link" href="variance_impl.html#idp27182624-bb"><span class="identifier">variance_impl</span></a><span class="special">(</span><span class="identifier">Args</span> <span class="keyword">const</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="comment">// <a class="link" href="variance_impl.html#idp27180400-bb">public member functions</a></span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Args<span class="special">&gt;</span> <span class="keyword">void</span> <a class="link" href="variance_impl.html#idp27180608-bb"><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span></a><span class="special">(</span><span class="identifier">Args</span> <span class="keyword">const</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="identifier">result_type</span> <a class="link" href="variance_impl.html#idp27181824-bb"><span class="identifier">result</span></a><span class="special">(</span><span class="identifier">dont_care</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp18855296"></a><h2>Description</h2> <p>Iterative calculation of sample variance <span class="inlinemediaobject"><img src="../../../images/accumulators/form_75.png"></span> according to the formula </p> <div class="equation"> <a name="idp18856880"></a><p class="title"><b>Equation&#160;1.23.&#160;</b></p> <div class="equation-contents"><div class="mediaobject" align="center"><img src="../../../images/accumulators/form_76.png" align="middle"></div></div> </div> <p><br class="equation-break"> where </p> <div class="equation"> <a name="idp18858480"></a><p class="title"><b>Equation&#160;1.24.&#160;</b></p> <div class="equation-contents"><div class="mediaobject" align="center"><img src="../../../images/accumulators/form_74.png" align="middle"></div></div> </div> <p><br class="equation-break"> is the estimate of the sample mean and <span class="inlinemediaobject"><img src="../../../images/accumulators/form_60.png"></span> is the number of samples.</p> <p>Note that the sample variance is not defined for <span class="inlinemediaobject"><img src="../../../images/accumulators/form_77.png"></span>.</p> <p>A simplification can be obtained by the approximate recursion </p> <div class="equation"> <a name="idp18862672"></a><p class="title"><b>Equation&#160;1.25.&#160;</b></p> <div class="equation-contents"><div class="mediaobject" align="center"><img src="../../../images/accumulators/form_78.png" align="middle"></div></div> </div> <p><br class="equation-break"> because the difference </p> <div class="equation"> <a name="idp18864224"></a><p class="title"><b>Equation&#160;1.26.&#160;</b></p> <div class="equation-contents"><div class="mediaobject" align="center"><img src="../../../images/accumulators/form_79.png" align="middle"></div></div> </div> <p><br class="equation-break"> converges to zero as <span class="inlinemediaobject"><img src="../../../images/accumulators/form_80.png"></span>. However, for small <span class="inlinemediaobject"><img src="../../../images/accumulators/form_17.png"></span> the difference can be non-negligible. </p> <div class="refsect2"> <a name="idp18868256"></a><h3> <a name="boost.accumulators.impl.variance_implconstruct-copy-destruct"></a><code class="computeroutput">variance_impl</code> public construct/copy/destruct</h3> <div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><pre class="literallayout"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Args<span class="special">&gt;</span> <a name="idp27182624-bb"></a><span class="identifier">variance_impl</span><span class="special">(</span><span class="identifier">Args</span> <span class="keyword">const</span> <span class="special">&amp;</span> args<span class="special">)</span><span class="special">;</span></pre></li></ol></div> </div> <div class="refsect2"> <a name="idp18873408"></a><h3> <a name="idp27180400-bb"></a><code class="computeroutput">variance_impl</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">&lt;</span><span class="keyword">typename</span> Args<span class="special">&gt;</span> <span class="keyword">void</span> <a name="idp27180608-bb"></a><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span><span class="special">(</span><span class="identifier">Args</span> <span class="keyword">const</span> <span class="special">&amp;</span> args<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><span class="identifier">result_type</span> <a name="idp27181824-bb"></a><span class="identifier">result</span><span class="special">(</span><span class="identifier">dont_care</span><span class="special">)</span> <span class="keyword">const</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 &#169; 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="lazy_variance_impl.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics.variance_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="../tag/lazy_variance.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
original_sources/boost_1_59_0/doc/html/boost/container/ordered_unique_range_t.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 ordered_unique_range_t</title> <link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../boost_container_header_reference.html#header.boost.container.container_fwd_hpp" title="Header &lt;boost/container/container_fwd.hpp&gt;"> <link rel="prev" href="ordered_range_t.html" title="Struct ordered_range_t"> <link rel="next" href="tree_type_enum.html" title="Type tree_type_enum"> </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="ordered_range_t.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_container_header_reference.html#header.boost.container.container_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="tree_type_enum.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.container.ordered_unique_range_t"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct ordered_unique_range_t</span></h2> <p>boost::container::ordered_unique_range_t</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../boost_container_header_reference.html#header.boost.container.container_fwd_hpp" title="Header &lt;boost/container/container_fwd.hpp&gt;">boost/container/container_fwd.hpp</a>&gt; </span> <span class="keyword">struct</span> <a class="link" href="ordered_unique_range_t.html" title="Struct ordered_unique_range_t">ordered_unique_range_t</a> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">container</span><span class="special">::</span><span class="identifier">ordered_range_t</span> <span class="special">{</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp151977680"></a><h2>Description</h2> <p>Type used to tag that the input range is guaranteed to be ordered and unique </p> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2009-2013 Ion Gaztanaga<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="ordered_range_t.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_container_header_reference.html#header.boost.container.container_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="tree_type_enum.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
original_sources/boost_1_59_0/libs/log/doc/html/boost/log/attributes/mutable_consta_idp51793648/impl.html
TyRoXx/cdm
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Class impl</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&#160;1.&#160;Boost.Log v2"> <link rel="up" href="../mutable_consta_idp51793648.html#idp121451776" title="Description"> <link rel="prev" href="../mutable_consta_idp51793648.html" title="Class template mutable_constant&lt;T, void, void, void&gt;"> <link rel="next" href="../named_scope.html" title="Class named_scope"> </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="../mutable_consta_idp51793648.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../mutable_consta_idp51793648.html#idp121451776"><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="../named_scope.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.log.attributes.mutable_consta_idp51793648.impl"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Class impl</span></h2> <p>boost::log::attributes::mutable_constant&lt;T, void, void, void&gt;::impl &#8212; Factory implementation. </p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../../../attributes.html#header.boost.log.attributes.mutable_constant_hpp" title="Header &lt;boost/log/attributes/mutable_constant.hpp&gt;">boost/log/attributes/mutable_constant.hpp</a>&gt; </span> <span class="comment">// Factory implementation.</span> <span class="keyword">class</span> <a class="link" href="impl.html" title="Class impl">impl</a> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">attribute</span><span class="special">::</span><span class="identifier">impl</span> <span class="special">{</span> <span class="keyword">public</span><span class="special">:</span> <span class="comment">// <a class="link" href="impl.html#boost.log.attributes.mutable_consta_idp51793648.implconstruct-copy-destruct">construct/copy/destruct</a></span> <span class="keyword">explicit</span> <a class="link" href="impl.html#idp51805888-bb"><span class="identifier">impl</span></a><span class="special">(</span><span class="identifier">value_type</span> <span class="keyword">const</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="keyword">explicit</span> <a class="link" href="impl.html#idp51807568-bb"><span class="identifier">impl</span></a><span class="special">(</span><span class="identifier">value_type</span> <span class="special">&amp;&amp;</span><span class="special">)</span><span class="special">;</span> <span class="comment">// <a class="link" href="impl.html#idp51798800-bb">public member functions</a></span> <span class="keyword">virtual</span> <a class="link" href="../../attribute_value.html" title="Class attribute_value">attribute_value</a> <a class="link" href="impl.html#idp51799360-bb"><span class="identifier">get_value</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="impl.html#idp51801536-bb"><span class="identifier">set</span></a><span class="special">(</span><span class="identifier">value_type</span> <span class="keyword">const</span> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="keyword">void</span> <a class="link" href="impl.html#idp51803072-bb"><span class="identifier">set</span></a><span class="special">(</span><span class="identifier">value_type</span> <span class="special">&amp;&amp;</span><span class="special">)</span><span class="special">;</span> <span class="identifier">value_type</span> <a class="link" href="impl.html#idp51804608-bb"><span class="identifier">get</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp121547744"></a><h2>Description</h2> <div class="refsect2"> <a name="idp121548160"></a><h3> <a name="boost.log.attributes.mutable_consta_idp51793648.implconstruct-copy-destruct"></a><code class="computeroutput">impl</code> public construct/copy/destruct</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"> <pre class="literallayout"><span class="keyword">explicit</span> <a name="idp51805888-bb"></a><span class="identifier">impl</span><span class="special">(</span><span class="identifier">value_type</span> <span class="keyword">const</span> <span class="special">&amp;</span> value<span class="special">)</span><span class="special">;</span></pre> <p>Initializing constructor </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">explicit</span> <a name="idp51807568-bb"></a><span class="identifier">impl</span><span class="special">(</span><span class="identifier">value_type</span> <span class="special">&amp;&amp;</span> value<span class="special">)</span><span class="special">;</span></pre> <p>Initializing constructor </p> </li> </ol></div> </div> <div class="refsect2"> <a name="idp121563216"></a><h3> <a name="idp51798800-bb"></a><code class="computeroutput">impl</code> public member functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"> <pre class="literallayout"><span class="keyword">virtual</span> <a class="link" href="../../attribute_value.html" title="Class attribute_value">attribute_value</a> <a name="idp51799360-bb"></a><span class="identifier">get_value</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre> <p> </p> <div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody><tr> <td><p><span class="term">Returns:</span></p></td> <td><p>The actual attribute value. It shall not return empty values (exceptions shall be used to indicate errors). </p></td> </tr></tbody> </table></div> </li> <li class="listitem"><pre class="literallayout"><span class="keyword">void</span> <a name="idp51801536-bb"></a><span class="identifier">set</span><span class="special">(</span><span class="identifier">value_type</span> <span class="keyword">const</span> <span class="special">&amp;</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><span class="keyword">void</span> <a name="idp51803072-bb"></a><span class="identifier">set</span><span class="special">(</span><span class="identifier">value_type</span> <span class="special">&amp;&amp;</span> value<span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><span class="identifier">value_type</span> <a name="idp51804608-bb"></a><span class="identifier">get</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</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 &#169; 2007-2015 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="../mutable_consta_idp51793648.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../mutable_consta_idp51793648.html#idp121451776"><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="../named_scope.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
admin/app/index.html
ceph/calamari-clients
<!doctype html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" ng-app="adminApp"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>{{pageTitle}}</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width"> <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <!-- build:css({.tmp,app}) styles/main.css --> <link rel="stylesheet" href="styles/main.css"> <!-- endbuild --> </head> <body> <!--[if lt IE 7]> <p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a>or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a>to better experience this site.</p> <![endif]--> <!--[if lt IE 9]> <script src="bower_components/es5-shim/es5-shim.js"></script> <script src="bower_components/json3/lib/json3.min.js"></script> <![endif]--> <!-- Add your site or application content here --> <div class="navbar"> <div class="navbar-inner"> <ul class="nav"> <a class="brand" href="http://ceph.com"><img src="images/logo.png" alt="Ceph Logo" /></a> </ul> <button class='pull-right btn btn-danger dashboard-button' ng-click="dashboard()">Go to Dashboard</button> </div> </div> <div class="container"> <div class="row card span12"> <div class="tabbable tabs-left"> <ul class="nav nav-tabs"> <li ng-class="{'active': entry.url == '#/' + activeTab}" ng-repeat="entry in menus"> <a href="{{entry.url}}">{{entry.label}}</a> </li> </ul> <div class='tab-content' ng-view=""></div> </div> </div> </div> <!-- build:js({.tmp,app}) scripts/angular.js --> <script src="bower_components/angular/angular.js"></script> <!-- endbuild --> <!-- build:js({.tmp,app}) scripts/scripts.js --> <script src="bower_components/underscore/underscore.js"></script> <script src="scripts/app.js"></script> <script src="scripts/git.js"></script> <script src="scripts/controllers/main.js"></script> <script src="scripts/controllers/user.js"></script> <script src="scripts/controllers/general.js"></script> <script src="scripts/controllers/cluster.js"></script> <script src="scripts/controllers/users.js"></script> <!-- endbuild --> <!-- build:js scripts/plugins.js --> <!-- endbuild --> <!-- build:js scripts/modules.js --> <script src="bower_components/angular-ui-bootstrap-bower/ui-bootstrap-tpls.js"></script> <script src="bower_components/angular-resource/angular-resource.js"></script> <script src="bower_components/angular-cookies/angular-cookies.js"></script> <script src="bower_components/angular-sanitize/angular-sanitize.js"></script> <!-- endbuild --> </body> </html>
src/libs/asio/doc/asio/reference/posix__basic_descriptor/native_non_blocking/overload3.html
peersio/peerconnect
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>posix::basic_descriptor::native_non_blocking (3 of 3 overloads)</title> <link rel="stylesheet" href="../../../../boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../../index.html" title="Asio"> <link rel="up" href="../native_non_blocking.html" title="posix::basic_descriptor::native_non_blocking"> <link rel="prev" href="overload2.html" title="posix::basic_descriptor::native_non_blocking (2 of 3 overloads)"> <link rel="next" href="../native_type.html" title="posix::basic_descriptor::native_type"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr><td valign="top"><img alt="asio C++ library" width="250" height="60" src="../../../../asio.png"></td></tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="overload2.html"><img src="../../../../prev.png" alt="Prev"></a><a accesskey="u" href="../native_non_blocking.html"><img src="../../../../up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../home.png" alt="Home"></a><a accesskey="n" href="../native_type.html"><img src="../../../../next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h5 class="title"> <a name="asio.reference.posix__basic_descriptor.native_non_blocking.overload3"></a><a class="link" href="overload3.html" title="posix::basic_descriptor::native_non_blocking (3 of 3 overloads)">posix::basic_descriptor::native_non_blocking (3 of 3 overloads)</a> </h5></div></div></div> <p> Sets the non-blocking mode of the native descriptor implementation. </p> <pre class="programlisting"><span class="identifier">asio</span><span class="special">::</span><span class="identifier">error_code</span> <span class="identifier">native_non_blocking</span><span class="special">(</span> <span class="keyword">bool</span> <span class="identifier">mode</span><span class="special">,</span> <span class="identifier">asio</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&amp;</span> <span class="identifier">ec</span><span class="special">);</span> </pre> <p> This function is used to modify the non-blocking mode of the underlying native descriptor. It has no effect on the behaviour of the descriptor object's synchronous operations. </p> <h6> <a name="asio.reference.posix__basic_descriptor.native_non_blocking.overload3.h0"></a> <span><a name="asio.reference.posix__basic_descriptor.native_non_blocking.overload3.parameters"></a></span><a class="link" href="overload3.html#asio.reference.posix__basic_descriptor.native_non_blocking.overload3.parameters">Parameters</a> </h6> <div class="variablelist"> <p class="title"><b></b></p> <dl> <dt><span class="term">mode</span></dt> <dd><p> If <code class="computeroutput"><span class="keyword">true</span></code>, the underlying descriptor is put into non-blocking mode and direct system calls may fail with <code class="computeroutput"><span class="identifier">asio</span><span class="special">::</span><span class="identifier">error</span><span class="special">::</span><span class="identifier">would_block</span></code> (or the equivalent system error). </p></dd> <dt><span class="term">ec</span></dt> <dd><p> Set to indicate what error occurred, if any. If the <code class="computeroutput"><span class="identifier">mode</span></code> is <code class="computeroutput"><span class="keyword">false</span></code>, but the current value of <code class="computeroutput"><span class="identifier">non_blocking</span><span class="special">()</span></code> is <code class="computeroutput"><span class="keyword">true</span></code>, this function fails with <code class="computeroutput"><span class="identifier">asio</span><span class="special">::</span><span class="identifier">error</span><span class="special">::</span><span class="identifier">invalid_argument</span></code>, as the combination does not make sense. </p></dd> </dl> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2016 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="overload2.html"><img src="../../../../prev.png" alt="Prev"></a><a accesskey="u" href="../native_non_blocking.html"><img src="../../../../up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../home.png" alt="Home"></a><a accesskey="n" href="../native_type.html"><img src="../../../../next.png" alt="Next"></a> </div> </body> </html>
client/views/fund/operation.html
lokinell/sunlights_op
<div class="actions"> <span class="glyphicon glyphicon-edit" data-toggle="tooltip" ng-click="fc.updateFund(row.entity)" title="编辑"></span> </div>
deps/boost/libs/beast/doc/html/beast/ref/boost__beast__websocket__stream/stream/overload2.html
vslavik/poedit
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>websocket::stream::stream (2 of 2 overloads)</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&#160;1.&#160;Boost.Beast"> <link rel="up" href="../stream.html" title="websocket::stream::stream"> <link rel="prev" href="overload1.html" title="websocket::stream::stream (1 of 2 overloads)"> <link rel="next" href="../text.html" title="websocket::stream::text"> </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="overload1.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../stream.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="../text.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h6 class="title"> <a name="beast.ref.boost__beast__websocket__stream.stream.overload2"></a><a class="link" href="overload2.html" title="websocket::stream::stream (2 of 2 overloads)">websocket::stream::stream (2 of 2 overloads)</a> </h6></div></div></div> <p> Constructor. </p> <h7><a name="beast.ref.boost__beast__websocket__stream.stream.overload2.h0"></a> <span class="phrase"><a name="beast.ref.boost__beast__websocket__stream.stream.overload2.synopsis"></a></span><a class="link" href="overload2.html#beast.ref.boost__beast__websocket__stream.stream.overload2.synopsis">Synopsis</a> </h7><pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span> <span class="keyword">class</span><span class="special">...</span> <span class="identifier">Args</span><span class="special">&gt;</span> <span class="identifier">stream</span><span class="special">(</span> <span class="identifier">Args</span><span class="special">&amp;&amp;...</span> <span class="identifier">args</span><span class="special">);</span> </pre> <h7><a name="beast.ref.boost__beast__websocket__stream.stream.overload2.h1"></a> <span class="phrase"><a name="beast.ref.boost__beast__websocket__stream.stream.overload2.description"></a></span><a class="link" href="overload2.html#beast.ref.boost__beast__websocket__stream.stream.overload2.description">Description</a> </h7><p> This constructor creates a websocket stream and initializes the next layer object. </p> <h7><a name="beast.ref.boost__beast__websocket__stream.stream.overload2.h2"></a> <span class="phrase"><a name="beast.ref.boost__beast__websocket__stream.stream.overload2.exceptions"></a></span><a class="link" href="overload2.html#beast.ref.boost__beast__websocket__stream.stream.overload2.exceptions">Exceptions</a> </h7><div class="informaltable"><table class="table"> <colgroup> <col> <col> </colgroup> <thead><tr> <th> <p> Type </p> </th> <th> <p> Thrown On </p> </th> </tr></thead> <tbody><tr> <td> <p> <code class="computeroutput"><span class="identifier">Any</span></code> </p> </td> <td> <p> exceptions thrown by the NextLayer constructor. </p> </td> </tr></tbody> </table></div> <h7><a name="beast.ref.boost__beast__websocket__stream.stream.overload2.h3"></a> <span class="phrase"><a name="beast.ref.boost__beast__websocket__stream.stream.overload2.parameters"></a></span><a class="link" href="overload2.html#beast.ref.boost__beast__websocket__stream.stream.overload2.parameters">Parameters</a> </h7><div class="informaltable"><table class="table"> <colgroup> <col> <col> </colgroup> <thead><tr> <th> <p> Name </p> </th> <th> <p> Description </p> </th> </tr></thead> <tbody><tr> <td> <p> <code class="computeroutput"><span class="identifier">args</span></code> </p> </td> <td> <p> The arguments to be passed to initialize the next layer object. The arguments are forwarded to the next layer's constructor. </p> </td> </tr></tbody> </table></div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2016, 2017 Vinnie Falco<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="overload1.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../stream.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="../text.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
deps/boost/doc/html/boost_asio/reference/basic_deadline_timer/basic_deadline_timer/overload1.html
vslavik/poedit
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>basic_deadline_timer::basic_deadline_timer (1 of 4 overloads)</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="../../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../basic_deadline_timer.html" title="basic_deadline_timer::basic_deadline_timer"> <link rel="prev" href="../basic_deadline_timer.html" title="basic_deadline_timer::basic_deadline_timer"> <link rel="next" href="overload2.html" title="basic_deadline_timer::basic_deadline_timer (2 of 4 overloads)"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td> <td align="center"><a href="../../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../basic_deadline_timer.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_deadline_timer.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="overload2.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h5 class="title"> <a name="boost_asio.reference.basic_deadline_timer.basic_deadline_timer.overload1"></a><a class="link" href="overload1.html" title="basic_deadline_timer::basic_deadline_timer (1 of 4 overloads)">basic_deadline_timer::basic_deadline_timer (1 of 4 overloads)</a> </h5></div></div></div> <p> Constructor. </p> <pre class="programlisting">basic_deadline_timer( boost::asio::io_context &amp; io_context); </pre> <p> This constructor creates a timer without setting an expiry time. The <code class="computeroutput">expires_at()</code> or <code class="computeroutput">expires_from_now()</code> functions must be called to set an expiry time before the timer can be waited on. </p> <h6> <a name="boost_asio.reference.basic_deadline_timer.basic_deadline_timer.overload1.h0"></a> <span class="phrase"><a name="boost_asio.reference.basic_deadline_timer.basic_deadline_timer.overload1.parameters"></a></span><a class="link" href="overload1.html#boost_asio.reference.basic_deadline_timer.basic_deadline_timer.overload1.parameters">Parameters</a> </h6> <div class="variablelist"> <p class="title"><b></b></p> <dl class="variablelist"> <dt><span class="term">io_context</span></dt> <dd><p> The <a class="link" href="../../io_context.html" title="io_context"><code class="computeroutput">io_context</code></a> object that the timer will use to dispatch handlers for any asynchronous operations performed on the timer. </p></dd> </dl> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2018 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="../basic_deadline_timer.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_deadline_timer.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="overload2.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
_posts/2010/05/2010-05-06-first-preliminary-alpha-test-etc-screencast.html
gvwilson/website
--- layout: post date: 2010-05-06 time: "09:00:00" authors: ["Greg Wilson"] title: "Day 4: First Preliminary Alpha Test Etc. Screencast" category: ["Content"] --- <p>Jon Pipitone and I have created a screencast showing the basics (and I really mean "the basics") of pulling data out of a database using SQL. It took about 4.5 hours in total to produce 7 minutes of video:</p> <table> <tbody> <tr> <td>Writing script:</td> <td>1.5 hours</td> </tr> <tr> <td>Doing 3 takes:</td> <td>1.0 hours</td> </tr> <tr> <td>Editing:</td> <td>1.0 hours</td> </tr> <tr> <td>Transcribing:</td> <td>0.5 hours</td> </tr> <tr> <td>Screenshots:</td> <td>0.5 hours</td> </tr> </tbody> </table> <p>This was the first time either of us had used <a href="http://www.techsmith.com/camtasiamac/">Camtasia</a>; I expect that we'll be able to cut the recording, editing, and screenshotting time in half with practice. Transcribing time is dictated by typing and editing speed, so it's unlikely to come down, and scripting time will probably be the same or greater for future topics (since some of them will require diagrams and other time-consuming prep). We're therefore looking at 3 hours of production for 5-7 minutes of screen time; if you figure a lecture is 50 minutes, and there are 25 of them in the course, that works out to... um... carry the six... 750 hours to get all of the existing material online. Pad by half to account for real-world effects, and that's 35-40 weeks &mdash; tight, but doable.</p> <p>What we need now from you, dear reader, is feedback. Is the pace right? Do you want larger chunks, or smaller ones? Is the transcript useful? (I know we have to re-do the screenshots to make them more readable &mdash; we're thinking about exactly how to do that.) What else could/should we change, and why?</p> <p>We look forward to your comments.</p>
docs/api/nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html
robertoandrade/cyclos
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="pt"> <head> <!-- Generated by javadoc (version 1.7.0_11) on Fri Jan 25 09:33:29 BRST 2013 --> <title>ImportedAdCategory.Relationships (Cyclos 3 Documentation)</title> <meta name="date" content="2013-01-25"> <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="ImportedAdCategory.Relationships (Cyclos 3 Documentation)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.html" title="class in nl.strohalm.cyclos.entities.ads.imports"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCustomFieldValue.html" title="class in nl.strohalm.cyclos.entities.ads.imports"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html" target="_top">Frames</a></li> <li><a href="ImportedAdCategory.Relationships.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#enum_constant_summary">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#enum_constant_detail">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">nl.strohalm.cyclos.entities.ads.imports</div> <h2 title="Enum ImportedAdCategory.Relationships" class="title">Enum ImportedAdCategory.Relationships</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>java.lang.Enum&lt;<a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html" title="enum in nl.strohalm.cyclos.entities.ads.imports">ImportedAdCategory.Relationships</a>&gt;</li> <li> <ul class="inheritance"> <li>nl.strohalm.cyclos.entities.ads.imports.ImportedAdCategory.Relationships</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.io.Serializable, java.lang.Comparable&lt;<a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html" title="enum in nl.strohalm.cyclos.entities.ads.imports">ImportedAdCategory.Relationships</a>&gt;, <a href="../../../../../../nl/strohalm/cyclos/entities/Relationship.html" title="interface in nl.strohalm.cyclos.entities">Relationship</a></dd> </dl> <dl> <dt>Enclosing class:</dt> <dd><a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.html" title="class in nl.strohalm.cyclos.entities.ads.imports">ImportedAdCategory</a></dd> </dl> <hr> <br> <pre>public static enum <span class="strong">ImportedAdCategory.Relationships</span> extends java.lang.Enum&lt;<a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html" title="enum in nl.strohalm.cyclos.entities.ads.imports">ImportedAdCategory.Relationships</a>&gt; implements <a href="../../../../../../nl/strohalm/cyclos/entities/Relationship.html" title="interface in nl.strohalm.cyclos.entities">Relationship</a></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== ENUM CONSTANT SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="enum_constant_summary"> <!-- --> </a> <h3>Enum Constant Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation"> <caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Enum Constant and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html#AD_IMPORT">AD_IMPORT</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html#EXISTING_PARENT">EXISTING_PARENT</a></strong></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html#IMPORTED_PARENT">IMPORTED_PARENT</a></strong></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html#getName()">getName</a></strong>()</code> <div class="block">Returns the property name for this relationship</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html" title="enum in nl.strohalm.cyclos.entities.ads.imports">ImportedAdCategory.Relationships</a></code></td> <td class="colLast"><code><strong><a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html#valueOf(java.lang.String)">valueOf</a></strong>(java.lang.String&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html" title="enum in nl.strohalm.cyclos.entities.ads.imports">ImportedAdCategory.Relationships</a>[]</code></td> <td class="colLast"><code><strong><a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html#values()">values</a></strong>()</code> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Enum"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Enum</h3> <code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>getClass, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ ENUM CONSTANT DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="enum_constant_detail"> <!-- --> </a> <h3>Enum Constant Detail</h3> <a name="AD_IMPORT"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>AD_IMPORT</h4> <pre>public static final&nbsp;<a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html" title="enum in nl.strohalm.cyclos.entities.ads.imports">ImportedAdCategory.Relationships</a> AD_IMPORT</pre> </li> </ul> <a name="IMPORTED_PARENT"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>IMPORTED_PARENT</h4> <pre>public static final&nbsp;<a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html" title="enum in nl.strohalm.cyclos.entities.ads.imports">ImportedAdCategory.Relationships</a> IMPORTED_PARENT</pre> </li> </ul> <a name="EXISTING_PARENT"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>EXISTING_PARENT</h4> <pre>public static final&nbsp;<a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html" title="enum in nl.strohalm.cyclos.entities.ads.imports">ImportedAdCategory.Relationships</a> EXISTING_PARENT</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="values()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>values</h4> <pre>public static&nbsp;<a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html" title="enum in nl.strohalm.cyclos.entities.ads.imports">ImportedAdCategory.Relationships</a>[]&nbsp;values()</pre> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows: <pre> for (ImportedAdCategory.Relationships c : ImportedAdCategory.Relationships.values()) &nbsp; System.out.println(c); </pre></div> <dl><dt><span class="strong">Returns:</span></dt><dd>an array containing the constants of this enum type, in the order they are declared</dd></dl> </li> </ul> <a name="valueOf(java.lang.String)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>valueOf</h4> <pre>public static&nbsp;<a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html" title="enum in nl.strohalm.cyclos.entities.ads.imports">ImportedAdCategory.Relationships</a>&nbsp;valueOf(java.lang.String&nbsp;name)</pre> <div class="block">Returns the enum constant of this type with the specified name. The string must match <i>exactly</i> an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the name of the enum constant to be returned.</dd> <dt><span class="strong">Returns:</span></dt><dd>the enum constant with the specified name</dd> <dt><span class="strong">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd> <dd><code>java.lang.NullPointerException</code> - if the argument is null</dd></dl> </li> </ul> <a name="getName()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>getName</h4> <pre>public&nbsp;java.lang.String&nbsp;getName()</pre> <div class="block"><strong>Description copied from interface:&nbsp;<code><a href="../../../../../../nl/strohalm/cyclos/entities/Relationship.html#getName()">Relationship</a></code></strong></div> <div class="block">Returns the property name for this relationship</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../../nl/strohalm/cyclos/entities/Relationship.html#getName()">getName</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../../nl/strohalm/cyclos/entities/Relationship.html" title="interface in nl.strohalm.cyclos.entities">Relationship</a></code></dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.html" title="class in nl.strohalm.cyclos.entities.ads.imports"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../../nl/strohalm/cyclos/entities/ads/imports/ImportedAdCustomFieldValue.html" title="class in nl.strohalm.cyclos.entities.ads.imports"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?nl/strohalm/cyclos/entities/ads/imports/ImportedAdCategory.Relationships.html" target="_top">Frames</a></li> <li><a href="ImportedAdCategory.Relationships.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#enum_constant_summary">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#enum_constant_detail">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
sites/all/libraries/yui/api/classes/Profiler.html
oystercrackher/melissa.sdtn.com
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Profiler - YUI 3</title> <link rel="stylesheet" href="http:&#x2F;&#x2F;yui.yahooapis.com&#x2F;3.5.0pr4&#x2F;build&#x2F;cssgrids&#x2F;cssgrids-min.css"> <link rel="stylesheet" href="..&#x2F;assets/vendor/prettify/prettify-min.css"> <link rel="stylesheet" href="..&#x2F;assets/css/main.css" id="site_styles"> <script src="http:&#x2F;&#x2F;yui.yahooapis.com&#x2F;3.5.0pr4&#x2F;build&#x2F;yui&#x2F;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="..&#x2F;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="..&#x2F;classes/Anim.html">Anim</a></li> <li><a href="..&#x2F;classes/App.html">App</a></li> <li><a href="..&#x2F;classes/App.Base.html">App.Base</a></li> <li><a href="..&#x2F;classes/App.Transitions.html">App.Transitions</a></li> <li><a href="..&#x2F;classes/App.TransitionsNative.html">App.TransitionsNative</a></li> <li><a href="..&#x2F;classes/AreaSeries.html">AreaSeries</a></li> <li><a href="..&#x2F;classes/AreaSplineSeries.html">AreaSplineSeries</a></li> <li><a href="..&#x2F;classes/Array.html">Array</a></li> <li><a href="..&#x2F;classes/ArrayList.html">ArrayList</a></li> <li><a href="..&#x2F;classes/ArraySort.html">ArraySort</a></li> <li><a href="..&#x2F;classes/AsyncQueue.html">AsyncQueue</a></li> <li><a href="..&#x2F;classes/Attribute.html">Attribute</a></li> <li><a href="..&#x2F;classes/AttributeCore.html">AttributeCore</a></li> <li><a href="..&#x2F;classes/AttributeEvents.html">AttributeEvents</a></li> <li><a href="..&#x2F;classes/AttributeExtras.html">AttributeExtras</a></li> <li><a href="..&#x2F;classes/AttributeLite.html">AttributeLite</a></li> <li><a href="..&#x2F;classes/AutoComplete.html">AutoComplete</a></li> <li><a href="..&#x2F;classes/AutoCompleteBase.html">AutoCompleteBase</a></li> <li><a href="..&#x2F;classes/AutoCompleteFilters.html">AutoCompleteFilters</a></li> <li><a href="..&#x2F;classes/AutoCompleteHighlighters.html">AutoCompleteHighlighters</a></li> <li><a href="..&#x2F;classes/AutoCompleteList.html">AutoCompleteList</a></li> <li><a href="..&#x2F;classes/Axis.html">Axis</a></li> <li><a href="..&#x2F;classes/AxisType.html">AxisType</a></li> <li><a href="..&#x2F;classes/BarSeries.html">BarSeries</a></li> <li><a href="..&#x2F;classes/Base.html">Base</a></li> <li><a href="..&#x2F;classes/BaseCore.html">BaseCore</a></li> <li><a href="..&#x2F;classes/BottomAxisLayout.html">BottomAxisLayout</a></li> <li><a href="..&#x2F;classes/Button.html">Button</a></li> <li><a href="..&#x2F;classes/ButtonCore.html">ButtonCore</a></li> <li><a href="..&#x2F;classes/ButtonGroup.html">ButtonGroup</a></li> <li><a href="..&#x2F;classes/ButtonPlugin.html">ButtonPlugin</a></li> <li><a href="..&#x2F;classes/Cache.html">Cache</a></li> <li><a href="..&#x2F;classes/CacheOffline.html">CacheOffline</a></li> <li><a href="..&#x2F;classes/Calendar.html">Calendar</a></li> <li><a href="..&#x2F;classes/CalendarBase.html">CalendarBase</a></li> <li><a href="..&#x2F;classes/CanvasCircle.html">CanvasCircle</a></li> <li><a href="..&#x2F;classes/CanvasDrawing.html">CanvasDrawing</a></li> <li><a href="..&#x2F;classes/CanvasEllipse.html">CanvasEllipse</a></li> <li><a href="..&#x2F;classes/CanvasGraphic.html">CanvasGraphic</a></li> <li><a href="..&#x2F;classes/CanvasPath.html">CanvasPath</a></li> <li><a href="..&#x2F;classes/CanvasPieSlice.html">CanvasPieSlice</a></li> <li><a href="..&#x2F;classes/CanvasRect.html">CanvasRect</a></li> <li><a href="..&#x2F;classes/CanvasShape.html">CanvasShape</a></li> <li><a href="..&#x2F;classes/CartesianChart.html">CartesianChart</a></li> <li><a href="..&#x2F;classes/CartesianSeries.html">CartesianSeries</a></li> <li><a href="..&#x2F;classes/CategoryAxis.html">CategoryAxis</a></li> <li><a href="..&#x2F;classes/Chart.html">Chart</a></li> <li><a href="..&#x2F;classes/ChartBase.html">ChartBase</a></li> <li><a href="..&#x2F;classes/ChartLegend.html">ChartLegend</a></li> <li><a href="..&#x2F;classes/Circle.html">Circle</a></li> <li><a href="..&#x2F;classes/ClassNameManager.html">ClassNameManager</a></li> <li><a href="..&#x2F;classes/ClickableRail.html">ClickableRail</a></li> <li><a href="..&#x2F;classes/ColumnSeries.html">ColumnSeries</a></li> <li><a href="..&#x2F;classes/ComboSeries.html">ComboSeries</a></li> <li><a href="..&#x2F;classes/ComboSplineSeries.html">ComboSplineSeries</a></li> <li><a href="..&#x2F;classes/config.html">config</a></li> <li><a href="..&#x2F;classes/Console.html">Console</a></li> <li><a href="..&#x2F;classes/Controller.html">Controller</a></li> <li><a href="..&#x2F;classes/Cookie.html">Cookie</a></li> <li><a href="..&#x2F;classes/CurveUtil.html">CurveUtil</a></li> <li><a href="..&#x2F;classes/CustomEvent.html">CustomEvent</a></li> <li><a href="..&#x2F;classes/DataSchema.Array.html">DataSchema.Array</a></li> <li><a href="..&#x2F;classes/DataSchema.Base.html">DataSchema.Base</a></li> <li><a href="..&#x2F;classes/DataSchema.JSON.html">DataSchema.JSON</a></li> <li><a href="..&#x2F;classes/DataSchema.Text.html">DataSchema.Text</a></li> <li><a href="..&#x2F;classes/DataSchema.XML.html">DataSchema.XML</a></li> <li><a href="..&#x2F;classes/DataSource.Function.html">DataSource.Function</a></li> <li><a href="..&#x2F;classes/DataSource.Get.html">DataSource.Get</a></li> <li><a href="..&#x2F;classes/DataSource.IO.html">DataSource.IO</a></li> <li><a href="..&#x2F;classes/DataSource.Local.html">DataSource.Local</a></li> <li><a href="..&#x2F;classes/DataSourceArraySchema.html">DataSourceArraySchema</a></li> <li><a href="..&#x2F;classes/DataSourceCache.html">DataSourceCache</a></li> <li><a href="..&#x2F;classes/DataSourceCacheExtension.html">DataSourceCacheExtension</a></li> <li><a href="..&#x2F;classes/DataSourceJSONSchema.html">DataSourceJSONSchema</a></li> <li><a href="..&#x2F;classes/DataSourceTextSchema.html">DataSourceTextSchema</a></li> <li><a href="..&#x2F;classes/DataSourceXMLSchema.html">DataSourceXMLSchema</a></li> <li><a href="..&#x2F;classes/DataTable.html">DataTable</a></li> <li><a href="..&#x2F;classes/DataTable.Base.html">DataTable.Base</a></li> <li><a href="..&#x2F;classes/DataTable.BodyView.html">DataTable.BodyView</a></li> <li><a href="..&#x2F;classes/DataTable.ColumnWidths.html">DataTable.ColumnWidths</a></li> <li><a href="..&#x2F;classes/DataTable.Core.html">DataTable.Core</a></li> <li><a href="..&#x2F;classes/DataTable.HeaderView.html">DataTable.HeaderView</a></li> <li><a href="..&#x2F;classes/DataTable.Message.html">DataTable.Message</a></li> <li><a href="..&#x2F;classes/DataTable.Mutable.html">DataTable.Mutable</a></li> <li><a href="..&#x2F;classes/DataTable.Scrollable.html">DataTable.Scrollable</a></li> <li><a href="..&#x2F;classes/DataTable.Sortable.html">DataTable.Sortable</a></li> <li><a href="..&#x2F;classes/DataType.Date.html">DataType.Date</a></li> <li><a href="..&#x2F;classes/DataType.Date.Locale.html">DataType.Date.Locale</a></li> <li><a href="..&#x2F;classes/DataType.Number.html">DataType.Number</a></li> <li><a href="..&#x2F;classes/DataType.XML.html">DataType.XML</a></li> <li><a href="..&#x2F;classes/DD.DDM.html">DD.DDM</a></li> <li><a href="..&#x2F;classes/DD.Delegate.html">DD.Delegate</a></li> <li><a href="..&#x2F;classes/DD.Drag.html">DD.Drag</a></li> <li><a href="..&#x2F;classes/DD.Drop.html">DD.Drop</a></li> <li><a href="..&#x2F;classes/DD.Plugin.DDWindowScroll.html">DD.Plugin.DDWindowScroll</a></li> <li><a href="..&#x2F;classes/DD.Scroll.html">DD.Scroll</a></li> <li><a href="..&#x2F;classes/Dial.html">Dial</a></li> <li><a href="..&#x2F;classes/Do.html">Do</a></li> <li><a href="..&#x2F;classes/Do.AlterArgs.html">Do.AlterArgs</a></li> <li><a href="..&#x2F;classes/Do.AlterReturn.html">Do.AlterReturn</a></li> <li><a href="..&#x2F;classes/Do.Error.html">Do.Error</a></li> <li><a href="..&#x2F;classes/Do.Halt.html">Do.Halt</a></li> <li><a href="..&#x2F;classes/Do.Method.html">Do.Method</a></li> <li><a href="..&#x2F;classes/Do.Prevent.html">Do.Prevent</a></li> <li><a href="..&#x2F;classes/DOM.html">DOM</a></li> <li><a href="..&#x2F;classes/DOMEventFacade.html">DOMEventFacade</a></li> <li><a href="..&#x2F;classes/Drawing.html">Drawing</a></li> <li><a href="..&#x2F;classes/Easing.html">Easing</a></li> <li><a href="..&#x2F;classes/EditorBase.html">EditorBase</a></li> <li><a href="..&#x2F;classes/EditorSelection.html">EditorSelection</a></li> <li><a href="..&#x2F;classes/Ellipse.html">Ellipse</a></li> <li><a href="..&#x2F;classes/EllipseGroup.html">EllipseGroup</a></li> <li><a href="..&#x2F;classes/Escape.html">Escape</a></li> <li><a href="..&#x2F;classes/Event.html">Event</a></li> <li><a href="..&#x2F;classes/EventFacade.html">EventFacade</a></li> <li><a href="..&#x2F;classes/EventHandle.html">EventHandle</a></li> <li><a href="..&#x2F;classes/EventTarget.html">EventTarget</a></li> <li><a href="..&#x2F;classes/ExecCommand.html">ExecCommand</a></li> <li><a href="..&#x2F;classes/Features.html">Features</a></li> <li><a href="..&#x2F;classes/File.html">File</a></li> <li><a href="..&#x2F;classes/FileFlash.html">FileFlash</a></li> <li><a href="..&#x2F;classes/FileHTML5.html">FileHTML5</a></li> <li><a href="..&#x2F;classes/Fills.html">Fills</a></li> <li><a href="..&#x2F;classes/Frame.html">Frame</a></li> <li><a href="..&#x2F;classes/Get.html">Get</a></li> <li><a href="..&#x2F;classes/Get.Transaction.html">Get.Transaction</a></li> <li><a href="..&#x2F;classes/GetNodeJS.html">GetNodeJS</a></li> <li><a href="..&#x2F;classes/Graph.html">Graph</a></li> <li><a href="..&#x2F;classes/Graphic.html">Graphic</a></li> <li><a href="..&#x2F;classes/GraphicBase.html">GraphicBase</a></li> <li><a href="..&#x2F;classes/Gridlines.html">Gridlines</a></li> <li><a href="..&#x2F;classes/GroupCircle.html">GroupCircle</a></li> <li><a href="..&#x2F;classes/GroupDiamond.html">GroupDiamond</a></li> <li><a href="..&#x2F;classes/GroupRect.html">GroupRect</a></li> <li><a href="..&#x2F;classes/Handlebars.html">Handlebars</a></li> <li><a href="..&#x2F;classes/Highlight.html">Highlight</a></li> <li><a href="..&#x2F;classes/Histogram.html">Histogram</a></li> <li><a href="..&#x2F;classes/HistoryBase.html">HistoryBase</a></li> <li><a href="..&#x2F;classes/HistoryHash.html">HistoryHash</a></li> <li><a href="..&#x2F;classes/HistoryHTML5.html">HistoryHTML5</a></li> <li><a href="..&#x2F;classes/HorizontalLegendLayout.html">HorizontalLegendLayout</a></li> <li><a href="..&#x2F;classes/ImgLoadGroup.html">ImgLoadGroup</a></li> <li><a href="..&#x2F;classes/ImgLoadImgObj.html">ImgLoadImgObj</a></li> <li><a href="..&#x2F;classes/Intl.html">Intl</a></li> <li><a href="..&#x2F;classes/IO.html">IO</a></li> <li><a href="..&#x2F;classes/json.html">json</a></li> <li><a href="..&#x2F;classes/JSONPRequest.html">JSONPRequest</a></li> <li><a href="..&#x2F;classes/Lang.html">Lang</a></li> <li><a href="..&#x2F;classes/LeftAxisLayout.html">LeftAxisLayout</a></li> <li><a href="..&#x2F;classes/Lines.html">Lines</a></li> <li><a href="..&#x2F;classes/LineSeries.html">LineSeries</a></li> <li><a href="..&#x2F;classes/Loader.html">Loader</a></li> <li><a href="..&#x2F;classes/MarkerSeries.html">MarkerSeries</a></li> <li><a href="..&#x2F;classes/Matrix.html">Matrix</a></li> <li><a href="..&#x2F;classes/Model.html">Model</a></li> <li><a href="..&#x2F;classes/ModelList.html">ModelList</a></li> <li><a href="..&#x2F;classes/Node.html">Node</a></li> <li><a href="..&#x2F;classes/NodeList.html">NodeList</a></li> <li><a href="..&#x2F;classes/NumericAxis.html">NumericAxis</a></li> <li><a href="..&#x2F;classes/Object.html">Object</a></li> <li><a href="..&#x2F;classes/Overlay.html">Overlay</a></li> <li><a href="..&#x2F;classes/Panel.html">Panel</a></li> <li><a href="..&#x2F;classes/Parallel.html">Parallel</a></li> <li><a href="..&#x2F;classes/Path.html">Path</a></li> <li><a href="..&#x2F;classes/PieChart.html">PieChart</a></li> <li><a href="..&#x2F;classes/PieSeries.html">PieSeries</a></li> <li><a href="..&#x2F;classes/Pjax.html">Pjax</a></li> <li><a href="..&#x2F;classes/PjaxBase.html">PjaxBase</a></li> <li><a href="..&#x2F;classes/Plots.html">Plots</a></li> <li><a href="..&#x2F;classes/Plugin.Align.html">Plugin.Align</a></li> <li><a href="..&#x2F;classes/Plugin.AutoComplete.html">Plugin.AutoComplete</a></li> <li><a href="..&#x2F;classes/Plugin.Base.html">Plugin.Base</a></li> <li><a href="..&#x2F;classes/Plugin.Cache.html">Plugin.Cache</a></li> <li><a href="..&#x2F;classes/Plugin.CalendarNavigator.html">Plugin.CalendarNavigator</a></li> <li><a href="..&#x2F;classes/Plugin.ConsoleFilters.html">Plugin.ConsoleFilters</a></li> <li><a href="..&#x2F;classes/Plugin.CreateLinkBase.html">Plugin.CreateLinkBase</a></li> <li><a href="..&#x2F;classes/Plugin.DataTableDataSource.html">Plugin.DataTableDataSource</a></li> <li><a href="..&#x2F;classes/Plugin.DDConstrained.html">Plugin.DDConstrained</a></li> <li><a href="..&#x2F;classes/Plugin.DDNodeScroll.html">Plugin.DDNodeScroll</a></li> <li><a href="..&#x2F;classes/Plugin.DDProxy.html">Plugin.DDProxy</a></li> <li><a href="..&#x2F;classes/Plugin.Drag.html">Plugin.Drag</a></li> <li><a href="..&#x2F;classes/Plugin.Drop.html">Plugin.Drop</a></li> <li><a href="..&#x2F;classes/Plugin.EditorBidi.html">Plugin.EditorBidi</a></li> <li><a href="..&#x2F;classes/Plugin.EditorBR.html">Plugin.EditorBR</a></li> <li><a href="..&#x2F;classes/Plugin.EditorLists.html">Plugin.EditorLists</a></li> <li><a href="..&#x2F;classes/Plugin.EditorPara.html">Plugin.EditorPara</a></li> <li><a href="..&#x2F;classes/Plugin.EditorParaBase.html">Plugin.EditorParaBase</a></li> <li><a href="..&#x2F;classes/Plugin.EditorParaIE.html">Plugin.EditorParaIE</a></li> <li><a href="..&#x2F;classes/Plugin.EditorTab.html">Plugin.EditorTab</a></li> <li><a href="..&#x2F;classes/Plugin.ExecCommand.html">Plugin.ExecCommand</a></li> <li><a href="..&#x2F;classes/Plugin.Flick.html">Plugin.Flick</a></li> <li><a href="..&#x2F;classes/Plugin.Host.html">Plugin.Host</a></li> <li><a href="..&#x2F;classes/plugin.NodeFocusManager.html">plugin.NodeFocusManager</a></li> <li><a href="..&#x2F;classes/Plugin.NodeFX.html">Plugin.NodeFX</a></li> <li><a href="..&#x2F;classes/plugin.NodeMenuNav.html">plugin.NodeMenuNav</a></li> <li><a href="..&#x2F;classes/Plugin.Pjax.html">Plugin.Pjax</a></li> <li><a href="..&#x2F;classes/Plugin.Resize.html">Plugin.Resize</a></li> <li><a href="..&#x2F;classes/Plugin.ResizeConstrained.html">Plugin.ResizeConstrained</a></li> <li><a href="..&#x2F;classes/Plugin.ResizeProxy.html">Plugin.ResizeProxy</a></li> <li><a href="..&#x2F;classes/Plugin.ScrollViewList.html">Plugin.ScrollViewList</a></li> <li><a href="..&#x2F;classes/Plugin.ScrollViewPaginator.html">Plugin.ScrollViewPaginator</a></li> <li><a href="..&#x2F;classes/Plugin.ScrollViewScrollbars.html">Plugin.ScrollViewScrollbars</a></li> <li><a href="..&#x2F;classes/Plugin.Shim.html">Plugin.Shim</a></li> <li><a href="..&#x2F;classes/Plugin.SortScroll.html">Plugin.SortScroll</a></li> <li><a href="..&#x2F;classes/Plugin.WidgetAnim.html">Plugin.WidgetAnim</a></li> <li><a href="..&#x2F;classes/Pollable.html">Pollable</a></li> <li><a href="..&#x2F;classes/Profiler.html">Profiler</a></li> <li><a href="..&#x2F;classes/QueryString.html">QueryString</a></li> <li><a href="..&#x2F;classes/Queue.html">Queue</a></li> <li><a href="..&#x2F;classes/Record.html">Record</a></li> <li><a href="..&#x2F;classes/Recordset.html">Recordset</a></li> <li><a href="..&#x2F;classes/RecordsetFilter.html">RecordsetFilter</a></li> <li><a href="..&#x2F;classes/RecordsetIndexer.html">RecordsetIndexer</a></li> <li><a href="..&#x2F;classes/RecordsetSort.html">RecordsetSort</a></li> <li><a href="..&#x2F;classes/Rect.html">Rect</a></li> <li><a href="..&#x2F;classes/Renderer.html">Renderer</a></li> <li><a href="..&#x2F;classes/Resize.html">Resize</a></li> <li><a href="..&#x2F;classes/RightAxisLayout.html">RightAxisLayout</a></li> <li><a href="..&#x2F;classes/Router.html">Router</a></li> <li><a href="..&#x2F;classes/ScrollView.html">ScrollView</a></li> <li><a href="..&#x2F;classes/Selector.html">Selector</a></li> <li><a href="..&#x2F;classes/Shape.html">Shape</a></li> <li><a href="..&#x2F;classes/ShapeGroup.html">ShapeGroup</a></li> <li><a href="..&#x2F;classes/Slider.html">Slider</a></li> <li><a href="..&#x2F;classes/SliderBase.html">SliderBase</a></li> <li><a href="..&#x2F;classes/SliderValueRange.html">SliderValueRange</a></li> <li><a href="..&#x2F;classes/Sortable.html">Sortable</a></li> <li><a href="..&#x2F;classes/SplineSeries.html">SplineSeries</a></li> <li><a href="..&#x2F;classes/StackedAreaSeries.html">StackedAreaSeries</a></li> <li><a href="..&#x2F;classes/StackedAreaSplineSeries.html">StackedAreaSplineSeries</a></li> <li><a href="..&#x2F;classes/StackedAxis.html">StackedAxis</a></li> <li><a href="..&#x2F;classes/StackedBarSeries.html">StackedBarSeries</a></li> <li><a href="..&#x2F;classes/StackedColumnSeries.html">StackedColumnSeries</a></li> <li><a href="..&#x2F;classes/StackedComboSeries.html">StackedComboSeries</a></li> <li><a href="..&#x2F;classes/StackedComboSplineSeries.html">StackedComboSplineSeries</a></li> <li><a href="..&#x2F;classes/StackedLineSeries.html">StackedLineSeries</a></li> <li><a href="..&#x2F;classes/StackedMarkerSeries.html">StackedMarkerSeries</a></li> <li><a href="..&#x2F;classes/StackedSplineSeries.html">StackedSplineSeries</a></li> <li><a href="..&#x2F;classes/StackingUtil.html">StackingUtil</a></li> <li><a href="..&#x2F;classes/State.html">State</a></li> <li><a href="..&#x2F;classes/StyleSheet.html">StyleSheet</a></li> <li><a href="..&#x2F;classes/Subscriber.html">Subscriber</a></li> <li><a href="..&#x2F;classes/SVGCircle.html">SVGCircle</a></li> <li><a href="..&#x2F;classes/SVGDrawing.html">SVGDrawing</a></li> <li><a href="..&#x2F;classes/SVGEllipse.html">SVGEllipse</a></li> <li><a href="..&#x2F;classes/SVGGraphic.html">SVGGraphic</a></li> <li><a href="..&#x2F;classes/SVGPath.html">SVGPath</a></li> <li><a href="..&#x2F;classes/SVGPieSlice.html">SVGPieSlice</a></li> <li><a href="..&#x2F;classes/SVGRect.html">SVGRect</a></li> <li><a href="..&#x2F;classes/SVGShape.html">SVGShape</a></li> <li><a href="..&#x2F;classes/SWF.html">SWF</a></li> <li><a href="..&#x2F;classes/SWFDetect.html">SWFDetect</a></li> <li><a href="..&#x2F;classes/SyntheticEvent.html">SyntheticEvent</a></li> <li><a href="..&#x2F;classes/SyntheticEvent.Notifier.html">SyntheticEvent.Notifier</a></li> <li><a href="..&#x2F;classes/SynthRegistry.html">SynthRegistry</a></li> <li><a href="..&#x2F;classes/Tab.html">Tab</a></li> <li><a href="..&#x2F;classes/TabView.html">TabView</a></li> <li><a href="..&#x2F;classes/Test.html">Test</a></li> <li><a href="..&#x2F;classes/Test.ArrayAssert.html">Test.ArrayAssert</a></li> <li><a href="..&#x2F;classes/Test.Assert.html">Test.Assert</a></li> <li><a href="..&#x2F;classes/Test.AssertionError.html">Test.AssertionError</a></li> <li><a href="..&#x2F;classes/Test.ComparisonFailure.html">Test.ComparisonFailure</a></li> <li><a href="..&#x2F;classes/Test.Console.html">Test.Console</a></li> <li><a href="..&#x2F;classes/Test.CoverageFormat.CoverageFormat.html">Test.CoverageFormat.CoverageFormat</a></li> <li><a href="..&#x2F;classes/Test.DateAssert.html">Test.DateAssert</a></li> <li><a href="..&#x2F;classes/Test.EventTarget.html">Test.EventTarget</a></li> <li><a href="..&#x2F;classes/Test.Mock.Mock.html">Test.Mock.Mock</a></li> <li><a href="..&#x2F;classes/Test.Mock.Value.html">Test.Mock.Value</a></li> <li><a href="..&#x2F;classes/Test.ObjectAssert.html">Test.ObjectAssert</a></li> <li><a href="..&#x2F;classes/Test.Reporter.html">Test.Reporter</a></li> <li><a href="..&#x2F;classes/Test.Results.html">Test.Results</a></li> <li><a href="..&#x2F;classes/Test.Runner.html">Test.Runner</a></li> <li><a href="..&#x2F;classes/Test.ShouldError.html">Test.ShouldError</a></li> <li><a href="..&#x2F;classes/Test.ShouldFail.html">Test.ShouldFail</a></li> <li><a href="..&#x2F;classes/Test.TestCase.html">Test.TestCase</a></li> <li><a href="..&#x2F;classes/Test.TestFormat.html">Test.TestFormat</a></li> <li><a href="..&#x2F;classes/Test.TestNode.html">Test.TestNode</a></li> <li><a href="..&#x2F;classes/Test.TestRunner.html">Test.TestRunner</a></li> <li><a href="..&#x2F;classes/Test.TestSuite.html">Test.TestSuite</a></li> <li><a href="..&#x2F;classes/Test.UnexpectedError.html">Test.UnexpectedError</a></li> <li><a href="..&#x2F;classes/Test.UnexpectedValue.html">Test.UnexpectedValue</a></li> <li><a href="..&#x2F;classes/Test.Wait.html">Test.Wait</a></li> <li><a href="..&#x2F;classes/Text.AccentFold.html">Text.AccentFold</a></li> <li><a href="..&#x2F;classes/Text.WordBreak.html">Text.WordBreak</a></li> <li><a href="..&#x2F;classes/TimeAxis.html">TimeAxis</a></li> <li><a href="..&#x2F;classes/ToggleButton.html">ToggleButton</a></li> <li><a href="..&#x2F;classes/TopAxisLayout.html">TopAxisLayout</a></li> <li><a href="..&#x2F;classes/Transition.html">Transition</a></li> <li><a href="..&#x2F;classes/UA.html">UA</a></li> <li><a href="..&#x2F;classes/Uploader.html">Uploader</a></li> <li><a href="..&#x2F;classes/Uploader.Queue.html">Uploader.Queue</a></li> <li><a href="..&#x2F;classes/UploaderFlash.html">UploaderFlash</a></li> <li><a href="..&#x2F;classes/UploaderHTML5.html">UploaderHTML5</a></li> <li><a href="..&#x2F;classes/ValueChange.html">ValueChange</a></li> <li><a href="..&#x2F;classes/VerticalLegendLayout.html">VerticalLegendLayout</a></li> <li><a href="..&#x2F;classes/View.html">View</a></li> <li><a href="..&#x2F;classes/View.NodeMap.html">View.NodeMap</a></li> <li><a href="..&#x2F;classes/VMLCircle.html">VMLCircle</a></li> <li><a href="..&#x2F;classes/VMLDrawing.html">VMLDrawing</a></li> <li><a href="..&#x2F;classes/VMLEllipse.html">VMLEllipse</a></li> <li><a href="..&#x2F;classes/VMLGraphic.html">VMLGraphic</a></li> <li><a href="..&#x2F;classes/VMLPath.html">VMLPath</a></li> <li><a href="..&#x2F;classes/VMLPieSlice.html">VMLPieSlice</a></li> <li><a href="..&#x2F;classes/VMLRect.html">VMLRect</a></li> <li><a href="..&#x2F;classes/VMLShape.html">VMLShape</a></li> <li><a href="..&#x2F;classes/Widget.html">Widget</a></li> <li><a href="..&#x2F;classes/WidgetAutohide.html">WidgetAutohide</a></li> <li><a href="..&#x2F;classes/WidgetButtons.html">WidgetButtons</a></li> <li><a href="..&#x2F;classes/WidgetChild.html">WidgetChild</a></li> <li><a href="..&#x2F;classes/WidgetModality.html">WidgetModality</a></li> <li><a href="..&#x2F;classes/WidgetParent.html">WidgetParent</a></li> <li><a href="..&#x2F;classes/WidgetPosition.html">WidgetPosition</a></li> <li><a href="..&#x2F;classes/WidgetPositionAlign.html">WidgetPositionAlign</a></li> <li><a href="..&#x2F;classes/WidgetPositionConstrain.html">WidgetPositionConstrain</a></li> <li><a href="..&#x2F;classes/WidgetStack.html">WidgetStack</a></li> <li><a href="..&#x2F;classes/WidgetStdMod.html">WidgetStdMod</a></li> <li><a href="..&#x2F;classes/YQL.html">YQL</a></li> <li><a href="..&#x2F;classes/YQLRequest.html">YQLRequest</a></li> <li><a href="..&#x2F;classes/YUI.html">YUI</a></li> <li><a href="..&#x2F;classes/YUI~substitute.html">YUI~substitute</a></li> </ul> <ul id="api-modules" class="apis modules"> <li><a href="..&#x2F;modules/align-plugin.html">align-plugin</a></li> <li><a href="..&#x2F;modules/anim.html">anim</a></li> <li><a href="..&#x2F;modules/anim-base.html">anim-base</a></li> <li><a href="..&#x2F;modules/anim-color.html">anim-color</a></li> <li><a href="..&#x2F;modules/anim-curve.html">anim-curve</a></li> <li><a href="..&#x2F;modules/anim-easing.html">anim-easing</a></li> <li><a href="..&#x2F;modules/anim-node-plugin.html">anim-node-plugin</a></li> <li><a href="..&#x2F;modules/anim-scroll.html">anim-scroll</a></li> <li><a href="..&#x2F;modules/anim-xy.html">anim-xy</a></li> <li><a href="..&#x2F;modules/app.html">app</a></li> <li><a href="..&#x2F;modules/app-base.html">app-base</a></li> <li><a href="..&#x2F;modules/app-transitions.html">app-transitions</a></li> <li><a href="..&#x2F;modules/app-transitions-native.html">app-transitions-native</a></li> <li><a href="..&#x2F;modules/array-extras.html">array-extras</a></li> <li><a href="..&#x2F;modules/array-invoke.html">array-invoke</a></li> <li><a href="..&#x2F;modules/arraylist.html">arraylist</a></li> <li><a href="..&#x2F;modules/arraylist-add.html">arraylist-add</a></li> <li><a href="..&#x2F;modules/arraylist-filter.html">arraylist-filter</a></li> <li><a href="..&#x2F;modules/arraysort.html">arraysort</a></li> <li><a href="..&#x2F;modules/async-queue.html">async-queue</a></li> <li><a href="..&#x2F;modules/attribute.html">attribute</a></li> <li><a href="..&#x2F;modules/attribute-base.html">attribute-base</a></li> <li><a href="..&#x2F;modules/attribute-complex.html">attribute-complex</a></li> <li><a href="..&#x2F;modules/attribute-core.html">attribute-core</a></li> <li><a href="..&#x2F;modules/attribute-events.html">attribute-events</a></li> <li><a href="..&#x2F;modules/attribute-extras.html">attribute-extras</a></li> <li><a href="..&#x2F;modules/autocomplete.html">autocomplete</a></li> <li><a href="..&#x2F;modules/autocomplete-base.html">autocomplete-base</a></li> <li><a href="..&#x2F;modules/autocomplete-filters.html">autocomplete-filters</a></li> <li><a href="..&#x2F;modules/autocomplete-filters-accentfold.html">autocomplete-filters-accentfold</a></li> <li><a href="..&#x2F;modules/autocomplete-highlighters.html">autocomplete-highlighters</a></li> <li><a href="..&#x2F;modules/autocomplete-highlighters-accentfold.html">autocomplete-highlighters-accentfold</a></li> <li><a href="..&#x2F;modules/autocomplete-list.html">autocomplete-list</a></li> <li><a href="..&#x2F;modules/autocomplete-list-keys.html">autocomplete-list-keys</a></li> <li><a href="..&#x2F;modules/autocomplete-plugin.html">autocomplete-plugin</a></li> <li><a href="..&#x2F;modules/autocomplete-sources.html">autocomplete-sources</a></li> <li><a href="..&#x2F;modules/base.html">base</a></li> <li><a href="..&#x2F;modules/base-base.html">base-base</a></li> <li><a href="..&#x2F;modules/base-build.html">base-build</a></li> <li><a href="..&#x2F;modules/base-core.html">base-core</a></li> <li><a href="..&#x2F;modules/base-pluginhost.html">base-pluginhost</a></li> <li><a href="..&#x2F;modules/button.html">button</a></li> <li><a href="..&#x2F;modules/button-core.html">button-core</a></li> <li><a href="..&#x2F;modules/button-group.html">button-group</a></li> <li><a href="..&#x2F;modules/button-plugin.html">button-plugin</a></li> <li><a href="..&#x2F;modules/cache.html">cache</a></li> <li><a href="..&#x2F;modules/cache-base.html">cache-base</a></li> <li><a href="..&#x2F;modules/cache-offline.html">cache-offline</a></li> <li><a href="..&#x2F;modules/cache-plugin.html">cache-plugin</a></li> <li><a href="..&#x2F;modules/calendar.html">calendar</a></li> <li><a href="..&#x2F;modules/calendar-base.html">calendar-base</a></li> <li><a href="..&#x2F;modules/calendarnavigator.html">calendarnavigator</a></li> <li><a href="..&#x2F;modules/charts.html">charts</a></li> <li><a href="..&#x2F;modules/charts-legend.html">charts-legend</a></li> <li><a href="..&#x2F;modules/classnamemanager.html">classnamemanager</a></li> <li><a href="..&#x2F;modules/clickable-rail.html">clickable-rail</a></li> <li><a href="..&#x2F;modules/collection.html">collection</a></li> <li><a href="..&#x2F;modules/console.html">console</a></li> <li><a href="..&#x2F;modules/console-filters.html">console-filters</a></li> <li><a href="..&#x2F;modules/cookie.html">cookie</a></li> <li><a href="..&#x2F;modules/createlink-base.html">createlink-base</a></li> <li><a href="..&#x2F;modules/dataschema.html">dataschema</a></li> <li><a href="..&#x2F;modules/dataschema-array.html">dataschema-array</a></li> <li><a href="..&#x2F;modules/dataschema-base.html">dataschema-base</a></li> <li><a href="..&#x2F;modules/dataschema-json.html">dataschema-json</a></li> <li><a href="..&#x2F;modules/dataschema-text.html">dataschema-text</a></li> <li><a href="..&#x2F;modules/dataschema-xml.html">dataschema-xml</a></li> <li><a href="..&#x2F;modules/datasource.html">datasource</a></li> <li><a href="..&#x2F;modules/datasource-arrayschema.html">datasource-arrayschema</a></li> <li><a href="..&#x2F;modules/datasource-cache.html">datasource-cache</a></li> <li><a href="..&#x2F;modules/datasource-function.html">datasource-function</a></li> <li><a href="..&#x2F;modules/datasource-get.html">datasource-get</a></li> <li><a href="..&#x2F;modules/datasource-io.html">datasource-io</a></li> <li><a href="..&#x2F;modules/datasource-jsonschema.html">datasource-jsonschema</a></li> <li><a href="..&#x2F;modules/datasource-local.html">datasource-local</a></li> <li><a href="..&#x2F;modules/datasource-polling.html">datasource-polling</a></li> <li><a href="..&#x2F;modules/datasource-textschema.html">datasource-textschema</a></li> <li><a href="..&#x2F;modules/datasource-xmlschema.html">datasource-xmlschema</a></li> <li><a href="..&#x2F;modules/datatable.html">datatable</a></li> <li><a href="..&#x2F;modules/datatable-base.html">datatable-base</a></li> <li><a href="..&#x2F;modules/datatable-base-deprecated.html">datatable-base-deprecated</a></li> <li><a href="..&#x2F;modules/datatable-body.html">datatable-body</a></li> <li><a href="..&#x2F;modules/datatable-column-widths.html">datatable-column-widths</a></li> <li><a href="..&#x2F;modules/datatable-core.html">datatable-core</a></li> <li><a href="..&#x2F;modules/datatable-datasource.html">datatable-datasource</a></li> <li><a href="..&#x2F;modules/datatable-datasource-deprecated.html">datatable-datasource-deprecated</a></li> <li><a href="..&#x2F;modules/datatable-deprecated.html">datatable-deprecated</a></li> <li><a href="..&#x2F;modules/datatable-head.html">datatable-head</a></li> <li><a href="..&#x2F;modules/datatable-message.html">datatable-message</a></li> <li><a href="..&#x2F;modules/datatable-mutable.html">datatable-mutable</a></li> <li><a href="..&#x2F;modules/datatable-scroll.html">datatable-scroll</a></li> <li><a href="..&#x2F;modules/datatable-scroll-deprecated.html">datatable-scroll-deprecated</a></li> <li><a href="..&#x2F;modules/datatable-sort.html">datatable-sort</a></li> <li><a href="..&#x2F;modules/datatable-sort-deprecated.html">datatable-sort-deprecated</a></li> <li><a href="..&#x2F;modules/datatype.html">datatype</a></li> <li><a href="..&#x2F;modules/datatype-date.html">datatype-date</a></li> <li><a href="..&#x2F;modules/datatype-date-format.html">datatype-date-format</a></li> <li><a href="..&#x2F;modules/datatype-date-math.html">datatype-date-math</a></li> <li><a href="..&#x2F;modules/datatype-date-parse.html">datatype-date-parse</a></li> <li><a href="..&#x2F;modules/datatype-number.html">datatype-number</a></li> <li><a href="..&#x2F;modules/datatype-number-format.html">datatype-number-format</a></li> <li><a href="..&#x2F;modules/datatype-number-parse.html">datatype-number-parse</a></li> <li><a href="..&#x2F;modules/datatype-xml.html">datatype-xml</a></li> <li><a href="..&#x2F;modules/datatype-xml-format.html">datatype-xml-format</a></li> <li><a href="..&#x2F;modules/datatype-xml-parse.html">datatype-xml-parse</a></li> <li><a href="..&#x2F;modules/dd.html">dd</a></li> <li><a href="..&#x2F;modules/dd-constrain.html">dd-constrain</a></li> <li><a href="..&#x2F;modules/dd-ddm.html">dd-ddm</a></li> <li><a href="..&#x2F;modules/dd-ddm-base.html">dd-ddm-base</a></li> <li><a href="..&#x2F;modules/dd-ddm-drop.html">dd-ddm-drop</a></li> <li><a href="..&#x2F;modules/dd-delegate.html">dd-delegate</a></li> <li><a href="..&#x2F;modules/dd-drag.html">dd-drag</a></li> <li><a href="..&#x2F;modules/dd-drop.html">dd-drop</a></li> <li><a href="..&#x2F;modules/dd-drop-plugin.html">dd-drop-plugin</a></li> <li><a href="..&#x2F;modules/dd-plugin.html">dd-plugin</a></li> <li><a href="..&#x2F;modules/dd-proxy.html">dd-proxy</a></li> <li><a href="..&#x2F;modules/dd-scroll.html">dd-scroll</a></li> <li><a href="..&#x2F;modules/dial.html">dial</a></li> <li><a href="..&#x2F;modules/dom.html">dom</a></li> <li><a href="..&#x2F;modules/dom-base.html">dom-base</a></li> <li><a href="..&#x2F;modules/dom-screen.html">dom-screen</a></li> <li><a href="..&#x2F;modules/dom-style.html">dom-style</a></li> <li><a href="..&#x2F;modules/dump.html">dump</a></li> <li><a href="..&#x2F;modules/editor.html">editor</a></li> <li><a href="..&#x2F;modules/editor-base.html">editor-base</a></li> <li><a href="..&#x2F;modules/editor-bidi.html">editor-bidi</a></li> <li><a href="..&#x2F;modules/editor-br.html">editor-br</a></li> <li><a href="..&#x2F;modules/editor-lists.html">editor-lists</a></li> <li><a href="..&#x2F;modules/editor-para.html">editor-para</a></li> <li><a href="..&#x2F;modules/editor-para-base.html">editor-para-base</a></li> <li><a href="..&#x2F;modules/editor-para-ie.html">editor-para-ie</a></li> <li><a href="..&#x2F;modules/editor-tab.html">editor-tab</a></li> <li><a href="..&#x2F;modules/escape.html">escape</a></li> <li><a href="..&#x2F;modules/event.html">event</a></li> <li><a href="..&#x2F;modules/event-base.html">event-base</a></li> <li><a href="..&#x2F;modules/event-contextmenu.html">event-contextmenu</a></li> <li><a href="..&#x2F;modules/event-custom.html">event-custom</a></li> <li><a href="..&#x2F;modules/event-custom-base.html">event-custom-base</a></li> <li><a href="..&#x2F;modules/event-custom-complex.html">event-custom-complex</a></li> <li><a href="..&#x2F;modules/event-delegate.html">event-delegate</a></li> <li><a href="..&#x2F;modules/event-flick.html">event-flick</a></li> <li><a href="..&#x2F;modules/event-focus.html">event-focus</a></li> <li><a href="..&#x2F;modules/event-gestures.html">event-gestures</a></li> <li><a href="..&#x2F;modules/event-hover.html">event-hover</a></li> <li><a href="..&#x2F;modules/event-key.html">event-key</a></li> <li><a href="..&#x2F;modules/event-mouseenter.html">event-mouseenter</a></li> <li><a href="..&#x2F;modules/event-mousewheel.html">event-mousewheel</a></li> <li><a href="..&#x2F;modules/event-move.html">event-move</a></li> <li><a href="..&#x2F;modules/event-outside.html">event-outside</a></li> <li><a href="..&#x2F;modules/event-resize.html">event-resize</a></li> <li><a href="..&#x2F;modules/event-simulate.html">event-simulate</a></li> <li><a href="..&#x2F;modules/event-synthetic.html">event-synthetic</a></li> <li><a href="..&#x2F;modules/event-touch.html">event-touch</a></li> <li><a href="..&#x2F;modules/event-valuechange.html">event-valuechange</a></li> <li><a href="..&#x2F;modules/exec-command.html">exec-command</a></li> <li><a href="..&#x2F;modules/features.html">features</a></li> <li><a href="..&#x2F;modules/file.html">file</a></li> <li><a href="..&#x2F;modules/file-flash.html">file-flash</a></li> <li><a href="..&#x2F;modules/file-html5.html">file-html5</a></li> <li><a href="..&#x2F;modules/frame.html">frame</a></li> <li><a href="..&#x2F;modules/get.html">get</a></li> <li><a href="..&#x2F;modules/get-nodejs.html">get-nodejs</a></li> <li><a href="..&#x2F;modules/graphics.html">graphics</a></li> <li><a href="..&#x2F;modules/handlebars.html">handlebars</a></li> <li><a href="..&#x2F;modules/handlebars-base.html">handlebars-base</a></li> <li><a href="..&#x2F;modules/handlebars-compiler.html">handlebars-compiler</a></li> <li><a href="..&#x2F;modules/highlight.html">highlight</a></li> <li><a href="..&#x2F;modules/highlight-accentfold.html">highlight-accentfold</a></li> <li><a href="..&#x2F;modules/highlight-base.html">highlight-base</a></li> <li><a href="..&#x2F;modules/history.html">history</a></li> <li><a href="..&#x2F;modules/history-base.html">history-base</a></li> <li><a href="..&#x2F;modules/history-hash.html">history-hash</a></li> <li><a href="..&#x2F;modules/history-hash-ie.html">history-hash-ie</a></li> <li><a href="..&#x2F;modules/history-html5.html">history-html5</a></li> <li><a href="..&#x2F;modules/imageloader.html">imageloader</a></li> <li><a href="..&#x2F;modules/intl.html">intl</a></li> <li><a href="..&#x2F;modules/io.html">io</a></li> <li><a href="..&#x2F;modules/io-base.html">io-base</a></li> <li><a href="..&#x2F;modules/io-form.html">io-form</a></li> <li><a href="..&#x2F;modules/io-queue.html">io-queue</a></li> <li><a href="..&#x2F;modules/io-upload-iframe.html">io-upload-iframe</a></li> <li><a href="..&#x2F;modules/io-xdr.html">io-xdr</a></li> <li><a href="..&#x2F;modules/json.html">json</a></li> <li><a href="..&#x2F;modules/json-parse.html">json-parse</a></li> <li><a href="..&#x2F;modules/json-stringify.html">json-stringify</a></li> <li><a href="..&#x2F;modules/jsonp.html">jsonp</a></li> <li><a href="..&#x2F;modules/jsonp-url.html">jsonp-url</a></li> <li><a href="..&#x2F;modules/loader.html">loader</a></li> <li><a href="..&#x2F;modules/loader-base.html">loader-base</a></li> <li><a href="..&#x2F;modules/matrix.html">matrix</a></li> <li><a href="..&#x2F;modules/model.html">model</a></li> <li><a href="..&#x2F;modules/model-list.html">model-list</a></li> <li><a href="..&#x2F;modules/node.html">node</a></li> <li><a href="..&#x2F;modules/node-base.html">node-base</a></li> <li><a href="..&#x2F;modules/node-core.html">node-core</a></li> <li><a href="..&#x2F;modules/node-data.html">node-data</a></li> <li><a href="..&#x2F;modules/node-deprecated.html">node-deprecated</a></li> <li><a href="..&#x2F;modules/node-event-delegate.html">node-event-delegate</a></li> <li><a href="..&#x2F;modules/node-event-html5.html">node-event-html5</a></li> <li><a href="..&#x2F;modules/node-event-simulate.html">node-event-simulate</a></li> <li><a href="..&#x2F;modules/node-flick.html">node-flick</a></li> <li><a href="..&#x2F;modules/node-focusmanager.html">node-focusmanager</a></li> <li><a href="..&#x2F;modules/node-load.html">node-load</a></li> <li><a href="..&#x2F;modules/node-menunav.html">node-menunav</a></li> <li><a href="..&#x2F;modules/node-pluginhost.html">node-pluginhost</a></li> <li><a href="..&#x2F;modules/node-screen.html">node-screen</a></li> <li><a href="..&#x2F;modules/node-style.html">node-style</a></li> <li><a href="..&#x2F;modules/oop.html">oop</a></li> <li><a href="..&#x2F;modules/overlay.html">overlay</a></li> <li><a href="..&#x2F;modules/panel.html">panel</a></li> <li><a href="..&#x2F;modules/parallel.html">parallel</a></li> <li><a href="..&#x2F;modules/pjax.html">pjax</a></li> <li><a href="..&#x2F;modules/pjax-base.html">pjax-base</a></li> <li><a href="..&#x2F;modules/pjax-plugin.html">pjax-plugin</a></li> <li><a href="..&#x2F;modules/plugin.html">plugin</a></li> <li><a href="..&#x2F;modules/pluginhost.html">pluginhost</a></li> <li><a href="..&#x2F;modules/pluginhost-base.html">pluginhost-base</a></li> <li><a href="..&#x2F;modules/pluginhost-config.html">pluginhost-config</a></li> <li><a href="..&#x2F;modules/profiler.html">profiler</a></li> <li><a href="..&#x2F;modules/querystring.html">querystring</a></li> <li><a href="..&#x2F;modules/querystring-parse.html">querystring-parse</a></li> <li><a href="..&#x2F;modules/querystring-parse-simple.html">querystring-parse-simple</a></li> <li><a href="..&#x2F;modules/querystring-stringify.html">querystring-stringify</a></li> <li><a href="..&#x2F;modules/querystring-stringify-simple.html">querystring-stringify-simple</a></li> <li><a href="..&#x2F;modules/queue-promote.html">queue-promote</a></li> <li><a href="..&#x2F;modules/range-slider.html">range-slider</a></li> <li><a href="..&#x2F;modules/recordset.html">recordset</a></li> <li><a href="..&#x2F;modules/recordset-base.html">recordset-base</a></li> <li><a href="..&#x2F;modules/recordset-filter.html">recordset-filter</a></li> <li><a href="..&#x2F;modules/recordset-indexer.html">recordset-indexer</a></li> <li><a href="..&#x2F;modules/recordset-sort.html">recordset-sort</a></li> <li><a href="..&#x2F;modules/resize.html">resize</a></li> <li><a href="..&#x2F;modules/resize-contrain.html">resize-contrain</a></li> <li><a href="..&#x2F;modules/resize-plugin.html">resize-plugin</a></li> <li><a href="..&#x2F;modules/resize-proxy.html">resize-proxy</a></li> <li><a href="..&#x2F;modules/rollup.html">rollup</a></li> <li><a href="..&#x2F;modules/router.html">router</a></li> <li><a href="..&#x2F;modules/scrollview.html">scrollview</a></li> <li><a href="..&#x2F;modules/scrollview-base.html">scrollview-base</a></li> <li><a href="..&#x2F;modules/scrollview-base-ie.html">scrollview-base-ie</a></li> <li><a href="..&#x2F;modules/scrollview-list.html">scrollview-list</a></li> <li><a href="..&#x2F;modules/scrollview-paginator.html">scrollview-paginator</a></li> <li><a href="..&#x2F;modules/scrollview-scrollbars.html">scrollview-scrollbars</a></li> <li><a href="..&#x2F;modules/selection.html">selection</a></li> <li><a href="..&#x2F;modules/selector-css2.html">selector-css2</a></li> <li><a href="..&#x2F;modules/selector-css3.html">selector-css3</a></li> <li><a href="..&#x2F;modules/selector-native.html">selector-native</a></li> <li><a href="..&#x2F;modules/shim-plugin.html">shim-plugin</a></li> <li><a href="..&#x2F;modules/slider.html">slider</a></li> <li><a href="..&#x2F;modules/slider-base.html">slider-base</a></li> <li><a href="..&#x2F;modules/slider-value-range.html">slider-value-range</a></li> <li><a href="..&#x2F;modules/sortable.html">sortable</a></li> <li><a href="..&#x2F;modules/sortable-scroll.html">sortable-scroll</a></li> <li><a href="..&#x2F;modules/stylesheet.html">stylesheet</a></li> <li><a href="..&#x2F;modules/substitute.html">substitute</a></li> <li><a href="..&#x2F;modules/swf.html">swf</a></li> <li><a href="..&#x2F;modules/swfdetect.html">swfdetect</a></li> <li><a href="..&#x2F;modules/tabview.html">tabview</a></li> <li><a href="..&#x2F;modules/test.html">test</a></li> <li><a href="..&#x2F;modules/test-console.html">test-console</a></li> <li><a href="..&#x2F;modules/text.html">text</a></li> <li><a href="..&#x2F;modules/text-accentfold.html">text-accentfold</a></li> <li><a href="..&#x2F;modules/text-wordbreak.html">text-wordbreak</a></li> <li><a href="..&#x2F;modules/transition.html">transition</a></li> <li><a href="..&#x2F;modules/uploader.html">uploader</a></li> <li><a href="..&#x2F;modules/uploader-deprecated.html">uploader-deprecated</a></li> <li><a href="..&#x2F;modules/uploader-flash.html">uploader-flash</a></li> <li><a href="..&#x2F;modules/uploader-html5.html">uploader-html5</a></li> <li><a href="..&#x2F;modules/uploader-queue.html">uploader-queue</a></li> <li><a href="..&#x2F;modules/view.html">view</a></li> <li><a href="..&#x2F;modules/view-node-map.html">view-node-map</a></li> <li><a href="..&#x2F;modules/widget.html">widget</a></li> <li><a href="..&#x2F;modules/widget-anim.html">widget-anim</a></li> <li><a href="..&#x2F;modules/widget-autohide.html">widget-autohide</a></li> <li><a href="..&#x2F;modules/widget-base.html">widget-base</a></li> <li><a href="..&#x2F;modules/widget-base-ie.html">widget-base-ie</a></li> <li><a href="..&#x2F;modules/widget-buttons.html">widget-buttons</a></li> <li><a href="..&#x2F;modules/widget-child.html">widget-child</a></li> <li><a href="..&#x2F;modules/widget-htmlparser.html">widget-htmlparser</a></li> <li><a href="..&#x2F;modules/widget-locale.html">widget-locale</a></li> <li><a href="..&#x2F;modules/widget-modality.html">widget-modality</a></li> <li><a href="..&#x2F;modules/widget-parent.html">widget-parent</a></li> <li><a href="..&#x2F;modules/widget-position.html">widget-position</a></li> <li><a href="..&#x2F;modules/widget-position-align.html">widget-position-align</a></li> <li><a href="..&#x2F;modules/widget-position-constrain.html">widget-position-constrain</a></li> <li><a href="..&#x2F;modules/widget-skin.html">widget-skin</a></li> <li><a href="..&#x2F;modules/widget-stack.html">widget-stack</a></li> <li><a href="..&#x2F;modules/widget-stdmod.html">widget-stdmod</a></li> <li><a href="..&#x2F;modules/widget-uievents.html">widget-uievents</a></li> <li><a href="..&#x2F;modules/yql.html">yql</a></li> <li><a href="..&#x2F;modules/yui.html">yui</a></li> <li><a href="..&#x2F;modules/yui-base.html">yui-base</a></li> <li><a href="..&#x2F;modules/yui-later.html">yui-later</a></li> <li><a href="..&#x2F;modules/yui-log.html">yui-log</a></li> <li><a href="..&#x2F;modules/yui-throttle.html">yui-throttle</a></li> <li><a href="..&#x2F;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>Profiler Class</h1> <div class="box meta"> <div class="foundat"> Defined in: <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l82"><code>profiler&#x2F;js&#x2F;Profiler.js:82</code></a> </div> Module: <a href="../modules/profiler.html">profiler</a> </div> <div class="box intro"> <p>Profiles functions in JavaScript.</p> </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> </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_clear">clear</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_getAverage">getAverage</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_getCallCount">getCallCount</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_getFullReport">getFullReport</a> <span class="flag static">static</span> </li> <li class="index-item method deprecated"> <a href="#method_getFunctionReport">getFunctionReport</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_getMax">getMax</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_getMin">getMin</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_getOriginal">getOriginal</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_getReport">getReport</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_instrument">instrument</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_pause">pause</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_registerConstructor">registerConstructor</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_registerFunction">registerFunction</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_registerObject">registerObject</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_start">start</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_stop">stop</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_unregisterFunction">unregisterFunction</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_unregisterFunction">unregisterFunction</a> <span class="flag static">static</span> </li> <li class="index-item method"> <a href="#method_unregisterObject">unregisterObject</a> <span class="flag static">static</span> </li> </ul> </div> </div> <div id="methods" class="api-class-tabpanel"> <h2 class="off-left">Methods</h2> <div id="method_clear" class="method item"> <h3 class="name"><code>clear</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Void</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l93"><code>profiler&#x2F;js&#x2F;Profiler.js:93</code></a> </p> </div> <div class="description"> <p>Removes all report data from the profiler.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>(Optional) The name of the report to clear. If omitted, then all report data is cleared.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Void</span>: </div> </div> </div> <div id="method_getAverage" class="method item"> <h3 class="name"><code>getAverage</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Float</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l251"><code>profiler&#x2F;js&#x2F;Profiler.js:251</code></a> </p> </div> <div class="description"> <p>Returns the average amount of time (in milliseconds) that the function with the given name takes to execute.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The name of the function whose data should be returned. If an object type method, it should be 'constructor.prototype.methodName'; a normal object method would just be 'object.methodName'.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Float</span>: The average time it takes the function to execute. </div> </div> </div> <div id="method_getCallCount" class="method item"> <h3 class="name"><code>getCallCount</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Int</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l265"><code>profiler&#x2F;js&#x2F;Profiler.js:265</code></a> </p> </div> <div class="description"> <p>Returns the number of times that the given function has been called.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The name of the function whose data should be returned.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Int</span>: The number of times the function was called. </div> </div> </div> <div id="method_getFullReport" class="method item"> <h3 class="name"><code>getFullReport</code></h3> <span class="paren">()</span> <span class="returns-inline"> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object" class="crosslink external" target="_blank">Object</a></span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l327"><code>profiler&#x2F;js&#x2F;Profiler.js:327</code></a> </p> </div> <div class="description"> <p>Returns an object containing profiling data for all of the functions that were profiled. The object has an entry for each function and returns all information (min, max, average, calls, etc.) for each function.</p> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object" class="crosslink external" target="_blank">Object</a></span>: An object containing all profile data. </div> </div> </div> <div id="method_getFunctionReport" class="method item deprecated"> <h3 class="name"><code>getFunctionReport</code></h3> <span class="paren">()</span> <span class="returns-inline"> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object" class="crosslink external" target="_blank">Object</a></span> </span> <span class="flag deprecated" title="Use getReport() instead.">deprecated</span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l304"><code>profiler&#x2F;js&#x2F;Profiler.js:304</code></a> </p> <p>Deprecated: Use getReport() instead.</p> </div> <div class="description"> <p>Returns an object containing profiling data for a single function. The object has an entry for min, max, avg, calls, and points).</p> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object" class="crosslink external" target="_blank">Object</a></span>: An object containing profile data for a given function. </div> </div> </div> <div id="method_getMax" class="method item"> <h3 class="name"><code>getMax</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Float</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l276"><code>profiler&#x2F;js&#x2F;Profiler.js:276</code></a> </p> </div> <div class="description"> <p>Returns the maximum amount of time (in milliseconds) that the function with the given name takes to execute.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The name of the function whose data should be returned. If an object type method, it should be 'constructor.prototype.methodName'; a normal object method would just be 'object.methodName'.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Float</span>: The maximum time it takes the function to execute. </div> </div> </div> <div id="method_getMin" class="method item"> <h3 class="name"><code>getMin</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Float</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l290"><code>profiler&#x2F;js&#x2F;Profiler.js:290</code></a> </p> </div> <div class="description"> <p>Returns the minimum amount of time (in milliseconds) that the function with the given name takes to execute.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The name of the function whose data should be returned. If an object type method, it should be 'constructor.prototype.methodName'; a normal object method would just be 'object.methodName'.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Float</span>: The minimum time it takes the function to execute. </div> </div> </div> <div id="method_getOriginal" class="method item"> <h3 class="name"><code>getOriginal</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function" class="crosslink external" target="_blank">Function</a> | <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object" class="crosslink external" target="_blank">Object</a></span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l111"><code>profiler&#x2F;js&#x2F;Profiler.js:111</code></a> </p> </div> <div class="description"> <p>Returns the uninstrumented version of a function/object.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The name of the function/object to retrieve.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function" class="crosslink external" target="_blank">Function</a> | <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object" class="crosslink external" target="_blank">Object</a></span>: The uninstrumented version of a function/object. </div> </div> </div> <div id="method_getReport" class="method item"> <h3 class="name"><code>getReport</code></h3> <span class="paren">()</span> <span class="returns-inline"> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object" class="crosslink external" target="_blank">Object</a></span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l316"><code>profiler&#x2F;js&#x2F;Profiler.js:316</code></a> </p> </div> <div class="description"> <p>Returns an object containing profiling data for a single function. The object has an entry for min, max, avg, calls, and points).</p> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object" class="crosslink external" target="_blank">Object</a></span>: An object containing profile data for a given function. </div> </div> </div> <div id="method_instrument" class="method item"> <h3 class="name"><code>instrument</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> <li class="arg"> <code>method</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function" class="crosslink external" target="_blank">Function</a></span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l122"><code>profiler&#x2F;js&#x2F;Profiler.js:122</code></a> </p> </div> <div class="description"> <p>Instruments a method to have profiling calls.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The name of the report for the function.</p> </div> </li> <li class="param"> <code class="param-name">method</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function" class="crosslink external" target="_blank">Function</a></span> <div class="param-description"> <p>The function to instrument.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function" class="crosslink external" target="_blank">Function</a></span>: An instrumented version of the function. </div> </div> </div> <div id="method_pause" class="method item"> <h3 class="name"><code>pause</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Void</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l167"><code>profiler&#x2F;js&#x2F;Profiler.js:167</code></a> </p> </div> <div class="description"> <p>Pauses profiling information for a given name.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The name of the data point.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Void</span>: </div> </div> </div> <div id="method_registerConstructor" class="method item"> <h3 class="name"><code>registerConstructor</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> <li class="arg"> <code>owner</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Void</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l356"><code>profiler&#x2F;js&#x2F;Profiler.js:356</code></a> </p> </div> <div class="description"> <p>Sets up a constructor for profiling, including all properties and methods on the prototype.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The fully-qualified name of the function including namespace information.</p> </div> </li> <li class="param"> <code class="param-name">owner</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object" class="crosslink external" target="_blank">Object</a></span> <div class="param-description"> <p>(Optional) The object that owns the function (namespace or containing object).</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Void</span>: </div> </div> </div> <div id="method_registerFunction" class="method item"> <h3 class="name"><code>registerFunction</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> <li class="arg"> <code>owner</code> </li> <li class="arg"> <code>registerPrototype</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Void</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l368"><code>profiler&#x2F;js&#x2F;Profiler.js:368</code></a> </p> </div> <div class="description"> <p>Sets up a function for profiling. It essentially overwrites the function with one that has instrumentation data. This method also creates an entry for the function in the profile report. The original function is stored on the container object.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The full name of the function including namespacing. This is the name of the function that is stored in the report.</p> </div> </li> <li class="param"> <code class="param-name">owner</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object" class="crosslink external" target="_blank">Object</a></span> <div class="param-description"> <p>(Optional) The object that owns the function. If the function isn't global then this argument is required. This could be the namespace that the function belongs to or the object on which it's a method.</p> </div> </li> <li class="param"> <code class="param-name">registerPrototype</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Boolean" class="crosslink external" target="_blank">Boolean</a></span> <div class="param-description"> <p>(Optional) Indicates that the prototype should also be instrumented. Setting to true has the same effect as calling registerConstructor().</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Void</span>: </div> </div> </div> <div id="method_registerObject" class="method item"> <h3 class="name"><code>registerObject</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> <li class="arg"> <code>owner</code> </li> <li class="arg"> <code>recurse</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Void</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l426"><code>profiler&#x2F;js&#x2F;Profiler.js:426</code></a> </p> </div> <div class="description"> <p>Sets up an object for profiling. It takes the object and looks for functions. When a function is found, registerMethod() is called on it. If set to recrusive mode, it will also setup objects found inside of this object for profiling, using the same methodology.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The name of the object to profile (shows up in report).</p> </div> </li> <li class="param"> <code class="param-name">owner</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object" class="crosslink external" target="_blank">Object</a></span> <div class="param-description"> <p>(Optional) The object represented by the name.</p> </div> </li> <li class="param"> <code class="param-name">recurse</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Boolean" class="crosslink external" target="_blank">Boolean</a></span> <div class="param-description"> <p>(Optional) Determines if subobject methods are also profiled.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Void</span>: </div> </div> </div> <div id="method_start" class="method item"> <h3 class="name"><code>start</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Void</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l186"><code>profiler&#x2F;js&#x2F;Profiler.js:186</code></a> </p> </div> <div class="description"> <p>Start profiling information for a given name. The name cannot be the name of a registered function or object. This is used to start timing for a particular block of code rather than instrumenting the entire function.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The name of the data point.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Void</span>: </div> </div> </div> <div id="method_stop" class="method item"> <h3 class="name"><code>stop</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Void</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l222"><code>profiler&#x2F;js&#x2F;Profiler.js:222</code></a> </p> </div> <div class="description"> <p>Stops profiling information for a given name.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The name of the data point.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Void</span>: </div> </div> </div> <div id="method_unregisterFunction" class="method item"> <h3 class="name"><code>unregisterFunction</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Void</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l458"><code>profiler&#x2F;js&#x2F;Profiler.js:458</code></a> </p> </div> <div class="description"> <p>Removes a constructor function from profiling. Reverses the registerConstructor() method.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The full name of the function including namespacing. This is the name of the function that is stored in the report.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Void</span>: </div> </div> </div> <div id="method_unregisterFunction" class="method item"> <h3 class="name"><code>unregisterFunction</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Void</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l474"><code>profiler&#x2F;js&#x2F;Profiler.js:474</code></a> </p> </div> <div class="description"> <p>Removes function from profiling. Reverses the registerFunction() method.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The full name of the function including namespacing. This is the name of the function that is stored in the report.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Void</span>: </div> </div> </div> <div id="method_unregisterObject" class="method item"> <h3 class="name"><code>unregisterObject</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>name</code> </li> <li class="arg"> <code>recurse</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Void</span> </span> <span class="flag static">static</span> <div class="meta"> <p> Defined in <a href="..&#x2F;files&#x2F;profiler_js_Profiler.js.html#l510"><code>profiler&#x2F;js&#x2F;Profiler.js:510</code></a> </p> </div> <div class="description"> <p>Unregisters an object for profiling. It takes the object and looks for functions. When a function is found, unregisterMethod() is called on it. If set to recrusive mode, it will also unregister objects found inside of this object, using the same methodology.</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">name</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String" class="crosslink external" target="_blank">String</a></span> <div class="param-description"> <p>The name of the object to unregister.</p> </div> </li> <li class="param"> <code class="param-name">recurse</code> <span class="type"><a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Boolean" class="crosslink external" target="_blank">Boolean</a></span> <div class="param-description"> <p>(Optional) Determines if subobject methods should also be unregistered.</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Void</span>: </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <script src="..&#x2F;assets/vendor/prettify/prettify-min.js"></script> <script>prettyPrint();</script> <script src="..&#x2F;assets/js/yui-prettify.js"></script> <script src="..&#x2F;assets/../api.js"></script> <script src="..&#x2F;assets/js/api-filter.js"></script> <script src="..&#x2F;assets/js/api-list.js"></script> <script src="..&#x2F;assets/js/api-search.js"></script> <script src="..&#x2F;assets/js/apidocs.js"></script> </body> </html>
sites/all/libraries/yui/api/files/autocomplete_js_autocomplete-list-keys.js.html
oystercrackher/dev.sdtn.com
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>autocomplete&#x2F;js&#x2F;autocomplete-list-keys.js - YUI 3</title> <link rel="stylesheet" href="http:&#x2F;&#x2F;yui.yahooapis.com&#x2F;3.5.0pr4&#x2F;build&#x2F;cssgrids&#x2F;cssgrids-min.css"> <link rel="stylesheet" href="..&#x2F;assets/vendor/prettify/prettify-min.css"> <link rel="stylesheet" href="..&#x2F;assets/css/main.css" id="site_styles"> <script src="http:&#x2F;&#x2F;yui.yahooapis.com&#x2F;3.5.0pr4&#x2F;build&#x2F;yui&#x2F;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="..&#x2F;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="..&#x2F;classes/Anim.html">Anim</a></li> <li><a href="..&#x2F;classes/App.html">App</a></li> <li><a href="..&#x2F;classes/App.Base.html">App.Base</a></li> <li><a href="..&#x2F;classes/App.Transitions.html">App.Transitions</a></li> <li><a href="..&#x2F;classes/App.TransitionsNative.html">App.TransitionsNative</a></li> <li><a href="..&#x2F;classes/AreaSeries.html">AreaSeries</a></li> <li><a href="..&#x2F;classes/AreaSplineSeries.html">AreaSplineSeries</a></li> <li><a href="..&#x2F;classes/Array.html">Array</a></li> <li><a href="..&#x2F;classes/ArrayList.html">ArrayList</a></li> <li><a href="..&#x2F;classes/ArraySort.html">ArraySort</a></li> <li><a href="..&#x2F;classes/AsyncQueue.html">AsyncQueue</a></li> <li><a href="..&#x2F;classes/Attribute.html">Attribute</a></li> <li><a href="..&#x2F;classes/AttributeCore.html">AttributeCore</a></li> <li><a href="..&#x2F;classes/AttributeEvents.html">AttributeEvents</a></li> <li><a href="..&#x2F;classes/AttributeExtras.html">AttributeExtras</a></li> <li><a href="..&#x2F;classes/AttributeLite.html">AttributeLite</a></li> <li><a href="..&#x2F;classes/AutoComplete.html">AutoComplete</a></li> <li><a href="..&#x2F;classes/AutoCompleteBase.html">AutoCompleteBase</a></li> <li><a href="..&#x2F;classes/AutoCompleteFilters.html">AutoCompleteFilters</a></li> <li><a href="..&#x2F;classes/AutoCompleteHighlighters.html">AutoCompleteHighlighters</a></li> <li><a href="..&#x2F;classes/AutoCompleteList.html">AutoCompleteList</a></li> <li><a href="..&#x2F;classes/Axis.html">Axis</a></li> <li><a href="..&#x2F;classes/AxisType.html">AxisType</a></li> <li><a href="..&#x2F;classes/BarSeries.html">BarSeries</a></li> <li><a href="..&#x2F;classes/Base.html">Base</a></li> <li><a href="..&#x2F;classes/BaseCore.html">BaseCore</a></li> <li><a href="..&#x2F;classes/BottomAxisLayout.html">BottomAxisLayout</a></li> <li><a href="..&#x2F;classes/Button.html">Button</a></li> <li><a href="..&#x2F;classes/ButtonCore.html">ButtonCore</a></li> <li><a href="..&#x2F;classes/ButtonGroup.html">ButtonGroup</a></li> <li><a href="..&#x2F;classes/ButtonPlugin.html">ButtonPlugin</a></li> <li><a href="..&#x2F;classes/Cache.html">Cache</a></li> <li><a href="..&#x2F;classes/CacheOffline.html">CacheOffline</a></li> <li><a href="..&#x2F;classes/Calendar.html">Calendar</a></li> <li><a href="..&#x2F;classes/CalendarBase.html">CalendarBase</a></li> <li><a href="..&#x2F;classes/CanvasCircle.html">CanvasCircle</a></li> <li><a href="..&#x2F;classes/CanvasDrawing.html">CanvasDrawing</a></li> <li><a href="..&#x2F;classes/CanvasEllipse.html">CanvasEllipse</a></li> <li><a href="..&#x2F;classes/CanvasGraphic.html">CanvasGraphic</a></li> <li><a href="..&#x2F;classes/CanvasPath.html">CanvasPath</a></li> <li><a href="..&#x2F;classes/CanvasPieSlice.html">CanvasPieSlice</a></li> <li><a href="..&#x2F;classes/CanvasRect.html">CanvasRect</a></li> <li><a href="..&#x2F;classes/CanvasShape.html">CanvasShape</a></li> <li><a href="..&#x2F;classes/CartesianChart.html">CartesianChart</a></li> <li><a href="..&#x2F;classes/CartesianSeries.html">CartesianSeries</a></li> <li><a href="..&#x2F;classes/CategoryAxis.html">CategoryAxis</a></li> <li><a href="..&#x2F;classes/Chart.html">Chart</a></li> <li><a href="..&#x2F;classes/ChartBase.html">ChartBase</a></li> <li><a href="..&#x2F;classes/ChartLegend.html">ChartLegend</a></li> <li><a href="..&#x2F;classes/Circle.html">Circle</a></li> <li><a href="..&#x2F;classes/ClassNameManager.html">ClassNameManager</a></li> <li><a href="..&#x2F;classes/ClickableRail.html">ClickableRail</a></li> <li><a href="..&#x2F;classes/ColumnSeries.html">ColumnSeries</a></li> <li><a href="..&#x2F;classes/ComboSeries.html">ComboSeries</a></li> <li><a href="..&#x2F;classes/ComboSplineSeries.html">ComboSplineSeries</a></li> <li><a href="..&#x2F;classes/config.html">config</a></li> <li><a href="..&#x2F;classes/Console.html">Console</a></li> <li><a href="..&#x2F;classes/Controller.html">Controller</a></li> <li><a href="..&#x2F;classes/Cookie.html">Cookie</a></li> <li><a href="..&#x2F;classes/CurveUtil.html">CurveUtil</a></li> <li><a href="..&#x2F;classes/CustomEvent.html">CustomEvent</a></li> <li><a href="..&#x2F;classes/DataSchema.Array.html">DataSchema.Array</a></li> <li><a href="..&#x2F;classes/DataSchema.Base.html">DataSchema.Base</a></li> <li><a href="..&#x2F;classes/DataSchema.JSON.html">DataSchema.JSON</a></li> <li><a href="..&#x2F;classes/DataSchema.Text.html">DataSchema.Text</a></li> <li><a href="..&#x2F;classes/DataSchema.XML.html">DataSchema.XML</a></li> <li><a href="..&#x2F;classes/DataSource.Function.html">DataSource.Function</a></li> <li><a href="..&#x2F;classes/DataSource.Get.html">DataSource.Get</a></li> <li><a href="..&#x2F;classes/DataSource.IO.html">DataSource.IO</a></li> <li><a href="..&#x2F;classes/DataSource.Local.html">DataSource.Local</a></li> <li><a href="..&#x2F;classes/DataSourceArraySchema.html">DataSourceArraySchema</a></li> <li><a href="..&#x2F;classes/DataSourceCache.html">DataSourceCache</a></li> <li><a href="..&#x2F;classes/DataSourceCacheExtension.html">DataSourceCacheExtension</a></li> <li><a href="..&#x2F;classes/DataSourceJSONSchema.html">DataSourceJSONSchema</a></li> <li><a href="..&#x2F;classes/DataSourceTextSchema.html">DataSourceTextSchema</a></li> <li><a href="..&#x2F;classes/DataSourceXMLSchema.html">DataSourceXMLSchema</a></li> <li><a href="..&#x2F;classes/DataTable.html">DataTable</a></li> <li><a href="..&#x2F;classes/DataTable.Base.html">DataTable.Base</a></li> <li><a href="..&#x2F;classes/DataTable.BodyView.html">DataTable.BodyView</a></li> <li><a href="..&#x2F;classes/DataTable.ColumnWidths.html">DataTable.ColumnWidths</a></li> <li><a href="..&#x2F;classes/DataTable.Core.html">DataTable.Core</a></li> <li><a href="..&#x2F;classes/DataTable.HeaderView.html">DataTable.HeaderView</a></li> <li><a href="..&#x2F;classes/DataTable.Message.html">DataTable.Message</a></li> <li><a href="..&#x2F;classes/DataTable.Mutable.html">DataTable.Mutable</a></li> <li><a href="..&#x2F;classes/DataTable.Scrollable.html">DataTable.Scrollable</a></li> <li><a href="..&#x2F;classes/DataTable.Sortable.html">DataTable.Sortable</a></li> <li><a href="..&#x2F;classes/DataType.Date.html">DataType.Date</a></li> <li><a href="..&#x2F;classes/DataType.Date.Locale.html">DataType.Date.Locale</a></li> <li><a href="..&#x2F;classes/DataType.Number.html">DataType.Number</a></li> <li><a href="..&#x2F;classes/DataType.XML.html">DataType.XML</a></li> <li><a href="..&#x2F;classes/DD.DDM.html">DD.DDM</a></li> <li><a href="..&#x2F;classes/DD.Delegate.html">DD.Delegate</a></li> <li><a href="..&#x2F;classes/DD.Drag.html">DD.Drag</a></li> <li><a href="..&#x2F;classes/DD.Drop.html">DD.Drop</a></li> <li><a href="..&#x2F;classes/DD.Plugin.DDWindowScroll.html">DD.Plugin.DDWindowScroll</a></li> <li><a href="..&#x2F;classes/DD.Scroll.html">DD.Scroll</a></li> <li><a href="..&#x2F;classes/Dial.html">Dial</a></li> <li><a href="..&#x2F;classes/Do.html">Do</a></li> <li><a href="..&#x2F;classes/Do.AlterArgs.html">Do.AlterArgs</a></li> <li><a href="..&#x2F;classes/Do.AlterReturn.html">Do.AlterReturn</a></li> <li><a href="..&#x2F;classes/Do.Error.html">Do.Error</a></li> <li><a href="..&#x2F;classes/Do.Halt.html">Do.Halt</a></li> <li><a href="..&#x2F;classes/Do.Method.html">Do.Method</a></li> <li><a href="..&#x2F;classes/Do.Prevent.html">Do.Prevent</a></li> <li><a href="..&#x2F;classes/DOM.html">DOM</a></li> <li><a href="..&#x2F;classes/DOMEventFacade.html">DOMEventFacade</a></li> <li><a href="..&#x2F;classes/Drawing.html">Drawing</a></li> <li><a href="..&#x2F;classes/Easing.html">Easing</a></li> <li><a href="..&#x2F;classes/EditorBase.html">EditorBase</a></li> <li><a href="..&#x2F;classes/EditorSelection.html">EditorSelection</a></li> <li><a href="..&#x2F;classes/Ellipse.html">Ellipse</a></li> <li><a href="..&#x2F;classes/EllipseGroup.html">EllipseGroup</a></li> <li><a href="..&#x2F;classes/Escape.html">Escape</a></li> <li><a href="..&#x2F;classes/Event.html">Event</a></li> <li><a href="..&#x2F;classes/EventFacade.html">EventFacade</a></li> <li><a href="..&#x2F;classes/EventHandle.html">EventHandle</a></li> <li><a href="..&#x2F;classes/EventTarget.html">EventTarget</a></li> <li><a href="..&#x2F;classes/ExecCommand.html">ExecCommand</a></li> <li><a href="..&#x2F;classes/Features.html">Features</a></li> <li><a href="..&#x2F;classes/File.html">File</a></li> <li><a href="..&#x2F;classes/FileFlash.html">FileFlash</a></li> <li><a href="..&#x2F;classes/FileHTML5.html">FileHTML5</a></li> <li><a href="..&#x2F;classes/Fills.html">Fills</a></li> <li><a href="..&#x2F;classes/Frame.html">Frame</a></li> <li><a href="..&#x2F;classes/Get.html">Get</a></li> <li><a href="..&#x2F;classes/Get.Transaction.html">Get.Transaction</a></li> <li><a href="..&#x2F;classes/GetNodeJS.html">GetNodeJS</a></li> <li><a href="..&#x2F;classes/Graph.html">Graph</a></li> <li><a href="..&#x2F;classes/Graphic.html">Graphic</a></li> <li><a href="..&#x2F;classes/GraphicBase.html">GraphicBase</a></li> <li><a href="..&#x2F;classes/Gridlines.html">Gridlines</a></li> <li><a href="..&#x2F;classes/GroupCircle.html">GroupCircle</a></li> <li><a href="..&#x2F;classes/GroupDiamond.html">GroupDiamond</a></li> <li><a href="..&#x2F;classes/GroupRect.html">GroupRect</a></li> <li><a href="..&#x2F;classes/Handlebars.html">Handlebars</a></li> <li><a href="..&#x2F;classes/Highlight.html">Highlight</a></li> <li><a href="..&#x2F;classes/Histogram.html">Histogram</a></li> <li><a href="..&#x2F;classes/HistoryBase.html">HistoryBase</a></li> <li><a href="..&#x2F;classes/HistoryHash.html">HistoryHash</a></li> <li><a href="..&#x2F;classes/HistoryHTML5.html">HistoryHTML5</a></li> <li><a href="..&#x2F;classes/HorizontalLegendLayout.html">HorizontalLegendLayout</a></li> <li><a href="..&#x2F;classes/ImgLoadGroup.html">ImgLoadGroup</a></li> <li><a href="..&#x2F;classes/ImgLoadImgObj.html">ImgLoadImgObj</a></li> <li><a href="..&#x2F;classes/Intl.html">Intl</a></li> <li><a href="..&#x2F;classes/IO.html">IO</a></li> <li><a href="..&#x2F;classes/json.html">json</a></li> <li><a href="..&#x2F;classes/JSONPRequest.html">JSONPRequest</a></li> <li><a href="..&#x2F;classes/Lang.html">Lang</a></li> <li><a href="..&#x2F;classes/LeftAxisLayout.html">LeftAxisLayout</a></li> <li><a href="..&#x2F;classes/Lines.html">Lines</a></li> <li><a href="..&#x2F;classes/LineSeries.html">LineSeries</a></li> <li><a href="..&#x2F;classes/Loader.html">Loader</a></li> <li><a href="..&#x2F;classes/MarkerSeries.html">MarkerSeries</a></li> <li><a href="..&#x2F;classes/Matrix.html">Matrix</a></li> <li><a href="..&#x2F;classes/Model.html">Model</a></li> <li><a href="..&#x2F;classes/ModelList.html">ModelList</a></li> <li><a href="..&#x2F;classes/Node.html">Node</a></li> <li><a href="..&#x2F;classes/NodeList.html">NodeList</a></li> <li><a href="..&#x2F;classes/NumericAxis.html">NumericAxis</a></li> <li><a href="..&#x2F;classes/Object.html">Object</a></li> <li><a href="..&#x2F;classes/Overlay.html">Overlay</a></li> <li><a href="..&#x2F;classes/Panel.html">Panel</a></li> <li><a href="..&#x2F;classes/Parallel.html">Parallel</a></li> <li><a href="..&#x2F;classes/Path.html">Path</a></li> <li><a href="..&#x2F;classes/PieChart.html">PieChart</a></li> <li><a href="..&#x2F;classes/PieSeries.html">PieSeries</a></li> <li><a href="..&#x2F;classes/Pjax.html">Pjax</a></li> <li><a href="..&#x2F;classes/PjaxBase.html">PjaxBase</a></li> <li><a href="..&#x2F;classes/Plots.html">Plots</a></li> <li><a href="..&#x2F;classes/Plugin.Align.html">Plugin.Align</a></li> <li><a href="..&#x2F;classes/Plugin.AutoComplete.html">Plugin.AutoComplete</a></li> <li><a href="..&#x2F;classes/Plugin.Base.html">Plugin.Base</a></li> <li><a href="..&#x2F;classes/Plugin.Cache.html">Plugin.Cache</a></li> <li><a href="..&#x2F;classes/Plugin.CalendarNavigator.html">Plugin.CalendarNavigator</a></li> <li><a href="..&#x2F;classes/Plugin.ConsoleFilters.html">Plugin.ConsoleFilters</a></li> <li><a href="..&#x2F;classes/Plugin.CreateLinkBase.html">Plugin.CreateLinkBase</a></li> <li><a href="..&#x2F;classes/Plugin.DataTableDataSource.html">Plugin.DataTableDataSource</a></li> <li><a href="..&#x2F;classes/Plugin.DDConstrained.html">Plugin.DDConstrained</a></li> <li><a href="..&#x2F;classes/Plugin.DDNodeScroll.html">Plugin.DDNodeScroll</a></li> <li><a href="..&#x2F;classes/Plugin.DDProxy.html">Plugin.DDProxy</a></li> <li><a href="..&#x2F;classes/Plugin.Drag.html">Plugin.Drag</a></li> <li><a href="..&#x2F;classes/Plugin.Drop.html">Plugin.Drop</a></li> <li><a href="..&#x2F;classes/Plugin.EditorBidi.html">Plugin.EditorBidi</a></li> <li><a href="..&#x2F;classes/Plugin.EditorBR.html">Plugin.EditorBR</a></li> <li><a href="..&#x2F;classes/Plugin.EditorLists.html">Plugin.EditorLists</a></li> <li><a href="..&#x2F;classes/Plugin.EditorPara.html">Plugin.EditorPara</a></li> <li><a href="..&#x2F;classes/Plugin.EditorParaBase.html">Plugin.EditorParaBase</a></li> <li><a href="..&#x2F;classes/Plugin.EditorParaIE.html">Plugin.EditorParaIE</a></li> <li><a href="..&#x2F;classes/Plugin.EditorTab.html">Plugin.EditorTab</a></li> <li><a href="..&#x2F;classes/Plugin.ExecCommand.html">Plugin.ExecCommand</a></li> <li><a href="..&#x2F;classes/Plugin.Flick.html">Plugin.Flick</a></li> <li><a href="..&#x2F;classes/Plugin.Host.html">Plugin.Host</a></li> <li><a href="..&#x2F;classes/plugin.NodeFocusManager.html">plugin.NodeFocusManager</a></li> <li><a href="..&#x2F;classes/Plugin.NodeFX.html">Plugin.NodeFX</a></li> <li><a href="..&#x2F;classes/plugin.NodeMenuNav.html">plugin.NodeMenuNav</a></li> <li><a href="..&#x2F;classes/Plugin.Pjax.html">Plugin.Pjax</a></li> <li><a href="..&#x2F;classes/Plugin.Resize.html">Plugin.Resize</a></li> <li><a href="..&#x2F;classes/Plugin.ResizeConstrained.html">Plugin.ResizeConstrained</a></li> <li><a href="..&#x2F;classes/Plugin.ResizeProxy.html">Plugin.ResizeProxy</a></li> <li><a href="..&#x2F;classes/Plugin.ScrollViewList.html">Plugin.ScrollViewList</a></li> <li><a href="..&#x2F;classes/Plugin.ScrollViewPaginator.html">Plugin.ScrollViewPaginator</a></li> <li><a href="..&#x2F;classes/Plugin.ScrollViewScrollbars.html">Plugin.ScrollViewScrollbars</a></li> <li><a href="..&#x2F;classes/Plugin.Shim.html">Plugin.Shim</a></li> <li><a href="..&#x2F;classes/Plugin.SortScroll.html">Plugin.SortScroll</a></li> <li><a href="..&#x2F;classes/Plugin.WidgetAnim.html">Plugin.WidgetAnim</a></li> <li><a href="..&#x2F;classes/Pollable.html">Pollable</a></li> <li><a href="..&#x2F;classes/Profiler.html">Profiler</a></li> <li><a href="..&#x2F;classes/QueryString.html">QueryString</a></li> <li><a href="..&#x2F;classes/Queue.html">Queue</a></li> <li><a href="..&#x2F;classes/Record.html">Record</a></li> <li><a href="..&#x2F;classes/Recordset.html">Recordset</a></li> <li><a href="..&#x2F;classes/RecordsetFilter.html">RecordsetFilter</a></li> <li><a href="..&#x2F;classes/RecordsetIndexer.html">RecordsetIndexer</a></li> <li><a href="..&#x2F;classes/RecordsetSort.html">RecordsetSort</a></li> <li><a href="..&#x2F;classes/Rect.html">Rect</a></li> <li><a href="..&#x2F;classes/Renderer.html">Renderer</a></li> <li><a href="..&#x2F;classes/Resize.html">Resize</a></li> <li><a href="..&#x2F;classes/RightAxisLayout.html">RightAxisLayout</a></li> <li><a href="..&#x2F;classes/Router.html">Router</a></li> <li><a href="..&#x2F;classes/ScrollView.html">ScrollView</a></li> <li><a href="..&#x2F;classes/Selector.html">Selector</a></li> <li><a href="..&#x2F;classes/Shape.html">Shape</a></li> <li><a href="..&#x2F;classes/ShapeGroup.html">ShapeGroup</a></li> <li><a href="..&#x2F;classes/Slider.html">Slider</a></li> <li><a href="..&#x2F;classes/SliderBase.html">SliderBase</a></li> <li><a href="..&#x2F;classes/SliderValueRange.html">SliderValueRange</a></li> <li><a href="..&#x2F;classes/Sortable.html">Sortable</a></li> <li><a href="..&#x2F;classes/SplineSeries.html">SplineSeries</a></li> <li><a href="..&#x2F;classes/StackedAreaSeries.html">StackedAreaSeries</a></li> <li><a href="..&#x2F;classes/StackedAreaSplineSeries.html">StackedAreaSplineSeries</a></li> <li><a href="..&#x2F;classes/StackedAxis.html">StackedAxis</a></li> <li><a href="..&#x2F;classes/StackedBarSeries.html">StackedBarSeries</a></li> <li><a href="..&#x2F;classes/StackedColumnSeries.html">StackedColumnSeries</a></li> <li><a href="..&#x2F;classes/StackedComboSeries.html">StackedComboSeries</a></li> <li><a href="..&#x2F;classes/StackedComboSplineSeries.html">StackedComboSplineSeries</a></li> <li><a href="..&#x2F;classes/StackedLineSeries.html">StackedLineSeries</a></li> <li><a href="..&#x2F;classes/StackedMarkerSeries.html">StackedMarkerSeries</a></li> <li><a href="..&#x2F;classes/StackedSplineSeries.html">StackedSplineSeries</a></li> <li><a href="..&#x2F;classes/StackingUtil.html">StackingUtil</a></li> <li><a href="..&#x2F;classes/State.html">State</a></li> <li><a href="..&#x2F;classes/StyleSheet.html">StyleSheet</a></li> <li><a href="..&#x2F;classes/Subscriber.html">Subscriber</a></li> <li><a href="..&#x2F;classes/SVGCircle.html">SVGCircle</a></li> <li><a href="..&#x2F;classes/SVGDrawing.html">SVGDrawing</a></li> <li><a href="..&#x2F;classes/SVGEllipse.html">SVGEllipse</a></li> <li><a href="..&#x2F;classes/SVGGraphic.html">SVGGraphic</a></li> <li><a href="..&#x2F;classes/SVGPath.html">SVGPath</a></li> <li><a href="..&#x2F;classes/SVGPieSlice.html">SVGPieSlice</a></li> <li><a href="..&#x2F;classes/SVGRect.html">SVGRect</a></li> <li><a href="..&#x2F;classes/SVGShape.html">SVGShape</a></li> <li><a href="..&#x2F;classes/SWF.html">SWF</a></li> <li><a href="..&#x2F;classes/SWFDetect.html">SWFDetect</a></li> <li><a href="..&#x2F;classes/SyntheticEvent.html">SyntheticEvent</a></li> <li><a href="..&#x2F;classes/SyntheticEvent.Notifier.html">SyntheticEvent.Notifier</a></li> <li><a href="..&#x2F;classes/SynthRegistry.html">SynthRegistry</a></li> <li><a href="..&#x2F;classes/Tab.html">Tab</a></li> <li><a href="..&#x2F;classes/TabView.html">TabView</a></li> <li><a href="..&#x2F;classes/Test.html">Test</a></li> <li><a href="..&#x2F;classes/Test.ArrayAssert.html">Test.ArrayAssert</a></li> <li><a href="..&#x2F;classes/Test.Assert.html">Test.Assert</a></li> <li><a href="..&#x2F;classes/Test.AssertionError.html">Test.AssertionError</a></li> <li><a href="..&#x2F;classes/Test.ComparisonFailure.html">Test.ComparisonFailure</a></li> <li><a href="..&#x2F;classes/Test.Console.html">Test.Console</a></li> <li><a href="..&#x2F;classes/Test.CoverageFormat.CoverageFormat.html">Test.CoverageFormat.CoverageFormat</a></li> <li><a href="..&#x2F;classes/Test.DateAssert.html">Test.DateAssert</a></li> <li><a href="..&#x2F;classes/Test.EventTarget.html">Test.EventTarget</a></li> <li><a href="..&#x2F;classes/Test.Mock.Mock.html">Test.Mock.Mock</a></li> <li><a href="..&#x2F;classes/Test.Mock.Value.html">Test.Mock.Value</a></li> <li><a href="..&#x2F;classes/Test.ObjectAssert.html">Test.ObjectAssert</a></li> <li><a href="..&#x2F;classes/Test.Reporter.html">Test.Reporter</a></li> <li><a href="..&#x2F;classes/Test.Results.html">Test.Results</a></li> <li><a href="..&#x2F;classes/Test.Runner.html">Test.Runner</a></li> <li><a href="..&#x2F;classes/Test.ShouldError.html">Test.ShouldError</a></li> <li><a href="..&#x2F;classes/Test.ShouldFail.html">Test.ShouldFail</a></li> <li><a href="..&#x2F;classes/Test.TestCase.html">Test.TestCase</a></li> <li><a href="..&#x2F;classes/Test.TestFormat.html">Test.TestFormat</a></li> <li><a href="..&#x2F;classes/Test.TestNode.html">Test.TestNode</a></li> <li><a href="..&#x2F;classes/Test.TestRunner.html">Test.TestRunner</a></li> <li><a href="..&#x2F;classes/Test.TestSuite.html">Test.TestSuite</a></li> <li><a href="..&#x2F;classes/Test.UnexpectedError.html">Test.UnexpectedError</a></li> <li><a href="..&#x2F;classes/Test.UnexpectedValue.html">Test.UnexpectedValue</a></li> <li><a href="..&#x2F;classes/Test.Wait.html">Test.Wait</a></li> <li><a href="..&#x2F;classes/Text.AccentFold.html">Text.AccentFold</a></li> <li><a href="..&#x2F;classes/Text.WordBreak.html">Text.WordBreak</a></li> <li><a href="..&#x2F;classes/TimeAxis.html">TimeAxis</a></li> <li><a href="..&#x2F;classes/ToggleButton.html">ToggleButton</a></li> <li><a href="..&#x2F;classes/TopAxisLayout.html">TopAxisLayout</a></li> <li><a href="..&#x2F;classes/Transition.html">Transition</a></li> <li><a href="..&#x2F;classes/UA.html">UA</a></li> <li><a href="..&#x2F;classes/Uploader.html">Uploader</a></li> <li><a href="..&#x2F;classes/Uploader.Queue.html">Uploader.Queue</a></li> <li><a href="..&#x2F;classes/UploaderFlash.html">UploaderFlash</a></li> <li><a href="..&#x2F;classes/UploaderHTML5.html">UploaderHTML5</a></li> <li><a href="..&#x2F;classes/ValueChange.html">ValueChange</a></li> <li><a href="..&#x2F;classes/VerticalLegendLayout.html">VerticalLegendLayout</a></li> <li><a href="..&#x2F;classes/View.html">View</a></li> <li><a href="..&#x2F;classes/View.NodeMap.html">View.NodeMap</a></li> <li><a href="..&#x2F;classes/VMLCircle.html">VMLCircle</a></li> <li><a href="..&#x2F;classes/VMLDrawing.html">VMLDrawing</a></li> <li><a href="..&#x2F;classes/VMLEllipse.html">VMLEllipse</a></li> <li><a href="..&#x2F;classes/VMLGraphic.html">VMLGraphic</a></li> <li><a href="..&#x2F;classes/VMLPath.html">VMLPath</a></li> <li><a href="..&#x2F;classes/VMLPieSlice.html">VMLPieSlice</a></li> <li><a href="..&#x2F;classes/VMLRect.html">VMLRect</a></li> <li><a href="..&#x2F;classes/VMLShape.html">VMLShape</a></li> <li><a href="..&#x2F;classes/Widget.html">Widget</a></li> <li><a href="..&#x2F;classes/WidgetAutohide.html">WidgetAutohide</a></li> <li><a href="..&#x2F;classes/WidgetButtons.html">WidgetButtons</a></li> <li><a href="..&#x2F;classes/WidgetChild.html">WidgetChild</a></li> <li><a href="..&#x2F;classes/WidgetModality.html">WidgetModality</a></li> <li><a href="..&#x2F;classes/WidgetParent.html">WidgetParent</a></li> <li><a href="..&#x2F;classes/WidgetPosition.html">WidgetPosition</a></li> <li><a href="..&#x2F;classes/WidgetPositionAlign.html">WidgetPositionAlign</a></li> <li><a href="..&#x2F;classes/WidgetPositionConstrain.html">WidgetPositionConstrain</a></li> <li><a href="..&#x2F;classes/WidgetStack.html">WidgetStack</a></li> <li><a href="..&#x2F;classes/WidgetStdMod.html">WidgetStdMod</a></li> <li><a href="..&#x2F;classes/YQL.html">YQL</a></li> <li><a href="..&#x2F;classes/YQLRequest.html">YQLRequest</a></li> <li><a href="..&#x2F;classes/YUI.html">YUI</a></li> <li><a href="..&#x2F;classes/YUI~substitute.html">YUI~substitute</a></li> </ul> <ul id="api-modules" class="apis modules"> <li><a href="..&#x2F;modules/align-plugin.html">align-plugin</a></li> <li><a href="..&#x2F;modules/anim.html">anim</a></li> <li><a href="..&#x2F;modules/anim-base.html">anim-base</a></li> <li><a href="..&#x2F;modules/anim-color.html">anim-color</a></li> <li><a href="..&#x2F;modules/anim-curve.html">anim-curve</a></li> <li><a href="..&#x2F;modules/anim-easing.html">anim-easing</a></li> <li><a href="..&#x2F;modules/anim-node-plugin.html">anim-node-plugin</a></li> <li><a href="..&#x2F;modules/anim-scroll.html">anim-scroll</a></li> <li><a href="..&#x2F;modules/anim-xy.html">anim-xy</a></li> <li><a href="..&#x2F;modules/app.html">app</a></li> <li><a href="..&#x2F;modules/app-base.html">app-base</a></li> <li><a href="..&#x2F;modules/app-transitions.html">app-transitions</a></li> <li><a href="..&#x2F;modules/app-transitions-native.html">app-transitions-native</a></li> <li><a href="..&#x2F;modules/array-extras.html">array-extras</a></li> <li><a href="..&#x2F;modules/array-invoke.html">array-invoke</a></li> <li><a href="..&#x2F;modules/arraylist.html">arraylist</a></li> <li><a href="..&#x2F;modules/arraylist-add.html">arraylist-add</a></li> <li><a href="..&#x2F;modules/arraylist-filter.html">arraylist-filter</a></li> <li><a href="..&#x2F;modules/arraysort.html">arraysort</a></li> <li><a href="..&#x2F;modules/async-queue.html">async-queue</a></li> <li><a href="..&#x2F;modules/attribute.html">attribute</a></li> <li><a href="..&#x2F;modules/attribute-base.html">attribute-base</a></li> <li><a href="..&#x2F;modules/attribute-complex.html">attribute-complex</a></li> <li><a href="..&#x2F;modules/attribute-core.html">attribute-core</a></li> <li><a href="..&#x2F;modules/attribute-events.html">attribute-events</a></li> <li><a href="..&#x2F;modules/attribute-extras.html">attribute-extras</a></li> <li><a href="..&#x2F;modules/autocomplete.html">autocomplete</a></li> <li><a href="..&#x2F;modules/autocomplete-base.html">autocomplete-base</a></li> <li><a href="..&#x2F;modules/autocomplete-filters.html">autocomplete-filters</a></li> <li><a href="..&#x2F;modules/autocomplete-filters-accentfold.html">autocomplete-filters-accentfold</a></li> <li><a href="..&#x2F;modules/autocomplete-highlighters.html">autocomplete-highlighters</a></li> <li><a href="..&#x2F;modules/autocomplete-highlighters-accentfold.html">autocomplete-highlighters-accentfold</a></li> <li><a href="..&#x2F;modules/autocomplete-list.html">autocomplete-list</a></li> <li><a href="..&#x2F;modules/autocomplete-list-keys.html">autocomplete-list-keys</a></li> <li><a href="..&#x2F;modules/autocomplete-plugin.html">autocomplete-plugin</a></li> <li><a href="..&#x2F;modules/autocomplete-sources.html">autocomplete-sources</a></li> <li><a href="..&#x2F;modules/base.html">base</a></li> <li><a href="..&#x2F;modules/base-base.html">base-base</a></li> <li><a href="..&#x2F;modules/base-build.html">base-build</a></li> <li><a href="..&#x2F;modules/base-core.html">base-core</a></li> <li><a href="..&#x2F;modules/base-pluginhost.html">base-pluginhost</a></li> <li><a href="..&#x2F;modules/button.html">button</a></li> <li><a href="..&#x2F;modules/button-core.html">button-core</a></li> <li><a href="..&#x2F;modules/button-group.html">button-group</a></li> <li><a href="..&#x2F;modules/button-plugin.html">button-plugin</a></li> <li><a href="..&#x2F;modules/cache.html">cache</a></li> <li><a href="..&#x2F;modules/cache-base.html">cache-base</a></li> <li><a href="..&#x2F;modules/cache-offline.html">cache-offline</a></li> <li><a href="..&#x2F;modules/cache-plugin.html">cache-plugin</a></li> <li><a href="..&#x2F;modules/calendar.html">calendar</a></li> <li><a href="..&#x2F;modules/calendar-base.html">calendar-base</a></li> <li><a href="..&#x2F;modules/calendarnavigator.html">calendarnavigator</a></li> <li><a href="..&#x2F;modules/charts.html">charts</a></li> <li><a href="..&#x2F;modules/charts-legend.html">charts-legend</a></li> <li><a href="..&#x2F;modules/classnamemanager.html">classnamemanager</a></li> <li><a href="..&#x2F;modules/clickable-rail.html">clickable-rail</a></li> <li><a href="..&#x2F;modules/collection.html">collection</a></li> <li><a href="..&#x2F;modules/console.html">console</a></li> <li><a href="..&#x2F;modules/console-filters.html">console-filters</a></li> <li><a href="..&#x2F;modules/cookie.html">cookie</a></li> <li><a href="..&#x2F;modules/createlink-base.html">createlink-base</a></li> <li><a href="..&#x2F;modules/dataschema.html">dataschema</a></li> <li><a href="..&#x2F;modules/dataschema-array.html">dataschema-array</a></li> <li><a href="..&#x2F;modules/dataschema-base.html">dataschema-base</a></li> <li><a href="..&#x2F;modules/dataschema-json.html">dataschema-json</a></li> <li><a href="..&#x2F;modules/dataschema-text.html">dataschema-text</a></li> <li><a href="..&#x2F;modules/dataschema-xml.html">dataschema-xml</a></li> <li><a href="..&#x2F;modules/datasource.html">datasource</a></li> <li><a href="..&#x2F;modules/datasource-arrayschema.html">datasource-arrayschema</a></li> <li><a href="..&#x2F;modules/datasource-cache.html">datasource-cache</a></li> <li><a href="..&#x2F;modules/datasource-function.html">datasource-function</a></li> <li><a href="..&#x2F;modules/datasource-get.html">datasource-get</a></li> <li><a href="..&#x2F;modules/datasource-io.html">datasource-io</a></li> <li><a href="..&#x2F;modules/datasource-jsonschema.html">datasource-jsonschema</a></li> <li><a href="..&#x2F;modules/datasource-local.html">datasource-local</a></li> <li><a href="..&#x2F;modules/datasource-polling.html">datasource-polling</a></li> <li><a href="..&#x2F;modules/datasource-textschema.html">datasource-textschema</a></li> <li><a href="..&#x2F;modules/datasource-xmlschema.html">datasource-xmlschema</a></li> <li><a href="..&#x2F;modules/datatable.html">datatable</a></li> <li><a href="..&#x2F;modules/datatable-base.html">datatable-base</a></li> <li><a href="..&#x2F;modules/datatable-base-deprecated.html">datatable-base-deprecated</a></li> <li><a href="..&#x2F;modules/datatable-body.html">datatable-body</a></li> <li><a href="..&#x2F;modules/datatable-column-widths.html">datatable-column-widths</a></li> <li><a href="..&#x2F;modules/datatable-core.html">datatable-core</a></li> <li><a href="..&#x2F;modules/datatable-datasource.html">datatable-datasource</a></li> <li><a href="..&#x2F;modules/datatable-datasource-deprecated.html">datatable-datasource-deprecated</a></li> <li><a href="..&#x2F;modules/datatable-deprecated.html">datatable-deprecated</a></li> <li><a href="..&#x2F;modules/datatable-head.html">datatable-head</a></li> <li><a href="..&#x2F;modules/datatable-message.html">datatable-message</a></li> <li><a href="..&#x2F;modules/datatable-mutable.html">datatable-mutable</a></li> <li><a href="..&#x2F;modules/datatable-scroll.html">datatable-scroll</a></li> <li><a href="..&#x2F;modules/datatable-scroll-deprecated.html">datatable-scroll-deprecated</a></li> <li><a href="..&#x2F;modules/datatable-sort.html">datatable-sort</a></li> <li><a href="..&#x2F;modules/datatable-sort-deprecated.html">datatable-sort-deprecated</a></li> <li><a href="..&#x2F;modules/datatype.html">datatype</a></li> <li><a href="..&#x2F;modules/datatype-date.html">datatype-date</a></li> <li><a href="..&#x2F;modules/datatype-date-format.html">datatype-date-format</a></li> <li><a href="..&#x2F;modules/datatype-date-math.html">datatype-date-math</a></li> <li><a href="..&#x2F;modules/datatype-date-parse.html">datatype-date-parse</a></li> <li><a href="..&#x2F;modules/datatype-number.html">datatype-number</a></li> <li><a href="..&#x2F;modules/datatype-number-format.html">datatype-number-format</a></li> <li><a href="..&#x2F;modules/datatype-number-parse.html">datatype-number-parse</a></li> <li><a href="..&#x2F;modules/datatype-xml.html">datatype-xml</a></li> <li><a href="..&#x2F;modules/datatype-xml-format.html">datatype-xml-format</a></li> <li><a href="..&#x2F;modules/datatype-xml-parse.html">datatype-xml-parse</a></li> <li><a href="..&#x2F;modules/dd.html">dd</a></li> <li><a href="..&#x2F;modules/dd-constrain.html">dd-constrain</a></li> <li><a href="..&#x2F;modules/dd-ddm.html">dd-ddm</a></li> <li><a href="..&#x2F;modules/dd-ddm-base.html">dd-ddm-base</a></li> <li><a href="..&#x2F;modules/dd-ddm-drop.html">dd-ddm-drop</a></li> <li><a href="..&#x2F;modules/dd-delegate.html">dd-delegate</a></li> <li><a href="..&#x2F;modules/dd-drag.html">dd-drag</a></li> <li><a href="..&#x2F;modules/dd-drop.html">dd-drop</a></li> <li><a href="..&#x2F;modules/dd-drop-plugin.html">dd-drop-plugin</a></li> <li><a href="..&#x2F;modules/dd-plugin.html">dd-plugin</a></li> <li><a href="..&#x2F;modules/dd-proxy.html">dd-proxy</a></li> <li><a href="..&#x2F;modules/dd-scroll.html">dd-scroll</a></li> <li><a href="..&#x2F;modules/dial.html">dial</a></li> <li><a href="..&#x2F;modules/dom.html">dom</a></li> <li><a href="..&#x2F;modules/dom-base.html">dom-base</a></li> <li><a href="..&#x2F;modules/dom-screen.html">dom-screen</a></li> <li><a href="..&#x2F;modules/dom-style.html">dom-style</a></li> <li><a href="..&#x2F;modules/dump.html">dump</a></li> <li><a href="..&#x2F;modules/editor.html">editor</a></li> <li><a href="..&#x2F;modules/editor-base.html">editor-base</a></li> <li><a href="..&#x2F;modules/editor-bidi.html">editor-bidi</a></li> <li><a href="..&#x2F;modules/editor-br.html">editor-br</a></li> <li><a href="..&#x2F;modules/editor-lists.html">editor-lists</a></li> <li><a href="..&#x2F;modules/editor-para.html">editor-para</a></li> <li><a href="..&#x2F;modules/editor-para-base.html">editor-para-base</a></li> <li><a href="..&#x2F;modules/editor-para-ie.html">editor-para-ie</a></li> <li><a href="..&#x2F;modules/editor-tab.html">editor-tab</a></li> <li><a href="..&#x2F;modules/escape.html">escape</a></li> <li><a href="..&#x2F;modules/event.html">event</a></li> <li><a href="..&#x2F;modules/event-base.html">event-base</a></li> <li><a href="..&#x2F;modules/event-contextmenu.html">event-contextmenu</a></li> <li><a href="..&#x2F;modules/event-custom.html">event-custom</a></li> <li><a href="..&#x2F;modules/event-custom-base.html">event-custom-base</a></li> <li><a href="..&#x2F;modules/event-custom-complex.html">event-custom-complex</a></li> <li><a href="..&#x2F;modules/event-delegate.html">event-delegate</a></li> <li><a href="..&#x2F;modules/event-flick.html">event-flick</a></li> <li><a href="..&#x2F;modules/event-focus.html">event-focus</a></li> <li><a href="..&#x2F;modules/event-gestures.html">event-gestures</a></li> <li><a href="..&#x2F;modules/event-hover.html">event-hover</a></li> <li><a href="..&#x2F;modules/event-key.html">event-key</a></li> <li><a href="..&#x2F;modules/event-mouseenter.html">event-mouseenter</a></li> <li><a href="..&#x2F;modules/event-mousewheel.html">event-mousewheel</a></li> <li><a href="..&#x2F;modules/event-move.html">event-move</a></li> <li><a href="..&#x2F;modules/event-outside.html">event-outside</a></li> <li><a href="..&#x2F;modules/event-resize.html">event-resize</a></li> <li><a href="..&#x2F;modules/event-simulate.html">event-simulate</a></li> <li><a href="..&#x2F;modules/event-synthetic.html">event-synthetic</a></li> <li><a href="..&#x2F;modules/event-touch.html">event-touch</a></li> <li><a href="..&#x2F;modules/event-valuechange.html">event-valuechange</a></li> <li><a href="..&#x2F;modules/exec-command.html">exec-command</a></li> <li><a href="..&#x2F;modules/features.html">features</a></li> <li><a href="..&#x2F;modules/file.html">file</a></li> <li><a href="..&#x2F;modules/file-flash.html">file-flash</a></li> <li><a href="..&#x2F;modules/file-html5.html">file-html5</a></li> <li><a href="..&#x2F;modules/frame.html">frame</a></li> <li><a href="..&#x2F;modules/get.html">get</a></li> <li><a href="..&#x2F;modules/get-nodejs.html">get-nodejs</a></li> <li><a href="..&#x2F;modules/graphics.html">graphics</a></li> <li><a href="..&#x2F;modules/handlebars.html">handlebars</a></li> <li><a href="..&#x2F;modules/handlebars-base.html">handlebars-base</a></li> <li><a href="..&#x2F;modules/handlebars-compiler.html">handlebars-compiler</a></li> <li><a href="..&#x2F;modules/highlight.html">highlight</a></li> <li><a href="..&#x2F;modules/highlight-accentfold.html">highlight-accentfold</a></li> <li><a href="..&#x2F;modules/highlight-base.html">highlight-base</a></li> <li><a href="..&#x2F;modules/history.html">history</a></li> <li><a href="..&#x2F;modules/history-base.html">history-base</a></li> <li><a href="..&#x2F;modules/history-hash.html">history-hash</a></li> <li><a href="..&#x2F;modules/history-hash-ie.html">history-hash-ie</a></li> <li><a href="..&#x2F;modules/history-html5.html">history-html5</a></li> <li><a href="..&#x2F;modules/imageloader.html">imageloader</a></li> <li><a href="..&#x2F;modules/intl.html">intl</a></li> <li><a href="..&#x2F;modules/io.html">io</a></li> <li><a href="..&#x2F;modules/io-base.html">io-base</a></li> <li><a href="..&#x2F;modules/io-form.html">io-form</a></li> <li><a href="..&#x2F;modules/io-queue.html">io-queue</a></li> <li><a href="..&#x2F;modules/io-upload-iframe.html">io-upload-iframe</a></li> <li><a href="..&#x2F;modules/io-xdr.html">io-xdr</a></li> <li><a href="..&#x2F;modules/json.html">json</a></li> <li><a href="..&#x2F;modules/json-parse.html">json-parse</a></li> <li><a href="..&#x2F;modules/json-stringify.html">json-stringify</a></li> <li><a href="..&#x2F;modules/jsonp.html">jsonp</a></li> <li><a href="..&#x2F;modules/jsonp-url.html">jsonp-url</a></li> <li><a href="..&#x2F;modules/loader.html">loader</a></li> <li><a href="..&#x2F;modules/loader-base.html">loader-base</a></li> <li><a href="..&#x2F;modules/matrix.html">matrix</a></li> <li><a href="..&#x2F;modules/model.html">model</a></li> <li><a href="..&#x2F;modules/model-list.html">model-list</a></li> <li><a href="..&#x2F;modules/node.html">node</a></li> <li><a href="..&#x2F;modules/node-base.html">node-base</a></li> <li><a href="..&#x2F;modules/node-core.html">node-core</a></li> <li><a href="..&#x2F;modules/node-data.html">node-data</a></li> <li><a href="..&#x2F;modules/node-deprecated.html">node-deprecated</a></li> <li><a href="..&#x2F;modules/node-event-delegate.html">node-event-delegate</a></li> <li><a href="..&#x2F;modules/node-event-html5.html">node-event-html5</a></li> <li><a href="..&#x2F;modules/node-event-simulate.html">node-event-simulate</a></li> <li><a href="..&#x2F;modules/node-flick.html">node-flick</a></li> <li><a href="..&#x2F;modules/node-focusmanager.html">node-focusmanager</a></li> <li><a href="..&#x2F;modules/node-load.html">node-load</a></li> <li><a href="..&#x2F;modules/node-menunav.html">node-menunav</a></li> <li><a href="..&#x2F;modules/node-pluginhost.html">node-pluginhost</a></li> <li><a href="..&#x2F;modules/node-screen.html">node-screen</a></li> <li><a href="..&#x2F;modules/node-style.html">node-style</a></li> <li><a href="..&#x2F;modules/oop.html">oop</a></li> <li><a href="..&#x2F;modules/overlay.html">overlay</a></li> <li><a href="..&#x2F;modules/panel.html">panel</a></li> <li><a href="..&#x2F;modules/parallel.html">parallel</a></li> <li><a href="..&#x2F;modules/pjax.html">pjax</a></li> <li><a href="..&#x2F;modules/pjax-base.html">pjax-base</a></li> <li><a href="..&#x2F;modules/pjax-plugin.html">pjax-plugin</a></li> <li><a href="..&#x2F;modules/plugin.html">plugin</a></li> <li><a href="..&#x2F;modules/pluginhost.html">pluginhost</a></li> <li><a href="..&#x2F;modules/pluginhost-base.html">pluginhost-base</a></li> <li><a href="..&#x2F;modules/pluginhost-config.html">pluginhost-config</a></li> <li><a href="..&#x2F;modules/profiler.html">profiler</a></li> <li><a href="..&#x2F;modules/querystring.html">querystring</a></li> <li><a href="..&#x2F;modules/querystring-parse.html">querystring-parse</a></li> <li><a href="..&#x2F;modules/querystring-parse-simple.html">querystring-parse-simple</a></li> <li><a href="..&#x2F;modules/querystring-stringify.html">querystring-stringify</a></li> <li><a href="..&#x2F;modules/querystring-stringify-simple.html">querystring-stringify-simple</a></li> <li><a href="..&#x2F;modules/queue-promote.html">queue-promote</a></li> <li><a href="..&#x2F;modules/range-slider.html">range-slider</a></li> <li><a href="..&#x2F;modules/recordset.html">recordset</a></li> <li><a href="..&#x2F;modules/recordset-base.html">recordset-base</a></li> <li><a href="..&#x2F;modules/recordset-filter.html">recordset-filter</a></li> <li><a href="..&#x2F;modules/recordset-indexer.html">recordset-indexer</a></li> <li><a href="..&#x2F;modules/recordset-sort.html">recordset-sort</a></li> <li><a href="..&#x2F;modules/resize.html">resize</a></li> <li><a href="..&#x2F;modules/resize-contrain.html">resize-contrain</a></li> <li><a href="..&#x2F;modules/resize-plugin.html">resize-plugin</a></li> <li><a href="..&#x2F;modules/resize-proxy.html">resize-proxy</a></li> <li><a href="..&#x2F;modules/rollup.html">rollup</a></li> <li><a href="..&#x2F;modules/router.html">router</a></li> <li><a href="..&#x2F;modules/scrollview.html">scrollview</a></li> <li><a href="..&#x2F;modules/scrollview-base.html">scrollview-base</a></li> <li><a href="..&#x2F;modules/scrollview-base-ie.html">scrollview-base-ie</a></li> <li><a href="..&#x2F;modules/scrollview-list.html">scrollview-list</a></li> <li><a href="..&#x2F;modules/scrollview-paginator.html">scrollview-paginator</a></li> <li><a href="..&#x2F;modules/scrollview-scrollbars.html">scrollview-scrollbars</a></li> <li><a href="..&#x2F;modules/selection.html">selection</a></li> <li><a href="..&#x2F;modules/selector-css2.html">selector-css2</a></li> <li><a href="..&#x2F;modules/selector-css3.html">selector-css3</a></li> <li><a href="..&#x2F;modules/selector-native.html">selector-native</a></li> <li><a href="..&#x2F;modules/shim-plugin.html">shim-plugin</a></li> <li><a href="..&#x2F;modules/slider.html">slider</a></li> <li><a href="..&#x2F;modules/slider-base.html">slider-base</a></li> <li><a href="..&#x2F;modules/slider-value-range.html">slider-value-range</a></li> <li><a href="..&#x2F;modules/sortable.html">sortable</a></li> <li><a href="..&#x2F;modules/sortable-scroll.html">sortable-scroll</a></li> <li><a href="..&#x2F;modules/stylesheet.html">stylesheet</a></li> <li><a href="..&#x2F;modules/substitute.html">substitute</a></li> <li><a href="..&#x2F;modules/swf.html">swf</a></li> <li><a href="..&#x2F;modules/swfdetect.html">swfdetect</a></li> <li><a href="..&#x2F;modules/tabview.html">tabview</a></li> <li><a href="..&#x2F;modules/test.html">test</a></li> <li><a href="..&#x2F;modules/test-console.html">test-console</a></li> <li><a href="..&#x2F;modules/text.html">text</a></li> <li><a href="..&#x2F;modules/text-accentfold.html">text-accentfold</a></li> <li><a href="..&#x2F;modules/text-wordbreak.html">text-wordbreak</a></li> <li><a href="..&#x2F;modules/transition.html">transition</a></li> <li><a href="..&#x2F;modules/uploader.html">uploader</a></li> <li><a href="..&#x2F;modules/uploader-deprecated.html">uploader-deprecated</a></li> <li><a href="..&#x2F;modules/uploader-flash.html">uploader-flash</a></li> <li><a href="..&#x2F;modules/uploader-html5.html">uploader-html5</a></li> <li><a href="..&#x2F;modules/uploader-queue.html">uploader-queue</a></li> <li><a href="..&#x2F;modules/view.html">view</a></li> <li><a href="..&#x2F;modules/view-node-map.html">view-node-map</a></li> <li><a href="..&#x2F;modules/widget.html">widget</a></li> <li><a href="..&#x2F;modules/widget-anim.html">widget-anim</a></li> <li><a href="..&#x2F;modules/widget-autohide.html">widget-autohide</a></li> <li><a href="..&#x2F;modules/widget-base.html">widget-base</a></li> <li><a href="..&#x2F;modules/widget-base-ie.html">widget-base-ie</a></li> <li><a href="..&#x2F;modules/widget-buttons.html">widget-buttons</a></li> <li><a href="..&#x2F;modules/widget-child.html">widget-child</a></li> <li><a href="..&#x2F;modules/widget-htmlparser.html">widget-htmlparser</a></li> <li><a href="..&#x2F;modules/widget-locale.html">widget-locale</a></li> <li><a href="..&#x2F;modules/widget-modality.html">widget-modality</a></li> <li><a href="..&#x2F;modules/widget-parent.html">widget-parent</a></li> <li><a href="..&#x2F;modules/widget-position.html">widget-position</a></li> <li><a href="..&#x2F;modules/widget-position-align.html">widget-position-align</a></li> <li><a href="..&#x2F;modules/widget-position-constrain.html">widget-position-constrain</a></li> <li><a href="..&#x2F;modules/widget-skin.html">widget-skin</a></li> <li><a href="..&#x2F;modules/widget-stack.html">widget-stack</a></li> <li><a href="..&#x2F;modules/widget-stdmod.html">widget-stdmod</a></li> <li><a href="..&#x2F;modules/widget-uievents.html">widget-uievents</a></li> <li><a href="..&#x2F;modules/yql.html">yql</a></li> <li><a href="..&#x2F;modules/yui.html">yui</a></li> <li><a href="..&#x2F;modules/yui-base.html">yui-base</a></li> <li><a href="..&#x2F;modules/yui-later.html">yui-later</a></li> <li><a href="..&#x2F;modules/yui-log.html">yui-log</a></li> <li><a href="..&#x2F;modules/yui-throttle.html">yui-throttle</a></li> <li><a href="..&#x2F;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 class="file-heading">File: autocomplete&#x2F;js&#x2F;autocomplete-list-keys.js</h1> <div class="file"> <pre class="code prettyprint linenums"> &#x2F;** Mixes keyboard support into AutoCompleteList. By default, this module is not loaded for iOS and Android devices. @module autocomplete @submodule autocomplete-list-keys **&#x2F; &#x2F;&#x2F; keyCode constants. var KEY_DOWN = 40, KEY_ENTER = 13, KEY_ESC = 27, KEY_TAB = 9, KEY_UP = 38; function ListKeys() { Y.before(this._bindKeys, this, &#x27;bindUI&#x27;); this._initKeys(); } ListKeys.prototype = { &#x2F;&#x2F; -- Lifecycle Methods ---------------------------------------------------- &#x2F;** Initializes keyboard command mappings. @method _initKeys @protected @for AutoCompleteList **&#x2F; _initKeys: function () { var keys = {}, keysVisible = {}; &#x2F;&#x2F; Register keyboard command handlers. _keys contains handlers that will &#x2F;&#x2F; always be called; _keysVisible contains handlers that will only be &#x2F;&#x2F; called when the list is visible. keys[KEY_DOWN] = this._keyDown; keysVisible[KEY_ENTER] = this._keyEnter; keysVisible[KEY_ESC] = this._keyEsc; keysVisible[KEY_TAB] = this._keyTab; keysVisible[KEY_UP] = this._keyUp; this._keys = keys; this._keysVisible = keysVisible; }, destructor: function () { this._unbindKeys(); }, &#x2F;** Binds keyboard events. @method _bindKeys @protected **&#x2F; _bindKeys: function () { this._keyEvents = this._inputNode.on(&#x27;keydown&#x27;, this._onInputKey, this); }, &#x2F;** Unbinds keyboard events. @method _unbindKeys @protected **&#x2F; _unbindKeys: function () { this._keyEvents &amp;&amp; this._keyEvents.detach(); this._keyEvents = null; }, &#x2F;&#x2F; -- Protected Methods ---------------------------------------------------- &#x2F;** Called when the down arrow key is pressed. @method _keyDown @protected **&#x2F; _keyDown: function () { if (this.get(&#x27;visible&#x27;)) { this._activateNextItem(); } else { this.show(); } }, &#x2F;** Called when the enter key is pressed. @method _keyEnter @protected **&#x2F; _keyEnter: function (e) { var item = this.get(&#x27;activeItem&#x27;); if (item) { this.selectItem(item, e); } else { &#x2F;&#x2F; Don&#x27;t prevent form submission when there&#x27;s no active item. return false; } }, &#x2F;** Called when the escape key is pressed. @method _keyEsc @protected **&#x2F; _keyEsc: function () { this.hide(); }, &#x2F;** Called when the tab key is pressed. @method _keyTab @protected **&#x2F; _keyTab: function (e) { var item; if (this.get(&#x27;tabSelect&#x27;)) { item = this.get(&#x27;activeItem&#x27;); if (item) { this.selectItem(item, e); return true; } } return false; }, &#x2F;** Called when the up arrow key is pressed. @method _keyUp @protected **&#x2F; _keyUp: function () { this._activatePrevItem(); }, &#x2F;&#x2F; -- Protected Event Handlers --------------------------------------------- &#x2F;** Handles &#x60;inputNode&#x60; key events. @method _onInputKey @param {EventTarget} e @protected **&#x2F; _onInputKey: function (e) { var handler, keyCode = e.keyCode; this._lastInputKey = keyCode; if (this.get(&#x27;results&#x27;).length) { handler = this._keys[keyCode]; if (!handler &amp;&amp; this.get(&#x27;visible&#x27;)) { handler = this._keysVisible[keyCode]; } if (handler) { &#x2F;&#x2F; A handler may return false to indicate that it doesn&#x27;t wish &#x2F;&#x2F; to prevent the default key behavior. if (handler.call(this, e) !== false) { e.preventDefault(); } } } } }; Y.Base.mix(Y.AutoCompleteList, [ListKeys]); </pre> </div> </div> </div> </div> </div> </div> </div> <script src="..&#x2F;assets/vendor/prettify/prettify-min.js"></script> <script>prettyPrint();</script> <script src="..&#x2F;assets/js/yui-prettify.js"></script> <script src="..&#x2F;assets/../api.js"></script> <script src="..&#x2F;assets/js/api-filter.js"></script> <script src="..&#x2F;assets/js/api-list.js"></script> <script src="..&#x2F;assets/js/api-search.js"></script> <script src="..&#x2F;assets/js/apidocs.js"></script> </body> </html>
tools/compilers/arm/sourcery_2010_q1_none_eabi/share/doc/arm-arm-none-eabi/html/cpp/Newlines-in-Arguments.html
csitarichie/boost_msm_bare_metal
<html lang="en"> <head> <title>Newlines in Arguments - The C Preprocessor</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="The C Preprocessor"> <meta name="generator" content="makeinfo 4.13"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Macro-Pitfalls.html#Macro-Pitfalls" title="Macro Pitfalls"> <link rel="prev" href="Argument-Prescan.html#Argument-Prescan" title="Argument Prescan"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- Copyright (C) 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 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.2 or any later version published by the Free Software Foundation. A copy of the license is included in the section entitled ``GNU Free Documentation License''. This manual contains no Invariant Sections. The Front-Cover Texts are (a) (see below), and the Back-Cover Texts are (b) (see below). (a) The FSF's Front-Cover Text is: A GNU Manual (b) The FSF's Back-Cover Text is: You have freedom to copy and modify this GNU Manual, like GNU software. Copies published by the Free Software Foundation raise funds for GNU development. --> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> <link rel="stylesheet" type="text/css" href="../cs.css"> </head> <body> <div class="node"> <a name="Newlines-in-Arguments"></a> <p> Previous:&nbsp;<a rel="previous" accesskey="p" href="Argument-Prescan.html#Argument-Prescan">Argument Prescan</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Macro-Pitfalls.html#Macro-Pitfalls">Macro Pitfalls</a> <hr> </div> <h4 class="subsection">3.10.7 Newlines in Arguments</h4> <p><a name="index-newlines-in-macro-arguments-82"></a> The invocation of a function-like macro can extend over many logical lines. However, in the present implementation, the entire expansion comes out on one line. Thus line numbers emitted by the compiler or debugger refer to the line the invocation started on, which might be different to the line containing the argument causing the problem. <p>Here is an example illustrating this: <pre class="smallexample"> #define ignore_second_arg(a,b,c) a; c ignore_second_arg (foo (), ignored (), syntax error); </pre> <p class="noindent">The syntax error triggered by the tokens <code>syntax error</code> results in an error message citing line three&mdash;the line of ignore_second_arg&mdash; even though the problematic code comes from line five. <p>We consider this a bug, and intend to fix it in the near future. </body></html>
sites/all/themes/loridolls/css/demo.css
csctwx/loridolls
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700); @font-face { font-weight: normal; font-style: normal; font-family: 'codropsicons'; src:url('../fonts/codropsicons/codropsicons.eot'); src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'), url('../fonts/codropsicons/codropsicons.woff') format('woff'), url('../fonts/codropsicons/codropsicons.ttf') format('truetype'), url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg'); } body { background: #34495e; color: #fff; font-weight: 300; font-family: 'Lato', Calibri, Arial, sans-serif; } a { text-decoration: none; color: #f7f7f7; outline: none; } a:hover, a:focus { color: #fff; outline: none; } /* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */ .clearfix:before, .clearfix:after { display: table; content: " "; } .clearfix:after { clear: both; } .codrops-header, .codrops-top { font-family: 'Lato', Arial, sans-serif; } .codrops-header { margin: 0 auto; padding: 2em; background: rgba(0,0,0,0.01); text-align: center; } .codrops-header h1 { margin: 0; font-weight: 300; font-size: 2.625em; line-height: 1.3; } .codrops-header span { display: block; padding: 0 0 0.6em 0.1em; font-size: 60%; opacity: 0.7; } /* To Navigation Style */ .codrops-top { width: 100%; background: #91cfa1; background: rgba(255, 255, 255, 0.1); text-transform: uppercase; font-size: 0.69em; line-height: 2.2; } .codrops-top a { display: inline-block; padding: 0 1em; color: #fff; text-decoration: none; letter-spacing: 0.1em; } .codrops-top a:hover { background: rgba(255,255,255,0.95); color: #333; } .codrops-top span.right { float: right; } .codrops-top span.right a { display: block; float: left; } .codrops-icon:before { margin: 0 4px; text-transform: none; font-weight: normal; font-style: normal; font-variant: normal; font-family: 'codropsicons'; line-height: 1; speak: none; -webkit-font-smoothing: antialiased; } .codrops-icon-drop:before { content: "\e001"; } .codrops-icon-prev:before { content: "\e004"; } /* Demo Buttons Style */ .codrops-demos { padding-top: 1em; font-size: 1.1em; } .codrops-demos a { display: block; float: left; clear: both; margin: 0.5em 0.5em 0.5em 1.9em; padding: 1em 1.1em; width: 280px; outline: none; color: #fff; background: #336ca6; text-align: center; text-decoration: none; font-weight: 700; } .codrops-demos a:hover, .codrops-demos a.current-demo, .codrops-demos a.current-demo:hover { opacity: 0.6; } .content { padding: 4em 2em; max-width: 1200px; margin: 0 auto; } .block { float: left; padding: 1em 3em; } .block-40 { width: 40%; } .block-60 { width: 60%; } .block p { margin: 0; padding: 0 1em 0.6em; font-size: 1.8em; line-height: 1.5; } .info { text-align: center; font-size: 1.5em; margin-top: 3em; clear: both; padding-top: 3em; color: rgba(255,255,255,0.5); } .info a { font-weight: 700; font-size: 0.9em; } .info a:hover { color: #336ca6; } @media screen and (max-width: 69em) { .block { float: none; width: 100% !important; padding: 1em; } } @media screen and (max-width: 25em) { body { font-size: 80%; } .codrops-icon span { display: none; } }
cms-custom/extensions/create_tickler/contents.html
aworley/TIG-Google-Apps-Integration
<html> <head> <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "EmailMessage", "action": { "@type": "ViewAction", "url": "%eventUrl%", "name": "Add to Calendar" } } </script> </head> <body> <p> This is message is to notify you that a case tickler has been added to the %clientFirstName% %clientLastName% Case No. <a href="%caseLink%">%case%</a> </p> <a href="%eventUrl%" >Add to Calendar</a> </body> </html>
Others/I_beer_uOld/PHP/Views/sorted.html
Enaleth/projectcs
<section> <h1>You are a <span>placeholder</span></h1> <img src='Style/img/' alt='' height='' width=''> <button type='button' id='login'>Awesome!</button> <button type='button' id='differentBeer'>I prefer a different brand!</button> </section> <script src='JS/buttonEvent.js' async='async'></script>
layout/reftests/mathml/munder-mover-align-accent-true-ref.html
Yukarumya/Yukarum-Redfoxes
<!DOCTYPE html> <html> <head><title></title></head> <body> <h2> Test with accent="true" </h2> <table border="1"> <tr> <td align="center"></td> <th colspan="2">mover</th> <th colspan="2">munder</th> </tr> <tr> <td align="center"></td> <td align="center"><mrow> <mi>Over</mi> <mo>&lt;</mo> <mi>Base</mi> </mrow> </td> <td align="center"> <mrow> <mi>Over</mi> <mo>&gt;</mo> <mi>Base</mi> </mrow> </td> <td align="center"> <mrow> <mi>Over</mi> <mo>&lt;</mo> <mi>Base</mi> </mrow> </td> <td align="center"> <mrow> <mi>Over</mi> <mo>&gt;</mo> <mi>Base</mi> </mrow></td> </tr> <tr> <th> align="left" </th> <td align="center"> <math> <mover accent="true"> <mspace height="15px" width="75px" mathbackground="blue"/> <mrow> <mspace height="15px" width="25px" mathbackground="red"/> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px"/> </mrow> </mover> </math> </td> <td align="center"> <math> <mover accent="true"> <mrow> <mspace height="15px" width="25px" mathbackground="blue"/> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px"/> </mrow> <mspace height="15px" width="75px" mathbackground="red"/> </mover> </math> </td> <td align="center"> <math> <munder accentunder="true"> <mspace height="15px" width="75px" mathbackground="blue"/> <mrow> <mspace height="15px" width="25px" mathbackground="red"/> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px"/> </mrow> </munder> </math> </td> <td align="center"> <math> <munder accentunder="true"> <mrow> <mspace height="15px" width="25px" mathbackground="blue"/> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px"/> </mrow> <mspace height="15px" width="75px" mathbackground="red"/> </munder> </math> </td> </tr> <tr> <th> align="right" </th> <td align="center"> <math> <mover accent="true"> <mspace height="15px" width="75px" mathbackground="blue"/> <mrow> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px" mathbackground="red"/> </mrow> </mover> </math> </td> <td align="center"> <math> <mover accent="true"> <mrow> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px" mathbackground="blue"/> </mrow> <mspace height="15px" width="75px" mathbackground="red"/> </mover> </math> </td> <td align="center"> <math> <munder accentunder="true"> <mspace height="15px" width="75px" mathbackground="blue"/> <mrow> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px" mathbackground="red"/> </mrow> </munder> </math> </td> <td align="center"> <math> <munder accentunder="true"> <mrow> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px" mathbackground="blue"/> </mrow> <mspace height="15px" width="75px" mathbackground="red"/> </munder> </math> </td> </tr> <tr> <th> align="center" </th> <td align="center"> <math> <mover accent="true"> <mspace height="15px" width="75px" mathbackground="blue"/> <mrow> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px" mathbackground="red"/> <mspace height="15px" width="25px"/> </mrow> </mover> </math> </td> <td align="center"> <math> <mover accent="true"> <mrow> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px" mathbackground="blue"/> <mspace height="15px" width="25px"/> </mrow> <mspace height="15px" width="75px" mathbackground="red"/> </mover> </math> </td> <td align="center"> <math> <munder accentunder="true"> <mspace height="15px" width="75px" mathbackground="blue"/> <mrow> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px" mathbackground="red"/> <mspace height="15px" width="25px"/> </mrow> </munder> </math> </td> <td align="center"> <math> <munder accentunder="true"> <mrow> <mspace height="15px" width="25px"/> <mspace height="15px" width="25px" mathbackground="blue"/> <mspace height="15px" width="25px"/> </mrow> <mspace height="15px" width="75px" mathbackground="red"/> </munder> </math> </td> </tr> </table> <table> <tr> <th> <h5>Under & Over</h5> <math> <mrow> <mspace height="15px" width="25px" mathbackground="red"/> </mrow> </math> </th> <th>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th> <th> <h5>Base</h5> <math> <mrow> <mspace height="15px" width="25px" mathbackground="blue"/> </mrow> </math> </th> </tr> </table> </body> </html>
mods/translator/assets/stylesheets/translator.css
nilclass/echosocial
/** standard scaffold **/ body, p, ol, ul, td { font-family: verdana, arial, helvetica, sans-serif; font-size: 13px; line-height: 18px; } pre { background-color: #eee; padding: 10px; font-size: 11px; } a { color: #000; } a:visited { color: #666; } a:hover { color: #fff; background-color:#000; } a.active { background: #666; color: white; text-decoration: none; } .fieldWithErrors { padding: 2px; background-color: red; display: table; } .errorExplanation { width: 400px; border: 2px solid red; padding: 7px; padding-bottom: 12px; margin-bottom: 20px; background-color: #f0f0f0; } .errorExplanation h2 { text-align: left; font-weight: bold; padding: 5px 5px 5px 15px; font-size: 12px; margin: -7px; background-color: #c00; color: #fff; } .errorExplanation p { color: #333; margin-bottom: 0; padding: 5px; } .errorExplanation ul li { font-size: 12px; list-style: square; } /* top notice area */ div.notice { padding: 1em 4em 0 4em; } div.notice h2 { font-weight: bold; padding: 0.5em; background-color: #ccc; border-bottom: 1px solid #999; margin: 0; } div.notice h2 img { vertical-align: middle; } div.error { border: 2px solid red; color: #900; background-color: #fafafa; } div.info { border: 2px solid green; color: #090; background-color: #fafafa; } div.update { border: 2px solid blue; color: #009; background-color: #fafafa; } div.notice p, div.notice li { color: black; margin-left: 2em; } /**** translator styles ****/ body { background:#ccc; padding: 20px; } #container { background: #fafafa; border-right: 4px solid #aaa; border-bottom: 4px solid #aaa; } #header { color: #999; background: #dfd; padding: 10px; } #header h1 { font-size: 1.5em; } #content { padding: 20px; } .toplink {float: right; padding:4px;} div.language { font-size: 1.5em; padding: 0.5em; line-height: 2em; float: left; } div.language span { color: #666; font-size: 0.8em; }
accounts/templates/shift_list_done.html
klinger/volunteer_planner
{% extends 'base.html' %} {% load i18n %} {% block title %}{{ user.username }}{% endblock %} {% block body_class %}helpdesk{% endblock %} {% block content %} <div class="col-md-8 col-md-offset-2"> <ul class="list-group"> {% if shifts_past.count > 0 %} {% trans 'My work shifts in the past:' %} {% else %} {% trans 'No work shifts in the past days yet.' %} {% endif %} {% for shifts in shifts_past %} <li class="list-group-item list-group-item-info">{{ shifts.shift }}</li> {% endfor %} </ul> <a href="{% url 'shift_list_active' %}" class="btn btn-default">{% trans 'Show my work shifts in the future' %}</a> </div> {% endblock %}
LayoutTests/fast/dom/getter-on-window-object2.html
youfoh/webkit-efl
<script src="../js/resources/js-test-pre.js"></script> <script> description("This page tests what happens when a getter / setter on the window object conflicts with another property or declared variable"); var x = 1; try { window.__defineGetter__("x", function() { return "window.x __getter__"; }); } catch(e) { debug(e); } shouldBe("window.x", "1"); shouldBe("typeof window.__lookupGetter__('x')", "'undefined'"); shouldBe("typeof Object.getOwnPropertyDescriptor(window, 'x').get", "'undefined'"); debug(""); try { window.__defineSetter__("x", function() { debug("window.x __setter__ called"); }); } catch(e) { debug(e); } x = 2; shouldBe("window.x", "2"); shouldBe("typeof window.__lookupGetter__('x')", "'undefined'"); shouldBe("typeof Object.getOwnPropertyDescriptor(window, 'x').get", "'undefined'"); debug(""); window.y = 1; try { window.__defineGetter__("y", function() { return "window.y __getter__"; }); } catch(e) { debug(e); } shouldBe("window.y", "'window.y __getter__'"); shouldBe("typeof window.__lookupGetter__('y')", "'function'"); shouldBe("typeof Object.getOwnPropertyDescriptor(window, 'y').get", "'function'"); debug(""); try { window.__defineSetter__("y", function() { "window.y __setter__ called"; }); } catch(e) { debug(e); } window.y = 2; shouldBe("window.y", "'window.y __getter__'"); shouldBe("typeof window.__lookupGetter__('y')", "'function'"); shouldBe("typeof Object.getOwnPropertyDescriptor(window, 'y').get", "'function'"); debug(""); try { window.__defineSetter__("z", function() { "window.z __setter__ called"; }); } catch(e) { debug(e); } window.z = 1; shouldBeUndefined("window.z"); shouldBe("typeof window.__lookupSetter__('z')", "'function'"); shouldBe("typeof Object.getOwnPropertyDescriptor(window, 'z').set", "'function'"); </script>
www/greenaddress.it/sv/wallet/partials/signup_3_pin.html
ralic/WalletCordova
<div class="create-modal-backdrop"></div> <div class="create-modal"> <div class="create-modal-dialog"> <div class="create-modal-content" submittable> <div class="create-modal-header"> Steg 3 av 4 <div class="progress"> <div class="progress-bar progress-bar-success" role="progressbar" style="width: 75%"></div> </div> </div> <div class="create-modal-body"> <div class="title">Snabb och säker åtkomst till plånboken<br><small>För att ha säker men snabb åtkomst från denna enhet, ange en PIN-kod</small></div> <hr> <form role="form" class="form-horizontal" ng-submit="signup.set_pin()"> <div class="form-group" ng-class="{'has-error': state.error && form.$invalid}"> <label class="col-sm-5 control-label" for="id_pin">PIN-nummer</label> <div class="col-sm-4"> <input class="form-control pin" type="tel" mask-input id="id_pin" name="pin" maxlength="15" pattern="[0-9]{4,15}" ng-pattern="/[0-9]{4,15}/" placeholder="4-15 digits number" ng-model="signup.pin" ng-disabled="signup.pin_set" /> </div> <input type="submit" class="hide" submitter /> </div> </form> <hr> <p> Åtkomst genom PIN tillåter snabb inloggning medan säkerheten hålls på en hög nivå. PIN-koden säkrar ett slumpgenererat AES 256-bitars lösenord som raderas efter 3 misslyckade försök, vilket då tvingar dig att åter ange din fulla mnemoniska lösenfras. Enkelt, bekvämt och säkert, så prova på! </p> </div> <div class="create-modal-footer"> <span class="btn btn-link btn-block-xs pull-left disabled" ng-show="signup.seed_progress < 100"> Genererar dina plånboksnycklar, vänligen vänta ... (( signup.seed_progress ))% </span> <span class="btn btn-link btn-block-xs pull-left disabled" ng-show="signup.seed_progress == 100 && !signup.logged_in && !signup.login_failed"> Vänligen vänta, loggar in... </span> <a class="btn btn-link btn-block-xs pull-left" href="#/receive#content_container" ng-class="{disabled:signup.setting_pin}" ng-hide="signup.seed_progress < 100 || !signup.logged_in || signup.pin_set"> Ta mig till mig plånbok och hoppa över allt detta! </a> <a ng-show="signup.pin" class="noanimate btn btn-primary btn-block-xs pull-right" ng-click="submit_me()" ng-class="{disabled:signup.setting_pin||signup.seed_progress < 100||!signup.logged_in||signup.login_failed}"> <span ng-hide="signup.setting_pin">PIN angiven, redo för steg 3</span> <span ng-show="signup.setting_pin">Anger PIN...</span> </a> <a ng-show="!signup.pin" class="noanimate btn btn-primary btn-block-xs pull-right" ng-click="submit_me()" ng-class="{disabled: !signup.logged_in || signup.login_failed}"> <span>Skippa PIN och fortsätt</span> </a> </div> </div> </div> </div>
theme_rtl/templates/admin/email_newsletter.html
zzsoszz/metronicv36
<!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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>Metronic | Email Templates - Responsive Newsletter<br> Email Template</title> <!--IMPORTANT: Before deploying this email template into your application make sure you convert all the css code in <style> tag using http://beaker.mailchimp.com/inline-css. Chrome and other few mail clients do not support <style> tag so the above converter from mailchip will make sure that all the css code will be converted into inline css. --> <meta name="viewport" content="width=device-width"/> <style type="text/css"> /********************************************************************* Ink - Responsive Email Template Framework Based: http://zurb.com/ink/ *********************************************************************/ #outlook a { padding:0; } body{ width:100% !important; min-width: 100%; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; margin:0; padding:0; } img { outline:none; text-decoration:none; -ms-interpolation-mode: bicubic; width: auto; height: auto; max-width: 100%; float: left; clear: both; display: block; } @media screen and (min-width:0\0) { /* IE9 and IE10 rule sets go here */ img.ie10-responsive { width: 100% !important; } } center { width: 100%; min-width: 580px; } a img { border: none; } p { margin: 0 0 0 10px; } table { border-spacing: 0; border-collapse: collapse; } td { word-break: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; } table, tr, td { padding: 0; vertical-align: top; text-align: left; } hr { color: #d9d9d9; background-color: #d9d9d9; height: 1px; border: none; } /* Responsive Grid */ table.body { height: 100%; width: 100%; } table.container { width: 580px; margin: 0 auto; text-align: inherit; } table.row { padding: 0px; width: 100%; position: relative; } table.container table.row { display: block; } td.wrapper { padding: 10px 20px 0px 0px; position: relative; } table.columns, table.column { margin: 0 auto; } table.columns td, table.column td { padding: 0px 0px 10px; } table.columns td.sub-columns, table.column td.sub-columns, table.columns td.sub-column, table.column td.sub-column { padding-right: 10px; } td.sub-column, td.sub-columns { min-width: 0px; } table.row td.last, table.container td.last { padding-right: 0px; } table.one { width: 30px; } table.two { width: 80px; } table.three { width: 130px; } table.four { width: 180px; } table.five { width: 230px; } table.six { width: 280px; } table.seven { width: 330px; } table.eight { width: 380px; } table.nine { width: 430px; } table.ten { width: 480px; } table.eleven { width: 530px; } table.twelve { width: 580px; } table.one center { min-width: 30px; } table.two center { min-width: 80px; } table.three center { min-width: 130px; } table.four center { min-width: 180px; } table.five center { min-width: 230px; } table.six center { min-width: 280px; } table.seven center { min-width: 330px; } table.eight center { min-width: 380px; } table.nine center { min-width: 430px; } table.ten center { min-width: 480px; } table.eleven center { min-width: 530px; } table.twelve center { min-width: 580px; } table.one .panel center { min-width: 10px; } table.two .panel center { min-width: 60px; } table.three .panel center { min-width: 110px; } table.four .panel center { min-width: 160px; } table.five .panel center { min-width: 210px; } table.six .panel center { min-width: 260px; } table.seven .panel center { min-width: 310px; } table.eight .panel center { min-width: 360px; } table.nine .panel center { min-width: 410px; } table.ten .panel center { min-width: 460px; } table.eleven .panel center { min-width: 510px; } table.twelve .panel center { min-width: 560px; } .body .columns td.one, .body .column td.one { width: 8.333333%; } .body .columns td.two, .body .column td.two { width: 16.666666%; } .body .columns td.three, .body .column td.three { width: 25%; } .body .columns td.four, .body .column td.four { width: 33.333333%; } .body .columns td.five, .body .column td.five { width: 41.666666%; } .body .columns td.six, .body .column td.six { width: 50%; } .body .columns td.seven, .body .column td.seven { width: 58.333333%; } .body .columns td.eight, .body .column td.eight { width: 66.666666%; } .body .columns td.nine, .body .column td.nine { width: 75%; } .body .columns td.ten, .body .column td.ten { width: 83.333333%; } .body .columns td.eleven, .body .column td.eleven { width: 91.666666%; } .body .columns td.twelve, .body .column td.twelve { width: 100%; } td.offset-by-one { padding-left: 50px; } td.offset-by-two { padding-left: 100px; } td.offset-by-three { padding-left: 150px; } td.offset-by-four { padding-left: 200px; } td.offset-by-five { padding-left: 250px; } td.offset-by-six { padding-left: 300px; } td.offset-by-seven { padding-left: 350px; } td.offset-by-eight { padding-left: 400px; } td.offset-by-nine { padding-left: 450px; } td.offset-by-ten { padding-left: 500px; } td.offset-by-eleven { padding-left: 550px; } td.expander { visibility: hidden; width: 0px; padding: 0 !important; } /* Alignment & Visibility Classes */ table.center, td.center { text-align: center; } h1.center, h2.center, h3.center, h4.center, h5.center, h6.center { text-align: center; } span.center { display: block; width: 100%; text-align: center; } img.center { margin: 0 auto; float: none; } /* Typography */ body, table.body, h1, h2, h3, h4, h5, h6, p, td { color: #222222; font-family: "Helvetica", "Arial", sans-serif; font-weight: normal; padding:0; margin: 0; text-align: left; line-height: 1.3; } h1, h2, h3, h4, h5, h6 { word-break: normal; } h1 {font-size: 40px;} h2 {font-size: 36px;} h3 {font-size: 32px;} h4 {font-size: 28px;} h5 {font-size: 24px;} h6 {font-size: 20px;} body, table.body, p, td {font-size: 14px;line-height:19px;} p.lead, p.lede, p.leed { font-size: 18px; line-height:21px; } p { margin-bottom: 10px; } small { font-size: 10px; } a { color: #2ba6cb; text-decoration: none; } a:hover { color: #2795b6 !important; } a:active { color: #2795b6 !important; } a:visited { color: #2ba6cb !important; } h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: #2ba6cb; } h1 a:active, h2 a:active, h3 a:active, h4 a:active, h5 a:active, h6 a:active { color: #2ba6cb !important; } h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited { color: #2ba6cb !important; } /* Panels */ .panel { background: #f2f2f2; border: 1px solid #d9d9d9; padding: 10px !important; } table.radius td { -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } table.round td { -webkit-border-radius: 500px; -moz-border-radius: 500px; border-radius: 500px; } /* Outlook First */ body.outlook p { display: inline !important; } /* Media Queries */ @media only screen and (max-width: 600px) { table[class="body"] img { width: auto !important; height: auto !important; } table[class="body"] center { min-width: 0 !important; } table[class="body"] .container { width: 95% !important; } table[class="body"] .row { width: 100% !important; display: block !important; } table[class="body"] .wrapper { display: block !important; padding-right: 0 !important; } table[class="body"] .columns, table[class="body"] .column { table-layout: fixed !important; float: none !important; width: 100% !important; padding-right: 0px !important; padding-left: 0px !important; display: block !important; } table[class="body"] .wrapper.first .columns, table[class="body"] .wrapper.first .column { display: table !important; } table[class="body"] table.columns td, table[class="body"] table.column td { width: 100% !important; } table[class="body"] .columns td.one, table[class="body"] .column td.one { width: 8.333333% !important; } table[class="body"] .columns td.two, table[class="body"] .column td.two { width: 16.666666% !important; } table[class="body"] .columns td.three, table[class="body"] .column td.three { width: 25% !important; } table[class="body"] .columns td.four, table[class="body"] .column td.four { width: 33.333333% !important; } table[class="body"] .columns td.five, table[class="body"] .column td.five { width: 41.666666% !important; } table[class="body"] .columns td.six, table[class="body"] .column td.six { width: 50% !important; } table[class="body"] .columns td.seven, table[class="body"] .column td.seven { width: 58.333333% !important; } table[class="body"] .columns td.eight, table[class="body"] .column td.eight { width: 66.666666% !important; } table[class="body"] .columns td.nine, table[class="body"] .column td.nine { width: 75% !important; } table[class="body"] .columns td.ten, table[class="body"] .column td.ten { width: 83.333333% !important; } table[class="body"] .columns td.eleven, table[class="body"] .column td.eleven { width: 91.666666% !important; } table[class="body"] .columns td.twelve, table[class="body"] .column td.twelve { width: 100% !important; } table[class="body"] td.offset-by-one, table[class="body"] td.offset-by-two, table[class="body"] td.offset-by-three, table[class="body"] td.offset-by-four, table[class="body"] td.offset-by-five, table[class="body"] td.offset-by-six, table[class="body"] td.offset-by-seven, table[class="body"] td.offset-by-eight, table[class="body"] td.offset-by-nine, table[class="body"] td.offset-by-ten, table[class="body"] td.offset-by-eleven { padding-left: 0 !important; } table[class="body"] table.columns td.expander { width: 1px !important; } } </style> <style> /************************************************************** * Custom Styles * ***************************************************************/ /*** Reset & Typography ***/ body { direction: ltr; background: #f6f8f1; } a:hover { text-decoration: underline; } h1 {font-size: 34px;} h2 {font-size: 30px;} h3 {font-size: 26px;} h4 {font-size: 22px;} h5 {font-size: 18px;} h6 {font-size: 16px;} h4, h3, h2, h1 { display: block; margin: 5px 0 15px 0; } h7, h6, h5 { display: block; margin: 5px 0 5px 0 !important; } /*** Buttons ***/ .btn td { background: #e5e5e5 !important; border: 0; font-family: "Segoe UI", Helvetica, Arial, sans-serif; font-size: 14px; padding: 7px 14px !important; color: #333333 !important; text-align: center; vertical-align: middle; } .btn td a { display: block; color: #fff; } .btn td a:hover, .btn td a:focus, .btn td a:active { color: #fff !important; text-decoration: none; } .btn td:hover, .btn td:focus, .btn td:active { background: #d8d8d8 !important; } /* Yellow */ .btn.yellow td { background: #ffb848 !important; } .btn.yellow td:hover, .btn.yellow td:focus, .btn.yellow td:active { background: #eca22e !important; } .btn.red td{ background: #d84a38 !important; } .btn.red td:hover, .btn.red td:focus, .btn.red td:active { background: #bb2413 !important; } .btn.green td { background: #35aa47 !important; } .btn.green td:hover, .btn.green td:focus, .btn.green td:active { background: #1d943b !important; } /* Blue */ .btn.blue td { background: #4d90fe !important; } .btn.blue td:hover, .btn.blue td:focus, .btn.blue td:active { background: #0362fd !important; } .template-label { color: #ffffff; font-weight: bold; font-size: 11px; } /*** Note Panels ***/ .note .panel { padding: 10px !important; background: #ECF8FF; border: 0; } /*** Header ***/ .page-header { width: 100%; background: #1f1f1f; } /*** Social Icons ***/ .social-icons { float: right; } .social-icons td { padding: 0 2px !important; width: auto !important; } .social-icons td:last-child { padding-right: 0 !important; } .social-icons td img { max-width: none !important; } /*** Content ***/ table.container.content > tbody > tr > td{ background: #fff; padding: 15px !important; } /*** Footer ***/ .page-footer { width: 100%; background: #2f2f2f; } .page-footer td { vertical-align: middle; color: #fff; } /*** Content devider ***/ .devider { border-bottom: 1px solid #eee; margin: 15px -15px; display: block; } /*** Media Item ***/ .media-item img { display: block !important; float: none; margin-bottom: 10px; } .vertical-middle { padding-top: 0; padding-bottom: 0; vertical-align: middle; } /*** Utils ***/ .align-reverse { text-align: right; } .border { border: 1px solid red; } .hidden-mobile { display: block; } .visible-mobile { display: none; } @media only screen and (max-width: 600px) { /*** Reset & Typography ***/ body { background: #fff; } h1 {font-size: 30px;} h2 {font-size: 26px;} h3 {font-size: 22px;} h4 {font-size: 20px;} h5 {font-size: 16px;} h6 {font-size: 14px;} /*** Content ***/ table.container.content > tbody > tr > td{ padding: 0px !important; } table[class="body"] table.columns .social-icons td { width: auto !important; } /*** Header ***/ .page-header { padding: 10px !important; } /*** Content devider ***/ .devider { margin: 15px 0; } /*** Media Item ***/ .media-item { border-bottom: 1px solid #eee; padding: 15px 0 !important; } /*** Media Item ***/ .hidden-mobile { display: none; } .visible-mobile { display: block; } } </style> </head> <body> <table class="body"> <tr> <td class="center" align="center" valign="top"> <!-- BEGIN: Header --> <table class="page-header" align="center"> <tr> <td class="center" align="center"> <!-- BEGIN: Header Container --> <table class="container" align="center"> <tr> <td> <table class="row "> <tr> <td class="wrapper vertical-middle"> <!-- BEGIN: Logo --> <table class="six columns"> <tr> <td class="vertical-middle"> <a href="index.html"> <img src="../../assets/admin/layout/img/logo.png" width="86" height="14" border="0" alt=""/> </a> </td> </tr> </table> <!-- END: Logo --> </td> <td class="wrapper vertical-middle last"> <!-- BEGIN: Social Icons --> <table class="six columns"> <tr> <td> <table class="wrapper social-icons" align="right"> <tr> <td class="vertical-middle"> <a href="#"> <img src="../../assets/admin/pages/media/email/social_facebook.png" alt="social icon"/> </a> </td> <td class="vertical-middle"> <a href="#"> <img src="../../assets/admin/pages/media/email/social_twitter.png" alt="social icon"/> </a> </td> <td class="vertical-middle"> <a href="#"> <img src="../../assets/admin/pages/media/email/social_googleplus.png" alt="social icon"/> </a> </td> <td class="vertical-middle"> <a href="#"> <img src="../../assets/admin/pages/media/email/social_linkedin.png" alt="social icon"/> </a> </td> <td class="vertical-middle"> <a href="#"> <img src="../../assets/admin/pages/media/email/social_rss.png" alt="social icon"/> </a> </td> </tr> </table> </td> </tr> </table> <!-- END: Social Icons --> </td> </tr> </table> </td> </tr> </table> <!-- END: Header Container --> </td> </tr> </table> <!-- END: Header --> <!-- BEGIN: Content --> <table class="container content" align="center"> <tr> <td> <table class="row"> <tr> <td class="wrapper last"> <!-- BEGIN: Heading Content --> <table class="twelve columns"> <tr> <td> <h4>Welcome To Responsive Email Template</h4> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. In tempus adipiscing felis, sit amet blandit ipsum volutpat sed. Morbi porttitor, eget accumsan dictum, nisi libero ultricies ipsum, in posuere mauris neque at erat. </p> <table class="btn green" align="right"> <tr> <td> <a href="#"> Learn more... </a> </td> </tr> </table> </td> <td class="expander"> </td> </tr> </table> <!-- END: Heading Content --> </td> </tr> </table> <span class="devider"> </span> <table class="row "> <tr> <td class="wrapper"> <!-- BEGIN: Promo Content --> <table class="seven columns"> <tr> <td> <h4>Meet Our New Product!</h4> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. In tempus adipiscing adipiscing elit felis, sit amet blandit ipsum volutpat sed adipiscing elit. Morbi porttitor, eget. </p> <ul> <li> Lorem ipsum dolor sit amet </li> <li> Morbi porttitor </li> <li> In tempus adipiscing felis </li> <li> Amet blandit ipsum </li> </ul> <table class="btn yellow" align="right"> <tr> <td> <a href="#"> More info... </a> </td> </tr> </table> </td> <td class="expander"> </td> </tr> </table> <!-- END: Promo Content --> </td> <td class="wrapper last"> <!-- BEGIN: Promo Image --> <table class="five columns"> <tr> <td> <img src="../../assets/admin/pages/media/email/iphone.png" style="float:right; margin-right: 20px;" alt=""/> </td> <td class="expander"> </td> </tr> </table> <!-- BEGIN: Promo Image --> </td> </tr> </table> <table class="row note"> <tr> <td class="wrapper last"> <!-- BEGIN: Note Panel --> <table class="twelve columns"> <tr> <td class="panel"> Phasellus dictum sapien a neque luctus cursus. Pellentesque sem dolor, fringilla et pharetra vitae. <a href="#"> Check it out! </a> </td> <td class="expander"> </td> </tr> </table> <!-- END: Note Panel --> </td> </tr> </table> <span class="devider"> </span> <table class="row"> <tr> <td class="wrapper last"> <!-- BEGIN: Disscount Content --> <table class="twelve columns"> <tr> <td> <h4>70% Disscount! </h4> <p> Phasellus dictum sapien a neque luctus cursus. Pellentesque sem dolor, fringilla et pharetra vitae. Pellentesque sem dolor, fringilla et pharetra vitae </p> <img src="../../assets/admin/pages/media/email/article.png" class="ie10-responsive" alt=""/> </td> <td class="expander"> </td> </tr> </table> <!-- END: Disscount Content --> </td> </tr> </table> <span class="devider"> </span> <table class="row"> <tr> <td class="wrapper last"> <!-- BEGIN: Latest Products Content --> <table class="twelve columns"> <tr> <td> <h4>Latest Products & Showcasts</h4> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. In tempus adipiscing felis, sit amet blandit ipsum volutpat sed. Morbi porttitor, eget accumsan dictum. </p> </td> <td class="expander"> </td> </tr> </table> <!-- END: Latest Products Content --> </td> </tr> </table> <!-- BEGIN: Latest Products List --> <table class="row"> <tr> <td class="wrapper"> <table class="four columns media-item"> <tr> <td> <img src="../../assets/admin/pages/media/email/photo1.jpg" class="ie10-responsive" alt="photo"> <h6>Product 1</h6> <p> Lorem ipsum dolor sit amet, ut laoreet elit, sed diam. </p> <table class="btn green"> <tr> <td> <a href="#"> More info... </a> </td> </tr> </table> </td> <td class="expander"> </td> </tr> </table> </td> <td class="wrapper"> <table class="four columns media-item"> <tr> <td> <img src="../../assets/admin/pages/media/email/photo2.jpg" class="ie10-responsive" alt="photo"> <h6>Product 2</h6> <p> Lorem ipsum dolor sit amet, ut laoreet elit, sed diam. </p> <table class="btn blue"> <tr> <td> <a href="#"> More info... </a> </td> </tr> </table> </td> <td class="expander"> </td> </tr> </table> </td> <td class="wrapper last"> <table class="four columns media-item"> <tr> <td> <img src="../../assets/admin/pages/media/email/photo1.jpg" class="ie10-responsive" alt="photo"> <h6>Product 4</h6> <p> Lorem ipsum, ut laoreet elit, sed diam sed ut dolore. </p> <table class="btn yellow"> <tr> <td> <a href="#"> More info... </a> </td> </tr> </table> </td> <td class="expander"> </td> </tr> </table> </td> </tr> </table> <!-- END: Latest Products List --> </td> </tr> </table> <!-- END: Content --> <!-- BEGIN: Footer --> <table class="page-footer" align="center"> <tr> <td class="center" align="center"> <table class="container" align="center"> <tr> <td> <!-- BEGIN: Unsubscribet --> <table class="row"> <tr> <td class="wrapper last"> <a href="#"> Unsubscribe </a> from this newsletter instantly. </td> </tr> </table> <!-- END: Unsubscribe --> <!-- BEGIN: Footer Panel --> <table class="row"> <tr> <td class="wrapper"> <table class="four columns"> <tr> <td class="vertical-middle"> &copy; Keenthemes 2013. </td> </tr> </table> </td> <td class="wrapper last"> <table class="eight columns"> <tr> <td class="vertical-middle align-reverse"> <a href="#"> About Us </a> &nbsp; <a href="#"> Privacy Policy </a> &nbsp; <a href="#"> Terms of Use </a> </td> </tr> </table> </td> </tr> </table> <!-- END: Footer Panel List --> </td> </tr> </table> </td> </tr> </table> <!-- END: Footer --> </td> </tr> </table> </body> </html>
externals/numeric_bindings/libs/numeric/bindings/doc/html/boost_numeric_bindings/reference/lapack/computational_routines/stegr.html
siconos/siconos
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>stegr</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&#160;1.&#160;Boost.Numeric_Bindings"> <link rel="up" href="../computational_routines.html" title="Computational Routines"> <link rel="prev" href="stedc.html" title="stedc"> <link rel="next" href="stein.html" title="stein"> </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="stedc.html"><img src="../../../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../computational_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="stein.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.computational_routines.stegr"></a><a class="link" href="stegr.html" title="stegr">stegr</a> </h5></div></div></div> <a name="boost_numeric_bindings.reference.lapack.computational_routines.stegr.prototype"></a><h6> <a name="id1048340"></a> <a class="link" href="stegr.html#boost_numeric_bindings.reference.lapack.computational_routines.stegr.prototype">Prototype</a> </h6> <p> There is one prototype of <code class="computeroutput"><span class="identifier">stegr</span></code> available, please see below. </p> <pre class="programlisting"><span class="identifier">stegr</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="keyword">const</span> <span class="keyword">char</span> <span class="identifier">range</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">int_t</span> <span class="identifier">n</span><span class="special">,</span> <span class="identifier">VectorD</span><span class="special">&amp;</span> <span class="identifier">d</span><span class="special">,</span> <span class="identifier">VectorE</span><span class="special">&amp;</span> <span class="identifier">e</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">Scalar</span> <span class="special">&gt;,</span> <span class="keyword">const</span> <span class="identifier">Scalar</span> <span class="special">&gt;,</span> <span class="keyword">const</span> <span class="identifier">int_t</span> <span class="identifier">il</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">int_t</span> <span class="identifier">iu</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">Scalar</span> <span class="special">&gt;,</span> <span class="identifier">int_t</span><span class="special">&amp;</span> <span class="identifier">m</span><span class="special">,</span> <span class="identifier">VectorW</span><span class="special">&amp;</span> <span class="identifier">w</span><span class="special">,</span> <span class="identifier">MatrixZ</span><span class="special">&amp;</span> <span class="identifier">z</span><span class="special">,</span> <span class="identifier">VectorISUPPZ</span><span class="special">&amp;</span> <span class="identifier">isuppz</span> <span class="special">);</span> </pre> <p> </p> <a name="boost_numeric_bindings.reference.lapack.computational_routines.stegr.description"></a><h6> <a name="id1048712"></a> <a class="link" href="stegr.html#boost_numeric_bindings.reference.lapack.computational_routines.stegr.description">Description</a> </h6> <p> <code class="computeroutput"><span class="identifier">stegr</span></code> (short for $FRIENDLY_NAME) provides a C++ interface to LAPACK routines SSTEGR, DSTEGR, CSTEGR, and ZSTEGR. <code class="computeroutput"><span class="identifier">stegr</span></code> computes selected eigenvalues and, optionally, eigenvectors of a real symmetric tridiagonal matrix T. Any such unreduced matrix has a well defined set of pairwise different real eigenvalues, the corresponding real eigenvectors are pairwise orthogonal. </p> <p> The spectrum may be computed either completely or partially by specifying either an interval (VL,VU] or a range of indices IL:IU for the desired eigenvalues. </p> <p> <code class="computeroutput"><span class="identifier">stegr</span></code> is a compatability wrapper around the improved ZSTEMR routine. See DSTEMR for further details. </p> <p> One important change is that the ABSTOL parameter no longer provides any benefit and hence is no longer used. </p> <p> Note : <code class="computeroutput"><span class="identifier">stegr</span></code> and ZSTEMR work only on machines which follow IEEE-754 floating-point standard in their handling of infinities and NaNs. Normal execution may create these exceptiona values and hence may abort due to a floating point exception in environments which do not conform to the IEEE-754 standard. </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">VectorD</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">&lt;</span><span class="identifier">VectorD</span><span class="special">&gt;::</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.computational_routines.stegr.dispatching_of_stegr"></a><p class="title"><b>Table&#160;1.320.&#160;Dispatching of stegr</b></p> <div class="table-contents"><table class="table" summary="Dispatching of stegr"> <colgroup> <col> <col> </colgroup> <thead><tr> <th> <p> Value type of VectorD </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> SSTEGR </p> </td> </tr> <tr> <td> <p> <code class="computeroutput"><span class="keyword">double</span></code> </p> </td> <td> <p> DSTEGR </p> </td> </tr> <tr> <td> <p> <code class="computeroutput"><span class="identifier">complex</span><span class="special">&lt;</span><span class="keyword">float</span><span class="special">&gt;</span></code> </p> </td> <td> <p> CSTEGR </p> </td> </tr> <tr> <td> <p> <code class="computeroutput"><span class="identifier">complex</span><span class="special">&lt;</span><span class="keyword">double</span><span class="special">&gt;</span></code> </p> </td> <td> <p> ZSTEGR </p> </td> </tr> </tbody> </table></div> </div> <br class="table-break"><a name="boost_numeric_bindings.reference.lapack.computational_routines.stegr.definition"></a><h6> <a name="id1049099"></a> <a class="link" href="stegr.html#boost_numeric_bindings.reference.lapack.computational_routines.stegr.definition">Definition</a> </h6> <p> Defined in header <code class="computeroutput">boost/numeric/bindings/lapack/computational/stegr.hpp</code>. </p> <a name="boost_numeric_bindings.reference.lapack.computational_routines.stegr.parameters_or_requirements_on_types"></a><h6> <a name="id1049139"></a> <a class="link" href="stegr.html#boost_numeric_bindings.reference.lapack.computational_routines.stegr.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.computational_routines.stegr.complexity"></a><h6> <a name="id1049227"></a> <a class="link" href="stegr.html#boost_numeric_bindings.reference.lapack.computational_routines.stegr.complexity">Complexity</a> </h6> <a name="boost_numeric_bindings.reference.lapack.computational_routines.stegr.example"></a><h6> <a name="id1049253"></a> <a class="link" href="stegr.html#boost_numeric_bindings.reference.lapack.computational_routines.stegr.example">Example</a> </h6> <p> </p> <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">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">computational</span><span class="special">/</span><span class="identifier">stegr</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</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">stegr</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.computational_routines.stegr.notes"></a><h6> <a name="id1049538"></a> <a class="link" href="stegr.html#boost_numeric_bindings.reference.lapack.computational_routines.stegr.notes">Notes</a> </h6> <a name="boost_numeric_bindings.reference.lapack.computational_routines.stegr.see_also"></a><h6> <a name="id1049562"></a> <a class="link" href="stegr.html#boost_numeric_bindings.reference.lapack.computational_routines.stegr.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/sstegr.f" target="_top">sstegr.f</a>, <a href="http://www.netlib.org/lapack/double/dstegr.f" target="_top">dstegr.f</a>, <a href="http://www.netlib.org/lapack/complex/cstegr.f" target="_top">cstegr.f</a>, and <a href="http://www.netlib.org/lapack/complex16/zstegr.f" target="_top">zstegr.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 &#169; 2002 -2009 Rutger ter Borg, Kre&#353;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="stedc.html"><img src="../../../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../computational_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="stein.html"><img src="../../../../images/next.png" alt="Next"></a> </div> </body> </html>
static/css/app.css
rckclmbr/goportify
body { margin: 0px; padding: 0px; } .container { margin: 0px; padding: 0px; width: auto; position: absolute; top: 0; left: 0; right: 0; bottom: 60px; } .additional_bottom { margin-top: 10px; margin-bottom: 10px; } .container div.card { position: absolute; left: 0; right: 0; bottom: 24px; top: 0; overflow-y: auto; } .row { margin-left: auto; } .bottom_bar { z-index: 5; position: absolute; bottom: 0px; height: 60px; left: 0px; right: 0px; background: #7F8C8D; border-top: 4px solid #ffffff; padding: 10px; } .card { padding: 10px; } .portify { background: #E67E22; color: #ffffff; } .process_top { position: absolute; top: 0px; left: 0px; right: 0px; height: 30px; background: rgba(133,133,133,0.6); opacity: 0.6; z-index: 9; color: #ffffff; font-weight: bold; font-size: 13pt; line-height: 25px; padding-left: 5px; } .notfound { position: absolute; top: 0px; left: 0px; right: 0px; bottom: 23px; background: rgba(133,133,133,1); color: #ffffff; opacity: 1; z-index: 16; padding: 14px; overflow-y: auto; } .notfound a { color: #ffffff; } .done { position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; background: rgba(133,133,133,0.8); opacity: 1; z-index: 15; color: #ffffff; font-weight: bold; font-size: 13pt; text-align: center; } .done h1 { margin-top: 25%; } .done a { color: #FFFFFF; } .ok,.nok { position: absolute; z-index: 5; right: 10px; bottom: 0px; display: block; } .ok,.nok { font-size: 300%; opacity: 0.6; } .nok { z-index: 6; } /* .process div { -webkit-filter: grayscale(1); -webkit-transition:-webkit-filter 0.8s ease-in-out; }*/ .album { width: 10%; float: left; position: relative; } .process div.color { -webkit-filter: grayscale(0); } .view-anim-leave { -webkit-transition: .5s linear opacity; opacity: 1; } .view-anim-leave.view-anim-leave-active { opacity: 0; } .view-anim-enter, done-anim-enter { -webkit-transition: .5s linear opacity; opacity: 0; } .view-anim-enter.view-anim-enter-active, .done-anim-enter.done-anim-enter-active { opacity: 1; } .row { right: 0px; left: 0px; } .col { position: relative; width: 10%; padding-bottom: 10%; float: left; height: 0; box-sizing: border-box; } .current_playlist { position: absolute; left: 5%; right: 5%; top: 50%; height: 200px; background: #7F8C8D; z-index: 100; margin-top: -100px; } .current_playlist .progress .bar { background: #E67E22; } .current_playlist .progress { border-radius: 0px; margin-bottom: 5px; } .process_details { padding: 0px 10px 0px 10px; } .process_details h1 { margin-bottom: 20px; } .process_details { font-size: 205%; text-align: center; } .simpleprocess-anim-enter { -webkit-animation-duration: 1s; -webkit-animation-delay: .5s; -webkit-animation-timing-function: ease; -webkit-animation-fill-mode: both; opacity: 0; } .simpleprocess-anim-enter.simpleprocess-anim-enter-active { -webkit-animation-name: bounceInDown; opacity: 1; } .simpleprocess-anim-leave { -webkit-animation-duration: 1s; -webkit-animation-delay: .5s; -webkit-animation-timing-function: ease; -webkit-animation-fill-mode: both; opacity: 1; } .simpleprocess-anim-leave.simpleprocess-anim-leave-active { -webkit-animation-name: bounceOutDown; } .album-anim-enter { -webkit-animation-duration: .8s; -webkit-animation-delay: .1s; -webkit-animation-timing-function: ease; -webkit-animation-fill-mode: both; opacity: 0; } .album-anim-enter.album-anim-enter-active { -webkit-animation-name: fadeIn; opacity: 1; } .album-anim-leave { -webkit-animation-duration: .5s; -webkit-animation-delay: 0s; -webkit-animation-timing-function: ease; opacity: 1; } .album-anim-leave.album-anim-leave-active { -webkit-animation-name: fadeOut; } .placeholder { background: url('../img/no_album.png'); } .container div.process { padding: 0px; margin: 0px; overflow-y: hidden; -webkit-user-select: none; background-image: url('/img/big_cover.png'); -webkit-transition:-webkit-filter 0.8s ease-in-out, background 1s linear; background-size: cover !important; background-repeat: no-repeat !important; } .blur { -webkit-filter: blur(5px); } .album img { width: 100%; } .portify a { color: #ffffff; } .google { background: #2980B9; color: #ffffff; } .google legend { color: #ffffff; } .spotify { background: #9cca3b; color: #ffffff; } .spotify table { background: #ECF0F1; } .spotify thead { background: #BDC3C7; } .spotify tbody { color: #7F8C8D; } .spotify legend { color: #ffffff; } .test { -webkit-animation-duration: 1s; -webkit-animation-delay: .2s; -webkit-animation-timing-function: ease; -webkit-animation-fill-mode: both; } fieldset .btn { margin-bottom: 10px; } .intro_text { float: left; width: 50%; font-size: 16pt; } .intro_logo { float: right; width: 50%; text-align: right; } .bottom_bar .btn.btn-primary { background-color: #BDC3C7; } .bottom_bar .btn.btn-primary:hover, .btn.btn-primary:focus, .btn-group:focus .btn.btn-primary.dropdown-toggle { background-color: #95A5A6; } .bottom_bar .btn.btn-primary:active, .btn-group.open .btn.btn-primary.dropdown-toggle, .btn.btn-primary.active { background-color: #E67E22; } .pagination { margin: 10px 0; } ::-webkit-scrollbar { height: 12px; width: 12px; } ::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.35); -webkit-border-radius: 1ex; -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.55); } ::-webkit-scrollbar-corner { background: #000; }
workplaceNew/.metadata/.plugins/tern.eclipse.ide.server.nodejs.embed.macosx.cocoa.x86_64/node-v4.2.4-macosx-x86_64/lib/node_modules/npm/html/doc/cli/npm-bin.html
dmitryro1/somerealtortest
<!doctype html> <html> <title>npm-bin</title> <meta http-equiv="content-type" value="text/html;utf-8"> <link rel="stylesheet" type="text/css" href="../../static/style.css"> <link rel="canonical" href="https://www.npmjs.org/doc/cli/npm-bin.html"> <script async=true src="../../static/toc.js"></script> <body> <div id="wrapper"> <h1><a href="../cli/npm-bin.html">npm-bin</a></h1> <p>Display npm bin folder</p> <h2 id="synopsis">SYNOPSIS</h2> <pre><code>npm bin </code></pre><h2 id="description">DESCRIPTION</h2> <p>Print the folder where npm will install executables.</p> <h2 id="see-also">SEE ALSO</h2> <ul> <li><a href="../cli/npm-prefix.html">npm-prefix(1)</a></li> <li><a href="../cli/npm-root.html">npm-root(1)</a></li> <li><a href="../files/npm-folders.html">npm-folders(5)</a></li> <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> </ul> </div> <table border=0 cellspacing=0 cellpadding=0 id=npmlogo> <tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18>&nbsp;</td></tr> <tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td colspan=6 style="width:60px;height:10px;background:#fff">&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td></tr> <tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2>&nbsp;</td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff" rowspan=2>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff">&nbsp;</td></tr> <tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr> <tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr> </table> <p id="footer">npm-bin &mdash; npm@2.14.12</p>
tools/nant/doc/help/tasks/include.html
thomast74/spring-net-data-mongodb
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <!-- Documenting T:NAnt.Core.Tasks.IncludeTask--> <head> <meta http-equiv="Content-Language" content="en-ca" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="../style.css" /> <title>&lt;include&gt; Task</title> </head> <body> <table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar"> <tr> <td class="NavBar-Cell"> <a href="http://nant.sourceforge.net"> <b>NAnt</b> </a> <img alt="-&gt;" src="../images/arrow.gif" /> <a href="../index.html">Help</a> <img alt="-&gt;" src="../images/arrow.gif" /> <a href="../tasks/index.html">Task Reference</a> <img alt="-&gt;" src="../images/arrow.gif" /> &lt;include&gt;</td> <td class="NavBar-Cell" align="right"> v0.92</td> </tr> </table> <h1>&lt;include&gt;</h1> <p> Includes an external build file. </p> <p> This task is used to break your build file into smaller chunks. You can load a partial build file and have it included into the build file. </p> <p class="i2"> <b>Note:</b> Any global (project level) tasks in the included build file are executed when this task is executed. Tasks in target elements are only executed if that target is executed. </p> <p class="i2"> <b>Note:</b> The project element attributes are ignored. </p> <p class="i2"> <b>Note:</b> This task can only be in the global (project level) section of the build file. </p> <p class="i2"> <b>Note:</b> This task can only include files from the file system. </p> <h3>Parameters</h3> <div class="table"> <table> <tr> <th>Attribute</th> <th style="text-align: center;">Type</th> <th>Description</th> <th style="text-align: center;">Required</th> </tr> <tr> <td valign="top" class="required">buildfile</td> <td style="text-align: center;">string</td> <td> Build file to include. </td> <td style="text-align: center;">True</td> </tr> <tr> <td valign="top">failonerror</td> <td style="text-align: center;">bool</td> <td> Determines if task failure stops the build, or is just reported. The default is <b>true</b>. </td> <td style="text-align: center;">False</td> </tr> <tr> <td valign="top">if</td> <td style="text-align: center;">bool</td> <td> If <b>true</b> then the task will be executed; otherwise, skipped. The default is <b>true</b>. </td> <td style="text-align: center;">False</td> </tr> <tr> <td valign="top">unless</td> <td style="text-align: center;">bool</td> <td> Opposite of <code>if</code>. If <b>false</b> then the task will be executed; otherwise, skipped. The default is <b>false</b>. </td> <td style="text-align: center;">False</td> </tr> <tr> <td valign="top">verbose</td> <td style="text-align: center;">bool</td> <td> Determines whether the task should report detailed build log messages. The default is <b>false</b>. </td> <td style="text-align: center;">False</td> </tr> </table> </div> <h3>Examples</h3> <ul class="examples"> <li> <p> Include a task that fetches the project version from the <code>GetProjectVersion.include</code> build file. </p> <pre class="code"> &lt;include buildfile="GetProjectVersion.include" /&gt; </pre> </li> </ul> <h3>Requirements</h3> <div style="margin-left: 20px;"> <b>Assembly:</b> NAnt.Core (0.92.4543.0) </div> </body> </html>
demos/code/index.html
jano42/blockly
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="google" value="notranslate"> <title>Blockly Demo:</title> <link rel="stylesheet" href="style.css"> <script src="/storage.js"></script> <script src="../../blockly_compressed.js"></script> <script src="../../blocks_compressed.js"></script> <script src="../../javascript_compressed.js"></script> <script src="../../python_compressed.js"></script> <script src="../../php_compressed.js"></script> <script src="../../lua_compressed.js"></script> <script src="../../dart_compressed.js"></script> <script src="code.js"></script> </head> <body> <table width="100%" height="100%"> <tr> <td> <h1><a href="https://developers.google.com/blockly/">Blockly</a>&rlm; &gt; <a href="../index.html">Demos</a>&rlm; &gt; <span id="title">...</span> </h1> </td> <td class="farSide"> <select id="languageMenu"></select> </td> </tr> <tr> <td colspan=2> <table width="100%"> <tr id="tabRow" height="1em"> <td id="tab_blocks" class="tabon">...</td> <td class="tabmin">&nbsp;</td> <td id="tab_javascript" class="taboff">JavaScript</td> <td class="tabmin">&nbsp;</td> <td id="tab_python" class="taboff">Python</td> <td class="tabmin">&nbsp;</td> <td id="tab_php" class="taboff">PHP</td> <td class="tabmin">&nbsp;</td> <td id="tab_lua" class="taboff">Lua</td> <td class="tabmin">&nbsp;</td> <td id="tab_dart" class="taboff">Dart</td> <td class="tabmin">&nbsp;</td> <td id="tab_xml" class="taboff">XML</td> <td class="tabmax"> <button id="trashButton" class="notext" title="..."> <img src='../../media/1x1.gif' class="trash icon21"> </button> <button id="linkButton" class="notext" title="..."> <img src='../../media/1x1.gif' class="link icon21"> </button> <button id="runButton" class="notext primary" title="..."> <img src='../../media/1x1.gif' class="run icon21"> </button> </td> </tr> </table> </td> </tr> <tr> <td height="99%" colspan=2 id="content_area"> </td> </tr> </table> <div id="content_blocks" class="content"></div> <pre id="content_javascript" class="content"></pre> <pre id="content_python" class="content"></pre> <pre id="content_php" class="content"></pre> <pre id="content_lua" class="content"></pre> <pre id="content_dart" class="content"></pre> <textarea id="content_xml" class="content" wrap="off"></textarea> <xml id="toolbox" style="display: none"> <category name="%{BKY_CATLOGIC}" colour="%{BKY_LOGIC_HUE}"> <block type="controls_if"></block> <block type="logic_compare"></block> <block type="logic_operation"></block> <block type="logic_negate"></block> <block type="logic_boolean"></block> <block type="logic_null"></block> <block type="logic_ternary"></block> </category> <category name="%{BKY_CATLOOPS}" colour="%{BKY_LOOPS_HUE}"> <block type="controls_repeat_ext"> <value name="TIMES"> <shadow type="math_number"> <field name="NUM">10</field> </shadow> </value> </block> <block type="controls_whileUntil"></block> <block type="controls_for"> <value name="FROM"> <shadow type="math_number"> <field name="NUM">1</field> </shadow> </value> <value name="TO"> <shadow type="math_number"> <field name="NUM">10</field> </shadow> </value> <value name="BY"> <shadow type="math_number"> <field name="NUM">1</field> </shadow> </value> </block> <block type="controls_forEach"></block> <block type="controls_flow_statements"></block> </category> <category name="%{BKY_CATMATH}" colour="%{BKY_MATH_HUE}"> <block type="math_number"></block> <block type="math_arithmetic"> <value name="A"> <shadow type="math_number"> <field name="NUM">1</field> </shadow> </value> <value name="B"> <shadow type="math_number"> <field name="NUM">1</field> </shadow> </value> </block> <block type="math_single"> <value name="NUM"> <shadow type="math_number"> <field name="NUM">9</field> </shadow> </value> </block> <block type="math_trig"> <value name="NUM"> <shadow type="math_number"> <field name="NUM">45</field> </shadow> </value> </block> <block type="math_constant"></block> <block type="math_number_property"> <value name="NUMBER_TO_CHECK"> <shadow type="math_number"> <field name="NUM">0</field> </shadow> </value> </block> <block type="math_round"> <value name="NUM"> <shadow type="math_number"> <field name="NUM">3.1</field> </shadow> </value> </block> <block type="math_on_list"></block> <block type="math_modulo"> <value name="DIVIDEND"> <shadow type="math_number"> <field name="NUM">64</field> </shadow> </value> <value name="DIVISOR"> <shadow type="math_number"> <field name="NUM">10</field> </shadow> </value> </block> <block type="math_constrain"> <value name="VALUE"> <shadow type="math_number"> <field name="NUM">50</field> </shadow> </value> <value name="LOW"> <shadow type="math_number"> <field name="NUM">1</field> </shadow> </value> <value name="HIGH"> <shadow type="math_number"> <field name="NUM">100</field> </shadow> </value> </block> <block type="math_random_int"> <value name="FROM"> <shadow type="math_number"> <field name="NUM">1</field> </shadow> </value> <value name="TO"> <shadow type="math_number"> <field name="NUM">100</field> </shadow> </value> </block> <block type="math_random_float"></block> </category> <category name="%{BKY_CATTEXT}" colour="%{BKY_TEXTS_HUE}"> <block type="text"></block> <block type="text_join"></block> <block type="text_append"> <value name="TEXT"> <shadow type="text"></shadow> </value> </block> <block type="text_length"> <value name="VALUE"> <shadow type="text"> <field name="TEXT">abc</field> </shadow> </value> </block> <block type="text_isEmpty"> <value name="VALUE"> <shadow type="text"> <field name="TEXT"></field> </shadow> </value> </block> <block type="text_indexOf"> <value name="VALUE"> <block type="variables_get"> <field name="VAR">{textVariable}</field> </block> </value> <value name="FIND"> <shadow type="text"> <field name="TEXT">abc</field> </shadow> </value> </block> <block type="text_charAt"> <value name="VALUE"> <block type="variables_get"> <field name="VAR">{textVariable}</field> </block> </value> </block> <block type="text_getSubstring"> <value name="STRING"> <block type="variables_get"> <field name="VAR">{textVariable}</field> </block> </value> </block> <block type="text_changeCase"> <value name="TEXT"> <shadow type="text"> <field name="TEXT">abc</field> </shadow> </value> </block> <block type="text_trim"> <value name="TEXT"> <shadow type="text"> <field name="TEXT">abc</field> </shadow> </value> </block> <block type="text_print"> <value name="TEXT"> <shadow type="text"> <field name="TEXT">abc</field> </shadow> </value> </block> <block type="text_prompt_ext"> <value name="TEXT"> <shadow type="text"> <field name="TEXT">abc</field> </shadow> </value> </block> </category> <category name="%{BKY_CATLISTS}" colour="%{BKY_LISTS_HUE}"> <block type="lists_create_with"> <mutation items="0"></mutation> </block> <block type="lists_create_with"></block> <block type="lists_repeat"> <value name="NUM"> <shadow type="math_number"> <field name="NUM">5</field> </shadow> </value> </block> <block type="lists_length"></block> <block type="lists_isEmpty"></block> <block type="lists_indexOf"> <value name="VALUE"> <block type="variables_get"> <field name="VAR">{listVariable}</field> </block> </value> </block> <block type="lists_getIndex"> <value name="VALUE"> <block type="variables_get"> <field name="VAR">{listVariable}</field> </block> </value> </block> <block type="lists_setIndex"> <value name="LIST"> <block type="variables_get"> <field name="VAR">{listVariable}</field> </block> </value> </block> <block type="lists_getSublist"> <value name="LIST"> <block type="variables_get"> <field name="VAR">{listVariable}</field> </block> </value> </block> <block type="lists_split"> <value name="DELIM"> <shadow type="text"> <field name="TEXT">,</field> </shadow> </value> </block> <block type="lists_sort"></block> </category> <category name="%{BKY_CATCOLOUR}" colour="%{BKY_COLOUR_HUE}"> <block type="colour_picker"></block> <block type="colour_random"></block> <block type="colour_rgb"> <value name="RED"> <shadow type="math_number"> <field name="NUM">100</field> </shadow> </value> <value name="GREEN"> <shadow type="math_number"> <field name="NUM">50</field> </shadow> </value> <value name="BLUE"> <shadow type="math_number"> <field name="NUM">0</field> </shadow> </value> </block> <block type="colour_blend"> <value name="COLOUR1"> <shadow type="colour_picker"> <field name="COLOUR">#ff0000</field> </shadow> </value> <value name="COLOUR2"> <shadow type="colour_picker"> <field name="COLOUR">#3333ff</field> </shadow> </value> <value name="RATIO"> <shadow type="math_number"> <field name="NUM">0.5</field> </shadow> </value> </block> </category> <sep></sep> <category name="%{BKY_CATVARIABLES}" colour="%{BKY_VARIABLES_HUE}" custom="VARIABLE"></category> <category name="%{BKY_CATFUNCTIONS}" colour="%{BKY_PROCEDURES_HUE}" custom="PROCEDURE"></category> </xml> </body> </html>
plugins/groovy/groovy-psi/resources/intentionDescriptions/GrAliasImportIntention/description.html
smmribeiro/intellij-community
<html> <body> Creates an aliased <code>import</code> for an element and suggests names for the created alias. </body> </html>
satchmo/apps/satchmo_ext/newsletter/templates/newsletter/unsubscribe_form.html
jordotech/sherri_satchmo
{% extends "shop/base.html" %}{% load url from future %} {% load i18n %} {% block navbar %} <li class="first"><a href="{{ shop_base }}/">{% trans "Home" %}</a></li> <li>{% trans "Newsletter Unsubscribe" %}</li> {% endblock %} {% block content %} <h3>{% trans "Newsletter Unsubscribe" %}</h3> {% if form.errors %} <h3>{% blocktrans count form.errors|length as count %}Please correct the following error:{% plural %}Please correct the following errors:{% endblocktrans %}</h3> {% endif %} <form method="post" action="{% url 'newsletter_unsubscribe' %}">{% csrf_token %} <table> <tr><td><label for="id_full_name">{% trans 'Your name' %}:</label></td><td>{{ form.full_name }}</td></tr> {% if form.full_name.errors %}<tr><td>&nbsp;</td><td>*** {{ form.full_name.errors|join:", " }}</td></tr>{% endif %} <tr><td><label for="id_email">{% trans 'Email address' %}:</label></td><td>{{ form.email }}</td></tr> {% if form.email.errors %}<tr><td>&nbsp;</td><td>*** {{ form.email.errors|join:", " }}</td></tr>{% endif %} <tr><td></td><td><input type="submit" value="{% trans "Remove Me" %}"/></td></tr> <input type="hidden" value="off" name="subscribed"/> </table> </form> <div style="clear:both;"/> {% endblock %}
cmd/facette/template/browse/collection.html
vovkasm/facette
{{ define "title" }}{{ .Collection.Name }} — Facette{{ end }} {{ define "head" }} <link rel="search" href="{{ .URLPrefix }}/browse/opensearch.xml" title="Add {{ .Request.Host }} search" type="application/opensearchdescription+xml"> <script src="{{ .URLPrefix }}{{ asset "/static/jquery.js" }}"></script> <script src="{{ .URLPrefix }}{{ asset "/static/jquery.datepicker.js" }}"></script> <script src="{{ .URLPrefix }}{{ asset "/static/i18next.js" }}"></script> <script src="{{ .URLPrefix }}{{ asset "/static/highcharts.js" }}"></script> <script src="{{ .URLPrefix }}{{ asset "/static/highcharts.exporting.js" }}"></script> <script src="{{ .URLPrefix }}{{ asset "/static/rgbcolor.js" }}"></script> <script src="{{ .URLPrefix }}{{ asset "/static/canvg.js" }}"></script> <script src="{{ .URLPrefix }}{{ asset "/static/moment.js" }}"></script> <script src="{{ .URLPrefix }}{{ asset "/static/sprintf.js" }}"></script> <script src="{{ .URLPrefix }}{{ asset "/static/facette.js" }}"></script> {{ end }} {{ define "content" }}{{ $prefix := .URLPrefix }}{{ $q := .Request.FormValue "q" }} <nav> <dl class="graphlist"> <dt>Graphs</dt>{{ if .Collection.Entries }}{{ if ne $q "" }} <dd><a href="{{ .URLPrefix }}{{ .Request.URL.Path }}"><span class="icon icon-remove"></span> Remove Filter</a></dd>{{ else }} <dd><a href="{{ .URLPrefix }}/browse/"><span class="icon icon-arrow-left"></span> Back to Collections</a></dd>{{ end }}{{ range $index, $entry := .Collection.Entries }} <dd><a href="#graph-{{ $index }}" title="{{ $entry.Options.title }}">{{ $entry.Options.title }}</a></dd>{{ end }}{{ else }} <dd><a href="{{ .URLPrefix }}/browse/"><span class="icon icon-arrow-left"></span> Back to Collections</a></dd> <dd class="placeholder icon icon-info">No graph</dd>{{ end }} </dl> </nav> <article data-pane="collection-show" data-paneopts="id: {{ .Collection.ID }}"> <header> <h1>{{ .Collection.Name }}</h1> <nav> <ul>{{ if not .ReadOnly }} <li><a class="icon icon-edit" href="#edit-collection" title="Edit Collection"></a></li>{{ end }} <li> <a class="icon icon-time" href="#set-global-range" title="Set Time Range"></a> <div class="menu"> <div class="menucntr"> <div class="menuitem"><a href="#range-1h">1h</a></div> <div class="menuitem"><a href="#range-3h">3h</a></div> <div class="menuitem"><a href="#range-1d">1d</a></div> <div class="menuitem"><a href="#range-7d">7d</a></div> <div class="menuitem"><a href="#range-1mo">1mo</a></div> <div class="menuitem"><a href="#range-1y">1y</a></div> <div class="menuitem"><a href="#range-custom">Custom…</a></div> </div> </div> </li> <li><a class="icon icon-refresh" href="#set-global-refresh" title="Set Refresh Interval"></a></li> <li><a class="icon icon-print" href="#print" title="Print Page"></a></li> </ul> </nav> <form action="{{ .URLPrefix }}{{ .Request.URL.Path }}" method="get"> <div class="filter icon icon-search"> <input name="q" placeholder="Search for Graph" type="text" value="{{ $q }}"> </div> </form> <div class="right"> <a class="icon icon-toggle-off" href="#toggle-legends"> Toggle Legends</a> </div> </header> <section class="scrollarea full">{{ if .Collection.Entries }}{{ template "template_graph" }}{{ range $index, $value := .Collection.Entries }} <div data-graph="{{ $value.ID }}" data-graphopts="{{ dump $value.Options }}" id="graph-{{ $index }}"></div>{{ end }}{{ else if .Collection.Children }} <h1>Sub-Collections</h1> <ul>{{ range $index, $value := .Collection.Children }} <li><a href="{{ $prefix }}/browse/collections/{{ $value.ID }}">{{ $value.Name }}</a></li>{{ end }} </ul>{{ else if eq $q "" }} <div class="mesgitem info">The collection is empty</div>{{ else }} <div class="mesgitem warning">Your search doesn’t match any graph <a href="{{ .Request.URL.Path }}">Reset</a></div>{{ end }} </section> </article> {{ end }}
chrome/browser/resources/support_tool/support_tool.html
chromium/chromium
<!-- Copyright 2021 The Chromium Authors. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> <style include="md-select cr-input-style"> .entry-view { margin-inline-start: 40px; } h2 { color: var(--cr-text-color-primary); font-size: 20px; font-weight: normal; margin-bottom: 18px; margin-top: 72px; } .support-tool-title { color: var(--cr-title-text-color); font-size: 14px; margin-bottom: 10px; margin-top: 10px; } #support-case-id { height: 32px; width: 248px; } .md-select { height: 32px; margin-bottom: 30px; width: 248px; } #description { /*TODO(b/222669536): Style the description better when UX reviewer of mocks gives their input.*/ background-color: var(--cr-input-background-color); border: none; border-radius: var(--cr-input-border-radius, 4px); caret-color: var(--cr-input-focus-color); color: var(--cr-input-color); display: block; font-family: inherit; height: 120px; margin-top: 8px; outline: none; padding-bottom: 8px; padding-inline-start: 10px; padding-top: 8px; resize: none; width: 520px; } </style> <div class="entry-view"> <h2>Collect diagnostics data for support</h2> <div class="support-tool-title">Support Case ID</div> <cr-input id="support-case-id" value="{{caseId_}}" spellcheck="false" maxlength="20"> </cr-input> <div class="support-tool-title">Email</div> <select class="md-select" value="{{selectedEmail_::change}}"> <option value=""></option> <template is="dom-repeat" items="[[emails_]]"> <option value="[[item]]">[[item]]</option> </template> </select> <div class="support-tool-title">Describe the issue</div> <textarea id="description" value="{{issueDescription_::input}}" spellcheck="true" placeholder="Provide a clear desciption of the issue and steps to reproduce the issue (if possible)"> </textarea> </div>
src/carts/templates/carts/empty_cart.html
DiptoDas8/Biponi
<!-- MAKE SURE YOUR DATA IS ESCAPED --><div class='col-sm-6 col-sm-offset-3 text-center'><h1>Your cart is empty</h1><p>Continue Shopping</p></div>
node_modules/resolve-url-loader/tmp/1536277707/webpack3-sassloader6-sass4/postcss/selector-in-directive/default--development-without-url/main.9656cc26d31a2698ecbc0b7d130f915d.css
Qinjianbo/blog
@font-face { .some-class-name { src: url("./fonts/font.eot") format("embedded-opentype"), url("./fonts/font.ttf") format("truetype"), url(./fonts/font.woff) format(woff), url(./fonts/font.svg) format(svg); } } @media only screen { .another-class-name { single-quoted: url("./images/img.jpg"); double-quoted: url("./images/img.jpg"); unquoted: url(./images/img.jpg); query: url(./images/img.jpg); hash: url(./images/img.jpg); } } /*# sourceMappingURL=main.9656cc26d31a2698ecbc0b7d130f915d.css.map*/
deps/boost/libs/vmd/doc/html/variadic_macro_data/vmd_useful.html
vslavik/poedit
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Useful variadic macros not in Boost PP</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&#160;1.&#160;The Variadic Macro Data Library 1.9"> <link rel="up" href="../index.html" title="Chapter&#160;1.&#160;The Variadic Macro Data Library 1.9"> <link rel="prev" href="vmd_identifier_subtype.html" title="Identifier subtypes"> <link rel="next" href="vmd_useful/vmd_identity.html" title="Generating emptiness and identity"> </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="vmd_identifier_subtype.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="vmd_useful/vmd_identity.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="variadic_macro_data.vmd_useful"></a><a class="link" href="vmd_useful.html" title="Useful variadic macros not in Boost PP">Useful variadic macros not in Boost PP</a> </h2></div></div></div> <div class="toc"><dl class="toc"> <dt><span class="section"><a href="vmd_useful.html#variadic_macro_data.vmd_useful.vmd_assert">Asserting and data types</a></span></dt> <dt><span class="section"><a href="vmd_useful/vmd_identity.html">Generating emptiness and identity</a></span></dt> <dt><span class="section"><a href="vmd_useful/vmd_empty_ppdata.html">Functionality for "empty" seqs and tuples</a></span></dt> </dl></div> <p> Previous sections of this documentation have explained how VMD can be used to parse VMD data types, as well as recognize emptiness. </p> <p> Another area of functionality of VMD involves useful variadic macros, based on the previous functionality, which expands on similar macros already in Boost PP. These variadic macros can be divided into sections illustrating these areas of behavior: </p> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"> Expanded assertion macros </li> <li class="listitem"> Expanded identity functionality </li> <li class="listitem"> Expanded seq and tuple functionality for "empty" seqs and tuples </li> </ol></div> <p> Sub-sections for each of these now follow in the documentation. </p> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="variadic_macro_data.vmd_useful.vmd_assert"></a><a class="link" href="vmd_useful.html#variadic_macro_data.vmd_useful.vmd_assert" title="Asserting and data types">Asserting and data types</a> </h3></div></div></div> <p> The VMD macros for identifying data types work best when the macro logic can take different paths depending on the type of data being passed for a macro parameter. But occasionally the preprocessor metaprogrammer wants to simply verify that the macro parameter data is of the correct data type, else a preprocessing error should be generated to notify the programmer invoking the macro that the data passed is the incorrect type. </p> <h5> <a name="variadic_macro_data.vmd_useful.vmd_assert.h0"></a> <span class="phrase"><a name="variadic_macro_data.vmd_useful.vmd_assert.using_boost_vmd_assert"></a></span><a class="link" href="vmd_useful.html#variadic_macro_data.vmd_useful.vmd_assert.using_boost_vmd_assert">Using BOOST_VMD_ASSERT</a> </h5> <p> The Boost PP library has a macro which produces a preprocessing error when the condition passed to it is 0. This macro is called BOOST_PP_ASSERT. The macro produces a preprocessor error by forcing a call to an internal macro with the wrong number of arguments. According to the C++ standard this should always cause an immediate preprocessing error for conforming compilers. </p> <p> Unfortunately VC++ will only produce a warning when the wrong number of arguments are passed to a macro. Therefore the BOOST_PP_ASSERT macro does not produce a preprocessing error using VC++. Amazingly enough there appears to be no other way in which VC++ can be forced to issue a preprocessing error by invoking a macro ( if you find one please tell me about it ). However one can create invalid C++ as the output from a macro invocation which causes VC++ to produce a compiler error when the VC++ compiler later encounters the construct. </p> <p> This is what the macro BOOST_VMD_ASSERT does. It takes the same conditional argument as BOOST_PP_ASSERT and it calls BOOST_PP_ASSERT when not used with VC++, otherwise if the condition is 0 it generates a compiler error by generating invalid C++ when used with VC++. The compiler error is generated by producing invalid C++ whose form is: </p> <pre class="programlisting"><span class="keyword">typedef</span> <span class="keyword">char</span> <span class="identifier">BOOST_VMD_ASSERT_ERROR</span><span class="special">[-</span><span class="number">1</span><span class="special">];</span> </pre> <p> By passing a second optional argument, whose form is a preprocessing identifier, to BOOST_VMD_ASSERT you can generate the invalid C++ for VC++, if the first argument is 0, of the form: </p> <pre class="programlisting"><span class="keyword">typedef</span> <span class="keyword">char</span> <span class="identifier">optional_argument</span><span class="special">[-</span><span class="number">1</span><span class="special">];</span> </pre> <p> instead. This may give a little more clarity, if desired, to the C++ error generated. </p> <p> If the first conditional argument is not 0, BOOST_VMD_ASSERT produces no output. </p> <h5> <a name="variadic_macro_data.vmd_useful.vmd_assert.h1"></a> <span class="phrase"><a name="variadic_macro_data.vmd_useful.vmd_assert.boost_vmd_assert_usage"></a></span><a class="link" href="vmd_useful.html#variadic_macro_data.vmd_useful.vmd_assert.boost_vmd_assert_usage">BOOST_VMD_ASSERT Usage</a> </h5> <p> To use the BOOST_VMD_ASSERT macro either include the general header: </p> <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> </pre> <p> or include the specific header: </p> <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">/</span><span class="identifier">assert</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> </pre> <h5> <a name="variadic_macro_data.vmd_useful.vmd_assert.h2"></a> <span class="phrase"><a name="variadic_macro_data.vmd_useful.vmd_assert.assertions_for_data_types"></a></span><a class="link" href="vmd_useful.html#variadic_macro_data.vmd_useful.vmd_assert.assertions_for_data_types">Assertions for data types </a> </h5> <p> The data types have their own assertion macros. These are largely just shortcuts for passing the result of the identifying macros to BOOST_VMD_ASSERT. These assertion macros are: </p> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> emptiness, BOOST_VMD_ASSERT_IS_EMPTY </li> <li class="listitem"> identifier, BOOST_VMD_ASSERT_IS_IDENTIFIER </li> <li class="listitem"> number, BOOST_VMD_ASSERT_IS_NUMBER </li> <li class="listitem"> array, BOOST_VMD_ASSERT_IS_ARRAY </li> <li class="listitem"> list, BOOST_VMD_ASSERT_IS_LIST </li> <li class="listitem"> seq, BOOST_VMD_ASSERT_IS_SEQ </li> <li class="listitem"> tuple, BOOST_VMD_ASSERT_IS_TUPLE </li> <li class="listitem"> type, BOOST_VMD_ASSERT_IS_TYPE </li> </ul></div> <p> Each of these macros take as parameters the exact same argument as their corresponding identifying macros. But instead of returning non-zero or 0, each of these macros produce a compiler error if the type of the input is not correct. </p> <p> Each of these macros only check for its assertion when the macro BOOST_VMD_ASSERT_DATA is set to 1. By default BOOST_VMD_ASSERT_DATA is only set to 1 in compiler debug mode. The programmer can manually set BOOST_VMD_ASSERT_DATA to 1 prior to using one the data types assert macros if he wishes. </p> <h5> <a name="variadic_macro_data.vmd_useful.vmd_assert.h3"></a> <span class="phrase"><a name="variadic_macro_data.vmd_useful.vmd_assert.boost_vmd_assert_usage0"></a></span><a class="link" href="vmd_useful.html#variadic_macro_data.vmd_useful.vmd_assert.boost_vmd_assert_usage0">BOOST_VMD_ASSERT_... Usage</a> </h5> <p> To use the individual BOOST_VMD_ASSERT_... macros either include the general header: </p> <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> </pre> <p> or include the specific header: </p> <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">/</span><span class="identifier">assert_is_empty</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="comment">// BOOST_VMD_ASSERT_IS_EMPTY</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">/</span><span class="identifier">assert_is_identifier</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="comment">// BOOST_VMD_ASSERT_IS_IDENTIFIER</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">/</span><span class="identifier">assert_is_number</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="comment">// BOOST_VMD_ASSERT_IS_NUMBER</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">/</span><span class="identifier">assert_is_array</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="comment">// BOOST_VMD_ASSERT_IS_ARRAY</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">/</span><span class="identifier">assert_is_list</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="comment">// BOOST_VMD_ASSERT_IS_LIST</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">/</span><span class="identifier">assert_is_seq</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="comment">// BOOST_VMD_ASSERT_IS_SEQ</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">/</span><span class="identifier">assert_is_tuple</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="comment">// BOOST_VMD_ASSERT_IS_TUPLE</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">/</span><span class="identifier">assert_is_type</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="comment">// BOOST_VMD_ASSERT_IS_TYPE</span> </pre> <h5> <a name="variadic_macro_data.vmd_useful.vmd_assert.h4"></a> <span class="phrase"><a name="variadic_macro_data.vmd_useful.vmd_assert.assertions_and_vc"></a></span><a class="link" href="vmd_useful.html#variadic_macro_data.vmd_useful.vmd_assert.assertions_and_vc">Assertions and VC++ </a> </h5> <p> The VC++ compiler has a quirk when dealing with BOOST_VMD_ASSERT and the data type assert macros. If you invoke one of the assert macros within another macro which would normally generate output preprocessor tokens, it is necessary when using VC++ to concatenate the result of the assert macro to whatever other preprocessor data is being generated, even if the assert macro does not generate an error. </p> <p> As a simple example let us suppose we have a macro expecting a tuple and generating 1 if the tuple has more than 2 elements, otherwise it generates 0. Ordinarily we could write: </p> <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">preprocessor</span><span class="special">/</span><span class="identifier">comparison</span><span class="special">/</span><span class="identifier">greater</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">preprocessor</span><span class="special">/</span><span class="identifier">control</span><span class="special">/</span><span class="identifier">iif</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">preprocessor</span><span class="special">/</span><span class="identifier">tuple</span><span class="special">/</span><span class="identifier">size</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">/</span><span class="identifier">assert_is_tuple</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#define</span> <span class="identifier">AMACRO</span><span class="special">(</span><span class="identifier">atuple</span><span class="special">)</span> <span class="special">\</span> <span class="identifier">BOOST_VMD_ASSERT_IS_TUPLE</span><span class="special">(</span><span class="identifier">atuple</span><span class="special">)</span> <span class="special">\</span> <span class="identifier">BOOST_PP_IIF</span><span class="special">(</span><span class="identifier">BOOST_PP_GREATER</span><span class="special">(</span><span class="identifier">BOOST_PP_TUPLE_SIZE</span><span class="special">(</span><span class="identifier">atuple</span><span class="special">),</span> <span class="number">2</span><span class="special">),</span><span class="number">1</span><span class="special">,</span><span class="number">0</span><span class="special">)</span> </pre> <p> but for VC++ we must write </p> <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">preprocessor</span><span class="special">/</span><span class="identifier">cat</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">preprocessor</span><span class="special">/</span><span class="identifier">comparison</span><span class="special">/</span><span class="identifier">greater</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">preprocessor</span><span class="special">/</span><span class="identifier">control</span><span class="special">/</span><span class="identifier">iif</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">preprocessor</span><span class="special">/</span><span class="identifier">tuple</span><span class="special">/</span><span class="identifier">size</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">vmd</span><span class="special">/</span><span class="identifier">assert_is_tuple</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#define</span> <span class="identifier">AMACRO</span><span class="special">(</span><span class="identifier">atuple</span><span class="special">)</span> <span class="special">\</span> <span class="identifier">BOOST_PP_CAT</span> <span class="special">\</span> <span class="special">(</span> <span class="special">\</span> <span class="identifier">BOOST_VMD_ASSERT_IS_TUPLE</span><span class="special">(</span><span class="identifier">atuple</span><span class="special">),</span> <span class="special">\</span> <span class="identifier">BOOST_PP_IIF</span><span class="special">(</span><span class="identifier">BOOST_PP_GREATER</span><span class="special">(</span><span class="identifier">BOOST_PP_TUPLE_SIZE</span><span class="special">(</span><span class="identifier">atuple</span><span class="special">),</span> <span class="number">2</span><span class="special">),</span><span class="number">1</span><span class="special">,</span><span class="number">0</span><span class="special">)</span> <span class="special">\</span> <span class="special">)</span> </pre> <p> VC++ does not work correctly in the first instance, erroneously getting confused as far as compiler output is concerned. But by using BOOST_PP_CAT in the second condition VC++ will work correctly with VMD assertions. </p> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2010-2017 Tropic Software East Inc</div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="vmd_identifier_subtype.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="vmd_useful/vmd_identity.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
sdk/api_diff/16/changes/android.renderscript.RSTextureView.html
AzureZhao/android-developer-cn
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML style="overflow:auto;"> <HEAD> <meta name="generator" content="JDiff v1.1.0"> <!-- Generated by the JDiff Javadoc doclet --> <!-- (http://www.jdiff.org) --> <meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared."> <meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet"> <TITLE> android.renderscript.RSTextureView </TITLE> <link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" /> <link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" /> <noscript> <style type="text/css"> body{overflow:auto;} #body-content{position:relative; top:0;} #doc-content{overflow:visible;border-left:3px solid #666;} #side-nav{padding:0;} #side-nav .toggle-list ul {display:block;} #resize-packages-nav{border-bottom:3px solid #666;} </style> </noscript> <style type="text/css"> </style> </HEAD> <BODY> <!-- Start of nav bar --> <a name="top"></a> <div id="header" style="margin-bottom:0;padding-bottom:0;"> <div id="headerLeft"> <a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a> </div> <div id="headerRight"> <div id="headerLinks"> <!-- <img src="/assets/images/icon_world.jpg" alt="" /> --> <span class="text"> <!-- &nbsp;<a href="#">English</a> | --> <nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr> </span> </div> <div class="and-diff-id" style="margin-top:6px;margin-right:8px;"> <table class="diffspectable"> <tr> <td colspan="2" class="diffspechead">API Diff Specification</td> </tr> <tr> <td class="diffspec" style="padding-top:.25em">To Level:</td> <td class="diffvaluenew" style="padding-top:.25em">16</td> </tr> <tr> <td class="diffspec">From Level:</td> <td class="diffvalueold">15</td> </tr> <tr> <td class="diffspec">Generated</td> <td class="diffvalue">2012.07.16 10:58</td> </tr> </table> </div><!-- End and-diff-id --> <div class="and-diff-id" style="margin-right:8px;"> <table class="diffspectable"> <tr> <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a> </tr> </table> </div> <!-- End and-diff-id --> </div> <!-- End headerRight --> </div> <!-- End header --> <div id="body-content" xstyle="padding:12px;padding-right:18px;"> <div id="doc-content" style="position:relative;"> <div id="mainBodyFluid"> <H2> Class android.renderscript.<A HREF="../../../../reference/android/renderscript/RSTextureView.html" target="_top"><font size="+2"><code>RSTextureView</code></font></A> </H2> <p><b>Now deprecated</b>.<br> <a NAME="constructors"></a> <p> <a NAME="Changed"></a> <TABLE summary="Changed Constructors" WIDTH="100%"> <TR> <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD> </TH> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="android.renderscript.RSTextureView.ctor_changed(android.content.Context)"></A> <nobr><A HREF="../../../../reference/android/renderscript/RSTextureView.html#RSTextureView(android.content.Context)" target="_top"><code>RSTextureView</code></A>(<code>Context</code>) </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> <b>Now deprecated</b>.<br> </TD> <TD>&nbsp;</TD> </TR> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="android.renderscript.RSTextureView.ctor_changed(android.content.Context, android.util.AttributeSet)"></A> <nobr><A HREF="../../../../reference/android/renderscript/RSTextureView.html#RSTextureView(android.content.Context, android.util.AttributeSet)" target="_top"><code>RSTextureView</code></A>(<code>Context,</nobr> AttributeSet<nobr><nobr></code>) </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> <b>Now deprecated</b>.<br> </TD> <TD>&nbsp;</TD> </TR> </TABLE> &nbsp; <a NAME="methods"></a> <p> <a NAME="Changed"></a> <TABLE summary="Changed Methods" WIDTH="100%"> <TR> <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD> </TH> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="android.renderscript.RSTextureView.createRenderScriptGL_changed(android.renderscript.RenderScriptGL.SurfaceConfig)"></A> <nobr><code>RenderScriptGL</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RSTextureView.html#createRenderScriptGL(android.renderscript.RenderScriptGL.SurfaceConfig)" target="_top"><code>createRenderScriptGL</code></A>(<code>SurfaceConfig</code>) </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> <b>Now deprecated</b>.<br> </TD> <TD>&nbsp;</TD> </TR> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="android.renderscript.RSTextureView.destroyRenderScriptGL_changed()"></A> <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RSTextureView.html#destroyRenderScriptGL()" target="_top"><code>destroyRenderScriptGL</code></A>() </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> <b>Now deprecated</b>.<br> </TD> <TD>&nbsp;</TD> </TR> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="android.renderscript.RSTextureView.getRenderScriptGL_changed()"></A> <nobr><code>RenderScriptGL</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RSTextureView.html#getRenderScriptGL()" target="_top"><code>getRenderScriptGL</code></A>() </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> <b>Now deprecated</b>.<br> </TD> <TD>&nbsp;</TD> </TR> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="android.renderscript.RSTextureView.onSurfaceTextureAvailable_changed(android.graphics.SurfaceTexture, int, int)"></A> <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RSTextureView.html#onSurfaceTextureAvailable(android.graphics.SurfaceTexture, int, int)" target="_top"><code>onSurfaceTextureAvailable</code></A>(<code>SurfaceTexture,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>) </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> <b>Now deprecated</b>.<br> </TD> <TD>&nbsp;</TD> </TR> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="android.renderscript.RSTextureView.onSurfaceTextureDestroyed_changed(android.graphics.SurfaceTexture)"></A> <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RSTextureView.html#onSurfaceTextureDestroyed(android.graphics.SurfaceTexture)" target="_top"><code>onSurfaceTextureDestroyed</code></A>(<code>SurfaceTexture</code>) </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> <b>Now deprecated</b>.<br> </TD> <TD>&nbsp;</TD> </TR> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="android.renderscript.RSTextureView.onSurfaceTextureSizeChanged_changed(android.graphics.SurfaceTexture, int, int)"></A> <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RSTextureView.html#onSurfaceTextureSizeChanged(android.graphics.SurfaceTexture, int, int)" target="_top"><code>onSurfaceTextureSizeChanged</code></A>(<code>SurfaceTexture,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>) </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> <b>Now deprecated</b>.<br> </TD> <TD>&nbsp;</TD> </TR> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="android.renderscript.RSTextureView.onSurfaceTextureUpdated_changed(android.graphics.SurfaceTexture)"></A> <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RSTextureView.html#onSurfaceTextureUpdated(android.graphics.SurfaceTexture)" target="_top"><code>onSurfaceTextureUpdated</code></A>(<code>SurfaceTexture</code>) </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> <b>Now deprecated</b>.<br> </TD> <TD>&nbsp;</TD> </TR> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="android.renderscript.RSTextureView.pause_changed()"></A> <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RSTextureView.html#pause()" target="_top"><code>pause</code></A>() </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> <b>Now deprecated</b>.<br> </TD> <TD>&nbsp;</TD> </TR> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="android.renderscript.RSTextureView.resume_changed()"></A> <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RSTextureView.html#resume()" target="_top"><code>resume</code></A>() </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> <b>Now deprecated</b>.<br> </TD> <TD>&nbsp;</TD> </TR> <TR BGCOLOR="#FFFFFF" CLASS="TableRowColor"> <TD VALIGN="TOP" WIDTH="25%"> <A NAME="android.renderscript.RSTextureView.setRenderScriptGL_changed(android.renderscript.RenderScriptGL)"></A> <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/renderscript/RSTextureView.html#setRenderScriptGL(android.renderscript.RenderScriptGL)" target="_top"><code>setRenderScriptGL</code></A>(<code>RenderScriptGL</code>) </nobr> </TD> <TD VALIGN="TOP" WIDTH="30%"> <b>Now deprecated</b>.<br> </TD> <TD>&nbsp;</TD> </TR> </TABLE> &nbsp; <a NAME="fields"></a> </div> <div id="footer"> <div id="copyright"> Except as noted, this content is licensed under <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>. For details and restrictions, see the <a href="/license.html">Content License</a>. </div> <div id="footerlinks"> <p> <a href="http://www.android.com/terms.html">Site Terms of Service</a> - <a href="http://www.android.com/privacy.html">Privacy Policy</a> - <a href="http://www.android.com/branding.html">Brand Guidelines</a> </p> </div> </div> <!-- end footer --> </div><!-- end doc-content --> </div> <!-- end body-content --> <script src="//www.google-analytics.com/ga.js" type="text/javascript"> </script> <script type="text/javascript"> try { var pageTracker = _gat._getTracker("UA-5831155-1"); pageTracker._setAllowAnchor(true); pageTracker._initData(); pageTracker._trackPageview(); } catch(e) {} </script> </BODY> </HTML>
tests/unit/path/index.html
ereddate/jquery-mobile
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>jQuery Mobile Navigate Path Helpers Test Suite</title> <script src="../../../external/requirejs/require.js"></script> <script src="../../../js/requirejs.config.js"></script> <script src="../../../js/jquery.tag.inserter.js"></script> <script src="../../jquery.setNameSpace.js"></script> <script src="../../../tests/jquery.testHelper.js"></script> <script src="../../../external/qunit.js"></script> <link rel="stylesheet" href="../../../../external/qunit.css"/> <!-- Because our reloading code reloads our AMD modules but now tests are running against the built bundle, we need to include the define shim in order for the reload to work --> <script src="../../../js/jquery.mobile.define.js"></script> <script src="../../../js/"></script> <script type="text/javascript" src="path_core.js"></script> <script src="../../swarminject.js"></script> </head> <body> <div id="qunit"></div> <div data-nstest-role="page"></div> </body> </html>