path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
src/templates/admin/cms/nav.html
BirkbeckCTP/janeway
{% extends "admin/core/base.html" %} {% load markdown_deux_tags %} {% load static from staticfiles %} {% load foundation %} {% get_current_language as LANGUAGE_CODE %} {% get_language_info for LANGUAGE_CODE as language_info %} {% block admin-header %}Edit Navigation{% endblock %} {% block breadcrumbs %} {{ block.super }} <li><a href="{% url 'core_manager_index' %}">Manager</a></li> <li><a href="{% url 'cms_index' %}">Content Manager</a></li> <li>Edit Navigation</li> {% endblock %} {% block body %} <div class="large-6 columns"> <div class="box"> {% include "admin/elements/translations/form_tabs.html" with object=nav_item_to_edit %} <form method="POST"> {% csrf_token %} <div class="title-area"> <h2>{% if form.instance.pk %}Currently Editing {{ form.instance.link_name }}{% else %}Create New Nav Item{% endif %}</h2> {% if form.instance %}<a href="{% url 'cms_nav' %}" class="button"><span class="fa fa-plus"></span> Add a New Nav Item</a>{% endif %} </div> <div class="content"> <small> <strong><p><i class="fa fa-info-circle"></i> Help for internal navigation items:</p></strong> <ul> <li>If you are linking to a custom CMS page, prefix the link with {% if request.journal and not request.journal.domain %}/{{ request.journal.code }}{% endif %}/site/</li> <li>Add the URL Name of the page eg. about</li> <li>An example for linking to a CMS page with the name 'about': {% if request.journal and not request.journal.domain %}/{{ request.journal.code }}{% endif %}/site/about/</li> <li>Link Name is the text that will appear in the nav bar. eg. 'About' or 'Research Integrity'</li> <li>For top level nav items that should behave as a button to enable the dropdown but but not lonk to a page, leave the Link field empty.</li> </ul> </small> {% include "admin/elements/forms/errors.html" %} {{ form|foundation }} <button type="submit" name="edit_nav" class="success button"> {% if form.instance.pk %}Update{% else %}Create{% endif %} </button> </div> </form> </div> </div> <div class="large-6 columns"> <div class="box"> <p>Your custom navigation currently looks like this: </p> {% include "elements/cms_nav.html" %} </div> </div> {% endblock body %}
templates/space/planetview/planetview.html
piotrmaslanka/bellum
# -*- coding: utf-8 -*- <%inherit file="/base/base.html" /> <%def name="caption()">planeta</%def> <%def name="head()" > <script type="text/javascript" src="/media/js/countdown.js" ></script> <script type="text/javascript" src="/media/ajax/baseajax.js" ></script> <script type="text/javascript" src="/media/ajax/province_radar.js" ></script> <script type="text/javascript" src="/media/ajax/province_build.js"></script> <script type="text/javascript" src="/media/ajax/planetview.js" ></script> <script type="text/javascript" src="/media/js/scripts/script.js"></script> <link rel="stylesheet" type="text/css" href="/media/css/planetview.css"> <link rel="stylesheet" type="text/css" href="/media/js/scripts/style.css"> <script type="text/javascript">var currentProvinceId = ${firstprovince.id}; var preload = new Image(); preload.src = '/media/gfx/planetview/hl_scan.gif'; </script> </%def> <%def name="body()" > <% from django.utils.html import escape %> <% from bellum.common.utils import humanize__convertSeconds %> <div class="spacer10"></div> <div style="position: relative;"> <!-- world map anchor --> <div id="planet_map_bg"> <div id="nrpos"> % for p in planet.province_set.all(): <a style="top: ${wctg(p.y)-19}px; left: ${wctg(p.x)-19}px;" class="nrimg" href="javascript:switch_province(${p.id}, ${p.planet_count_number})"> % if postprocessed[p.id][1]: <img alt="Province ${p.planet_count_number+1}" id="psimg${p.planet_count_number}" src="/media/planet_images/${postprocessed[p.id][0]}${p.planet_count_number+1}h.png"> <script type="text/javascript">var currentPcId = ${p.planet_count_number};</script> % else: <img alt="Province ${p.planet_count_number+1}" id="psimg${p.planet_count_number}" src="/media/planet_images/${postprocessed[p.id][0]}${p.planet_count_number+1}.png"> % endif </a> % endfor % if can_relocate: <img id="reloc_button" alt="Relokuj" class="reloc_button" src="/media/gfx/planetview/rel.png" onmouseover="gmbHighlight(this); tooltip.show('Relokuj<br>Zajmie to ${humanize__convertSeconds(relocation_time)}');" onmouseout="gmbUnhighlight(this); tooltip.hide();" onclick="relocate(${planet.id})"> % endif % if can_scan: <img id="scan_button" alt="Skanuj" class="scan_button" src="/media/gfx/planetview/scan.png" onclick="scanner(currentProvinceId)" onmouseover="tooltip.show('Skanuj prowincję')" onmouseout="tooltip.hide()"> % endif <img id="map_button" alt="Do mapy" class="map_button" src="/media/gfx/planetview/map.png" onclick="window.location='/space/regionmap/${planet.id}/'" onmouseover="tooltip.show('Idź do mapy'); gmbHighlight(this)" onmouseout="tooltip.hide(); gmbUnhighlight(this);"> <img alt="Planet graph overview" src="/media/planet_images/${planet.id}.png"> </div> </div> </div> <div id="province_specific_contents"> ${htmldata} </div> </%def>
jwt/jwt.html
ResearchComputing/noadmin-nodes
<script type="text/x-red" data-template-name="jwt-secret"> <!-- data-template-name identifies the node type this is for --> <!-- Each of the following divs creates a field in the edit dialog. --> <!-- Generally, there should be an input for each property of the node. --> <!-- The for and id attributes identify the corresponding property --> <!-- (with the 'node-input-' prefix). --> <!-- The available icon classes are defined Twitter Bootstrap glyphicons --> <div class="form-row"> <label for="node-config-input-secret"><i class="fa fa-user-secret"></i> Secret</label> <input type="text" id="node-config-input-secret" placeholder="secret"> </div> </script> <!-- Next, some simple help text is provided for the node. --> <script type="text/x-red" data-help-name="jwt-secret"> <!-- data-help-name identifies the node type this help is for --> <!-- This content appears in the Info sidebar when a node is selected --> <!-- The first <p> is used as the pop-up tool tip when hovering over a --> <!-- node in the palette. </script> <!-- Finally, the node type is registered along with all of its properties --> <!-- The example below shows a small subset of the properties that can be set--> <script type="text/javascript"> RED.nodes.registerType('jwt-secret',{ category: 'config', defaults: { secret: {value:"",required: true} }, credentials: { secret: {type: "text"} }, label: function() { return this.secret; } }); </script> <script type="text/x-red" data-template-name="jwt-sign"> <!-- data-template-name identifies the node type this is for --> <!-- Each of the following divs creates a field in the edit dialog. --> <!-- Generally, there should be an input for each property of the node. --> <!-- The for and id attributes identify the corresponding property --> <!-- (with the 'node-input-' prefix). --> <!-- The available icon classes are defined Twitter Bootstrap glyphicons --> <div class="form-row"> <label for="node-input-jwtSecret"><i class="fa fa-user-secret"></i> Set JWT Secret...</label> <input type="text" id="node-input-jwtSecret"> </div> <br/> <!-- By convention, most nodes have a 'name' property. The following div --> <!-- provides the necessary field. Should always be the last option --> <div class="form-row"> <label for="node-input-name"><i class="fa fa-tag"></i> Name</label> <input type="text" id="node-input-name" placeholder="Name"> </div> </script> <!-- Next, some simple help text is provided for the node. --> <script type="text/x-red" data-help-name="jwt-sign"> <!-- data-help-name identifies the node type this help is for --> <!-- This content appears in the Info sidebar when a node is selected --> <!-- The first <p> is used as the pop-up tool tip when hovering over a --> <!-- node in the palette. --> <p>Creates and signs a JSON Web Token for user authentication.</p> <p>Takes a username provided in <b>msg.user</b> and produces a signed JSON Web Token which is stored in <b>msg.jwtToken</b>. <i>jwt-sign</i> and <i>jwt-verify</i> both require that a common server secret be configured.</p> </script> <!-- Finally, the node type is registered along with all of its properties --> <!-- The example below shows a small subset of the properties that can be set--> <script type="text/javascript"> RED.nodes.registerType('jwt-sign',{ category: 'auth', // the palette category color: "#3FADB5", icon: "hash.png", defaults: { // defines the editable properties of the node jwtSecret: {type:"jwt-secret",required:true}, name: {value:""} // along with default values. }, inputs:1, // set the number of inputs - only 0 or 1 outputs:1, // set the number of outputs - 0 to n // set the icon (held in icons dir below where you save the node) // icon: "myicon.png", // saved in icons/myicon.png label: function() { // sets the default label contents return this.name||"jwt-sign"; }, labelStyle: function() { // sets the class to apply to the label return this.name?"node_label_italic":""; } }); </script> <script type="text/x-red" data-template-name="jwt-verify"> <!-- data-template-name identifies the node type this is for --> <!-- Each of the following divs creates a field in the edit dialog. --> <!-- Generally, there should be an input for each property of the node. --> <!-- The for and id attributes identify the corresponding property --> <!-- (with the 'node-input-' prefix). --> <!-- The available icon classes are defined Twitter Bootstrap glyphicons --> <div class="form-row"> <label for="node-input-jwtSecret"><i class="fa fa-user-secret"></i> Set JWT Secret...</label> <input type="text" id="node-input-jwtSecret"> </div> <br/> <!-- By convention, most nodes have a 'name' property. The following div --> <!-- provides the necessary field. Should always be the last option --> <div class="form-row"> <label for="node-input-name"><i class="fa fa-tag"></i> Name</label> <input type="text" id="node-input-name" placeholder="Name"> </div> </script> <!-- Next, some simple help text is provided for the node. --> <script type="text/x-red" data-help-name="jwt-verify"> <!-- data-help-name identifies the node type this help is for --> <!-- This content appears in the Info sidebar when a node is selected --> <!-- The first <p> is used as the pop-up tool tip when hovering over a --> <!-- node in the palette. --> <p>Verifies a JSON Web Token produced by jwt-sign.</p> <p>Takes a token provided in <b>msg.jwtToken</b> and verifies its signature. If verification is successful, the decoded user is stored in <b>msg.user</b>. Otherwise, <b>msg.user</b> will be <i>undefined</i>. <i>jwt-sign</i> and <i>jwt-verify</i> both require that a common server secret be configured.</p> </script> <!-- Finally, the node type is registered along with all of its properties --> <!-- The example below shows a small subset of the properties that can be set--> <script type="text/javascript"> RED.nodes.registerType('jwt-verify',{ category: 'auth', // the palette category color: "#3FADB5", icon: "hash.png", defaults: { // defines the editable properties of the node jwtSecret: {type:"jwt-secret",required:true}, name: {value:""} // along with default values. }, inputs:1, // set the number of inputs - only 0 or 1 outputs:1, // set the number of outputs - 0 to n // set the icon (held in icons dir below where you save the node) // icon: "myicon.png", // saved in icons/myicon.png label: function() { // sets the default label contents return this.name||"jwt-verify"; }, labelStyle: function() { // sets the class to apply to the label return this.name?"node_label_italic":""; } }); </script>
web/fb-share/programa/ast/236.html
podemos-info/programa-electoral-podemos-26j
<!DOCTYPE html> <html lang="ast"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Podemos - Recuperación de los derechos llaborales nel sector públicu</title> <meta property="og:title" content="Podemos - Recuperación de los derechos llaborales nel sector públicu" /> <meta property="og:description" content="Vamos garantizar a los emplegaos y a les emplegaes públiques la recuperación del poder adquisitivu y de los derechos furtiaos nos últimos años en nome de l’austeridá. Vamos recuperar los derechos llaborales directamente relacionaos cola conciliación de la vida familiar, como’l réxime de permisos, vacaciones y los derechos de xubilación. Vamos revisar les pensiones del sector públicu contraíes nos últimos cuatro años, con unes bases de cotización menguaes." /> <meta property="og:image" content="http://lasonrisadeunpais.es/wp-content/plugins/programa/data/meta-programa.png" /> <meta property="og:image:type" content="image/png" /> <meta property="og:image:width" content="600" /> <meta property="og:image:height" content="315" /> </head> <body> <script type="text/javascript"> var url_base = '/ast/programa/?medida=236'; window.location = url_base; </script> <img src="http://lasonrisadeunpais.es/wp-content/plugins/programa/data/meta-programa.png" alt="Programa PODEMOS" /> <h1>Recuperación de los derechos llaborales nel sector públicu</h1> <div> <p>Vamos garantizar a los emplegaos y a les emplegaes públiques la recuperación del poder adquisitivu y de los derechos furtiaos nos últimos años en nome de l’austeridá.</p> <p>Vamos recuperar los derechos llaborales directamente relacionaos cola conciliación de la vida familiar, como’l réxime de permisos, vacaciones y los derechos de xubilación.</p> <p>Vamos revisar les pensiones del sector públicu contraíes nos últimos cuatro años, con unes bases de cotización menguaes.</p> </div> </body> </html>
apidocs/edu/iastate/ansci/flip/class-use/SummaryTrait.html
flipisu/FLIP
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_77) on Fri Jan 06 13:55:15 CLT 2017 --> <title>Uses of Class edu.iastate.ansci.flip.SummaryTrait</title> <meta name="date" content="2017-01-06"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class edu.iastate.ansci.flip.SummaryTrait"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../edu/iastate/ansci/flip/SummaryTrait.html" title="class in edu.iastate.ansci.flip">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?edu/iastate/ansci/flip/class-use/SummaryTrait.html" target="_top">Frames</a></li> <li><a href="SummaryTrait.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class edu.iastate.ansci.flip.SummaryTrait" class="title">Uses of Class<br>edu.iastate.ansci.flip.SummaryTrait</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../edu/iastate/ansci/flip/SummaryTrait.html" title="class in edu.iastate.ansci.flip">SummaryTrait</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#edu.iastate.ansci.flip">edu.iastate.ansci.flip</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="edu.iastate.ansci.flip"> <!-- --> </a> <h3>Uses of <a href="../../../../../edu/iastate/ansci/flip/SummaryTrait.html" title="class in edu.iastate.ansci.flip">SummaryTrait</a> in <a href="../../../../../edu/iastate/ansci/flip/package-summary.html">edu.iastate.ansci.flip</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../edu/iastate/ansci/flip/SummaryTrait.html" title="class in edu.iastate.ansci.flip">SummaryTrait</a> in <a href="../../../../../edu/iastate/ansci/flip/package-summary.html">edu.iastate.ansci.flip</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../edu/iastate/ansci/flip/SummaryBreed.html" title="class in edu.iastate.ansci.flip">SummaryBreed</a></span></code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../edu/iastate/ansci/flip/SummaryTrait.html" title="class in edu.iastate.ansci.flip">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?edu/iastate/ansci/flip/class-use/SummaryTrait.html" target="_top">Frames</a></li> <li><a href="SummaryTrait.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
Ephesoft_Community_Release_4.0.2.0/javadocs/com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html
ungerik/ephesoft
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_71) on Fri Jul 10 16:42:59 IST 2015 --> <title>ColumnExtractionRuleGridView</title> <meta name="date" content="2015-07-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="ColumnExtractionRuleGridView"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/ColumnExtractionRuleGridView.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev Class</li> <li><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleMenuView.html" title="class in com.ephesoft.gxt.admin.client.view.tablecolumnextraction"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html" target="_top">Frames</a></li> <li><a href="ColumnExtractionRuleGridView.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><a href="#nested_classes_inherited_from_class_com.google.gwt.user.client.ui.UIObject">Nested</a>&nbsp;|&nbsp;</li> <li><a href="#fields_inherited_from_class_com.google.gwt.user.client.ui.UIObject">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">com.ephesoft.gxt.admin.client.view.tablecolumnextraction</div> <h2 title="Class ColumnExtractionRuleGridView" class="title">Class ColumnExtractionRuleGridView</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>com.google.gwt.user.client.ui.UIObject</li> <li> <ul class="inheritance"> <li>com.google.gwt.user.client.ui.Widget</li> <li> <ul class="inheritance"> <li>com.google.gwt.user.client.ui.Composite</li> <li> <ul class="inheritance"> <li><a href="../../../../../../../com/ephesoft/gxt/core/client/View.html" title="class in com.ephesoft.gxt.core.client">com.ephesoft.gxt.core.client.View</a>&lt;P&gt;</li> <li> <ul class="inheritance"> <li><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/BatchClassInlineView.html" title="class in com.ephesoft.gxt.admin.client.view">com.ephesoft.gxt.admin.client.view.BatchClassInlineView</a>&lt;<a href="../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/ColumnExtractionRuleGridPresenter.html" title="class in com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction">ColumnExtractionRuleGridPresenter</a>&gt;</li> <li> <ul class="inheritance"> <li>com.ephesoft.gxt.admin.client.view.tablecolumnextraction.ColumnExtractionRuleGridView</li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd><a href="../../../../../../../com/ephesoft/gxt/core/client/ui/widget/HasResizableGrid.html" title="interface in com.ephesoft.gxt.core.client.ui.widget">HasResizableGrid</a>, com.google.gwt.event.logical.shared.HasAttachHandlers, com.google.gwt.event.shared.HasHandlers, com.google.gwt.user.client.EventListener, com.google.gwt.user.client.ui.HasVisibility, com.google.gwt.user.client.ui.IsRenderable, com.google.gwt.user.client.ui.IsWidget</dd> </dl> <hr> <br> <pre>public class <span class="strong">ColumnExtractionRuleGridView</span> extends <a href="../../../../../../../com/ephesoft/gxt/admin/client/view/BatchClassInlineView.html" title="class in com.ephesoft.gxt.admin.client.view">BatchClassInlineView</a>&lt;<a href="../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/ColumnExtractionRuleGridPresenter.html" title="class in com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction">ColumnExtractionRuleGridPresenter</a>&gt; implements <a href="../../../../../../../com/ephesoft/gxt/core/client/ui/widget/HasResizableGrid.html" title="interface in com.ephesoft.gxt.core.client.ui.widget">HasResizableGrid</a></pre> <div class="block">This View deals with Table Column Extraction Rule Grid.</div> <dl><dt><span class="strong">Version:</span></dt> <dd>1.0</dd> <dt><span class="strong">Author:</span></dt> <dd>Ephesoft</dd> <dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html" title="class in com.ephesoft.gxt.admin.client.view.tablecolumnextraction"><code>ColumnExtractionRuleGridView</code></a></dd></dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== NESTED CLASS SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="nested_class_summary"> <!-- --> </a> <h3>Nested Class Summary</h3> <ul class="blockList"> <li class="blockList"><a name="nested_classes_inherited_from_class_com.google.gwt.user.client.ui.UIObject"> <!-- --> </a> <h3>Nested classes/interfaces inherited from class&nbsp;com.google.gwt.user.client.ui.UIObject</h3> <code>com.google.gwt.user.client.ui.UIObject.DebugIdImpl, com.google.gwt.user.client.ui.UIObject.DebugIdImplEnabled</code></li> </ul> </li> </ul> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field_summary"> <!-- --> </a> <h3>Field Summary</h3> <ul class="blockList"> <li class="blockList"><a name="fields_inherited_from_class_com.google.gwt.user.client.ui.UIObject"> <!-- --> </a> <h3>Fields inherited from class&nbsp;com.google.gwt.user.client.ui.UIObject</h3> <code>DEBUG_ID_PREFIX</code></li> </ul> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#ColumnExtractionRuleGridView()">ColumnExtractionRuleGridView</a></strong>()</code> <div class="block">Instantiates a new table column extraction rule grid view.</div> </td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#actionForColumnCells()">actionForColumnCells</a></strong>()</code> <div class="block">Action for column combo.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#addColumnExtractionSelectionHandler(com.sencha.gxt.widget.core.client.grid.GridSelectionModel)">addColumnExtractionSelectionHandler</a></strong>(com.sencha.gxt.widget.core.client.grid.GridSelectionModel&lt;<a href="../../../../../../../com/ephesoft/gxt/core/shared/dto/TableColumnExtractionRuleDTO.html" title="class in com.ephesoft.gxt.core.shared.dto">TableColumnExtractionRuleDTO</a>&gt;&nbsp;selectionModel)</code> <div class="block">Adds the table column extraction rule selection handler.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#addNewItemInGrid(com.ephesoft.gxt.core.shared.dto.TableColumnExtractionRuleDTO)">addNewItemInGrid</a></strong>(<a href="../../../../../../../com/ephesoft/gxt/core/shared/dto/TableColumnExtractionRuleDTO.html" title="class in com.ephesoft.gxt.core.shared.dto">TableColumnExtractionRuleDTO</a>&nbsp;colRuleDTO)</code> <div class="block">Adds the new item in grid.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#commitChanges()">commitChanges</a></strong>()</code> <div class="block">Commit changes in grid.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../com/ephesoft/gxt/admin/client/widget/BatchClassManagementGrid.html" title="class in com.ephesoft.gxt.admin.client.widget">BatchClassManagementGrid</a>&lt;<a href="../../../../../../../com/ephesoft/gxt/core/shared/dto/TableColumnExtractionRuleDTO.html" title="class in com.ephesoft.gxt.core.shared.dto">TableColumnExtractionRuleDTO</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#getColExtrGrid()">getColExtrGrid</a></strong>()</code> <div class="block">Gets the column extraction grid.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../../com/ephesoft/gxt/core/client/ui/widget/Grid.html" title="class in com.ephesoft.gxt.core.client.ui.widget">Grid</a></code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#getGrid()">getGrid</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../com/ephesoft/gxt/core/client/ui/widget/PagingToolbar.html" title="class in com.ephesoft.gxt.core.client.ui.widget">PagingToolbar</a></code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#getPagingToolbar()">getPagingToolbar</a></strong>()</code> <div class="block">Gets the paging tool bar.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>java.util.List&lt;<a href="../../../../../../../com/ephesoft/gxt/core/shared/dto/TableColumnExtractionRuleDTO.html" title="class in com.ephesoft.gxt.core.shared.dto">TableColumnExtractionRuleDTO</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#getSelectedColExtrRules()">getSelectedColExtrRules</a></strong>()</code> <div class="block">Gets the selected table column extraction rule dtos.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#initialize()">initialize</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#isGridValidated()">isGridValidated</a></strong>()</code> <div class="block">Checks if is grid validated.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#loadGrid()">loadGrid</a></strong>()</code> <div class="block">load grid with table column extraction rule dtos.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#refresh()">refresh</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#reLoadGrid()">reLoadGrid</a></strong>()</code> <div class="block">Re load grid.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#removeItemsFromGrid(java.util.List)">removeItemsFromGrid</a></strong>(java.util.List&lt;<a href="../../../../../../../com/ephesoft/gxt/core/shared/dto/TableColumnExtractionRuleDTO.html" title="class in com.ephesoft.gxt.core.shared.dto">TableColumnExtractionRuleDTO</a>&gt;&nbsp;colRulesList)</code> <div class="block">Removes the items from grid.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html#setComponents(com.ephesoft.gxt.admin.client.view.regexbuilder.RegexBuilderView,%20com.ephesoft.gxt.admin.client.view.regexPool.RegexGroupSelectionGridView)">setComponents</a></strong>(<a href="../../../../../../../com/ephesoft/gxt/admin/client/view/regexbuilder/RegexBuilderView.html" title="class in com.ephesoft.gxt.admin.client.view.regexbuilder">RegexBuilderView</a>&nbsp;regexBuilderView, <a href="../../../../../../../com/ephesoft/gxt/admin/client/view/regexPool/RegexGroupSelectionGridView.html" title="class in com.ephesoft.gxt.admin.client.view.regexPool">RegexGroupSelectionGridView</a>&nbsp;regexGroupSelectionGridView)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_com.ephesoft.gxt.core.client.View"> <!-- --> </a> <h3>Methods inherited from class&nbsp;com.ephesoft.gxt.core.client.<a href="../../../../../../../com/ephesoft/gxt/core/client/View.html" title="class in com.ephesoft.gxt.core.client">View</a></h3> <code><a href="../../../../../../../com/ephesoft/gxt/core/client/View.html#getPresenter()">getPresenter</a>, <a href="../../../../../../../com/ephesoft/gxt/core/client/View.html#setPresenter(P)">setPresenter</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_com.google.gwt.user.client.ui.Composite"> <!-- --> </a> <h3>Methods inherited from class&nbsp;com.google.gwt.user.client.ui.Composite</h3> <code>claimElement, initializeClaimedElement, isAttached, onBrowserEvent, render, render</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_com.google.gwt.user.client.ui.Widget"> <!-- --> </a> <h3>Methods inherited from class&nbsp;com.google.gwt.user.client.ui.Widget</h3> <code>addAttachHandler, addBitlessDomHandler, addDomHandler, addHandler, asWidget, asWidgetOrNull, fireEvent, getLayoutData, getParent, removeFromParent, setLayoutData, sinkEvents, unsinkEvents</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_com.google.gwt.user.client.ui.UIObject"> <!-- --> </a> <h3>Methods inherited from class&nbsp;com.google.gwt.user.client.ui.UIObject</h3> <code>addStyleDependentName, addStyleName, ensureDebugId, ensureDebugId, getAbsoluteLeft, getAbsoluteTop, getElement, getOffsetHeight, getOffsetWidth, getStyleName, getStylePrimaryName, getTitle, isVisible, isVisible, removeStyleDependentName, removeStyleName, setHeight, setPixelSize, setSize, setStyleDependentName, setStyleName, setStyleName, setStylePrimaryName, setTitle, setVisible, setVisible, setWidth, sinkBitlessEvent, toString</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="ColumnExtractionRuleGridView()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>ColumnExtractionRuleGridView</h4> <pre>public&nbsp;ColumnExtractionRuleGridView()</pre> <div class="block">Instantiates a new table column extraction rule grid view.</div> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="initialize()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>initialize</h4> <pre>public&nbsp;void&nbsp;initialize()</pre> <dl> <dt><strong>Overrides:</strong></dt> <dd><code><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/BatchClassInlineView.html#initialize()">initialize</a></code>&nbsp;in class&nbsp;<code><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/BatchClassInlineView.html" title="class in com.ephesoft.gxt.admin.client.view">BatchClassInlineView</a>&lt;<a href="../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/ColumnExtractionRuleGridPresenter.html" title="class in com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction">ColumnExtractionRuleGridPresenter</a>&gt;</code></dd> </dl> </li> </ul> <a name="addColumnExtractionSelectionHandler(com.sencha.gxt.widget.core.client.grid.GridSelectionModel)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>addColumnExtractionSelectionHandler</h4> <pre>public&nbsp;void&nbsp;addColumnExtractionSelectionHandler(com.sencha.gxt.widget.core.client.grid.GridSelectionModel&lt;<a href="../../../../../../../com/ephesoft/gxt/core/shared/dto/TableColumnExtractionRuleDTO.html" title="class in com.ephesoft.gxt.core.shared.dto">TableColumnExtractionRuleDTO</a>&gt;&nbsp;selectionModel)</pre> <div class="block">Adds the table column extraction rule selection handler.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>selectionModel</code> - the selection model <code>{@link TableColumnExtractionRuleDTO}></code></dd></dl> </li> </ul> <a name="actionForColumnCells()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>actionForColumnCells</h4> <pre>public&nbsp;void&nbsp;actionForColumnCells()</pre> <div class="block">Action for column combo.</div> </li> </ul> <a name="loadGrid()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>loadGrid</h4> <pre>public&nbsp;void&nbsp;loadGrid()</pre> <div class="block">load grid with table column extraction rule dtos.</div> </li> </ul> <a name="getSelectedColExtrRules()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getSelectedColExtrRules</h4> <pre>public&nbsp;java.util.List&lt;<a href="../../../../../../../com/ephesoft/gxt/core/shared/dto/TableColumnExtractionRuleDTO.html" title="class in com.ephesoft.gxt.core.shared.dto">TableColumnExtractionRuleDTO</a>&gt;&nbsp;getSelectedColExtrRules()</pre> <div class="block">Gets the selected table column extraction rule dtos.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>the selected table column extraction rule dtos <code>{@link TableColumnExtractionRuleDTO}></code></dd></dl> </li> </ul> <a name="getPagingToolbar()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getPagingToolbar</h4> <pre>public&nbsp;<a href="../../../../../../../com/ephesoft/gxt/core/client/ui/widget/PagingToolbar.html" title="class in com.ephesoft.gxt.core.client.ui.widget">PagingToolbar</a>&nbsp;getPagingToolbar()</pre> <div class="block">Gets the paging tool bar.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>the paging tool bar <a href="../../../../../../../com/ephesoft/gxt/core/client/ui/widget/PagingToolbar.html" title="class in com.ephesoft.gxt.core.client.ui.widget"><code>PagingToolbar</code></a></dd></dl> </li> </ul> <a name="getGrid()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getGrid</h4> <pre>public&nbsp;<a href="../../../../../../../com/ephesoft/gxt/core/client/ui/widget/Grid.html" title="class in com.ephesoft.gxt.core.client.ui.widget">Grid</a>&nbsp;getGrid()</pre> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../../../com/ephesoft/gxt/core/client/ui/widget/HasResizableGrid.html#getGrid()">getGrid</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../../../com/ephesoft/gxt/core/client/ui/widget/HasResizableGrid.html" title="interface in com.ephesoft.gxt.core.client.ui.widget">HasResizableGrid</a></code></dd> </dl> </li> </ul> <a name="getColExtrGrid()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getColExtrGrid</h4> <pre>public&nbsp;<a href="../../../../../../../com/ephesoft/gxt/admin/client/widget/BatchClassManagementGrid.html" title="class in com.ephesoft.gxt.admin.client.widget">BatchClassManagementGrid</a>&lt;<a href="../../../../../../../com/ephesoft/gxt/core/shared/dto/TableColumnExtractionRuleDTO.html" title="class in com.ephesoft.gxt.core.shared.dto">TableColumnExtractionRuleDTO</a>&gt;&nbsp;getColExtrGrid()</pre> <div class="block">Gets the column extraction grid.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>the column extraction grid</dd></dl> </li> </ul> <a name="isGridValidated()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>isGridValidated</h4> <pre>public&nbsp;boolean&nbsp;isGridValidated()</pre> <div class="block">Checks if is grid validated.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>true, if is grid validated</dd></dl> </li> </ul> <a name="commitChanges()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>commitChanges</h4> <pre>public&nbsp;void&nbsp;commitChanges()</pre> <div class="block">Commit changes in grid.</div> </li> </ul> <a name="reLoadGrid()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>reLoadGrid</h4> <pre>public&nbsp;void&nbsp;reLoadGrid()</pre> <div class="block">Re load grid.</div> </li> </ul> <a name="addNewItemInGrid(com.ephesoft.gxt.core.shared.dto.TableColumnExtractionRuleDTO)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>addNewItemInGrid</h4> <pre>public&nbsp;void&nbsp;addNewItemInGrid(<a href="../../../../../../../com/ephesoft/gxt/core/shared/dto/TableColumnExtractionRuleDTO.html" title="class in com.ephesoft.gxt.core.shared.dto">TableColumnExtractionRuleDTO</a>&nbsp;colRuleDTO)</pre> <div class="block">Adds the new item in grid.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>colRuleDTO</code> - the table column extraction rule dto</dd></dl> </li> </ul> <a name="removeItemsFromGrid(java.util.List)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>removeItemsFromGrid</h4> <pre>public&nbsp;void&nbsp;removeItemsFromGrid(java.util.List&lt;<a href="../../../../../../../com/ephesoft/gxt/core/shared/dto/TableColumnExtractionRuleDTO.html" title="class in com.ephesoft.gxt.core.shared.dto">TableColumnExtractionRuleDTO</a>&gt;&nbsp;colRulesList)</pre> <div class="block">Removes the items from grid.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>colRulesList</code> - the table column extraction rules list</dd></dl> </li> </ul> <a name="refresh()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>refresh</h4> <pre>public&nbsp;void&nbsp;refresh()</pre> <dl> <dt><strong>Overrides:</strong></dt> <dd><code><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/BatchClassInlineView.html#refresh()">refresh</a></code>&nbsp;in class&nbsp;<code><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/BatchClassInlineView.html" title="class in com.ephesoft.gxt.admin.client.view">BatchClassInlineView</a>&lt;<a href="../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/ColumnExtractionRuleGridPresenter.html" title="class in com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction">ColumnExtractionRuleGridPresenter</a>&gt;</code></dd> </dl> </li> </ul> <a name="setComponents(com.ephesoft.gxt.admin.client.view.regexbuilder.RegexBuilderView, com.ephesoft.gxt.admin.client.view.regexPool.RegexGroupSelectionGridView)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>setComponents</h4> <pre>public&nbsp;void&nbsp;setComponents(<a href="../../../../../../../com/ephesoft/gxt/admin/client/view/regexbuilder/RegexBuilderView.html" title="class in com.ephesoft.gxt.admin.client.view.regexbuilder">RegexBuilderView</a>&nbsp;regexBuilderView, <a href="../../../../../../../com/ephesoft/gxt/admin/client/view/regexPool/RegexGroupSelectionGridView.html" title="class in com.ephesoft.gxt.admin.client.view.regexPool">RegexGroupSelectionGridView</a>&nbsp;regexGroupSelectionGridView)</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/ColumnExtractionRuleGridView.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev Class</li> <li><a href="../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleMenuView.html" title="class in com.ephesoft.gxt.admin.client.view.tablecolumnextraction"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?com/ephesoft/gxt/admin/client/view/tablecolumnextraction/ColumnExtractionRuleGridView.html" target="_top">Frames</a></li> <li><a href="ColumnExtractionRuleGridView.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><a href="#nested_classes_inherited_from_class_com.google.gwt.user.client.ui.UIObject">Nested</a>&nbsp;|&nbsp;</li> <li><a href="#fields_inherited_from_class_com.google.gwt.user.client.ui.UIObject">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
director/Server/1.1/doc/files/inc.classes.Config.class.html
pwarnimo/srvmon
<!DOCTYPE html> <html lang="en"> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/> <meta charset="utf-8"/> <title>API Documentation</title> <meta name="author" content=""/> <meta name="description" content=""/> <link href="../css/bootstrap-combined.no-icons.min.css" rel="stylesheet"> <link href="../css/font-awesome.min.css" rel="stylesheet"> <link href="../css/prism.css" rel="stylesheet" media="all"/> <link href="../css/template.css" rel="stylesheet" media="all"/> <!--[if lt IE 9]> <script src="../js/html5.js"></script> <![endif]--> <script src="../js/jquery-1.11.0.min.js"></script> <script src="../js/ui/1.10.4/jquery-ui.min.js"></script> <script src="../js/bootstrap.min.js"></script> <script src="../js/jquery.smooth-scroll.js"></script> <script src="../js/prism.min.js"></script> <!-- TODO: Add http://jscrollpane.kelvinluck.com/ to style the scrollbars for browsers not using webkit--> <script type="text/javascript"> function loadExternalCodeSnippets() { Array.prototype.slice.call(document.querySelectorAll('pre[data-src]')).forEach(function (pre) { var src = pre.getAttribute('data-src'); var extension = (src.match(/\.(\w+)$/) || [, ''])[1]; var language = 'php'; var code = document.createElement('code'); code.className = 'language-' + language; pre.textContent = ''; code.textContent = 'Loading…'; pre.appendChild(code); var xhr = new XMLHttpRequest(); xhr.open('GET', src, true); xhr.onreadystatechange = function () { if (xhr.readyState == 4) { if (xhr.status < 400 && xhr.responseText) { code.textContent = xhr.responseText; Prism.highlightElement(code); } else if (xhr.status >= 400) { code.textContent = '✖ Error ' + xhr.status + ' while fetching file: ' + xhr.statusText; } else { code.textContent = '✖ Error: File does not exist or is empty'; } } }; xhr.send(null); }); } $(document).ready(function(){ loadExternalCodeSnippets(); }); $('#source-view').on('shown', function () { loadExternalCodeSnippets(); }) </script> <link rel="shortcut icon" href="../images/favicon.ico"/> <link rel="apple-touch-icon" href="../images/apple-touch-icon.png"/> <link rel="apple-touch-icon" sizes="72x72" href="../images/apple-touch-icon-72x72.png"/> <link rel="apple-touch-icon" sizes="114x114" href="../images/apple-touch-icon-114x114.png"/> </head> <body> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <i class="icon-ellipsis-vertical"></i> </a> <a class="brand" href="../index.html">API Documentation</a> <div class="nav-collapse"> <ul class="nav pull-right"> <li class="dropdown" id="charts-menu"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> Charts <b class="caret"></b> </a> <ul class="dropdown-menu"> <li> <a href="../graphs/class.html"> <i class="icon-list-alt"></i>&#160;Class hierarchy diagram </a> </li> </ul> </li> <li class="dropdown" id="reports-menu"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> Reports <b class="caret"></b> </a> <ul class="dropdown-menu"> <li> <a href="../reports/errors.html"> <i class="icon-list-alt"></i>&#160;Errors <span class="label label-info pull-right">9</span> </a> </li> <li> <a href="../reports/markers.html"> <i class="icon-list-alt"></i>&#160;Markers <span class="label label-info pull-right">0</span> </a> </li> <li> <a href="../reports/deprecated.html"> <i class="icon-list-alt"></i>&#160;Deprecated <span class="label label-info pull-right">0</span> </a> </li> </ul> </li> </ul> </div> </div> </div> <!--<div class="go_to_top">--> <!--<a href="#___" style="color: inherit">Back to top&#160;&#160;<i class="icon-upload icon-white"></i></a>--> <!--</div>--> </div> <div id="___" class="container-fluid"> <section class="row-fluid"> <div class="span2 sidebar"> <div class="accordion" style="margin-bottom: 0"> <div class="accordion-group"> <div class="accordion-heading"> <a class="accordion-toggle " data-toggle="collapse" data-target="#namespace-2104797132"></a> <a href="../namespaces/default.html" style="margin-left: 30px; padding-left: 0">\</a> </div> <div id="namespace-2104797132" class="accordion-body collapse in"> <div class="accordion-inner"> <ul> <li class="class"><a href="../classes/Config.html">Config</a></li> <li class="class"><a href="../classes/DB.html">DB</a></li> <li class="class"><a href="../classes/Encryptor.html">Encryptor</a></li> <li class="class"><a href="../classes/Hash.html">Hash</a></li> <li class="class"><a href="../classes/User.html">User</a></li> <li class="class"><a href="../classes/XML.html">XML</a></li> </ul> </div> </div> </div> </div> </div> </section> <section class="row-fluid"> <div class="span10 offset2"> <div class="row-fluid"> <div class="span8 content file"> <nav> </nav> <a href="#source-view" role="button" class="pull-right btn" data-toggle="modal"><i class="icon-code"></i></a> <h1><small>inc/classes</small>Config.class.php</h1> <p><em></em></p> <h2>Classes</h2> <table class="table table-hover"> <tr> <td><a href="../classes/Config.html">Config</a></td> <td><em>Configuration class.</em></td> </tr> </table> </div> <aside class="span4 detailsbar"> <dl> <dt>Package</dt> <dd><div class="namespace-wrapper">\Default</div></dd> </dl> <h2>Tags</h2> <table class="table table-condensed"> <tr><td colspan="2"><em>None found</em></td></tr> </table> </aside> </div> </div> </section> <div id="source-view" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="source-view-label" aria-hidden="true"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h3 id="source-view-label"></h3> </div> <div class="modal-body"> <pre data-src="../files/inc/classes/Config.class.php.txt" class="language-php line-numbers"></pre> </div> </div> <footer class="row-fluid"> <section class="span10 offset2"> <section class="row-fluid"> <section class="span10 offset1"> <section class="row-fluid footer-sections"> <section class="span4"> <h1><i class="icon-code"></i></h1> <div> <ul> </ul> </div> </section> <section class="span4"> <h1><i class="icon-bar-chart"></i></h1> <div> <ul> <li><a href="../graphs/class.html">Class Hierarchy Diagram</a></li> </ul> </div> </section> <section class="span4"> <h1><i class="icon-pushpin"></i></h1> <div> <ul> <li><a href="../reports/errors.html">Errors</a></li> <li><a href="../reports/markers.html">Markers</a></li> </ul> </div> </section> </section> </section> </section> <section class="row-fluid"> <section class="span10 offset1"> <hr /> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor </a> and authored on July 24th, 2015 at 09:18. </section> </section> </section> </footer> </div> </body> </html>
Ephesoft_Community_Release_4.0.2.0/javadocs/com/ephesoft/dcma/cleanup/service/package-use.html
ungerik/ephesoft
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_71) on Fri Jul 10 16:43:27 IST 2015 --> <title>Uses of Package com.ephesoft.dcma.cleanup.service</title> <meta name="date" content="2015-07-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="Uses of Package com.ephesoft.dcma.cleanup.service"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/ephesoft/dcma/cleanup/service/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package com.ephesoft.dcma.cleanup.service" class="title">Uses of Package<br>com.ephesoft.dcma.cleanup.service</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../com/ephesoft/dcma/cleanup/service/package-summary.html">com.ephesoft.dcma.cleanup.service</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#com.ephesoft.dcma.cleanup.service">com.ephesoft.dcma.cleanup.service</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="com.ephesoft.dcma.cleanup.service"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../com/ephesoft/dcma/cleanup/service/package-summary.html">com.ephesoft.dcma.cleanup.service</a> used by <a href="../../../../../com/ephesoft/dcma/cleanup/service/package-summary.html">com.ephesoft.dcma.cleanup.service</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../com/ephesoft/dcma/cleanup/service/class-use/CleanupService.html#com.ephesoft.dcma.cleanup.service">CleanupService</a> <div class="block">This service is used to delete the system files and unc folder data when the batch status is finished.</div> </td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/ephesoft/dcma/cleanup/service/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
templates/create-profile.html
lugkhast/forever-alone-gae
<!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="css/styles.css"/> <link rel="stylesheet" type="text/css" href="css/table.css"/> <link rel="stylesheet" type="text/css" href="css/message-boxes.css"/> <link rel="stylesheet" type="text/css" href="css/create-profile-page.css"/> <link rel="stylesheet" type="text/css" href="css/clicklist.css"/> <script src="scripts/libs/jquery.js" type="text/javascript"></script> <script src="scripts/libs/json2.js" type="text/javascript"></script> <script src="scripts/linkedlist.js" type="text/javascript"></script> <script src="scripts/clicklist.js" type="text/javascript"></script> <script src="scripts/profile-creation/profile-creation.js" type="text/javascript"></script> <script src="scripts/profile-creation/uni-search.js" type="text/javascript"></script> <title>Create Profile - Forever Alone</title> </head> <body> <!-- header --> <div class="header"> <div id="apptitle"> <b>Forever Alone</b> &nbsp;|&nbsp;&nbsp; <b>Getting Started</b> </div> <div id="signin"> {% if userName %} <b>{{ userName }}</b> | {% endif %} <a href="{{ url }}">{{ urlText }}</a> </div> </div> <br clear="both"> <hr> <div class="body"> <h1>O HAI!</h1> Forever Alone needs some information about you to make intelligent decisions with schedule processing. <br><br> <h2>Your university</h2> <div id="searchWidgets"> <input type="text" id="uniSearchBox" class="faded-out"></input> <input type="button" id="uniSearchButton" value="Search" onclick="UniSearch.onSearchPressed()"></input> <input type="button" id="uniSearchButton" value="Show all" onclick="UniSearch.getAll()"></input> <div id="universityList"> </div> <div id="addUniTip"> Can't find your school? Try typing in its full name.<br> If that fails, Forever Alone may not know about it yet. <input type="button" value="Add your university" id="uniRegToggleButton" onclick="Gui.showRegistrationPanel()"> </div> </div> <div class="errorMessage" id="fillInEverythingMessage" style="margin-top: 10px; margin-bottom: 10px;"> <b>Please fill in all the required data.</b> </div> <div id="otherUniversityMessage" class="infoMessage"> <b>Add your University</b><br> Your university is named <input type="text" size="50" id="uniNameTextBox"> <br> Not counting the summer term, it has <select id="termCountBox"> <option value="?">?</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> </select> terms per academic year. <br> <br> Want to double-check that your school has not been added before? <input type="button" value="Go Back to Searching" onclick="Gui.showSearchPanel()"></input> </div> <div id="universitySelectedMessage" class="infoMessage"> You have selected <b id="universityNameLabel"></b>. <input type="button" value="Unselect" onclick="UniSearch.clearSelection()"> </div> <br> <h2>Courses</h2> <div id="enteredLengthIsNaNMessage" class="errorMessage"> <b>Please enter a number.</b> </div> The average class is <input type="text" size="3" value="90" id="courseLengthBox"> minutes long. <br> <label> <input type="checkbox" id="shouldAutofillBox" checked="true"> </input> Use as default class length </label> <br><br><br> <input type="button" value="Save and Go!" onclick="Network.sendProfileData()"> <form action="/rpc/create-profile" method="post" id="profileDataForm"> <input type="hidden" name="profileData"> <input type="hidden" name="uniKey"> </form> </div> </body> </html>
includes/dynamics/assets/grippie/grippie.css
php-fusion/PHP-Fusion
div.grippie { background:#EEEEEE url(grippie.png) no-repeat scroll center 2px; border-color:#DDDDDD; border-style:solid; border-width:0pt 1px 1px; cursor:s-resize; height:9px; overflow:hidden; } .resizable-textarea textarea { display:block; margin-bottom:0pt; width:50%; height: 30%; resize: none!important; }
modules/openlmis-web/src/main/webapp/public/pages/admin/equipment/shared/manage-menu.html
jasolangi/jasolangi.github.io
<!-- ~ This program was produced for the U.S. Agency for International Development. It was prepared by the USAID | DELIVER PROJECT, Task Order 4. It is part of a project which utilizes code originally licensed under the terms of the Mozilla Public License (MPL) v2 and therefore is licensed under MPL v2 or later. ~ ~ This program is free software: you can redistribute it and/or modify it under the terms of the Mozilla Public License as published by the Mozilla Foundation, either version 2 of the License, or (at your option) any later version. ~ ~ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Mozilla Public License for more details. ~ ~ You should have received a copy of the Mozilla Public License along with this program. If not, see http://www.mozilla.org/MPL/ --> <div class="manage-nav" ng-controller="ManageMenuController"> <ul class="clearfix"> <li ng-show="hasPermission('MANAGE_EQUIPMENT_SETTINGS')" ng-class="equipmentTypeSelected"> <a href="/public/pages/admin/equipment/type/index.html"> <span id="equipmentTypes" >Equipment Types</span> </a> </li> <li ng-show="hasPermission('MANAGE_EQUIPMENT_SETTINGS')" ng-class="manageEquipmentSelected"> <a href="/public/pages/admin/equipment/manage/index.html"> <span id="equipment-list">Equipment List</span> </a> </li> <li ng-show="hasPermission('MANAGE_EQUIPMENT_SETTINGS')" ng-class="manageProgramEquipmentProductSelected"> <a href="/public/pages/admin/equipment/program-equipment-products/index.html"> <span id="programEquipmentProduct-list">Products for Equipments</span> </a> </li> <li ng-show="hasPermission('MANAGE_EQUIPMENT_SETTINGS')" ng-class="manageServiceTypeSelected"> <a href="/public/pages/admin/equipment/service-type/index.html"> <span id="equipment-service-type">Service Types</span> </a> </li> <li ng-show="hasPermission('MANAGE_EQUIPMENT_SETTINGS')" ng-class="manageVendorSelected"> <a href="/public/pages/admin/equipment/vendor/index.html"> <span id="service-vendor">Service Vendors</span> </a> </li> <li ng-show="hasPermission('MANAGE_EQUIPMENT_SETTINGS')" ng-class="manageServiceContactsSelected"> <a href="/public/pages/admin/equipment/service-contract/index.html"> <span id="service-contract">Service Contracts</span> </a> </li> <li ng-show="hasPermission('MANAGE_DONOR')" ng-class="donorSelected"> <a href="/public/pages/admin/equipment/donors/index.html#/list"> <span id="donor-tab">Donors</span> </a> </li> </ul> </div>
smlouvy/2020/04/08/NDA-tuma/index.html
pirati-web/smlouvy.pirati.cz
--- "layout": contract "datum podpisu": 2020-04-08 "datum účinnosti": 2020-04-08 "datum ukončení": 0000-00-00 "title": "NDA - Ondřej Tůma" "použité smluvní typy": - NDA "předmět": "NDA" "stav": v plnění "náklady": 0 "smluvní strany": - "jméno": "Ondřej Tůma" "bydliště": Brno "soubory": - "podepsaná verze": NDA-Ondřej-Tůma_Redigováno.pdf ---
searx/templates/oscar/languages.html
asciimoo/searx
<label class="visually-hidden" for="language">{{ _('Language') }}</label> <select class="language custom-select form-control" id="language" name="language" accesskey="l"> <option value="all" {% if current_language == 'all' %}selected="selected"{% endif %}>{{ _('Default language') }}</option> {%- for lang_id,lang_name,country_name,english_name in language_codes | sort(attribute=1) -%} <option value="{{ lang_id }}" {% if lang_id == current_language %}selected="selected"{% endif %}> {{- lang_name }} {% if country_name %}({{ country_name }}) {% endif %}- {{ lang_id -}} </option> {%- endfor -%} </select>
o2web/source/x_component_process_FormDesigner/$Main/default/formToolbars.html
o2oa/o2oa
<div id="MWFFormToolbar"> <span MWFnodetype="MWFToolBarSeparator"></span> <span MWFnodetype="MWFToolBarButton" MWFButtonImage="save.gif" title="保存表单" MWFButtonAction="saveForm" MWFButtonText=""></span> <span MWFnodetype="MWFToolBarButton" MWFButtonImage="saveNew.gif" title="保存为模板" MWFButtonAction="saveFormAsTemplate" MWFButtonText=""></span> <span MWFnodetype="MWFToolBarButton" MWFButtonImage="preview.png" title="预览" MWFButtonAction="previewForm" MWFButtonText=""></span> <span MWFnodetype="MWFToolBarButton" MWFButtonImage="print.gif" title="打印" MWFButtonAction="printForm" MWFButtonText=""></span> <span MWFnodetype="MWFToolBarSeparator"></span> <span MWFnodetype="MWFToolBarOnOffButton" MWFButtonImage="brush.png" title="格式刷" MWFButtonAction="styleBrush" MWFButtonText=""></span> <span MWFnodetype="MWFToolBarSeparator"></span> <span MWFnodetype="MWFToolBarButton" MWFButtonImage="formExplode.gif" title="表单导出" MWFButtonAction="formExplode" MWFButtonText=""></span> <span MWFnodetype="MWFToolBarMenu" MWFButtonImage="formImplode.gif" title="表单导入" MWFButtonText=""> <span MWFnodetype="MWFToolBarMenuItem" MWFButtonImage="o216.png" title="导入O2格式表单" MWFButtonAction="formImplode" MWFButtonText="从O2数据导入"></span> <span MWFnodetype="MWFToolBarMenuItem" MWFButtonImage="html.png" title="从HTML导入" MWFButtonAction="htmlImplode" MWFButtonText="从HTML导入"></span> <span MWFnodetype="MWFToolBarMenuItem" MWFButtonImage="word.png" title="从WORD导入" MWFButtonAction="officeImplode" MWFButtonText="从WORD导入"></span> </span> <span MWFnodetype="MWFToolBarSeparator"></span> <span MWFnodetype="MWFToolBarButton" MWFButtonImage="resume.png" title="查看所有表单版本" MWFButtonAction="showFormVersion" MWFButtonText=""></span> <span MWFnodetype="MWFToolBarSeparator"></span> <span MWFnodetype="MWFToolBarButton" MWFButtonImage="help.png" title="帮助" MWFButtonAction="formHelp" MWFButtonText=""></span> <span MWFnodetype="MWFToolBarSeparator"></span> <span MWFnodetype="MWFToolBarButton" MWFButtonImage="clear.png" title="清除未在HTML树中的组件配置" MWFButtonAction="clearNoDomModule" MWFButtonText=""></span> <span MWFnodetype="MWFToolBarSeparator"></span> <input type="checkbox" value="autoSave" id="MWFFormAutoSaveCheck">自动保存 <div id="MWFFormMobileDesignerAction"></div> <div id="MWFFormPCDesignerAction"></div> </div>
doc/api/classes/ActiveRecord/Persistence.html
asm-products/visitmee
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>ActiveRecord::Persistence</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link rel="stylesheet" href="../../css/reset.css" type="text/css" media="screen" /> <link rel="stylesheet" href="../../css/main.css" type="text/css" media="screen" /> <link rel="stylesheet" href="../../css/github.css" type="text/css" media="screen" /> <script src="../../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script> <script src="../../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script> <script src="../../js/main.js" type="text/javascript" charset="utf-8"></script> <script src="../../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script> </head> <body> <div class="banner"> <span>Ruby on Rails 4.1.1</span><br /> <h1> <span class="type">Module</span> ActiveRecord::Persistence </h1> <ul class="files"> <li><a href="../../files/__/__/__/_rvm/gems/ruby-2_1_2/gems/activerecord-4_1_1/lib/active_record/persistence_rb.html">/home/bishisht/.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb</a></li> </ul> </div> <div id="bodyContent"> <div id="content"> <div class="description"> <h1 id="module-ActiveRecord::Persistence-label-Active+Record+Persistence">Active Record <a href="Persistence.html">Persistence</a></h1> </div> <!-- Namespace --> <div class="sectiontitle">Namespace</div> <ul> <li> <span class="type">MODULE</span> <a href="Persistence/ClassMethods.html">ActiveRecord::Persistence::ClassMethods</a> </li> </ul> <!-- Method ref --> <div class="sectiontitle">Methods</div> <dl class="methods"> <dt>B</dt> <dd> <ul> <li> <a href="#method-i-becomes">becomes</a>, </li> <li> <a href="#method-i-becomes-21">becomes!</a> </li> </ul> </dd> <dt>D</dt> <dd> <ul> <li> <a href="#method-i-decrement">decrement</a>, </li> <li> <a href="#method-i-decrement-21">decrement!</a>, </li> <li> <a href="#method-i-delete">delete</a>, </li> <li> <a href="#method-i-destroy">destroy</a>, </li> <li> <a href="#method-i-destroy-21">destroy!</a>, </li> <li> <a href="#method-i-destroyed-3F">destroyed?</a> </li> </ul> </dd> <dt>I</dt> <dd> <ul> <li> <a href="#method-i-increment">increment</a>, </li> <li> <a href="#method-i-increment-21">increment!</a> </li> </ul> </dd> <dt>N</dt> <dd> <ul> <li> <a href="#method-i-new_record-3F">new_record?</a> </li> </ul> </dd> <dt>P</dt> <dd> <ul> <li> <a href="#method-i-persisted-3F">persisted?</a> </li> </ul> </dd> <dt>R</dt> <dd> <ul> <li> <a href="#method-i-reload">reload</a> </li> </ul> </dd> <dt>S</dt> <dd> <ul> <li> <a href="#method-i-save">save</a>, </li> <li> <a href="#method-i-save-21">save!</a> </li> </ul> </dd> <dt>T</dt> <dd> <ul> <li> <a href="#method-i-toggle">toggle</a>, </li> <li> <a href="#method-i-toggle-21">toggle!</a>, </li> <li> <a href="#method-i-touch">touch</a> </li> </ul> </dd> <dt>U</dt> <dd> <ul> <li> <a href="#method-i-update">update</a>, </li> <li> <a href="#method-i-update-21">update!</a>, </li> <li> <a href="#method-i-update_attribute">update_attribute</a>, </li> <li> <a href="#method-i-update_attributes">update_attributes</a>, </li> <li> <a href="#method-i-update_attributes-21">update_attributes!</a>, </li> <li> <a href="#method-i-update_column">update_column</a>, </li> <li> <a href="#method-i-update_columns">update_columns</a> </li> </ul> </dd> </dl> <!-- Methods --> <div class="sectiontitle">Instance Public methods</div> <div class="method"> <div class="title method-title" id="method-i-becomes"> <b>becomes</b>(klass) <a href="../../classes/ActiveRecord/Persistence.html#method-i-becomes" name="method-i-becomes" class="permalink">Link</a> </div> <div class="description"> <p>Returns an instance of the specified <code>klass</code> with the attributes of the current record. This is mostly useful in relation to single-table inheritance structures where you want a subclass to appear as the superclass. This can be used along with record identification in Action Pack to allow, say, <code>Client &lt; Company</code> to do something like render <code>partial: @client.becomes(Company)</code> to render that instance using the companies/company partial instead of clients/client.</p> <p>Note: The new instance will share a link to the same attributes as the original class. So any change to the attributes in either instance will affect the other.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-becomes_source')" id="l_method-i-becomes_source">show</a> </p> <div id="method-i-becomes_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 180</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">becomes</span>(<span class="ruby-identifier">klass</span>) <span class="ruby-identifier">became</span> = <span class="ruby-identifier">klass</span>.<span class="ruby-identifier">new</span> <span class="ruby-identifier">became</span>.<span class="ruby-identifier">instance_variable_set</span>(<span class="ruby-string">&quot;@attributes&quot;</span>, <span class="ruby-ivar">@attributes</span>) <span class="ruby-identifier">became</span>.<span class="ruby-identifier">instance_variable_set</span>(<span class="ruby-string">&quot;@attributes_cache&quot;</span>, <span class="ruby-ivar">@attributes_cache</span>) <span class="ruby-identifier">became</span>.<span class="ruby-identifier">instance_variable_set</span>(<span class="ruby-string">&quot;@changed_attributes&quot;</span>, <span class="ruby-ivar">@changed_attributes</span>) <span class="ruby-keyword">if</span> <span class="ruby-keyword">defined?</span>(<span class="ruby-ivar">@changed_attributes</span>) <span class="ruby-identifier">became</span>.<span class="ruby-identifier">instance_variable_set</span>(<span class="ruby-string">&quot;@new_record&quot;</span>, <span class="ruby-identifier">new_record?</span>) <span class="ruby-identifier">became</span>.<span class="ruby-identifier">instance_variable_set</span>(<span class="ruby-string">&quot;@destroyed&quot;</span>, <span class="ruby-identifier">destroyed?</span>) <span class="ruby-identifier">became</span>.<span class="ruby-identifier">instance_variable_set</span>(<span class="ruby-string">&quot;@errors&quot;</span>, <span class="ruby-identifier">errors</span>) <span class="ruby-identifier">became</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-becomes-21"> <b>becomes!</b>(klass) <a href="../../classes/ActiveRecord/Persistence.html#method-i-becomes-21" name="method-i-becomes-21" class="permalink">Link</a> </div> <div class="description"> <p>Wrapper around <code>becomes</code> that also changes the instance&#39;s sti column value. This is especially useful if you want to persist the changed class in your database.</p> <p>Note: The old instance&#39;s sti column value will be changed too, as both objects share the same set of attributes.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-becomes-21_source')" id="l_method-i-becomes-21_source">show</a> </p> <div id="method-i-becomes-21_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 197</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">becomes!</span>(<span class="ruby-identifier">klass</span>) <span class="ruby-identifier">became</span> = <span class="ruby-identifier">becomes</span>(<span class="ruby-identifier">klass</span>) <span class="ruby-identifier">sti_type</span> = <span class="ruby-keyword">nil</span> <span class="ruby-keyword">if</span> <span class="ruby-operator">!</span><span class="ruby-identifier">klass</span>.<span class="ruby-identifier">descends_from_active_record?</span> <span class="ruby-identifier">sti_type</span> = <span class="ruby-identifier">klass</span>.<span class="ruby-identifier">sti_name</span> <span class="ruby-keyword">end</span> <span class="ruby-identifier">became</span>.<span class="ruby-identifier">public_send</span>(<span class="ruby-node">&quot;#{klass.inheritance_column}=&quot;</span>, <span class="ruby-identifier">sti_type</span>) <span class="ruby-identifier">became</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-decrement"> <b>decrement</b>(attribute, by = 1) <a href="../../classes/ActiveRecord/Persistence.html#method-i-decrement" name="method-i-decrement" class="permalink">Link</a> </div> <div class="description"> <p>Initializes <code>attribute</code> to zero if <code>nil</code> and subtracts the value passed as <code>by</code> (default is 1). The decrement is performed directly on the underlying attribute, no setter is invoked. Only makes sense for number-based attributes. Returns <code>self</code>.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-decrement_source')" id="l_method-i-decrement_source">show</a> </p> <div id="method-i-decrement_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 307</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">decrement</span>(<span class="ruby-identifier">attribute</span>, <span class="ruby-identifier">by</span> = <span class="ruby-number">1</span>) <span class="ruby-keyword">self</span>[<span class="ruby-identifier">attribute</span>] <span class="ruby-operator">||=</span> <span class="ruby-number">0</span> <span class="ruby-keyword">self</span>[<span class="ruby-identifier">attribute</span>] <span class="ruby-operator">-=</span> <span class="ruby-identifier">by</span> <span class="ruby-keyword">self</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-decrement-21"> <b>decrement!</b>(attribute, by = 1) <a href="../../classes/ActiveRecord/Persistence.html#method-i-decrement-21" name="method-i-decrement-21" class="permalink">Link</a> </div> <div class="description"> <p>Wrapper around <code>decrement</code> that saves the record. This method differs from its non-bang version in that it passes through the attribute setter. Saving is not subjected to validation checks. Returns <code>true</code> if the record could be saved.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-decrement-21_source')" id="l_method-i-decrement-21_source">show</a> </p> <div id="method-i-decrement-21_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 317</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">decrement!</span>(<span class="ruby-identifier">attribute</span>, <span class="ruby-identifier">by</span> = <span class="ruby-number">1</span>) <span class="ruby-identifier">decrement</span>(<span class="ruby-identifier">attribute</span>, <span class="ruby-identifier">by</span>).<span class="ruby-identifier">update_attribute</span>(<span class="ruby-identifier">attribute</span>, <span class="ruby-keyword">self</span>[<span class="ruby-identifier">attribute</span>]) <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-delete"> <b>delete</b>() <a href="../../classes/ActiveRecord/Persistence.html#method-i-delete" name="method-i-delete" class="permalink">Link</a> </div> <div class="description"> <p>Deletes the record in the database and freezes this instance to reflect that no changes should be made (since they can&#39;t be persisted). Returns the frozen instance.</p> <p>The row is simply removed with an SQL <code>DELETE</code> statement on the record&#39;s primary key, and no callbacks are executed.</p> <p>To enforce the object&#39;s <code>before_destroy</code> and <code>after_destroy</code> callbacks or any <code>:dependent</code> association options, use <code>#destroy</code>.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-delete_source')" id="l_method-i-delete_source">show</a> </p> <div id="method-i-delete_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 138</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">delete</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">delete</span>(<span class="ruby-identifier">id</span>) <span class="ruby-keyword">if</span> <span class="ruby-identifier">persisted?</span> <span class="ruby-ivar">@destroyed</span> = <span class="ruby-keyword">true</span> <span class="ruby-identifier">freeze</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-destroy"> <b>destroy</b>() <a href="../../classes/ActiveRecord/Persistence.html#method-i-destroy" name="method-i-destroy" class="permalink">Link</a> </div> <div class="description"> <p>Deletes the record in the database and freezes this instance to reflect that no changes should be made (since they can&#39;t be persisted).</p> <p>There&#39;s a series of callbacks associated with <code>destroy</code>. If the <code>before_destroy</code> callback return <code>false</code> the action is cancelled and <code>destroy</code> returns <code>false</code>. See <a href="Callbacks.html">ActiveRecord::Callbacks</a> for further details.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-destroy_source')" id="l_method-i-destroy_source">show</a> </p> <div id="method-i-destroy_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 151</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">destroy</span> <span class="ruby-identifier">raise</span> <span class="ruby-constant">ReadOnlyRecord</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">readonly?</span> <span class="ruby-identifier">destroy_associations</span> <span class="ruby-identifier">destroy_row</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">persisted?</span> <span class="ruby-ivar">@destroyed</span> = <span class="ruby-keyword">true</span> <span class="ruby-identifier">freeze</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-destroy-21"> <b>destroy!</b>() <a href="../../classes/ActiveRecord/Persistence.html#method-i-destroy-21" name="method-i-destroy-21" class="permalink">Link</a> </div> <div class="description"> <p>Deletes the record in the database and freezes this instance to reflect that no changes should be made (since they can&#39;t be persisted).</p> <p>There&#39;s a series of callbacks associated with <code>destroy!</code>. If the <code>before_destroy</code> callback return <code>false</code> the action is cancelled and <code>destroy!</code> raises <a href="RecordNotDestroyed.html">ActiveRecord::RecordNotDestroyed</a>. See <a href="Callbacks.html">ActiveRecord::Callbacks</a> for further details.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-destroy-21_source')" id="l_method-i-destroy-21_source">show</a> </p> <div id="method-i-destroy-21_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 166</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">destroy!</span> <span class="ruby-identifier">destroy</span> <span class="ruby-operator">||</span> <span class="ruby-identifier">raise</span>(<span class="ruby-constant">ActiveRecord</span><span class="ruby-operator">::</span><span class="ruby-constant">RecordNotDestroyed</span>) <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-destroyed-3F"> <b>destroyed?</b>() <a href="../../classes/ActiveRecord/Persistence.html#method-i-destroyed-3F" name="method-i-destroyed-3F" class="permalink">Link</a> </div> <div class="description"> <p>Returns true if this object has been destroyed, otherwise returns false.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-destroyed-3F_source')" id="l_method-i-destroyed-3F_source">show</a> </p> <div id="method-i-destroyed-3F_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 74</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">destroyed?</span> <span class="ruby-identifier">sync_with_transaction_state</span> <span class="ruby-ivar">@destroyed</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-increment"> <b>increment</b>(attribute, by = 1) <a href="../../classes/ActiveRecord/Persistence.html#method-i-increment" name="method-i-increment" class="permalink">Link</a> </div> <div class="description"> <p>Initializes <code>attribute</code> to zero if <code>nil</code> and adds the value passed as <code>by</code> (default is 1). The increment is performed directly on the underlying attribute, no setter is invoked. Only makes sense for number-based attributes. Returns <code>self</code>.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-increment_source')" id="l_method-i-increment_source">show</a> </p> <div id="method-i-increment_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 290</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">increment</span>(<span class="ruby-identifier">attribute</span>, <span class="ruby-identifier">by</span> = <span class="ruby-number">1</span>) <span class="ruby-keyword">self</span>[<span class="ruby-identifier">attribute</span>] <span class="ruby-operator">||=</span> <span class="ruby-number">0</span> <span class="ruby-keyword">self</span>[<span class="ruby-identifier">attribute</span>] <span class="ruby-operator">+=</span> <span class="ruby-identifier">by</span> <span class="ruby-keyword">self</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-increment-21"> <b>increment!</b>(attribute, by = 1) <a href="../../classes/ActiveRecord/Persistence.html#method-i-increment-21" name="method-i-increment-21" class="permalink">Link</a> </div> <div class="description"> <p>Wrapper around <code>increment</code> that saves the record. This method differs from its non-bang version in that it passes through the attribute setter. Saving is not subjected to validation checks. Returns <code>true</code> if the record could be saved.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-increment-21_source')" id="l_method-i-increment-21_source">show</a> </p> <div id="method-i-increment-21_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 300</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">increment!</span>(<span class="ruby-identifier">attribute</span>, <span class="ruby-identifier">by</span> = <span class="ruby-number">1</span>) <span class="ruby-identifier">increment</span>(<span class="ruby-identifier">attribute</span>, <span class="ruby-identifier">by</span>).<span class="ruby-identifier">update_attribute</span>(<span class="ruby-identifier">attribute</span>, <span class="ruby-keyword">self</span>[<span class="ruby-identifier">attribute</span>]) <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-new_record-3F"> <b>new_record?</b>() <a href="../../classes/ActiveRecord/Persistence.html#method-i-new_record-3F" name="method-i-new_record-3F" class="permalink">Link</a> </div> <div class="description"> <p>Returns true if this object hasn&#39;t been saved yet – that is, a record for the object doesn&#39;t exist in the database yet; otherwise, returns false.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-new_record-3F_source')" id="l_method-i-new_record-3F_source">show</a> </p> <div id="method-i-new_record-3F_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 68</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">new_record?</span> <span class="ruby-identifier">sync_with_transaction_state</span> <span class="ruby-ivar">@new_record</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-persisted-3F"> <b>persisted?</b>() <a href="../../classes/ActiveRecord/Persistence.html#method-i-persisted-3F" name="method-i-persisted-3F" class="permalink">Link</a> </div> <div class="description"> <p>Returns true if the record is persisted, i.e. it&#39;s not a new record and it was not destroyed, otherwise returns false.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-persisted-3F_source')" id="l_method-i-persisted-3F_source">show</a> </p> <div id="method-i-persisted-3F_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 81</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">persisted?</span> <span class="ruby-operator">!</span>(<span class="ruby-identifier">new_record?</span> <span class="ruby-operator">||</span> <span class="ruby-identifier">destroyed?</span>) <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-reload"> <b>reload</b>(options = nil) <a href="../../classes/ActiveRecord/Persistence.html#method-i-reload" name="method-i-reload" class="permalink">Link</a> </div> <div class="description"> <p>Reloads the record from the database.</p> <p>This method finds record by its primary key (which could be assigned manually) and modifies the receiver in-place:</p> <pre><code>account = Account.new # =&gt; #&lt;Account id: nil, email: nil&gt; account.id = 1 account.reload # Account Load (1.2ms) SELECT &quot;accounts&quot;.* FROM &quot;accounts&quot; WHERE &quot;accounts&quot;.&quot;id&quot; = $1 LIMIT 1 [[&quot;id&quot;, 1]] # =&gt; #&lt;Account id: 1, email: &#39;account@example.com&#39;&gt; </code></pre> <p>Attributes are reloaded from the database, and caches busted, in particular the associations cache.</p> <p>If the record no longer exists in the database <code>ActiveRecord::RecordNotFound</code> is raised. Otherwise, in addition to the in-place modification the method returns <code>self</code> for convenience.</p> <p>The optional <code>:lock</code> flag option allows you to lock the reloaded record:</p> <pre><code>reload(lock: true) # reload with pessimistic locking</code></pre> <p>Reloading is commonly used in test suites to test something is actually written to the database, or when some action modifies the corresponding row in the database but not the object in memory:</p> <pre><code>assert account.deposit!(25) assert_equal 25, account.credit # check it is updated in memory assert_equal 25, account.reload.credit # check it is also persisted</code></pre> <p>Another common use case is optimistic locking handling:</p> <pre><code>def with_optimistic_retry begin yield rescue ActiveRecord::StaleObjectError begin # Reload lock_version in particular. reload rescue ActiveRecord::RecordNotFound # If the record is gone there is nothing to do. else retry end end end </code></pre> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-reload_source')" id="l_method-i-reload_source">show</a> </p> <div id="method-i-reload_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 386</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">reload</span>(<span class="ruby-identifier">options</span> = <span class="ruby-keyword">nil</span>) <span class="ruby-identifier">clear_aggregation_cache</span> <span class="ruby-identifier">clear_association_cache</span> <span class="ruby-identifier">fresh_object</span> = <span class="ruby-keyword">if</span> <span class="ruby-identifier">options</span> <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-identifier">options</span>[<span class="ruby-value">:lock</span>] <span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">unscoped</span> { <span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">lock</span>(<span class="ruby-identifier">options</span>[<span class="ruby-value">:lock</span>]).<span class="ruby-identifier">find</span>(<span class="ruby-identifier">id</span>) } <span class="ruby-keyword">else</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">unscoped</span> { <span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">find</span>(<span class="ruby-identifier">id</span>) } <span class="ruby-keyword">end</span> <span class="ruby-ivar">@attributes</span>.<span class="ruby-identifier">update</span>(<span class="ruby-identifier">fresh_object</span>.<span class="ruby-identifier">instance_variable_get</span>(<span class="ruby-string">&#39;@attributes&#39;</span>)) <span class="ruby-ivar">@column_types</span> = <span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">column_types</span> <span class="ruby-ivar">@column_types_override</span> = <span class="ruby-identifier">fresh_object</span>.<span class="ruby-identifier">instance_variable_get</span>(<span class="ruby-string">&#39;@column_types_override&#39;</span>) <span class="ruby-ivar">@attributes_cache</span> = {} <span class="ruby-keyword">self</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-save"> <b>save</b>(*) <a href="../../classes/ActiveRecord/Persistence.html#method-i-save" name="method-i-save" class="permalink">Link</a> </div> <div class="description"> <p>Saves the model.</p> <p>If the model is new a record gets created in the database, otherwise the existing record gets updated.</p> <p>By default, save always run validations. If any of them fail the action is cancelled and <code>save</code> returns <code>false</code>. However, if you supply validate: false, validations are bypassed altogether. See <a href="Validations.html">ActiveRecord::Validations</a> for more information.</p> <p>There&#39;s a series of callbacks associated with <code>save</code>. If any of the <code>before_*</code> callbacks return <code>false</code> the action is cancelled and <code>save</code> returns <code>false</code>. See <a href="Callbacks.html">ActiveRecord::Callbacks</a> for further details.</p> <p>Attributes marked as readonly are silently ignored if the record is being updated.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-save_source')" id="l_method-i-save_source">show</a> </p> <div id="method-i-save_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 102</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">save</span>(<span class="ruby-operator">*</span>) <span class="ruby-identifier">create_or_update</span> <span class="ruby-keyword">rescue</span> <span class="ruby-constant">ActiveRecord</span><span class="ruby-operator">::</span><span class="ruby-constant">RecordInvalid</span> <span class="ruby-keyword">false</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-save-21"> <b>save!</b>(*) <a href="../../classes/ActiveRecord/Persistence.html#method-i-save-21" name="method-i-save-21" class="permalink">Link</a> </div> <div class="description"> <p>Saves the model.</p> <p>If the model is new a record gets created in the database, otherwise the existing record gets updated.</p> <p>With <code>save!</code> validations always run. If any of them fail <a href="RecordInvalid.html">ActiveRecord::RecordInvalid</a> gets raised. See <a href="Validations.html">ActiveRecord::Validations</a> for more information.</p> <p>There&#39;s a series of callbacks associated with <code>save!</code>. If any of the <code>before_*</code> callbacks return <code>false</code> the action is cancelled and <code>save!</code> raises <a href="RecordNotSaved.html">ActiveRecord::RecordNotSaved</a>. See <a href="Callbacks.html">ActiveRecord::Callbacks</a> for further details.</p> <p>Attributes marked as readonly are silently ignored if the record is being updated.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-save-21_source')" id="l_method-i-save-21_source">show</a> </p> <div id="method-i-save-21_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 124</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">save!</span>(<span class="ruby-operator">*</span>) <span class="ruby-identifier">create_or_update</span> <span class="ruby-operator">||</span> <span class="ruby-identifier">raise</span>(<span class="ruby-constant">RecordNotSaved</span>) <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-toggle"> <b>toggle</b>(attribute) <a href="../../classes/ActiveRecord/Persistence.html#method-i-toggle" name="method-i-toggle" class="permalink">Link</a> </div> <div class="description"> <p>Assigns to <code>attribute</code> the boolean opposite of <code>attribute?</code>. So if the predicate returns <code>true</code> the attribute will become <code>false</code>. This method toggles directly the underlying value without calling any setter. Returns <code>self</code>.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-toggle_source')" id="l_method-i-toggle_source">show</a> </p> <div id="method-i-toggle_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 325</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">toggle</span>(<span class="ruby-identifier">attribute</span>) <span class="ruby-keyword">self</span>[<span class="ruby-identifier">attribute</span>] = <span class="ruby-operator">!</span><span class="ruby-identifier">send</span>(<span class="ruby-node">&quot;#{attribute}?&quot;</span>) <span class="ruby-keyword">self</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-toggle-21"> <b>toggle!</b>(attribute) <a href="../../classes/ActiveRecord/Persistence.html#method-i-toggle-21" name="method-i-toggle-21" class="permalink">Link</a> </div> <div class="description"> <p>Wrapper around <code>toggle</code> that saves the record. This method differs from its non-bang version in that it passes through the attribute setter. Saving is not subjected to validation checks. Returns <code>true</code> if the record could be saved.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-toggle-21_source')" id="l_method-i-toggle-21_source">show</a> </p> <div id="method-i-toggle-21_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 334</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">toggle!</span>(<span class="ruby-identifier">attribute</span>) <span class="ruby-identifier">toggle</span>(<span class="ruby-identifier">attribute</span>).<span class="ruby-identifier">update_attribute</span>(<span class="ruby-identifier">attribute</span>, <span class="ruby-keyword">self</span>[<span class="ruby-identifier">attribute</span>]) <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-touch"> <b>touch</b>(name = nil) <a href="../../classes/ActiveRecord/Persistence.html#method-i-touch" name="method-i-touch" class="permalink">Link</a> </div> <div class="description"> <p>Saves the record with the updated_at/on attributes set to the current time. Please note that no validation is performed and only the <code>after_touch</code> callback is executed. If an attribute name is passed, that attribute is updated along with updated_at/on attributes.</p> <pre><code>product.touch # updates updated_at/on product.touch(:designed_at) # updates the designed_at attribute and updated_at/on</code></pre> <p>If used along with <code>belongs_to</code> then <code>touch</code> will invoke <code>touch</code> method on associated object.</p> <pre><code>class Brake &lt; ActiveRecord::Base belongs_to :car, touch: true end class Car &lt; ActiveRecord::Base belongs_to :corporation, touch: true end # triggers @brake.car.touch and @brake.car.corporation.touch @brake.touch </code></pre> <p>Note that <code>touch</code> must be used on a persisted object, or else an <a href="ActiveRecordError.html">ActiveRecordError</a> will be thrown. For example:</p> <pre><code>ball = Ball.new ball.touch(:updated_at) # =&gt; raises ActiveRecordError </code></pre> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-touch_source')" id="l_method-i-touch_source">show</a> </p> <div id="method-i-touch_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 433</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">touch</span>(<span class="ruby-identifier">name</span> = <span class="ruby-keyword">nil</span>) <span class="ruby-identifier">raise</span> <span class="ruby-constant">ActiveRecordError</span>, <span class="ruby-string">&quot;cannot touch on a new record object&quot;</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">persisted?</span> <span class="ruby-identifier">attributes</span> = <span class="ruby-identifier">timestamp_attributes_for_update_in_model</span> <span class="ruby-identifier">attributes</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">name</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">name</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">attributes</span>.<span class="ruby-identifier">empty?</span> <span class="ruby-identifier">current_time</span> = <span class="ruby-identifier">current_time_from_proper_timezone</span> <span class="ruby-identifier">changes</span> = {} <span class="ruby-identifier">attributes</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">column</span><span class="ruby-operator">|</span> <span class="ruby-identifier">column</span> = <span class="ruby-identifier">column</span>.<span class="ruby-identifier">to_s</span> <span class="ruby-identifier">changes</span>[<span class="ruby-identifier">column</span>] = <span class="ruby-identifier">write_attribute</span>(<span class="ruby-identifier">column</span>, <span class="ruby-identifier">current_time</span>) <span class="ruby-keyword">end</span> <span class="ruby-identifier">changes</span>[<span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">locking_column</span>] = <span class="ruby-identifier">increment_lock</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">locking_enabled?</span> <span class="ruby-identifier">changed_attributes</span>.<span class="ruby-identifier">except!</span>(<span class="ruby-operator">*</span><span class="ruby-identifier">changes</span>.<span class="ruby-identifier">keys</span>) <span class="ruby-identifier">primary_key</span> = <span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">primary_key</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">unscoped</span>.<span class="ruby-identifier">where</span>(<span class="ruby-identifier">primary_key</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-keyword">self</span>[<span class="ruby-identifier">primary_key</span>]).<span class="ruby-identifier">update_all</span>(<span class="ruby-identifier">changes</span>) <span class="ruby-operator">==</span> <span class="ruby-number">1</span> <span class="ruby-keyword">else</span> <span class="ruby-keyword">true</span> <span class="ruby-keyword">end</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-update"> <b>update</b>(attributes) <a href="../../classes/ActiveRecord/Persistence.html#method-i-update" name="method-i-update" class="permalink">Link</a> </div> <div class="description"> <p>Updates the attributes of the model from the passed-in hash and saves the record, all wrapped in a transaction. If the object is invalid, the saving will fail and false will be returned.</p> </div> <div class="aka"> Also aliased as: <a href="Persistence.html#method-i-update_attributes">update_attributes</a> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-update_source')" id="l_method-i-update_source">show</a> </p> <div id="method-i-update_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 227</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">update</span>(<span class="ruby-identifier">attributes</span>) <span class="ruby-comment"># The following transaction covers any possible database side-effects of the</span> <span class="ruby-comment"># attributes assignment. For example, setting the IDs of a child collection.</span> <span class="ruby-identifier">with_transaction_returning_status</span> <span class="ruby-keyword">do</span> <span class="ruby-identifier">assign_attributes</span>(<span class="ruby-identifier">attributes</span>) <span class="ruby-identifier">save</span> <span class="ruby-keyword">end</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-update-21"> <b>update!</b>(attributes) <a href="../../classes/ActiveRecord/Persistence.html#method-i-update-21" name="method-i-update-21" class="permalink">Link</a> </div> <div class="description"> <p>Updates its receiver just like <code>update</code> but calls <code>save!</code> instead of <code>save</code>, so an exception is raised if the record is invalid.</p> </div> <div class="aka"> Also aliased as: <a href="Persistence.html#method-i-update_attributes-21">update_attributes!</a> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-update-21_source')" id="l_method-i-update-21_source">show</a> </p> <div id="method-i-update-21_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 240</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">update!</span>(<span class="ruby-identifier">attributes</span>) <span class="ruby-comment"># The following transaction covers any possible database side-effects of the</span> <span class="ruby-comment"># attributes assignment. For example, setting the IDs of a child collection.</span> <span class="ruby-identifier">with_transaction_returning_status</span> <span class="ruby-keyword">do</span> <span class="ruby-identifier">assign_attributes</span>(<span class="ruby-identifier">attributes</span>) <span class="ruby-identifier">save!</span> <span class="ruby-keyword">end</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-update_attribute"> <b>update_attribute</b>(name, value) <a href="../../classes/ActiveRecord/Persistence.html#method-i-update_attribute" name="method-i-update_attribute" class="permalink">Link</a> </div> <div class="description"> <p>Updates a single attribute and saves the record. This is especially useful for boolean flags on existing records. Also note that</p> <ul><li> <p>Validation is skipped.</p> </li><li> <p><a href="Callbacks.html">Callbacks</a> are invoked.</p> </li><li> <p>updated_at/updated_on column is updated if that column is available.</p> </li><li> <p>Updates all the attributes that are dirty in this object.</p> </li></ul> <p>This method raises an +ActiveRecord::ActiveRecordError+ if the attribute is marked as readonly.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-update_attribute_source')" id="l_method-i-update_attribute_source">show</a> </p> <div id="method-i-update_attribute_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 217</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">update_attribute</span>(<span class="ruby-identifier">name</span>, <span class="ruby-identifier">value</span>) <span class="ruby-identifier">name</span> = <span class="ruby-identifier">name</span>.<span class="ruby-identifier">to_s</span> <span class="ruby-identifier">verify_readonly_attribute</span>(<span class="ruby-identifier">name</span>) <span class="ruby-identifier">send</span>(<span class="ruby-node">&quot;#{name}=&quot;</span>, <span class="ruby-identifier">value</span>) <span class="ruby-identifier">save</span>(<span class="ruby-identifier">validate</span><span class="ruby-operator">:</span> <span class="ruby-keyword">false</span>) <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-update_attributes"> <b>update_attributes</b>(attributes) <a href="../../classes/ActiveRecord/Persistence.html#method-i-update_attributes" name="method-i-update_attributes" class="permalink">Link</a> </div> <div class="description"> </div> <div class="aka"> Alias for: <a href="Persistence.html#method-i-update">update</a> </div> </div> <div class="method"> <div class="title method-title" id="method-i-update_attributes-21"> <b>update_attributes!</b>(attributes) <a href="../../classes/ActiveRecord/Persistence.html#method-i-update_attributes-21" name="method-i-update_attributes-21" class="permalink">Link</a> </div> <div class="description"> </div> <div class="aka"> Alias for: <a href="Persistence.html#method-i-update-21">update!</a> </div> </div> <div class="method"> <div class="title method-title" id="method-i-update_column"> <b>update_column</b>(name, value) <a href="../../classes/ActiveRecord/Persistence.html#method-i-update_column" name="method-i-update_column" class="permalink">Link</a> </div> <div class="description"> <p>Equivalent to <code>update_columns(name =&gt; value)</code>.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-update_column_source')" id="l_method-i-update_column_source">show</a> </p> <div id="method-i-update_column_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 252</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">update_column</span>(<span class="ruby-identifier">name</span>, <span class="ruby-identifier">value</span>) <span class="ruby-identifier">update_columns</span>(<span class="ruby-identifier">name</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-identifier">value</span>) <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="method"> <div class="title method-title" id="method-i-update_columns"> <b>update_columns</b>(attributes) <a href="../../classes/ActiveRecord/Persistence.html#method-i-update_columns" name="method-i-update_columns" class="permalink">Link</a> </div> <div class="description"> <p>Updates the attributes directly in the database issuing an UPDATE SQL statement and sets them in the receiver:</p> <pre><code>user.update_columns(last_request_at: Time.current)</code></pre> <p>This is the fastest way to update attributes because it goes straight to the database, but take into account that in consequence the regular update procedures are totally bypassed. In particular:</p> <ul><li> <p><a href="Validations.html">Validations</a> are skipped.</p> </li><li> <p><a href="Callbacks.html">Callbacks</a> are skipped.</p> </li><li> <p><code>updated_at</code>/<code>updated_on</code> are not updated.</p> </li></ul> <p>This method raises an +ActiveRecord::ActiveRecordError+ when called on new objects, or when at least one of the attributes is marked as readonly.</p> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-update_columns_source')" id="l_method-i-update_columns_source">show</a> </p> <div id="method-i-update_columns_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../../../.rvm/gems/ruby-2.1.2/gems/activerecord-4.1.1/lib/active_record/persistence.rb, line 271</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">update_columns</span>(<span class="ruby-identifier">attributes</span>) <span class="ruby-identifier">raise</span> <span class="ruby-constant">ActiveRecordError</span>, <span class="ruby-string">&quot;cannot update on a new record object&quot;</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">persisted?</span> <span class="ruby-identifier">attributes</span>.<span class="ruby-identifier">each_key</span> <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">key</span><span class="ruby-operator">|</span> <span class="ruby-identifier">verify_readonly_attribute</span>(<span class="ruby-identifier">key</span>.<span class="ruby-identifier">to_s</span>) <span class="ruby-keyword">end</span> <span class="ruby-identifier">updated_count</span> = <span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">unscoped</span>.<span class="ruby-identifier">where</span>(<span class="ruby-keyword">self</span>.<span class="ruby-identifier">class</span>.<span class="ruby-identifier">primary_key</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-identifier">id</span>).<span class="ruby-identifier">update_all</span>(<span class="ruby-identifier">attributes</span>) <span class="ruby-identifier">attributes</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">k</span>, <span class="ruby-identifier">v</span><span class="ruby-operator">|</span> <span class="ruby-identifier">raw_write_attribute</span>(<span class="ruby-identifier">k</span>, <span class="ruby-identifier">v</span>) <span class="ruby-keyword">end</span> <span class="ruby-identifier">updated_count</span> <span class="ruby-operator">==</span> <span class="ruby-number">1</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> </div> </div> </body> </html>
blog/tag/chuang-zao-li.html
40423123/2016fallcadpa_ag8
<!DOCTYPE html> <html lang="en" > <head> <title>創造力 - 2016Fall CPA 課程網誌 (虎尾科大MDE)</title> <!-- Using the latest rendering mode for IE --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style type="text/css"> /*some stuff for output/input prompts*/ div.cell{border:1px solid transparent;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch}div.cell.selected{border-radius:4px;border:thin #ababab solid} div.cell.edit_mode{border-radius:4px;border:thin #008000 solid} div.cell{width:100%;padding:5px 5px 5px 0;margin:0;outline:none} div.prompt{min-width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.21429em} @media (max-width:480px){div.prompt{text-align:left}}div.inner_cell{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1} div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;line-height:1.21429em} div.prompt:empty{padding-top:0;padding-bottom:0} div.input{page-break-inside:avoid;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;} div.inner_cell{width:90%;} div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;} div.input_prompt{color:navy;border-top:1px solid transparent;} div.output_wrapper{margin-top:5px;position:relative;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;} div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);-moz-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);} div.output_collapsed{margin:0px;padding:0px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;} div.out_prompt_overlay{height:100%;padding:0px 0.4em;position:absolute;border-radius:4px;} div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000000;-moz-box-shadow:inset 0 0 1px #000000;box-shadow:inset 0 0 1px #000000;background:rgba(240, 240, 240, 0.5);} div.output_prompt{color:darkred;} a.anchor-link:link{text-decoration:none;padding:0px 20px;visibility:hidden;} h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible;} /* end stuff for output/input prompts*/ .highlight-ipynb .hll { background-color: #ffffcc } .highlight-ipynb { background: #f8f8f8; } .highlight-ipynb .c { color: #408080; font-style: italic } /* Comment */ .highlight-ipynb .err { border: 1px solid #FF0000 } /* Error */ .highlight-ipynb .k { color: #008000; font-weight: bold } /* Keyword */ .highlight-ipynb .o { color: #666666 } /* Operator */ .highlight-ipynb .cm { color: #408080; font-style: italic } /* Comment.Multiline */ .highlight-ipynb .cp { color: #BC7A00 } /* Comment.Preproc */ .highlight-ipynb .c1 { color: #408080; font-style: italic } /* Comment.Single */ .highlight-ipynb .cs { color: #408080; font-style: italic } /* Comment.Special */ .highlight-ipynb .gd { color: #A00000 } /* Generic.Deleted */ .highlight-ipynb .ge { font-style: italic } /* Generic.Emph */ .highlight-ipynb .gr { color: #FF0000 } /* Generic.Error */ .highlight-ipynb .gh { color: #000080; font-weight: bold } /* Generic.Heading */ .highlight-ipynb .gi { color: #00A000 } /* Generic.Inserted */ .highlight-ipynb .go { color: #888888 } /* Generic.Output */ .highlight-ipynb .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ .highlight-ipynb .gs { font-weight: bold } /* Generic.Strong */ .highlight-ipynb .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ .highlight-ipynb .gt { color: #0044DD } /* Generic.Traceback */ .highlight-ipynb .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ .highlight-ipynb .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ .highlight-ipynb .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ .highlight-ipynb .kp { color: #008000 } /* Keyword.Pseudo */ .highlight-ipynb .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ .highlight-ipynb .kt { color: #B00040 } /* Keyword.Type */ .highlight-ipynb .m { color: #666666 } /* Literal.Number */ .highlight-ipynb .s { color: #BA2121 } /* Literal.String */ .highlight-ipynb .na { color: #7D9029 } /* Name.Attribute */ .highlight-ipynb .nb { color: #008000 } /* Name.Builtin */ .highlight-ipynb .nc { color: #0000FF; font-weight: bold } /* Name.Class */ .highlight-ipynb .no { color: #880000 } /* Name.Constant */ .highlight-ipynb .nd { color: #AA22FF } /* Name.Decorator */ .highlight-ipynb .ni { color: #999999; font-weight: bold } /* Name.Entity */ .highlight-ipynb .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ .highlight-ipynb .nf { color: #0000FF } /* Name.Function */ .highlight-ipynb .nl { color: #A0A000 } /* Name.Label */ .highlight-ipynb .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ .highlight-ipynb .nt { color: #008000; font-weight: bold } /* Name.Tag */ .highlight-ipynb .nv { color: #19177C } /* Name.Variable */ .highlight-ipynb .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ .highlight-ipynb .w { color: #bbbbbb } /* Text.Whitespace */ .highlight-ipynb .mf { color: #666666 } /* Literal.Number.Float */ .highlight-ipynb .mh { color: #666666 } /* Literal.Number.Hex */ .highlight-ipynb .mi { color: #666666 } /* Literal.Number.Integer */ .highlight-ipynb .mo { color: #666666 } /* Literal.Number.Oct */ .highlight-ipynb .sb { color: #BA2121 } /* Literal.String.Backtick */ .highlight-ipynb .sc { color: #BA2121 } /* Literal.String.Char */ .highlight-ipynb .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ .highlight-ipynb .s2 { color: #BA2121 } /* Literal.String.Double */ .highlight-ipynb .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ .highlight-ipynb .sh { color: #BA2121 } /* Literal.String.Heredoc */ .highlight-ipynb .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ .highlight-ipynb .sx { color: #008000 } /* Literal.String.Other */ .highlight-ipynb .sr { color: #BB6688 } /* Literal.String.Regex */ .highlight-ipynb .s1 { color: #BA2121 } /* Literal.String.Single */ .highlight-ipynb .ss { color: #19177C } /* Literal.String.Symbol */ .highlight-ipynb .bp { color: #008000 } /* Name.Builtin.Pseudo */ .highlight-ipynb .vc { color: #19177C } /* Name.Variable.Class */ .highlight-ipynb .vg { color: #19177C } /* Name.Variable.Global */ .highlight-ipynb .vi { color: #19177C } /* Name.Variable.Instance */ .highlight-ipynb .il { color: #666666 } /* Literal.Number.Integer.Long */ </style> <style type="text/css"> /* Overrides of notebook CSS for static HTML export */ div.entry-content { overflow: visible; padding: 8px; } .input_area { padding: 0.2em; } a.heading-anchor { white-space: normal; } .rendered_html code { font-size: .8em; } pre.ipynb { color: black; background: #f7f7f7; border: none; box-shadow: none; margin-bottom: 0; padding: 0; margin: 0px; font-size: 13px; } /* remove the prompt div from text cells */ div.text_cell .prompt { display: none; } /* remove horizontal padding from text cells, */ /* so it aligns with outer body text */ div.text_cell_render { padding: 0.5em 0em; } img.anim_icon{padding:0; border:0; vertical-align:middle; -webkit-box-shadow:none; -box-shadow:none} </style> <script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> <script type="text/javascript"> init_mathjax = function() { if (window.MathJax) { // MathJax loaded MathJax.Hub.Config({ tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], displayMath: [ ['$$','$$'], ["\\[","\\]"] ] }, displayAlign: 'left', // Change this to 'center' to center equations. "HTML-CSS": { styles: {'.MathJax_Display': {"margin": 0}} } }); MathJax.Hub.Queue(["Typeset",MathJax.Hub]); } } init_mathjax(); </script> <meta name="author" content="KMOL" /> <meta name="keywords" content="創造力" /> <!-- Open Graph tags --> <meta property="og:site_name" content="2016Fall CPA 課程網誌 (虎尾科大MDE)" /> <meta property="og:type" content="website"/> <meta property="og:title" content="2016Fall CPA 課程網誌 (虎尾科大MDE)"/> <meta property="og:url" content=".."/> <meta property="og:description" content="2016Fall CPA 課程網誌 (虎尾科大MDE)"/> <!-- Bootstrap --> <link rel="stylesheet" href="../theme/css/bootstrap.united.min.css" type="text/css"/> <link href="../theme/css/font-awesome.min.css" rel="stylesheet"> <link href="../theme/css/pygments/monokai.css" rel="stylesheet"> <link href="../theme/tipuesearch/tipuesearch.css" rel="stylesheet"> <link rel="stylesheet" href="../theme/css/style.css" type="text/css"/> <link href="../feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="2016Fall CPA 課程網誌 (虎尾科大MDE) ATOM Feed"/> <script type="text/javascript" src="http://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shCore.js"></script> <script type="text/javascript" src="http://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushJScript.js"></script> <script type="text/javascript" src="http://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushJava.js"></script> <script type="text/javascript" src="http://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushPython.js"></script> <script type="text/javascript" src="http://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushSql.js"></script> <script type="text/javascript" src="http://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushXml.js"></script> <script type="text/javascript" src="http://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushPhp.js"></script> <script type="text/javascript" src="http://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushCpp.js"></script> <script type="text/javascript" src="http://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushCss.js"></script> <script type="text/javascript" src="http://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushCSharp.js"></script> <script type="text/javascript" src="http://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushBash.js"></script> <script type='text/javascript'> (function(){ var corecss = document.createElement('link'); var themecss = document.createElement('link'); var corecssurl = "http://chiamingyen.github.io/kmolab_data/files/syntaxhighlighter/css/shCore.css"; if ( corecss.setAttribute ) { corecss.setAttribute( "rel", "stylesheet" ); corecss.setAttribute( "type", "text/css" ); corecss.setAttribute( "href", corecssurl ); } else { corecss.rel = "stylesheet"; corecss.href = corecssurl; } document.getElementsByTagName("head")[0].insertBefore( corecss, document.getElementById("syntaxhighlighteranchor") ); var themecssurl = "http://chiamingyen.github.io/kmolab_data/files/syntaxhighlighter/css/shThemeDefault.css?ver=3.0.9b"; if ( themecss.setAttribute ) { themecss.setAttribute( "rel", "stylesheet" ); themecss.setAttribute( "type", "text/css" ); themecss.setAttribute( "href", themecssurl ); } else { themecss.rel = "stylesheet"; themecss.href = themecssurl; } //document.getElementById("syntaxhighlighteranchor").appendChild(themecss); document.getElementsByTagName("head")[0].insertBefore( themecss, document.getElementById("syntaxhighlighteranchor") ); })(); SyntaxHighlighter.config.strings.expandSource = '+ expand source'; SyntaxHighlighter.config.strings.help = '?'; SyntaxHighlighter.config.strings.alert = 'SyntaxHighlighter\n\n'; SyntaxHighlighter.config.strings.noBrush = 'Can\'t find brush for: '; SyntaxHighlighter.config.strings.brushNotHtmlScript = 'Brush wasn\'t configured for html-script option: '; SyntaxHighlighter.defaults['pad-line-numbers'] = false; SyntaxHighlighter.defaults['toolbar'] = false; SyntaxHighlighter.all(); </script> </head> <body> <div class="navbar navbar-default navbar-fixed-top" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a href="../" class="navbar-brand"> 2016Fall CPA 課程網誌 (虎尾科大MDE) </a> </div> <div class="collapse navbar-collapse navbar-ex1-collapse"> <ul class="nav navbar-nav"> <li><a href="../pages/about/"> About </a></li> <li > <a href="../category/misc.html">Misc</a> </li> </ul> <ul class="nav navbar-nav navbar-right"> <li><span> <form class="navbar-search" action="../search.html"> <input type="text" class="search-query" placeholder="Search" name="q" id="tipue_search_input" required> </form></span> </li> <li><a href="../archives.html"><i class="fa fa-th-list"></i><span class="icon-label">Archives</span></a></li> </ul> </div> <!-- /.navbar-collapse --> </div> </div> <!-- /.navbar --> <!-- Banner --> <!-- End Banner --> <div class="container"> <div class="row"> <div class="col-sm-9"> <article> <h2><a href="../2016fall-ji-jie-she-ji-zhu-ti-jiao-xue-2.html">2016Fall 機械設計主題教學 (2)</a></h2> <div class="summary"><p>知識管理與最佳化應用實驗室試圖利用計算機程式、網際內容管理、電腦輔助設計實習與協同產品設計實習等課程, 進行與機械設計相關的主題式教學, 其中包含強化創造力的教學、令學員熟習六種工程表達方式, 並且俱備融入協同設計所需要的四大面向知識與技能.</p> <a class="btn btn-default btn-xs" href="../2016fall-ji-jie-she-ji-zhu-ti-jiao-xue-2.html">more ...</a> </div> </article> <hr/> <article> <h2><a href="../2016fall-ji-jie-she-ji-zhu-ti-jiao-xue.html">2016Fall 機械設計主題教學</a></h2> <div class="summary"><p>知識管理與最佳化應用實驗室試圖利用計算機程式、網際內容管理、電腦輔助設計實習與協同產品設計實習等課程, 進行與機械設計相關的主題式教學, 其中包含強化創造力的教學、令學員熟習六種工程表達方式, 並且俱備融入協同設計所需要的四大面向知識與技能.</p> <a class="btn btn-default btn-xs" href="../2016fall-ji-jie-she-ji-zhu-ti-jiao-xue.html">more ...</a> </div> </article> <hr/> </div> <div class="col-sm-3" id="sidebar"> <aside> <section class="well well-sm"> <ul class="list-group list-group-flush"> <li class="list-group-item"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Recent Posts</span></h4> <ul class="list-group" id="recentposts"> <li class="list-group-item"> <a href="../2016fall-ji-jie-she-ji-zhu-ti-jiao-xue-2.html"> 2016Fall 機械設計主題教學 (2) </a> </li> <li class="list-group-item"> <a href="../2016fall-ji-jie-she-ji-zhu-ti-jiao-xue.html"> 2016Fall 機械設計主題教學 </a> </li> </ul> </li> <li class="list-group-item"><a href="../categories.html"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Categories</span></h4></a> <ul class="list-group" id="categories"> <li class="list-group-item"> <a href="../category/misc.html"> <i class="fa fa-folder-open fa-lg"></i> Misc </a> </li> </ul> </li> <li class="list-group-item"><a href="../tags.html"><h4><i class="fa fa-tags fa-lg"></i><span class="icon-label">Tags</span></h4></a> <ul class="list-group list-inline tagcloud" id="tags"> </ul> </li> <li class="list-group-item"><h4><i class="fa fa-external-link-square fa-lg"></i><span class="icon-label">Links</span></h4> <ul class="list-group" id="links"> <li class="list-group-item"> <a href="http://getpelican.com/" target="_blank"> Pelican </a> </li> <li class="list-group-item"> <a href="https://github.com/DandyDev/pelican-bootstrap3/" target="_blank"> pelican-bootstrap3 </a> </li> <li class="list-group-item"> <a href="https://github.com/getpelican/pelican-plugins" target="_blank"> pelican-plugins </a> </li> <li class="list-group-item"> <a href="https://github.com/Tipue/Tipue-Search" target="_blank"> Tipue search </a> </li> </ul> </li> </ul> </section> </aside> </div> </div> </div> <footer> <div class="container"> <hr> <div class="row"> <div class="col-xs-10">&copy; 2016 KMOL &middot; Powered by <a href="https://github.com/DandyDev/pelican-bootstrap3" target="_blank">pelican-bootstrap3</a>, <a href="http://docs.getpelican.com/" target="_blank">Pelican</a>, <a href="http://getbootstrap.com" target="_blank">Bootstrap</a> </div> <div class="col-xs-2"><p class="pull-right"><i class="fa fa-arrow-up"></i> <a href="#">Back to top</a></p></div> </div> </div> </footer> <script src="../theme/js/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="../theme/js/bootstrap.min.js"></script> <!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) --> <script src="../theme/js/respond.min.js"></script> </body> </html>
Ephesoft_Community_Release_4.0.2.0/javadocs/com/ephesoft/gxt/admin/client/view/plugin/class-use/PluginListView.html
ungerik/ephesoft
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_71) on Fri Jul 10 16:43:27 IST 2015 --> <title>Uses of Class com.ephesoft.gxt.admin.client.view.plugin.PluginListView</title> <meta name="date" content="2015-07-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="Uses of Class com.ephesoft.gxt.admin.client.view.plugin.PluginListView"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../com/ephesoft/gxt/admin/client/view/plugin/PluginListView.html" title="class in com.ephesoft.gxt.admin.client.view.plugin">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?com/ephesoft/gxt/admin/client/view/plugin/class-use/PluginListView.html" target="_top">Frames</a></li> <li><a href="PluginListView.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.ephesoft.gxt.admin.client.view.plugin.PluginListView" class="title">Uses of Class<br>com.ephesoft.gxt.admin.client.view.plugin.PluginListView</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../../../com/ephesoft/gxt/admin/client/view/plugin/PluginListView.html" title="class in com.ephesoft.gxt.admin.client.view.plugin">PluginListView</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#com.ephesoft.gxt.admin.client.presenter.plugin">com.ephesoft.gxt.admin.client.presenter.plugin</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="com.ephesoft.gxt.admin.client.presenter.plugin"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../../com/ephesoft/gxt/admin/client/view/plugin/PluginListView.html" title="class in com.ephesoft.gxt.admin.client.view.plugin">PluginListView</a> in <a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/plugin/package-summary.html">com.ephesoft.gxt.admin.client.presenter.plugin</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/plugin/package-summary.html">com.ephesoft.gxt.admin.client.presenter.plugin</a> with parameters of type <a href="../../../../../../../../com/ephesoft/gxt/admin/client/view/plugin/PluginListView.html" title="class in com.ephesoft.gxt.admin.client.view.plugin">PluginListView</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/plugin/PluginListPresenter.html#PluginListPresenter(com.ephesoft.gxt.admin.client.controller.BatchClassManagementController,%20com.ephesoft.gxt.admin.client.view.plugin.PluginListView)">PluginListPresenter</a></strong>(<a href="../../../../../../../../com/ephesoft/gxt/admin/client/controller/BatchClassManagementController.html" title="class in com.ephesoft.gxt.admin.client.controller">BatchClassManagementController</a>&nbsp;controller, <a href="../../../../../../../../com/ephesoft/gxt/admin/client/view/plugin/PluginListView.html" title="class in com.ephesoft.gxt.admin.client.view.plugin">PluginListView</a>&nbsp;view)</code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../com/ephesoft/gxt/admin/client/view/plugin/PluginListView.html" title="class in com.ephesoft.gxt.admin.client.view.plugin">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?com/ephesoft/gxt/admin/client/view/plugin/class-use/PluginListView.html" target="_top">Frames</a></li> <li><a href="PluginListView.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
app/themes/default/css/imports-flat-cement.css
ralphkretzschmar/zurmohuf
.border-box { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .border-box-sizing { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .cf, .clearfix { *zoom: 1; } .cf:before, .cf:after, .clearfix:before, .clearfix:after { content: " "; display: table; } .cf:after, .clearfix:after { clear: both; } .flyout { border: 1px solid #b6b6b6; background-color: #ebebeb; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#f5f5f5,#ebebeb); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f5f5f5),color-stop(100%,#ebebeb)); background-image: -webkit-linear-gradient(top,#f5f5f5,#ebebeb); background-image: -o-linear-gradient(top,#f5f5f5,#ebebeb); background-image: -moz-linear-gradient(top,#f5f5f5,#ebebeb); background-image: linear-gradient(top,#f5f5f5,#ebebeb); -webkit-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); -moz-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); -ms-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); -o-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); white-space: nowrap; } .headerDropDown { border: 1px solid #b6b6b6; background-color: #ebebeb; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#f5f5f5,#ebebeb); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f5f5f5),color-stop(100%,#ebebeb)); background-image: -webkit-linear-gradient(top,#f5f5f5,#ebebeb); background-image: -o-linear-gradient(top,#f5f5f5,#ebebeb); background-image: -moz-linear-gradient(top,#f5f5f5,#ebebeb); background-image: linear-gradient(top,#f5f5f5,#ebebeb); -webkit-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); -moz-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); -ms-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); -o-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); z-index: 99999; min-width: 110px; display: none; position: absolute; left: 0; top: 32px; padding-top: 3px; padding-bottom: 3px; } .headerDropDown li { line-height: 100%; } .headerDropDown li > a { color: #666; font-size: 11px; font-weight: normal; display: block; padding: 5px 10px 5px 10px; margin: 0 2px; } .headerDropDown li > a:hover { color: #fff !important; } .unstyle-panel { border: none; background: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; padding: 0; margin: 0; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } .z-label { display: inline-block; color: #fff; font-weight: bold; padding: 0 25px; line-height: 24px; white-space: nowrap; -webkit-border-radius: 1px; -moz-border-radius: 1px; -ms-border-radius: 1px; -o-border-radius: 1px; border-radius: 1px; -webkit-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; -moz-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; -ms-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; -o-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; background-color: #1a252f; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#2c3e50,#1a252f); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#2c3e50),color-stop(100%,#1a252f)); background-image: -webkit-linear-gradient(top,#2c3e50,#1a252f); background-image: -o-linear-gradient(top,#2c3e50,#1a252f); background-image: -moz-linear-gradient(top,#2c3e50,#1a252f); background-image: linear-gradient(top,#2c3e50,#1a252f); } .z-label-smaller { padding: 0 15px; } a:hover .z-label, a:active .z-label { color: #000000 !important; background-color: #2c3e50; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#1a252f,#2c3e50); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#1a252f),color-stop(100%,#2c3e50)); background-image: -webkit-linear-gradient(top,#1a252f,#2c3e50); background-image: -o-linear-gradient(top,#1a252f,#2c3e50); background-image: -moz-linear-gradient(top,#1a252f,#2c3e50); background-image: linear-gradient(top,#1a252f,#2c3e50); -webkit-text-shadow: 0px 1px 0 #476481 !important; -moz-text-shadow: 0px 1px 0 #476481 !important; -ms-text-shadow: 0px 1px 0 #476481 !important; -o-text-shadow: 0px 1px 0 #476481 !important; text-shadow: 0px 1px 0 #476481 !important; } a:active .z-label { -webkit-box-shadow: inset 0 5px 12px 0 rgba(0, 0, 0, 0.33), 0 1px 0 0 #FFF; -moz-box-shadow: inset 0 5px 12px 0 rgba(0, 0, 0, 0.33), 0 1px 0 0 #FFF; -ms-box-shadow: inset 0 5px 12px 0 rgba(0, 0, 0, 0.33), 0 1px 0 0 #FFF; -o-box-shadow: inset 0 5px 12px 0 rgba(0, 0, 0, 0.33), 0 1px 0 0 #FFF; box-shadow: inset 0 5px 12px 0 rgba(0, 0, 0, 0.33), 0 1px 0 0 #FFF; } .button-layout { line-height: 1; cursor: pointer; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; position: relative; display: inline-block; text-indent: 0; -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); *zoom: 1; -webkit-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); } .button-layout:before, .button-layout:after { content: " "; display: table; } .button-layout:after { clear: both; } .button-layout:hover { -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); } .button-layout.disabled { pointer-events: none; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -webkit-filter: grayscale(85%); -moz-filter: grayscale(85%); -ms-filter: grayscale(85%); -o-filter: grayscale(85%); filter: grayscale(85%); filter: gray; } .zButton, .z-button { line-height: 1; cursor: pointer; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; position: relative; display: inline-block; text-indent: 0; -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); *zoom: 1; -webkit-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); border-top: 1px solid rgba(62,88,113,0.8); border-left: 1px solid rgba(44,62,80,0.8); border-right: 1px solid rgba(44,62,80,0.8); border-bottom: 1px solid rgba(26,37,47,0.8); } .zButton:before, .zButton:after, .z-button:before, .z-button:after { content: " "; display: table; } .zButton:after, .z-button:after { clear: both; } .zButton:hover, .z-button:hover { -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); } .zButton.disabled, .z-button.disabled { pointer-events: none; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -webkit-filter: grayscale(85%); -moz-filter: grayscale(85%); -ms-filter: grayscale(85%); -o-filter: grayscale(85%); filter: grayscale(85%); filter: gray; } .secondary-button, .default-btn, .white-button, .cancel-button, .portlet-create-button { line-height: 1; cursor: pointer; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; position: relative; display: inline-block; text-indent: 0; -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); *zoom: 1; -webkit-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); border-top: 1px solid rgba(200,200,200,0.4); border-left: 1px solid rgba(185,185,185,0.4); border-right: 1px solid rgba(185,185,185,0.4); border-bottom: 1px solid rgba(170,170,170,0.4); } .secondary-button:before, .secondary-button:after, .default-btn:before, .default-btn:after, .white-button:before, .white-button:after, .cancel-button:before, .cancel-button:after, .portlet-create-button:before, .portlet-create-button:after { content: " "; display: table; } .secondary-button:after, .default-btn:after, .white-button:after, .cancel-button:after, .portlet-create-button:after { clear: both; } .secondary-button:hover, .default-btn:hover, .white-button:hover, .cancel-button:hover, .portlet-create-button:hover { -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); } .secondary-button.disabled, .default-btn.disabled, .white-button.disabled, .cancel-button.disabled, .portlet-create-button.disabled { pointer-events: none; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -webkit-filter: grayscale(85%); -moz-filter: grayscale(85%); -ms-filter: grayscale(85%); -o-filter: grayscale(85%); filter: grayscale(85%); filter: gray; } .secondary-button .z-label, .default-btn .z-label, .white-button .z-label, .cancel-button .z-label, .portlet-create-button .z-label { color: #666; -webkit-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -moz-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -ms-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -o-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; background-color: #f5f5f5; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#fefefe,#f5f5f5); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fefefe),color-stop(100%,#f5f5f5)); background-image: -webkit-linear-gradient(top,#fefefe,#f5f5f5); background-image: -o-linear-gradient(top,#fefefe,#f5f5f5); background-image: -moz-linear-gradient(top,#fefefe,#f5f5f5); background-image: linear-gradient(top,#fefefe,#f5f5f5); } .secondary-button:hover .z-label, .default-btn:hover .z-label, .white-button:hover .z-label, .cancel-button:hover .z-label, .portlet-create-button:hover .z-label { color: #2c3e50 !important; background-image: none; background-color: #fefefe !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#f5f5f5,#fefefe) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f5f5f5),color-stop(100%,#fefefe)) !important; background-image: -webkit-linear-gradient(top,#f5f5f5,#fefefe) !important; background-image: -o-linear-gradient(top,#f5f5f5,#fefefe) !important; background-image: -moz-linear-gradient(top,#f5f5f5,#fefefe) !important; background-image: linear-gradient(top,#f5f5f5,#fefefe) !important; -webkit-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -moz-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -ms-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -o-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; } .wizard-secondary-action-button { line-height: 1; cursor: pointer; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; position: relative; display: inline-block; text-indent: 0; -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); *zoom: 1; -webkit-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); border-top: 1px solid rgba(200,200,200,0.4); border-left: 1px solid rgba(185,185,185,0.4); border-right: 1px solid rgba(185,185,185,0.4); border-bottom: 1px solid rgba(170,170,170,0.4); } .wizard-secondary-action-button:before, .wizard-secondary-action-button:after { content: " "; display: table; } .wizard-secondary-action-button:after { clear: both; } .wizard-secondary-action-button:hover { -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); } .wizard-secondary-action-button.disabled { pointer-events: none; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -webkit-filter: grayscale(85%); -moz-filter: grayscale(85%); -ms-filter: grayscale(85%); -o-filter: grayscale(85%); filter: grayscale(85%); filter: gray; } .wizard-secondary-action-button .z-label { color: #666; -webkit-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -moz-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -ms-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -o-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; background-color: #f5f5f5; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#fefefe,#f5f5f5); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fefefe),color-stop(100%,#f5f5f5)); background-image: -webkit-linear-gradient(top,#fefefe,#f5f5f5); background-image: -o-linear-gradient(top,#fefefe,#f5f5f5); background-image: -moz-linear-gradient(top,#fefefe,#f5f5f5); background-image: linear-gradient(top,#fefefe,#f5f5f5); } .wizard-secondary-action-button:hover .z-label { color: #2c3e50 !important; background-image: none; background-color: #fefefe !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#f5f5f5,#fefefe) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f5f5f5),color-stop(100%,#fefefe)) !important; background-image: -webkit-linear-gradient(top,#f5f5f5,#fefefe) !important; background-image: -o-linear-gradient(top,#f5f5f5,#fefefe) !important; background-image: -moz-linear-gradient(top,#f5f5f5,#fefefe) !important; background-image: linear-gradient(top,#f5f5f5,#fefefe) !important; -webkit-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -moz-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -ms-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -o-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; } button[type="button"]:focus { outline: none; } input[type="button"].default-btn, input[type="button"].white-button, input[type="button"].cancel-button, input[type="button"].portlet-create-button { color: #666; -webkit-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -moz-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -ms-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -o-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; background-color: #f5f5f5; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#fefefe,#f5f5f5); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fefefe),color-stop(100%,#f5f5f5)); background-image: -webkit-linear-gradient(top,#fefefe,#f5f5f5); background-image: -o-linear-gradient(top,#fefefe,#f5f5f5); background-image: -moz-linear-gradient(top,#fefefe,#f5f5f5); background-image: linear-gradient(top,#fefefe,#f5f5f5); } input[type="button"].default-btn:hover, input[type="button"].white-button:hover, input[type="button"].cancel-button:hover, input[type="button"].portlet-create-button:hover { color: #2c3e50 !important; background-image: none; background-color: #ededed !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#fefefe,#ededed) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fefefe),color-stop(100%,#ededed)) !important; background-image: -webkit-linear-gradient(top,#fefefe,#ededed) !important; background-image: -o-linear-gradient(top,#fefefe,#ededed) !important; background-image: -moz-linear-gradient(top,#fefefe,#ededed) !important; background-image: linear-gradient(top,#fefefe,#ededed) !important; -webkit-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -moz-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -ms-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -o-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; } input[type="button"].default-btn:focus, input[type="button"].white-button:focus, input[type="button"].cancel-button:focus, input[type="button"].portlet-create-button:focus { outline: none; } .zButton.loading .z-spinner, .z-button.loading .z-spinner { display: inline-block; position: absolute; margin: 1px 0 0 4px; } .zButton.loading .z-icon, .z-button.loading .z-icon { display: none; } .z-spinner { z-index: 10; width: 23px; height: 23px; display: none; position: absolute; left: 0px; } .z-spinner.loading { display: block !important; } .zLink, .z-link { padding: 2px 4px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; color: #fff !important; font-size: 11px; background-color: #2c3e50 !important; } .zLink:hover, .z-link:hover { color: #fff !important; text-decoration: underline; } .z-action-link { font-size: 11px; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; text-decoration: none; color: #2c3e50; } .z-action-link:hover { filter: alpha(opacity=100); -khtml-opacity: 1; -moz-opacity: 1; opacity: 1; text-decoration: none; } .z-action-link-active { filter: alpha(opacity=100); -khtml-opacity: 1; -moz-opacity: 1; opacity: 1; } a.simple-link { font-size: 11px; color: #2c3e50; border: none !important; text-decoration: underline; overflow: hidden; } a.simple-link:before, a.simple-link:after { display: none !important; } a.simple-link:hover { color: #2c3e50 !important; } a.simple-link:hover .z-label { color: #2c3e50 !important; -webkit-text-shadow: none !important; -moz-text-shadow: none !important; -ms-text-shadow: none !important; -o-text-shadow: none !important; text-shadow: none !important; } a.simple-link .z-label { font-weight: normal; color: #2c3e50; background: none !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; box-shadow: none !important; -webkit-border-radius: 0 !important; -moz-border-radius: 0 !important; -ms-border-radius: 0 !important; -o-border-radius: 0 !important; border-radius: 0 !important; padding: 0 !important; -webkit-text-shadow: none !important; -moz-text-shadow: none !important; -ms-text-shadow: none !important; -o-text-shadow: none !important; text-shadow: none !important; text-decoration: underline !important; } a.simple-link .icon-x { font-weight: normal !important; font-size: 21px; font-family: "zurmo_gamification_symbly_rRg"; line-height: 1; border: none; margin-right: 2px; outline: none !important; display: inline-block; position: relative; top: -1px; color: #7CB830; } .action-type-accept, .action-accept, .action-complete { border: 1px solid #6fa82d; } .action-type-accept .z-label, .action-accept .z-label, .action-complete .z-label { background-color: #6fa82d !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#97c43d,#6fa82d) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#97c43d),color-stop(100%,#6fa82d)) !important; background-image: -webkit-linear-gradient(top,#97c43d,#6fa82d) !important; background-image: -o-linear-gradient(top,#97c43d,#6fa82d) !important; background-image: -moz-linear-gradient(top,#97c43d,#6fa82d) !important; background-image: linear-gradient(top,#97c43d,#6fa82d) !important; } .action-type-accept:hover .z-label, .action-accept:hover .z-label, .action-complete:hover .z-label { color: #1f290c !important; background-color: #548022 !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#97c43d,#548022) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#97c43d),color-stop(100%,#548022)) !important; background-image: -webkit-linear-gradient(top,#97c43d,#548022) !important; background-image: -o-linear-gradient(top,#97c43d,#548022) !important; background-image: -moz-linear-gradient(top,#97c43d,#548022) !important; background-image: linear-gradient(top,#97c43d,#548022) !important; -webkit-text-shadow: 0px -1px 0 #88b236 !important; -moz-text-shadow: 0px -1px 0 #88b236 !important; -ms-text-shadow: 0px -1px 0 #88b236 !important; -o-text-shadow: 0px -1px 0 #88b236 !important; text-shadow: 0px -1px 0 #88b236 !important; } .action-type-accept .button-label, .action-accept .button-label, .action-complete .button-label { color: #ffffff; -webkit-text-shadow: 0px -1px 0 #88b236; -moz-text-shadow: 0px -1px 0 #88b236; -ms-text-shadow: 0px -1px 0 #88b236; -o-text-shadow: 0px -1px 0 #88b236; text-shadow: 0px -1px 0 #88b236; } .action-type-accept .button-label:before, .action-accept .button-label:before, .action-complete .button-label:before { background-color: #6fa82d; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#97c43d,#6fa82d); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#97c43d),color-stop(100%,#6fa82d)); background-image: -webkit-linear-gradient(top,#97c43d,#6fa82d); background-image: -o-linear-gradient(top,#97c43d,#6fa82d); background-image: -moz-linear-gradient(top,#97c43d,#6fa82d); background-image: linear-gradient(top,#97c43d,#6fa82d); } .action-type-accept .button-action:hover .button-label, .action-accept .button-action:hover .button-label, .action-complete .button-action:hover .button-label { color: #344415; -webkit-text-shadow: 0px -1px 0 #88b236; -moz-text-shadow: 0px -1px 0 #88b236; -ms-text-shadow: 0px -1px 0 #88b236; -o-text-shadow: 0px -1px 0 #88b236; text-shadow: 0px -1px 0 #88b236; } .action-type-accept .button-action:hover .button-label:before, .action-accept .button-action:hover .button-label:before, .action-complete .button-action:hover .button-label:before { background-color: #548022; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#97c43d,#548022); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#97c43d),color-stop(100%,#548022)); background-image: -webkit-linear-gradient(top,#97c43d,#548022); background-image: -o-linear-gradient(top,#97c43d,#548022); background-image: -moz-linear-gradient(top,#97c43d,#548022); background-image: linear-gradient(top,#97c43d,#548022); } .action-type-reject, .action-reject { border: 1px solid #a82d31; } .action-type-reject .z-label, .action-reject .z-label { background-color: #a82d31 !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#c43d53,#a82d31) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#c43d53),color-stop(100%,#a82d31)) !important; background-image: -webkit-linear-gradient(top,#c43d53,#a82d31) !important; background-image: -o-linear-gradient(top,#c43d53,#a82d31) !important; background-image: -moz-linear-gradient(top,#c43d53,#a82d31) !important; background-image: linear-gradient(top,#c43d53,#a82d31) !important; } .action-type-reject:hover .z-label, .action-reject:hover .z-label { color: #290c11 !important; background-color: #802225 !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#c43d53,#802225) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#c43d53),color-stop(100%,#802225)) !important; background-image: -webkit-linear-gradient(top,#c43d53,#802225) !important; background-image: -o-linear-gradient(top,#c43d53,#802225) !important; background-image: -moz-linear-gradient(top,#c43d53,#802225) !important; background-image: linear-gradient(top,#c43d53,#802225) !important; -webkit-text-shadow: 0px -1px 0 #b2364a !important; -moz-text-shadow: 0px -1px 0 #b2364a !important; -ms-text-shadow: 0px -1px 0 #b2364a !important; -o-text-shadow: 0px -1px 0 #b2364a !important; text-shadow: 0px -1px 0 #b2364a !important; } .action-type-reject .button-label, .action-reject .button-label { color: #ffffff; -webkit-text-shadow: 0px -1px 0 #b2364a; -moz-text-shadow: 0px -1px 0 #b2364a; -ms-text-shadow: 0px -1px 0 #b2364a; -o-text-shadow: 0px -1px 0 #b2364a; text-shadow: 0px -1px 0 #b2364a; } .action-type-reject .button-label:before, .action-reject .button-label:before { background-color: #a82d31; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#c43d53,#a82d31); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#c43d53),color-stop(100%,#a82d31)); background-image: -webkit-linear-gradient(top,#c43d53,#a82d31); background-image: -o-linear-gradient(top,#c43d53,#a82d31); background-image: -moz-linear-gradient(top,#c43d53,#a82d31); background-image: linear-gradient(top,#c43d53,#a82d31); } .action-type-reject .button-action:hover .button-label, .action-reject .button-action:hover .button-label { color: #44151c; -webkit-text-shadow: 0px -1px 0 #b2364a; -moz-text-shadow: 0px -1px 0 #b2364a; -ms-text-shadow: 0px -1px 0 #b2364a; -o-text-shadow: 0px -1px 0 #b2364a; text-shadow: 0px -1px 0 #b2364a; } .action-type-reject .button-action:hover .button-label:before, .action-reject .button-action:hover .button-label:before { background-color: #802225; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#c43d53,#802225); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#c43d53),color-stop(100%,#802225)); background-image: -webkit-linear-gradient(top,#c43d53,#802225); background-image: -o-linear-gradient(top,#c43d53,#802225); background-image: -moz-linear-gradient(top,#c43d53,#802225); background-image: linear-gradient(top,#c43d53,#802225); } .action-take, .action-type-finish { border: 1px solid #e4b600; } .action-take .z-label, .action-type-finish .z-label { background-color: #e4b600 !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#ffcc00,#e4b600) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffcc00),color-stop(100%,#e4b600)) !important; background-image: -webkit-linear-gradient(top,#ffcc00,#e4b600) !important; background-image: -o-linear-gradient(top,#ffcc00,#e4b600) !important; background-image: -moz-linear-gradient(top,#ffcc00,#e4b600) !important; background-image: linear-gradient(top,#ffcc00,#e4b600) !important; } .action-take:hover .z-label, .action-type-finish:hover .z-label { color: #332900 !important; background-color: #b18d00 !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#ffcc00,#b18d00) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffcc00),color-stop(100%,#b18d00)) !important; background-image: -webkit-linear-gradient(top,#ffcc00,#b18d00) !important; background-image: -o-linear-gradient(top,#ffcc00,#b18d00) !important; background-image: -moz-linear-gradient(top,#ffcc00,#b18d00) !important; background-image: linear-gradient(top,#ffcc00,#b18d00) !important; -webkit-text-shadow: 0px -1px 0 #e6b800 !important; -moz-text-shadow: 0px -1px 0 #e6b800 !important; -ms-text-shadow: 0px -1px 0 #e6b800 !important; -o-text-shadow: 0px -1px 0 #e6b800 !important; text-shadow: 0px -1px 0 #e6b800 !important; } .action-take .button-label, .action-type-finish .button-label { color: #ffffff; -webkit-text-shadow: 0px -1px 0 #e6b800; -moz-text-shadow: 0px -1px 0 #e6b800; -ms-text-shadow: 0px -1px 0 #e6b800; -o-text-shadow: 0px -1px 0 #e6b800; text-shadow: 0px -1px 0 #e6b800; } .action-take .button-label:before, .action-type-finish .button-label:before { background-color: #e4b600; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#ffcc00,#e4b600); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffcc00),color-stop(100%,#e4b600)); background-image: -webkit-linear-gradient(top,#ffcc00,#e4b600); background-image: -o-linear-gradient(top,#ffcc00,#e4b600); background-image: -moz-linear-gradient(top,#ffcc00,#e4b600); background-image: linear-gradient(top,#ffcc00,#e4b600); } .action-take .button-action:hover .button-label, .action-type-finish .button-action:hover .button-label { color: #574500; -webkit-text-shadow: 0px -1px 0 #e6b800; -moz-text-shadow: 0px -1px 0 #e6b800; -ms-text-shadow: 0px -1px 0 #e6b800; -o-text-shadow: 0px -1px 0 #e6b800; text-shadow: 0px -1px 0 #e6b800; } .action-take .button-action:hover .button-label:before, .action-type-finish .button-action:hover .button-label:before { background-color: #b18d00; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#ffcc00,#b18d00); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffcc00),color-stop(100%,#b18d00)); background-image: -webkit-linear-gradient(top,#ffcc00,#b18d00); background-image: -o-linear-gradient(top,#ffcc00,#b18d00); background-image: -moz-linear-gradient(top,#ffcc00,#b18d00); background-image: linear-gradient(top,#ffcc00,#b18d00); } .action-type-restart { border: 1px solid #4d6c87; } .action-type-restart .z-label { background-color: #4d6c87 !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#4e6d87,#4d6c87) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#4e6d87),color-stop(100%,#4d6c87)) !important; background-image: -webkit-linear-gradient(top,#4e6d87,#4d6c87) !important; background-image: -o-linear-gradient(top,#4e6d87,#4d6c87) !important; background-image: -moz-linear-gradient(top,#4e6d87,#4d6c87) !important; background-image: linear-gradient(top,#4e6d87,#4d6c87) !important; } .action-type-restart:hover .z-label { color: #030506 !important; background-color: #3a5267 !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#4e6d87,#3a5267) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#4e6d87),color-stop(100%,#3a5267)) !important; background-image: -webkit-linear-gradient(top,#4e6d87,#3a5267) !important; background-image: -o-linear-gradient(top,#4e6d87,#3a5267) !important; background-image: -moz-linear-gradient(top,#4e6d87,#3a5267) !important; background-image: linear-gradient(top,#4e6d87,#3a5267) !important; -webkit-text-shadow: 0px -1px 0 #456077 !important; -moz-text-shadow: 0px -1px 0 #456077 !important; -ms-text-shadow: 0px -1px 0 #456077 !important; -o-text-shadow: 0px -1px 0 #456077 !important; text-shadow: 0px -1px 0 #456077 !important; } .action-type-restart .button-label { color: #ffffff; -webkit-text-shadow: 0px -1px 0 #456077; -moz-text-shadow: 0px -1px 0 #456077; -ms-text-shadow: 0px -1px 0 #456077; -o-text-shadow: 0px -1px 0 #456077; text-shadow: 0px -1px 0 #456077; } .action-type-restart .button-label:before { background-color: #4d6c87; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#4e6d87,#4d6c87); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#4e6d87),color-stop(100%,#4d6c87)); background-image: -webkit-linear-gradient(top,#4e6d87,#4d6c87); background-image: -o-linear-gradient(top,#4e6d87,#4d6c87); background-image: -moz-linear-gradient(top,#4e6d87,#4d6c87); background-image: linear-gradient(top,#4e6d87,#4d6c87); } .action-type-restart .button-action:hover .button-label { color: #10171c; -webkit-text-shadow: 0px -1px 0 #456077; -moz-text-shadow: 0px -1px 0 #456077; -ms-text-shadow: 0px -1px 0 #456077; -o-text-shadow: 0px -1px 0 #456077; text-shadow: 0px -1px 0 #456077; } .action-type-restart .button-action:hover .button-label:before { background-color: #3a5267; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#4e6d87,#3a5267); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#4e6d87),color-stop(100%,#3a5267)); background-image: -webkit-linear-gradient(top,#4e6d87,#3a5267); background-image: -o-linear-gradient(top,#4e6d87,#3a5267); background-image: -moz-linear-gradient(top,#4e6d87,#3a5267); background-image: linear-gradient(top,#4e6d87,#3a5267); } #ZurmoLogo { background: url("../images/ZurmoLogo.png") left top no-repeat; width: 170px; height: 54px; margin-bottom: 20px; } #InstallView { margin-left: 0; padding: 75px 15% 15px 15%; font-size: 14px; line-height: 150%; } #InstallView .z-label { font-size: 12px; } #InstallView ul { list-style: inside; margin-bottom: 10px; font-weight: bold; } #InstallView ul li { margin-bottom: 5px; } #InstallView table { width: 100%; } .checked-services { border-color: #DDDEDE; border-style: solid; border-width: 0 0 1px 0; border-spacing: 0; border-collapse: collapse; width: 100%; margin-bottom: 15px; } .checked-services td { border-color: #DDDEDE; border-style: solid; border-width: 1px 1px 0 0; padding: 10px; } .checked-services tr { border-color: #DDDEDE; border-style: solid; border-width: 0 0 0 1px; border-spacing: 0; } .checked-services tr:hover { background-color: none; color: #545454; } .checked-services tr:first-child { border-left: none; } .checked-services tr:first-child td { border: none; font-weight: bold; padding-left: 2px; } .checked-services span.pass, .checked-services span.fail, .checked-services span.warning { display: block; text-align: center; } #install-form { border: none; background: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; padding: 0; margin: 0; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } #install-form input[type="submit"] { line-height: 1; cursor: pointer; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; position: relative; display: inline-block; text-indent: 0; -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); *zoom: 1; -webkit-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); border-top: 1px solid rgba(62,88,113,0.8); border-left: 1px solid rgba(44,62,80,0.8); border-right: 1px solid rgba(44,62,80,0.8); border-bottom: 1px solid rgba(26,37,47,0.8); } #install-form input[type="submit"]:before, #install-form input[type="submit"]:after { content: " "; display: table; } #install-form input[type="submit"]:after { clear: both; } #install-form input[type="submit"]:hover { -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); } #install-form input[type="submit"].disabled { pointer-events: none; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -webkit-filter: grayscale(85%); -moz-filter: grayscale(85%); -ms-filter: grayscale(85%); -o-filter: grayscale(85%); filter: grayscale(85%); filter: gray; } #install-form table { padding-bottom: 15px; } #install-form th { width: 26%; vertical-align: top; padding: 10px; } #install-form td { width: 37%; padding: 10px; } #install-form th+td { vertical-align: top; } #install-form tr td:last-child { padding-left: 15px; } #install-form label { font-size: 12px !important; font-weight: 400 !important; } #install-form .hasCheckBox { padding-top: 0; margin-left: 0; } #install-form .form-toolbar { border-top: none; } #logging-table, #progress-table { width: 100%; padding: 15px; } #logging-table img, #progress-table img { width: 128px; margin: 10px auto; } #logging-table { height: 450px; overflow-y: scroll; } .progress-bar { text-align: center; } .fail { color: #cc0000; } .pass { color: #7BB730; } .warning { color: #FFCC00; } .install-or { display: inline-block; position: relative; margin: 0 10px; } .back-to-app-menu-item span { vertical-align: middle; color: #2c3e50 !important; } .back-to-app-menu-item span:before { content: "z"; font-weight: normal !important; font-size: 21px; font-family: "zurmo_gamification_symbly_rRg"; margin-right: 6px; } .back-to-app-menu-item a:hover span, .back-to-app-menu-item a:hover span:before { color: #fff !important; } #ConfigurationPageView table { border: 1px solid #DFDFDF; border-collapse: collapse; border-spacing: 1px; width: 100%; } #ConfigurationPageView table th, #ConfigurationPageView table td { border: 1px solid #DFDFDF; vertical-align: middle; padding: 10px; overflow: hidden; } #ConfigurationPageView table tbody, #ConfigurationPageView table tbody tr:last-child, #ConfigurationPageView table tbody tr:last-child td { border-bottom: none; } #ConfigurationPageView table th { font-weight: bold !important; height: 35px; line-height: 35px; background: url("../images/table-items-header.png") left top repeat-x; padding: 0 0 0 10px !important; } #ConfigurationPageView .checkbox-column { width: 35px; text-align: center; } #ConfigurationPageView .button-column { width: 25px; text-align: center; vertical-align: top !important; } #ConfigurationPageView tr.even { background: #fafafa; } #ConfigurationPageView table tr:hover { background-color: #D4E7BC; } #ConfigurationPageView table tr:hover .pencil { visibility: visible; } #ConfigurationPageView table thead { background-color: #f4f4f4; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#f9f9f9,#f4f4f4); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f9f9f9),color-stop(100%,#f4f4f4)); background-image: -webkit-linear-gradient(top,#f9f9f9,#f4f4f4); background-image: -o-linear-gradient(top,#f9f9f9,#f4f4f4); background-image: -moz-linear-gradient(top,#f9f9f9,#f4f4f4); background-image: linear-gradient(top,#f9f9f9,#f4f4f4); } #ConfigurationPageView table thead tr:hover { background-color: #f4f4f4; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#f9f9f9,#f4f4f4); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f9f9f9),color-stop(100%,#f4f4f4)); background-image: -webkit-linear-gradient(top,#f9f9f9,#f4f4f4); background-image: -o-linear-gradient(top,#f9f9f9,#f4f4f4); background-image: -moz-linear-gradient(top,#f9f9f9,#f4f4f4); background-image: linear-gradient(top,#f9f9f9,#f4f4f4); } .configuration-list { list-style: none; } .configuration-list li { width: 100%; position: relative; margin: 0; padding: 20px 100px 20px 15px; border-top: 1px solid #ccc; border-bottom: 1px solid #fff; } .configuration-list li:last-child { border-bottom: none; margin-bottom: none; } .configuration-list li:first-child { border-top: none; margin-top: none; } .configuration-list li a { float: right; position: absolute; right: 15px; top: 14px; vertical-align: middle; } .configuration-list h4 { margin: 0 0 0 0; display: inline-block; } .configuration-list a { margin: 0; } .configuration-list a .z-label { padding: 0 15px; } .configuration-list a .z-label:before { content: "n"; font-weight: normal !important; font-size: 20px; font-family: "zurmo_gamification_symbly_rRg"; color: #666; margin-right: 5px; position: relative; top: -2px; vertical-align: middle; } .configuration-list a:hover, .configuration-list a:hover span:before, .configuration-list td:last-child a:hover, .configuration-list td:last-child a:hover span:before { color: #2c3e50; } .creation-list .z-label:before { content: "Y" !important; } table.configuration-list { *zoom: 1; } table.configuration-list:before, table.configuration-list:after { content: " "; display: table; } table.configuration-list:after { clear: both; } table.configuration-list h4 { margin: 0 0 0 0; display: inline-block; } table.configuration-list tbody > tr > td { position: relative !important; } table.configuration-list td:last-child { text-align: right; } table.configuration-list td:last-child a { float: none; } table.configuration-list td:last-child a .z-label { padding: 0 15px; } table.configuration-list td:last-child a .z-label:before { content: "n"; font-weight: normal !important; font-size: 20px; font-family: "zurmo_gamification_symbly_rRg"; color: #666; margin-right: 5px; position: relative; top: -2px; vertical-align: middle; } table.configuration-list tr:last-child td { border-bottom: none; } #DevelopmentMenuView .configuration-list li span:before { content: ""; margin-right: 0px; } #DevelopmentMenuView .configuration-list li span:after { content: "7"; font-weight: normal !important; font-size: 18px; font-family: "zurmo_gamification_symbly_rRg"; margin-left: 5px; position: relative; top: 1px; } .ActionBarForSecurityTreeListView .view-toolbar, #ActionBarForGroupsEditAndDetailsView .view-toolbar { margin-top: 0; } .AdministrativeArea > div { float: left; width: 100%; } .AdministrativeArea #edit-form table { width: 100%; float: none; table-layout: fixed; } .AdministrativeArea .view-toolbar { margin-top: 0; } #ModulePermissionsEditAndDetailsView table tr:first-child th { color: #2c3e50; padding-left: 15px; padding-bottom: 10px; font-weight: bold !important; } #ModulePermissionsEditAndDetailsView th { text-align: right; padding-bottom: 15px; } #ModulePermissionsEditAndDetailsView td { text-align: left; padding-left: 15px; padding-bottom: 15px; } #GroupUserMembershipEditView td { padding-left: 0; } .multiselect-holder { position: relative; width: 75%; max-width: 675px; margin: 0 auto; *zoom: 1; } .multiselect-holder:before, .multiselect-holder:after { content: " "; display: table; } .multiselect-holder:after { clear: both; } .multiselect-holder label { display: block !important; float: none !important; } .multiselect-holder select { display: block; width: 100%; line-height: 150%; } .multiselect-holder input[type="button"] { font-weight: normal !important; font-size: 22px; font-family: "zurmo_gamification_symbly_rRg"; display: block !important; margin: 0 0 15px 0 !important; padding: 0 15px; line-height: 25px; } .multiselect-holder .select-arrow { display: none !important; } .multiselect-right, .multiselect-left { width: 45%; max-width: 300px; float: left; } .multiselect-right { float: right; } .multiselect-nav { position: absolute; top: 50%; left: 50%; margin: -30px auto auto -23px; } #LanguagesCollectionView, #CurrenciesCollectionView, #JobsCollectionView, .SecurityTreeListView { padding-bottom: 10px !important; } #LanguagesCollectionView table, #CurrenciesCollectionView table, #JobsCollectionView table, .SecurityTreeListView table { width: 100%; border-bottom: none; } #LanguagesCollectionView table br, #CurrenciesCollectionView table br, #JobsCollectionView table br, .SecurityTreeListView table br { display: none; } #LanguagesCollectionView table td, #LanguagesCollectionView table th, #CurrenciesCollectionView table td, #CurrenciesCollectionView table th, #JobsCollectionView table td, #JobsCollectionView table th, .SecurityTreeListView table td, .SecurityTreeListView table th { border-bottom: 1px solid #DFDFDF; padding: 10px !important; text-align: left; } #LanguagesCollectionView table tr td, #CurrenciesCollectionView table tr td, #JobsCollectionView table tr td, .SecurityTreeListView table tr td { font-weight: normal !important; padding-top: 10px !important; padding-bottom: 10px !important; } #LanguagesCollectionView > div, #CurrenciesCollectionView > div, #JobsCollectionView > div, .SecurityTreeListView > div { padding-bottom: 0 !important; } #LanguagesCollectionView table tr:first-child th, #CurrenciesCollectionView table tr:first-child th, #JobsCollectionView table tr:first-child th, .SecurityTreeListView table tr:first-child th { color: #545454; text-align: left; font-weight: bold !important; height: auto !important; line-height: 35px !important; background: url("../images/table-items-header.png") left top repeat-x; padding: 0 0 0 10px !important; } #LanguagesCollectionView td.level-0, #CurrenciesCollectionView td.level-0, #JobsCollectionView td.level-0, .SecurityTreeListView td.level-0 { padding-left: 10px !important; } #LanguagesCollectionView td.level-1, #CurrenciesCollectionView td.level-1, #JobsCollectionView td.level-1, .SecurityTreeListView td.level-1 { padding-left: 45px !important; background: url("../images/elbow.gif") 20px 10px no-repeat; } #LanguagesCollectionView td.level-2, #CurrenciesCollectionView td.level-2, #JobsCollectionView td.level-2, .SecurityTreeListView td.level-2 { padding-left: 75px !important; background: url("../images/elbow.gif") 50px 10px no-repeat; } #LanguagesCollectionView td.level-3, #CurrenciesCollectionView td.level-3, #JobsCollectionView td.level-3, .SecurityTreeListView td.level-3 { padding-left: 105px !important; background: url("../images/elbow.gif") 80px 10px no-repeat; } #LanguagesCollectionView td.level-4, #CurrenciesCollectionView td.level-4, #JobsCollectionView td.level-4, .SecurityTreeListView td.level-4 { padding-left: 135px !important; background: url("../images/elbow.gif") 110px 10px no-repeat; } #LanguagesCollectionView td.level-5, #CurrenciesCollectionView td.level-5, #JobsCollectionView td.level-5, .SecurityTreeListView td.level-5 { padding-left: 165px !important; background: url("../images/elbow.gif") 140px 10px no-repeat; } #LanguagesCollectionView td.level-6, #CurrenciesCollectionView td.level-6, #JobsCollectionView td.level-6, .SecurityTreeListView td.level-6 { padding-left: 195px !important; background: url("../images/elbow.gif") 170px 10px no-repeat; } #LanguagesCollectionView td.level-7, #CurrenciesCollectionView td.level-7, #JobsCollectionView td.level-7, .SecurityTreeListView td.level-7 { padding-left: 225px !important; background: url("../images/elbow.gif") 200px 10px no-repeat; } #LanguagesCollectionView td.level-8, #CurrenciesCollectionView td.level-8, #JobsCollectionView td.level-8, .SecurityTreeListView td.level-8 { padding-left: 255px !important; background: url("../images/elbow.gif") 230px 10px no-repeat; } #LanguagesCollectionView td.level-9, #CurrenciesCollectionView td.level-9, #JobsCollectionView td.level-9, .SecurityTreeListView td.level-9 { padding-left: 285px !important; background: url("../images/elbow.gif") 260px 10px no-repeat; } #LanguagesCollectionView td.level-10, #CurrenciesCollectionView td.level-10, #JobsCollectionView td.level-10, .SecurityTreeListView td.level-10 { padding-left: 315px !important; background: url("../images/elbow.gif") 290px 10px no-repeat; } #ModalView .SecurityTreeListView td.level-1, #ModalView .SecurityTreeListView td.level-2, #ModalView .SecurityTreeListView td.level-3, #ModalView .SecurityTreeListView td.level-4, #ModalView .SecurityTreeListView td.level-5, #ModalView .SecurityTreeListView td.level-6, #ModalView .SecurityTreeListView td.level-7, #ModalView .SecurityTreeListView td.level-8, #ModalView .SecurityTreeListView td.level-9, #ModalView .SecurityTreeListView td.level-10 { background-position-y: 3px; } #RolesTreeListView .z-action-link { font-size: 12px; text-decoration: underline !important; } #GroupEditAndDetailsView .has-model-select input, #RoleEditAndDetailsView .has-model-select input { text-indent: 21px; } #JobsCollectionView div.wide.form { float: none; } #JobsCollectionView .form form { padding: 0; } #JobsCollectionView h3 { padding-left: 10px; margin-top: 30px; margin-bottom: 10px; } #JobsCollectionView .jobs-help { margin: 10px 0 10px 10px; display: block; } #JobsCollectionView tr:last-child td { border-bottom: 1px solid #DFDFDF !important; } #JobsCollectionView table tr:first-child th { color: #545454; text-align: left; font-weight: bold !important; height: auto !important; background: url("../images/table-items-header.png") left top repeat-x; padding: 0 0 0 10px !important; } #JobsCollectionView table { table-layout: auto; border-top: 1px solid #DFDFDF; } #JobsCollectionView table:first-child { border-top: none; } #JobsCollectionView #jobs-collection-form > div + table { border-top: none; } .job-log-link { display: table-cell; white-space: nowrap; float: left; } .job-name { display: table-cell; padding-left: 10px; } .reset-job-link { margin: 0 !important; float: right; } #JobLogsModalListView td:first-child, #JobLogsModalListView th:first-child { padding-left: 15px; } .jobHasErrors { color: #cc0000; } .jobRanSuccessfully { color: #7BB730; } .jobHasNeverRun { color: #b38b01; } .button-column-right { text-align: right !important; } .run-button span:before { content: ""; margin-right: 0px; } .run-button span:after { content: "7"; font-weight: normal !important; font-size: 18px; font-family: "zurmo_gamification_symbly_rRg"; margin-left: 5px; position: relative; top: 1px; } #logging-table, #complete-table { margin-bottom: 15px; } #logging-table h3, #complete-table h3 { margin-bottom: 8px; } #logging-table a, #complete-table a { margin-right: 15px; } #logging-table ol, #complete-table ol { list-style: decimal inside; } #logging-table li, #complete-table li { margin-bottom: 5px; } #LanguagesCollectionView { padding-bottom: 0 !important; } #LanguagesCollectionView h1 + div { padding: 15px; } #LanguagesCollectionView h1 + div a { float: none; margin: 0 !important; } #LanguagesCollectionView form { padding: 0; } #LanguagesCollectionView .view-toolbar-container { border-top: 1px solid #CCCCCC; margin-bottom: 5px; } #LanguagesCollectionView .hasChecBox { margin-top: 0 !important; } #LanguagesCollectionView form td > label:first-child { margin-top: 0 !important; } #LanguagesCollectionView tr:last-child td { border-bottom: none !important; } #LanguagesCollectionView .checkbox-column { padding-left: 15px !important; } #LanguagesCollectionView a { position: relative; float: right; right: 0; top: 0; margin: -6px 0 0 10px; } #LanguagesCollectionView .configuration-list { border-top: 1px solid #ccc; } #LanguagesCollectionView .configuration-list li { padding-right: 15px; } #LanguagesCollectionView .configuration-list li:first-child { border-top: 1px solid #fff; } #LanguagesCollectionView .z-label { padding: 0 25px; } #LanguagesCollectionView .z-label:before { display: none !important; } #currency-collection-form { padding-bottom: 5px !important; } #currency-collection-form .portlet-toolbar { position: relative; top: auto; left: auto; right: auto; padding-top: 13px; text-align: center; border-top: 1px solid #fff; } #currency-collection-form .portlet-toolbar a { display: inline-block; margin: 0 10px; } #currency-collection-form .view-toolbar-container { margin-bottom: 5px; } #currency-collection-form .checkbox-column { padding-left: 15px !important; } #CurrenciesCollectionView, #CurrencyCreateView { float: left; width: 100%; } #CurrenciesCollectionView { border: none; background: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; padding: 0; margin: 0; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } #CurrenciesCollectionView .form form { padding: 0; } #CurrencyCreateView { margin: 0; padding: 0; border: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; background: none; } .breadcrumbs { padding: 0 0 15px 0; font-size: 11px; } .breadcrumbs a { color: #2c3e50 !important; } .ModuleEditView #edit-form label { text-align: left; } .multi-select-checkbox-input { *zoom: 1; width: 100%; display: block; margin-top: 4px; position: relative; } .multi-select-checkbox-input:before, .multi-select-checkbox-input:after { content: " "; display: table; } .multi-select-checkbox-input:after { clear: both; } .multi-select-checkbox-input .hasCheckBox { margin: 0 10px 0 0 !important; z-index: 20; } .multi-select-checkbox-input .z-spinner { display: block; left: -2px; top: 3px; z-index: 0; } .has-lang-label { position: relative; margin-bottom: 15px; clear: left; } .has-lang-label input { position: relative; } .has-lang-label input + span { background: url("../images/lang-label.png") left top no-repeat; display: inline-block; position: absolute; left: 1px; line-height: 24px; top: 1px; min-width: 80px; text-align: left; border-right: 1px solid #cccccc; -webkit-text-shadow: rgba(255,255,255,0.8) 0px 1px; -moz-text-shadow: rgba(255,255,255,0.8) 0px 1px; -ms-text-shadow: rgba(255,255,255,0.8) 0px 1px; -o-text-shadow: rgba(255,255,255,0.8) 0px 1px; text-shadow: rgba(255,255,255,0.8) 0px 1px; font-size: 11px; -webkit-border-radius: 1px 0 0 1px; -moz-border-radius: 1px 0 0 1px; -ms-border-radius: 1px 0 0 1px; -o-border-radius: 1px 0 0 1px; border-radius: 1px 0 0 1px; padding: 0 10px 0 17px; } .has-lang-label .errorMessage { margin-bottom: 15px; } #UsersListView { position: relative; float: left; width: 100%; margin-bottom: 20px; } #UsersPageView .panel table { margin-right: 15px; } .panelTitle { padding-left: 15px; padding-top: 30px; } #UserConfigurationEditView #edit-form table { width: 100%; } #UserConfigurationEditView .radio-input { margin-bottom: 10px; display: block; } #UsersSearchView .search-view-1 table { border-bottom: none; } #UsersSearchView .search-view-1 th { width: 15%; } #UsersSearchView .search-view-1 td { width: 85%; padding-bottom: 15px; } #UsersSearchView .view-toolbar-container { margin-top: 15px; } #UserViewAccountConfiguration > a:before { content: "n"; font-weight: normal !important; font-size: 24px; font-family: "zurmo_gamification_symbly_rRg"; padding: 0; margin: 0; vertical-align: middle; position: relative; top: -2px; } .UserGroupMembershipView .details-table, #PoliciesEditAndDetailsView .details-table, #ModulePermissionsEditAndDetailsView .details-table, #RightsEditAndDetailsView .details-table { margin-right: 0; } .UserGroupMembershipView th, #PoliciesEditAndDetailsView th, #ModulePermissionsEditAndDetailsView th, #RightsEditAndDetailsView th { text-align: left; min-width: 200px; } .UserGroupMembershipView { margin-top: 0; } .UserGroupMembershipView th { text-align: left !important; } .UserActionBarAndSecurityDetailsView > div + div { margin-top: 30px; } .UserActionBarAndSecurityDetailsView > div:first-child + div { margin-top: 0; } #AuditEventsModalListView tr td:first-child, #AuditEventsModalListView tr th:first-child { padding-left: 15px; } #AuditEventsModalListView tr td:first-child:focus, #AuditEventsModalListView tr th:first-child:focus { outline: none; } #EmailConfigurationEditAndDetailsView .panel { width: 100% !important; } .EmailTestingButton { line-height: 1; cursor: pointer; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; position: relative; display: inline-block; text-indent: 0; -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); *zoom: 1; -webkit-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); border-top: 1px solid rgba(62,88,113,0.8); border-left: 1px solid rgba(44,62,80,0.8); border-right: 1px solid rgba(44,62,80,0.8); border-bottom: 1px solid rgba(26,37,47,0.8); border-top: 1px solid #e7e7e7; border-left: 1px solid #d7d7d7; border-right: 1px solid #d7d7d7; border-bottom: 1px solid #bababa; } .EmailTestingButton:before, .EmailTestingButton:after { content: " "; display: table; } .EmailTestingButton:after { clear: both; } .EmailTestingButton:hover { -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); } .EmailTestingButton.disabled { pointer-events: none; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -webkit-filter: grayscale(85%); -moz-filter: grayscale(85%); -ms-filter: grayscale(85%); -o-filter: grayscale(85%); filter: grayscale(85%); filter: gray; } #testImapConnection { margin: 0; } .modal-result-message { min-height: 60px; padding: 15px; line-height: 150%; -webkit-box-shadow: inset 0 0 0 2px #ffffff; -moz-box-shadow: inset 0 0 0 2px #ffffff; -ms-box-shadow: inset 0 0 0 2px #ffffff; -o-box-shadow: inset 0 0 0 2px #ffffff; box-shadow: inset 0 0 0 2px #ffffff; background-color: #F5F5F5; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#ffffff,#F5F5F5); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffffff),color-stop(100%,#F5F5F5)); background-image: -webkit-linear-gradient(top,#ffffff,#F5F5F5); background-image: -o-linear-gradient(top,#ffffff,#F5F5F5); background-image: -moz-linear-gradient(top,#ffffff,#F5F5F5); background-image: linear-gradient(top,#ffffff,#F5F5F5); } #send-test-email-field { width: 100%; float: left; } #send-test-email-field > div { margin-right: 170px; } #send-test-email-field + span { float: left; width: 170px; margin-left: -170px; } #send-test-email-field + span a { margin: 0 !important; float: right; } .AppContent.ImportWizardView #edit-form h3 { margin-top: 0; margin-left: 0; } .AppContent.ImportWizardView #edit-form table { width: 100%; } .AppContent.ImportWizardView #edit-form table td { padding-left: 0; } .AppContent.ImportWizardView .right-side-edit-view-panel { background: none; padding: 0; } .AppContent.ImportWizardView #addExtraColumnButton { line-height: 1; cursor: pointer; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; position: relative; display: inline-block; text-indent: 0; -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); *zoom: 1; -webkit-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); border-top: 1px solid rgba(62,88,113,0.8); border-left: 1px solid rgba(44,62,80,0.8); border-right: 1px solid rgba(44,62,80,0.8); border-bottom: 1px solid rgba(26,37,47,0.8); margin: 0; } .AppContent.ImportWizardView #addExtraColumnButton:before, .AppContent.ImportWizardView #addExtraColumnButton:after { content: " "; display: table; } .AppContent.ImportWizardView #addExtraColumnButton:after { clear: both; } .AppContent.ImportWizardView #addExtraColumnButton:hover { -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); } .AppContent.ImportWizardView #addExtraColumnButton.disabled { pointer-events: none; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -webkit-filter: grayscale(85%); -moz-filter: grayscale(85%); -ms-filter: grayscale(85%); -o-filter: grayscale(85%); filter: grayscale(85%); filter: gray; } .AppContent.ImportWizardView .required-fields { font-size: 12px; line-height: 18px; padding-left: 10px; } .AppContent.ImportWizardView .required-fields strong { margin-bottom: 4px; margin-left: -10px; } #ImportWizardUploadFileView .hasCheckBox { margin: 0 !important; } #ImportWizardUploadFileView .hasCheckBox + label { margin: 5px 0 0 10px !important; } #ImportWizardMappingView > .wrapper { padding-bottom: 10px; } #ImportWizardMappingView #edit-form { padding: 0; } #ImportWizardMappingView h3 { margin: 0; } #ImportWizardMappingView table { border-left: 1px solid #DFDFDF; border-right: 1px solid #DFDFDF; } #ImportWizardMappingView table tr:first-child th { color: #545454; text-align: left; font-weight: bold !important; height: 35px; line-height: 35px; background: url("../images/table-items-header.png") left top repeat-x; padding: 0 0 0 15px !important; border-top: 1px solid #DFDFDF; border-bottom: 1px solid #DFDFDF; } #ImportWizardMappingView td { text-align: left; padding-top: 15px; padding-bottom: 15px; padding-left: 15px !important; border-bottom: 1px solid #DFDFDF; } #ImportWizardMappingView tr td:last-child { padding-right: 0; vertical-align: top; } #ImportWizardMappingView td + td { vertical-align: top; } .column-import-data, .column-import-data div { margin-top: 5px; padding-right: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } #sample-column-header { position: relative; } #sample-column-header a { padding: 2px 4px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; color: #fff !important; font-size: 11px; background-color: #2c3e50 !important; font-weight: normal !important; font-size: 16px; font-family: "zurmo_gamification_symbly_rRg"; } #sample-column-header a:hover { text-decoration: none; filter: alpha(opacity=75); -khtml-opacity: 0.75; -moz-opacity: 0.75; opacity: 0.75; } #sample-column-header a + a { margin-left: 5px; } #sample-column-header div { display: inline-block; margin-left: 5px; } .mapping-rules h4 { padding: 10px 0 5px 0; } .mapping-rules label { line-height: 26px; padding-right: 10px; width: 35%; } .mapping-rules > div { width: 49%; display: inline-block; vertical-align: top; } .mapping-rules > div > .has-model-select, .mapping-rules > div > .hasDropDown, .mapping-rules > div > input { width: 65% !important; display: inline-block; } .mapping-rules > div .radio-input { display: block; width: 100%; line-height: 1.5; } .mapping-rules > div .radio-input label { width: auto; line-height: inherit; } .mapping-rules > div:last-child { width: 100%; } .mapping-rules > div + div:last-child { width: 49%; margin-left: 2%; } .mapping-rules.has3 > div { width: 32% !important; margin-right: 2%; margin-left: 0; } .mapping-rules.has3 > div:last-child { margin-left: 0; margin-right: 0; } .mapping-rules.multiple table { width: 49.5% !important; float: left !important; } .mapping-rules.multiple table + table { float: right !important; } .remove-extra-column-link { float: right; display: inline-block; position: relative; top: -21px; right: -90px; z-index: 99999; padding: 2px 4px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; color: #fff !important; font-size: 11px; background-color: #2c3e50 !important; } #sequential-process-spinner .z-spinner { display: block; margin: -1px 10px 0 0; } #import-temp-table-list-view { text-align: center; } #import-temp-table-list-view .items-wrapper { display: block; overflow-x: auto; border: 1px solid #DFDFDF; border-bottom: none; } #import-temp-table-list-view table.items { table-layout: auto; background: #fafafa; } #import-temp-table-list-view tr:first-child th { line-height: 1; padding: 5px; text-align: center; } #import-temp-table-list-view td { text-align: center; vertical-align: middle; } #import-temp-table-list-view .drillDownContent { min-height: 0; } #import-temp-table-list-view .pager { -webkit-box-shadow: inset 0 -1px 0 #dfdfdf; -moz-box-shadow: inset 0 -1px 0 #dfdfdf; -ms-box-shadow: inset 0 -1px 0 #dfdfdf; -o-box-shadow: inset 0 -1px 0 #dfdfdf; box-shadow: inset 0 -1px 0 #dfdfdf; border-top: none; border-left: 1px solid #DFDFDF; border-right: 1px solid #DFDFDF; } #import-temp-table-list-view .pager li { border-bottom: 1px solid #DFDFDF; } #ImportWizardDataAnalysisCompleteView > div { margin: 0; border: none; background: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; } #ImportWizardDataAnalysisCompleteView > div #edit-form:after { display: none; } #ImportWizardImportRulesView .radio-input { margin-bottom: 10px !important; } #ImportWizardImportRulesView table { margin-bottom: 0 !important; } #ImportWizardImportRulesView table span { text-align: left; display: block; margin-bottom: 20px; } .progressbar-container { padding: 15px; } .process-message { padding: 0 15px 15px 15px; } #ImportSequentialProcessContainerView > div { float: left; width: 100%; } #ImportSequentialProcessContainerView #edit-form { border: 0 !important; background: none !important; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; } #ImportSequentialProcessContainerView #edit-form table { width: 100%; } #ImportSequentialProcessContainerView td { padding: 5px !important; } #ImportSequentialProcessContainerView td h3 { margin: 0 !important; } #ImportSequentialProcessContainerView h3, #ImportSequentialProcessContainerView h3 + span { margin: 0; display: block; position: relative; } #ImportSequentialProcessContainerView .process-container-view { *zoom: 1; } #ImportSequentialProcessContainerView .process-container-view:before, #ImportSequentialProcessContainerView .process-container-view:after { content: " "; display: table; } #ImportSequentialProcessContainerView .process-container-view:after { clear: both; } #ImportSequentialProcessContainerView .process-container-view:after { clear: none !important; } #ImportWizardCreateUpdateModelsCompleteView > div { padding: 0 !important; margin: 0; border: 0 !important; background: none !important; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; } #ImportWizardCreateUpdateModelsCompleteView table { border-bottom: 1px solid #DFDFDF !important; } #ImportWizardCreateUpdateModelsCompleteView table tr:first-child th { font-weight: bold !important; } #ImportWizardCreateUpdateModelsCompleteView td { padding: 5px !important; } #ImportWizardCreateUpdateModelsCompleteView th { text-align: left; font-size: 12px !important; color: #666; font-weight: 400 !important; } #ImportWizardCreateUpdateModelsCompleteView h3 { margin: 0 0 10px 0 !important; } #import-temp-table-list-view-rowDrillDown { width: 30px; } .icon-import-mapping { display: block; font-weight: bold; padding: 3px 0 5px 0; } .import-notifications { text-align: left; padding: 7px 5px 5px 40px; } .import-notifications li + li { margin-top: 5px; } .import-summary { width: 60%; margin: 20px auto 0 auto; line-height: 150%; list-style: none; } .import-summary li { text-align: center; position: relative; margin: 0 1% 3px 1%; width: 31%; float: left; background: #f0f0f0; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 10px 10px 10px 10px; -webkit-box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) , 1px 1px 1px 0px rgba(153, 153, 153, 0.0); -moz-box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) , 1px 1px 1px 0px rgba(153, 153, 153, 0.0); -ms-box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) , 1px 1px 1px 0px rgba(153, 153, 153, 0.0); -o-box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) , 1px 1px 1px 0px rgba(153, 153, 153, 0.0); box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) , 1px 1px 1px 0px rgba(153, 153, 153, 0.0); } .import-summary li > strong { display: block; font-weight: bold; font-size: 26px; margin-bottom: 5px; } .import-summary .led { display: block; margin-top: 5px; width: 100%; height: 2px; background: #ffd900; -webkit-box-shadow: 0 1px 0 0 #f3f3f3; -moz-box-shadow: 0 1px 0 0 #f3f3f3; -ms-box-shadow: 0 1px 0 0 #f3f3f3; -o-box-shadow: 0 1px 0 0 #f3f3f3; box-shadow: 0 1px 0 0 #f3f3f3; } .import-summary .led.state-true { background: #97c43d; -webkit-box-shadow: 0 1px 0 0 #f3f3f3; -moz-box-shadow: 0 1px 0 0 #f3f3f3; -ms-box-shadow: 0 1px 0 0 #f3f3f3; -o-box-shadow: 0 1px 0 0 #f3f3f3; box-shadow: 0 1px 0 0 #f3f3f3; } .import-summary .led.state-false { background: #c43d53; -webkit-box-shadow: 0 1px 0 0 #f3f3f3; -moz-box-shadow: 0 1px 0 0 #f3f3f3; -ms-box-shadow: 0 1px 0 0 #f3f3f3; -o-box-shadow: 0 1px 0 0 #f3f3f3; box-shadow: 0 1px 0 0 #f3f3f3; } .import-results-toolbar { border: 1px solid #DFDFDF; border-bottom: none; } .import-results-toolbar .ui-buttonset { padding-top: 10px; } #SequentialProcessView .process-container-view { margin: 0; padding: 0; } #ImportErrorsListView { margin-bottom: 15px; } #ImportErrorsListView #list-view { -webkit-box-shadow: none !important; -moz-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; box-shadow: none !important; border: none; background: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; padding: 0; margin: 0; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } #ImportErrorsListView .items { table-layout: fixed; } #ImportErrorsListView tr td:first-child, #ImportErrorsListView tr th:first-child { width: 35px !important; } .color-swatch, .texture-swatch { margin-bottom: 10px; width: 50%; float: left; display: inline-block !important; clear: none !important; } .color-swatch span, .texture-swatch span { display: inline-block; width: 32px; height: 16px; } .color-swatch label, .texture-swatch label { float: none !important; top: -3px; margin-left: 0 !important; } .color-swatch input, .texture-swatch input { margin-right: 12px !important; margin-top: 2px; } .color-swatch .icon-lock, .texture-swatch .icon-lock { margin: 0; padding: 0 !important; font-style: normal; } .color-swatch [id*="theme-color-tooltip"], .color-swatch [id*="background-texture-tooltip"], .texture-swatch [id*="theme-color-tooltip"], .texture-swatch [id*="background-texture-tooltip"] { width: auto !important; left: -25px; font-size: 18px; top: -5px; position: absolute; border: none; } .color-swatch input[disabled="disabled"], .texture-swatch input[disabled="disabled"] { visibility: hidden; } .texture-swatch span { width: 90px; border: 3px solid #DDDEDE; } .texture-swatch input { position: relative; top: 9px; } .texture-swatch .background-texture-1 { margin-right: 10px; margin-top: 0; position: relative; top: 7px; } .texture-swatch [id*="background-texture-tooltip"] { top: -3px; } .texture-swatch label { top: 0; } .color-swatch span { position: relative; top: 3px; } .color-swatch .theme-color-3 { margin-right: 10px; } #customThemeColorPicker { position: relative; z-index: 12; width: 45%; clear: left; } #customThemeColorPicker > div { min-width: 65px; width: 30%; margin-left: 5%; float: left; position: relative; } #customThemeColorPicker > div:first-child { margin-left: 0; } #theme-color-configuration { clear: left; padding-top: 15px; } .user-menu-preferences td { padding-left: 0 !important; } .user-menu-preferences .multiselect-holder { max-width: 100%; margin: 0; } .user-menu-preferences .multiselect-right { float: none; } .user-menu-preferences .multiselect-nav { margin-left: 0; } .uploaded-logo-template td.name { padding-top: 10px !important; } .uploaded-logo { display: inline-block; padding: 5px; margin-right: 5px; line-height: 1; background: url("../images/transparency-grid.gif") left top repeat; } .uploaded-logo ~ .file-size { vertical-align: top; } .footer-preview-modal { padding: 15px; white-space: normal; word-break: break-all; } #QueuesListView { float: left; width: 100%; margin-bottom: 20px; position: relative; } #queue-search-element .z-spinner { display: block !important; left: 198px; top: 4px; } .security-rights p, .security-permissions p, .security-roles p, .security-groups p, .security-nested-groups p, .security-adhoc-sharing p { margin-left: 100px !important; } .security-rights .icon, .security-permissions .icon, .security-roles .icon, .security-groups .icon, .security-nested-groups .icon, .security-adhoc-sharing .icon { position: relative; margin: 0px 15px 0 0; display: inline-block; height: 100%; } .security-rights .icon:before, .security-permissions .icon:before, .security-roles .icon:before, .security-groups .icon:before, .security-nested-groups .icon:before, .security-adhoc-sharing .icon:before { content: '\00D4'; font-weight: normal !important; font-size: 145px; font-family: "zurmo_gamification_symbly_rRg"; line-height: 60px; position: absolute; top: 15px; left: 10px; -webkit-text-shadow: 0 -1px 0 #000; -moz-text-shadow: 0 -1px 0 #000; -ms-text-shadow: 0 -1px 0 #000; -o-text-shadow: 0 -1px 0 #000; text-shadow: 0 -1px 0 #000; } .security-permissions .icon:before { content: '\00CA'; } .security-roles .icon:before { content: '\00C9'; } .security-groups .icon:before { content: '\00DB'; } .security-nested-groups .icon:before { content: '\00EA'; } .security-adhoc-sharing .icon:before { content: '\00EB'; } .exported-filename { line-height: 22px; } .exported-filename ~ .secondary-button { float: right; margin-right: 5px; } .exported-filename ~ .cancelled-export { font-size: 11px; float: right; position: relative; top: 3px; margin-right: 5px; padding: 2px 4px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; color: #fff !important; background-color: #a82d31; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#c43d53,#a82d31); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#c43d53),color-stop(100%,#a82d31)); background-image: -webkit-linear-gradient(top,#c43d53,#a82d31); background-image: -o-linear-gradient(top,#c43d53,#a82d31); background-image: -moz-linear-gradient(top,#c43d53,#a82d31); background-image: linear-gradient(top,#c43d53,#a82d31); } .notificationConfigurationTableHead span { display: inline-block; font-weight: bold; width: 45px; } .enableInboxAndEmailNotifications span { display: inline-block; width: 45px; } .enableInboxAndEmailNotifications span { padding-left: 8px; } .available-portlets { padding: 15px 15px 0 15px; list-style: none; *zoom: 1; max-height: 400px; overflow-y: scroll; } .available-portlets:before, .available-portlets:after { content: " "; display: table; } .available-portlets:after { clear: both; } .available-portlets li { margin-bottom: 15px; color: #666; vertical-align: middle; } .available-portlets h3 { position: relative; } .available-portlets h3 a { padding-left: 40px; } .available-portlets h3 span:before { content: "z"; font-weight: normal !important; font-size: 40px; font-family: "zurmo_gamification_symbly_rRg"; line-height: 1; position: absolute; top: -8px; border: none; outline: none !important; display: inline-block; color: #666; margin: 0; } .available-portlets a { outline: none !important; cursor: pointer; } .available-portlets a:foucs { outline: none; } .available-portlets div { padding-left: 40px; } .available-portlets .mini-button { float: right; position: relative; margin-left: 0; top: -10px; } .available-portlets .mini-button span { display: block; padding: 0 6px 0 6px; background: none; } .available-portlets .icon-contacts:before { content: "y"; } .available-portlets .icon-leads:before { content: "."; } .available-portlets .icon-opportunities:before { content: "9"; } .available-portlets .icon-reports:before { content: '\V'; } .available-portlets .icon-products:before { content: '\003E'; } .available-portlets .icon-products:after { content: ''; display: none; } .available-portlets .icon-rssReader:before { content: "z"; } .available-portlets .icon-tasks:before { content: "4"; } .available-portlets .icon-missions:before { content: 'Q'; } .available-portlets .icon-accounts:before { content: "P"; } .available-portlets .icon-activities:before { content: '\00A5'; } .available-portlets .icon-socialItems:before { content: "u"; } .available-portlets .icon-iframe:before { content: '\2211'; font-size: 48px; } .available-portlets .icon-maps:before { content: 'L'; font-size: 46px; } .available-portlets .icon-googleWebTracking:before { content: '\00DA'; font-size: 46px; } .available-portlets .icon-marketingLists:before { content: '\0022'; font-size: 46px; } .available-portlets .icon-projects:before { content: '\02C7'; } .available-portlets .icon-notes:before { content: '3'; } .available-portlets .icon-meetings:before { content: 'U'; } .available-portlets .icon-accountAccountAffiliations:before { content: '\00FB'; } .available-portlets .icon-accountContactAffiliations:before { content: '\00F4'; } #modal-edit-form th { line-height: 24px; } #modal-edit-form th, #modal-edit-form td { padding: 0 0 15px 0; } #modal-edit-form input[type="checkbox"] + label { width: 60px; margin-top: 0; } #modal-edit-form td > label { margin-top: 10px; } #modal-edit-form td > label:first-child { margin-top: 5px; } #modal-edit-form .panelTitle { padding-left: 0; padding-top: 0; } .panelTitle { font-size: 13px; font-weight: bold; color: #2c3e50; margin: 10px 0; } #DashboardEditView .panel { width: 100% !important; } #MyMissionsForPortletView > div { float: none; margin-bottom: 0; } #MyMissionsForPortletView .items td { padding-left: 15px !important; padding-right: 15px !important; } #MyMissionsForPortletView .items td:last-child { border-top: none; } #MyMissionsForPortletView .missionStatusChangeArea a:first-child { margin-left: 0 !important; } #MyMissionsForPortletView .missionStatusChangeArea a:last-child { margin-right: 0 !important; } #MyMissionsForPortletView .actions-column { width: 200px; } #MyMissionsForPortletView td:first-child { border-top: none; } #MyMissionsForPortletView .mission-status { font-size: 11px; } .missing-chart { display: block; text-align: center; position: relative; top: 50%; margin-top: -34px; font-size: 12px; color: #2c3e50; } .missing-chart:before { content: "j"; font-weight: normal !important; font-size: 24px; font-family: "zurmo_gamification_symbly_rRg"; margin-right: 10px; position: relative; top: 1px; } .mapCanvasPortlet { width: 100%; height: 400px; } #product-portlet-grid-view { overflow-x: scroll; } div.form fieldset { border: 1px solid #DDD; padding: 10px; margin: 0 0 10px 0; -moz-border-radius: 7px; } div.form .hint { margin: 0; padding: 0; color: #999; } div.form .note { font-style: italic; } div.form span.required { color: #C00; padding: 0 0 0 3px; font-weight: bold; } div.form div.error label, div.form label.error, div.form span.error { color: #C00; } div.form div.error input, div.form div.error textarea, div.form div.error select, div.form td.error input, div.form td.error textarea, div.form td.error select, div.form input.error, div.form textarea.error, div.form select.error { border-color: #CC0000; -webkit-box-shadow: 0 0 1px 1px rgba(205,0,0,0.5); -moz-box-shadow: 0 0 1px 1px rgba(205,0,0,0.5); -ms-box-shadow: 0 0 1px 1px rgba(205,0,0,0.5); -o-box-shadow: 0 0 1px 1px rgba(205,0,0,0.5); box-shadow: 0 0 1px 1px rgba(205,0,0,0.5); } div.form .errorSummary { position: relative; margin: 0 0 15px 0; padding: 10px; border-radius: 5px !important; border: 1px solid #cc0000; background: #ffb5b5; font-weight: bold; -webkit-box-shadow: 0 0 20px 5px rgba(153,153,153,0.5); -moz-box-shadow: 0 0 20px 5px rgba(153,153,153,0.5); -ms-box-shadow: 0 0 20px 5px rgba(153,153,153,0.5); -o-box-shadow: 0 0 20px 5px rgba(153,153,153,0.5); box-shadow: 0 0 20px 5px rgba(153,153,153,0.5); } div.form .errorMessage { color: #CC0000; font-size: 11px; font-weight: normal; width: auto; float: left; margin-top: 12px; border: 1px solid #CC0000; padding: 4px; background: #FFBCB9; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: 0 0 2px 1px rgba(153,153,153,0.3); -moz-box-shadow: 0 0 2px 1px rgba(153,153,153,0.3); -ms-box-shadow: 0 0 2px 1px rgba(153,153,153,0.3); -o-box-shadow: 0 0 2px 1px rgba(153,153,153,0.3); box-shadow: 0 0 2px 1px rgba(153,153,153,0.3); position: relative; } div.form .errorMessage:before { content: ""; font-size: 0; width: 12px; height: 9px; display: block; position: absolute; left: 6px; top: -8px; background: url("../images/error-tip.png") left bottom no-repeat; } div.form .errorSummary p { margin: 0 0 5px 0; } div.form .errorSummary ul { margin: 0; padding: 0 0 0 20px; } div.wide.form label { float: left; position: relative; } div.wide.form .row { clear: left; } div.wide.form .buttons, div.wide.form .hint, div.wide.form .errorMessage { clear: both; padding-left: 2px; } .field-description { margin-top: 5px; font-size: 11px; font-weight: normal; font-style: italic; display: inline-block; color: #999; } .file-upload-box { padding-left: 0; width: 100%; } .file-upload-box > .ui-widget { width: 100%; } .file-upload-box div { margin-left: 0 !important; } .file-upload-box .fileinput-button { width: 100%; } .file-upload-box .ui-icon-plusthick { line-height: 1; cursor: pointer; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; position: relative; display: inline-block; text-indent: 0; -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); *zoom: 1; -webkit-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); border-top: 1px solid rgba(62,88,113,0.8); border-left: 1px solid rgba(44,62,80,0.8); border-right: 1px solid rgba(44,62,80,0.8); border-bottom: 1px solid rgba(26,37,47,0.8); padding: 0 5px; } .file-upload-box .ui-icon-plusthick:before, .file-upload-box .ui-icon-plusthick:after { content: " "; display: table; } .file-upload-box .ui-icon-plusthick:after { clear: both; } .file-upload-box .ui-icon-plusthick:hover { -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); } .file-upload-box .ui-icon-plusthick.disabled { pointer-events: none; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -webkit-filter: grayscale(85%); -moz-filter: grayscale(85%); -ms-filter: grayscale(85%); -o-filter: grayscale(85%); filter: grayscale(85%); filter: gray; } .file-upload-box .ui-icon-plusthick:after { content: "Y"; font-weight: normal !important; font-size: 20px; font-family: "zurmo_gamification_symbly_rRg"; } .add-label { font-weight: normal !important; } .show-file-upload-box { display: none; position: relative; z-index: 99999; font-weight: normal; font-size: 11px; color: #2c3e50; } #CommentInlineEditForModelView .fileupload-content, #CommentForTaskInlineEditForModelView .fileupload-content { width: 100%; } #CommentInlineEditForModelView .fileupload-content td.name, #CommentForTaskInlineEditForModelView .fileupload-content td.name { padding: 2px 0 !important; } .files { font-size: 11px; margin-top: 5px; float: left !important; } .files td { padding: 2px 0 !important; vertical-align: middle; font-weight: 400 !important; } .files .ui-state-error td { color: #CC0000; font-weight: bold; } .file-size { font-size: 10px; margin-left: 5px; color: #999; } .template-upload .name { position: relative; } .template-upload .z-spinner { position: relative; float: left; display: block; margin-top: -1px; } .upload-actions { float: right; } .upload-actions .icon-delete { color: #2c3e50; background: none; border: none; cursor: pointer; line-height: 16px; margin-top: -2px; font-weight: normal !important; font-size: 22px; font-family: "zurmo_gamification_symbly_rRg"; } .upload-actions .icon-delete span { display: none; } .upload-actions .icon-delete:before { margin: 0; top: 0; cursor: pointer; filter: alpha(opacity=25); -khtml-opacity: 0.25; -moz-opacity: 0.25; opacity: 0.25; } .upload-actions .icon-delete:hover:before { filter: alpha(opacity=100); -khtml-opacity: 1; -moz-opacity: 1; opacity: 1; } .upload-actions button.start, .upload-actions button.cancel { cursor: pointer; border: none; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; margin: 0 0 0 4px; color: #fff; font-weight: normal; background: none; } .upload-actions button.start:hover, .upload-actions button.cancel:hover { -webkit-box-shadow: 0 0 1px 0 #333; -moz-box-shadow: 0 0 1px 0 #333; -ms-box-shadow: 0 0 1px 0 #333; -o-box-shadow: 0 0 1px 0 #333; box-shadow: 0 0 1px 0 #333; } .upload-actions button.start span, .upload-actions button.cancel span { display: none; padding: 2px; font-size: 10px !important; line-height: 1; } .upload-actions button.start .ui-button-text, .upload-actions button.cancel .ui-button-text { display: block; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; } .upload-actions button.start .ui-button-text span, .upload-actions button.cancel .ui-button-text span { display: block; padding: 1px; } .upload-actions button.start span { background-color: #6fa82d; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#97c43d,#6fa82d); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#97c43d),color-stop(100%,#6fa82d)); background-image: -webkit-linear-gradient(top,#97c43d,#6fa82d); background-image: -o-linear-gradient(top,#97c43d,#6fa82d); background-image: -moz-linear-gradient(top,#97c43d,#6fa82d); background-image: linear-gradient(top,#97c43d,#6fa82d); } .upload-actions button.cancel span { background-color: #a82d31; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#c43d53,#a82d31); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#c43d53),color-stop(100%,#a82d31)); background-image: -webkit-linear-gradient(top,#c43d53,#a82d31); background-image: -o-linear-gradient(top,#c43d53,#a82d31); background-image: -moz-linear-gradient(top,#c43d53,#a82d31); background-image: linear-gradient(top,#c43d53,#a82d31); } .addfileinput-button { position: relative; overflow: hidden; float: left; cursor: pointer; display: inline-block; font-size: 11px; font-weight: normal; padding: 2px 0; } .addfileinput-button span { cursor: pointer; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; *zoom: 1; display: inline-block; text-indent: 0; font-weight: normal !important; font-size: 36px; font-family: "zurmo_gamification_symbly_rRg"; font-size: 24px; padding: 0 6px !important; margin: 0 5px 0 0 !important; position: relative; top: 2px; color: #666; -webkit-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -moz-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -ms-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -o-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; background: transparent url("../images/view-toolbar-gradient.png") left bottom repeat-x; line-height: 20px; border: 1px solid #ddd; } .addfileinput-button span:before, .addfileinput-button span:after { content: " "; display: table; } .addfileinput-button span:after { clear: both; } .addfileinput-button span:hover { color: #2c3e50 !important; background-image: none; background-color: #ededed !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#fefefe,#ededed) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fefefe),color-stop(100%,#ededed)) !important; background-image: -webkit-linear-gradient(top,#fefefe,#ededed) !important; background-image: -o-linear-gradient(top,#fefefe,#ededed) !important; background-image: -moz-linear-gradient(top,#fefefe,#ededed) !important; background-image: linear-gradient(top,#fefefe,#ededed) !important; -webkit-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -moz-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -ms-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -o-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; } .addfileinput-button input { position: absolute; top: 0; right: 0; margin: 0; opacity: 0; filter: alpha(opacity=0); font-size: 25px; direction: ltr; cursor: pointer; } .addfileinput-button:hover span { color: #2c3e50; } .fileupload-buttonbar { position: relative; } .max-upload-size { margin-top: 5px; font-size: 11px; font-weight: normal; font-style: italic; display: inline-block; color: #999; margin: 9px 0 0 10px; } .ImportWizardView .files { margin-top: 15px; } .ImportWizardView .fileinput-button input { -moz-transform: translate(-500px,0) scale(6); } .fileupload-buttonbar .btn, .fileupload-buttonbar .toggle { margin-bottom: 5px; } .ui-datepicker { z-index: 10000; } .ui-datepicker.ui-datepicker-inline { margin: 15px; display: table !important; } .ui-datepicker .ui-datepicker-header { display: table; height: 36px; width: 100%; color: #2c3e50; font-weight: bold; } .ui-datepicker .ui-datepicker-header a:hover:before, .ui-datepicker .ui-datepicker-header a:hover:after { color: #2c3e50; } .ui-datepicker .ui-datepicker-prev { float: left; width: 15%; line-height: 35px; padding-left: 10px; text-align: left; cursor: pointer; } .ui-datepicker .ui-datepicker-prev span { visibility: hidden; } .ui-datepicker .ui-datepicker-prev:before { content: "◀"; } .ui-datepicker .ui-datepicker-prev:hover { cursor: pointer !important; } .ui-datepicker .ui-datepicker-next { float: right; width: 15%; line-height: 35px; text-align: right; cursor: pointer; position: relative; } .ui-datepicker .ui-datepicker-next span { visibility: hidden; display: none; } .ui-datepicker .ui-datepicker-next:before { content: "▶"; margin-right: 10px; } .ui-datepicker .ui-datepicker-next :hover { cursor: pointer !important; } .ui-datepicker .ui-datepicker-title { float: left; text-align: center; width: 70%; line-height: 35px; font-size: 14px; font-weight: bold; color: #2c3e50; } .ui-datepicker .ui-datepicker-calendar { width: 100%; border-spacing: 0; table-layout: fixed; border: 1px solid #ddd; border-top: none; } .ui-datepicker .ui-datepicker-calendar th:last-child { border-right: none; } .ui-datepicker .ui-datepicker-calendar td { min-width: 30px; height: 30px; border-color: #ddd; border-style: solid; border-width: 1px 1px 0 0; border-top: 1px solid #ddd !important; } .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-other-month span { color: #B3B3B3; } .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-today { background-image: none !important; background: #aabed1 !important; } .ui-datepicker .ui-datepicker-calendar td:hover { background-image: none; } .ui-datepicker .ui-datepicker-calendar td:last-child { border-right: none; } .ui-datepicker .ui-datepicker-calendar a { font-size: 9px; font-weight: bold; color: #656565; vertical-align: top; display: inline-block; width: 100%; text-indent: 5px; padding-top: 3px; cursor: pointer; } .ui-datepicker .ui-datepicker-calendar span { width: 30px; height: 20px; display: block; text-align: center; color: #656565; font-weight: bold; font-size: 9px; text-transform: uppercase; line-height: 20px; cursor: pointer; } .ui-datepicker .ui-datepicker-buttonpane { float: left; width: 100%; border-top: 1px solid #fff; padding: 5px 0; *zoom: 1; } .ui-datepicker .ui-datepicker-buttonpane:before, .ui-datepicker .ui-datepicker-buttonpane:after { content: " "; display: table; } .ui-datepicker .ui-datepicker-buttonpane:after { clear: both; } .ui-datepicker .ui-datepicker-current, .ui-datepicker .ui-datepicker-close { line-height: 1; cursor: pointer; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; position: relative; display: inline-block; text-indent: 0; -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); *zoom: 1; -webkit-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); border-top: 1px solid rgba(200,200,200,0.4); border-left: 1px solid rgba(185,185,185,0.4); border-right: 1px solid rgba(185,185,185,0.4); border-bottom: 1px solid rgba(170,170,170,0.4); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; color: #666; border: none !important; } .ui-datepicker .ui-datepicker-current:before, .ui-datepicker .ui-datepicker-current:after, .ui-datepicker .ui-datepicker-close:before, .ui-datepicker .ui-datepicker-close:after { content: " "; display: table; } .ui-datepicker .ui-datepicker-current:after, .ui-datepicker .ui-datepicker-close:after { clear: both; } .ui-datepicker .ui-datepicker-current:hover, .ui-datepicker .ui-datepicker-close:hover { -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); } .ui-datepicker .ui-datepicker-current.disabled, .ui-datepicker .ui-datepicker-close.disabled { pointer-events: none; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -webkit-filter: grayscale(85%); -moz-filter: grayscale(85%); -ms-filter: grayscale(85%); -o-filter: grayscale(85%); filter: grayscale(85%); filter: gray; } .ui-datepicker .ui-datepicker-current .z-label, .ui-datepicker .ui-datepicker-close .z-label { color: #666; -webkit-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -moz-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -ms-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -o-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; background-color: #f5f5f5; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#fefefe,#f5f5f5); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fefefe),color-stop(100%,#f5f5f5)); background-image: -webkit-linear-gradient(top,#fefefe,#f5f5f5); background-image: -o-linear-gradient(top,#fefefe,#f5f5f5); background-image: -moz-linear-gradient(top,#fefefe,#f5f5f5); background-image: linear-gradient(top,#fefefe,#f5f5f5); } .ui-datepicker .ui-datepicker-current:hover .z-label, .ui-datepicker .ui-datepicker-close:hover .z-label { color: #2c3e50 !important; background-image: none; background-color: #fefefe !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#f5f5f5,#fefefe) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f5f5f5),color-stop(100%,#fefefe)) !important; background-image: -webkit-linear-gradient(top,#f5f5f5,#fefefe) !important; background-image: -o-linear-gradient(top,#f5f5f5,#fefefe) !important; background-image: -moz-linear-gradient(top,#f5f5f5,#fefefe) !important; background-image: linear-gradient(top,#f5f5f5,#fefefe) !important; -webkit-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -moz-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -ms-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -o-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; } .ui-datepicker .ui-datepicker-current .z-label, .ui-datepicker .ui-datepicker-close .z-label { border-top: 1px solid rgba(200,200,200,0.4); border-left: 1px solid rgba(185,185,185,0.4); border-right: 1px solid rgba(185,185,185,0.4); border-bottom: 1px solid rgba(170,170,170,0.4); } .ui-datepicker .ui-datepicker-current { float: left; margin: 0 10px; } .ui-datepicker .ui-datepicker-close { float: right; margin: 0 10px; } .ui-datepicker .ui-timepicker-div { float: left; padding: 10px 5px 0 5px; border-bottom: 1px solid #ddd; line-height: 1; } .ui-datepicker .ui-timepicker-div dt { float: left; width: 30%; height: auto !important; font-weight: bold; -webkit-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -moz-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -ms-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -o-text-shadow: rgba(255,255,255,0.8) 0 1px 0; text-shadow: rgba(255,255,255,0.8) 0 1px 0; } .ui-datepicker .ui-timepicker-div dd { margin: 0 0 0 0 !important; float: left; width: 70%; height: 25px; } .ui-datepicker .ui-timepicker-div select { position: relative; top: -4px; width: 100%; } .ui-datepicker .ui-slider { background: #111 url("../images/datepicker-header.png") left top repeat-x !important; height: 4px; -webkit-border-radius: 2px !important; -moz-border-radius: 2px !important; -ms-border-radius: 2px !important; -o-border-radius: 2px !important; border-radius: 2px !important; position: relative; top: 4px; } .ui-datepicker .ui-slider-handle { background: #fff; border: 1px solid #BBB; height: 10px; width: 10px; display: block; position: absolute; top: -4px; -webkit-border-radius: 2px !important; -moz-border-radius: 2px !important; -ms-border-radius: 2px !important; -o-border-radius: 2px !important; border-radius: 2px !important; } .ui-datepicker .calendar-events-1 span, .ui-datepicker .calendar-events-2 span, .ui-datepicker .calendar-events-3 span, .ui-datepicker .calendar-events-4 span, .ui-datepicker .calendar-events-5 span, .ui-datepicker .calendar-events-6 span { color: #2c3e50 !important; position: relative !important; float: left; width: 100%; word-wrap: break-word; padding: 0 !important; text-align: left !important; font-size: 46px; letter-spacing: -6px; vertical-align: top; } .ui-datepicker .calendar-events-1 span:before, .ui-datepicker .calendar-events-2 span:before, .ui-datepicker .calendar-events-3 span:before, .ui-datepicker .calendar-events-4 span:before, .ui-datepicker .calendar-events-5 span:before, .ui-datepicker .calendar-events-6 span:before { position: absolute; top: -1px; line-height: 10px; } .ui-datepicker .calendar-events-1 span:before { content: "‧"; } .ui-datepicker .calendar-events-2 span:before { content: "‧‧"; } .ui-datepicker .calendar-events-3 span:before { content: "‧‧‧"; } .ui-datepicker .calendar-events-4 span:before { content: "‧‧‧\202F‧"; } .ui-datepicker .calendar-events-5 span:before { content: "‧‧‧\202F‧‧"; } .ui-datepicker .calendar-events-6 span:before { content: "‧‧‧\202F‧‧‧"; } .ui-datepicker .ui_tpicker_second, .ui-datepicker .ui_tpicker_millisec, .ui-datepicker .ui_tpicker_microsec { display: none; } .juiportlet-widget-content .ui-datepicker, #ui-datepicker-div .ui-datepicker { background-color: #f5f5f5 ; background-repeat: no-repeat ; background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),color-stop(80%,#f5f5f5),to(#f5f5f5)) ; background-image: -webkit-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -ms-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -o-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -moz-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); -ms-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); -o-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); } .juiportlet-widget-content .ui-datepicker-header, #ui-datepicker-div .ui-datepicker-header { background: #111 url("../images/datepicker-header.png") left top repeat-x !important; color: #FFF; } .juiportlet-widget-content .ui-datepicker-calendar, #ui-datepicker-div .ui-datepicker-calendar { background: #fff; border-color: #BBB; } .juiportlet-widget-content .ui-datepicker-calendar th, #ui-datepicker-div .ui-datepicker-calendar th { background: #f5f5f5 url("../images/datepicker-sprite-ie.png") left -37px repeat-x !important; } .juiportlet-widget-content .ui-datepicker-calendar th:last-child, #ui-datepicker-div .ui-datepicker-calendar th:last-child { border-color: #bbb; } .juiportlet-widget-content .ui-datepicker-calendar td, #ui-datepicker-div .ui-datepicker-calendar td { border-color: #bbb; border-top: 1px solid #bbb !important; background: #f5f5f5 url("../images/datepicker-sprite-ie.png") left top repeat-x !important; } .juiportlet-widget-content .ui-datepicker-calendar td.ui-datepicker-other-month, #ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-other-month { background-image: none; background: #f5f5f5 url("../images/datepicker-sprite-ie.png") left bottom repeat-x !important; } .juiportlet-widget-content .ui-datepicker-calendar td.ui-datepicker-today, #ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-today { background-image: none !important; background: #aabed1 !important; } .juiportlet-widget-content .ui-datepicker-calendar td:hover, #ui-datepicker-div .ui-datepicker-calendar td:hover { background-image: none; background: #f5f5f5 url("../images/datepicker-sprite-ie.png") left bottom repeat-x !important; } .juiportlet-widget-content .ui-datepicker-calendar td:last-child, #ui-datepicker-div .ui-datepicker-calendar td:last-child { border-right: none; } .juiportlet-widget-content .ui-datepicker-calendar a, .juiportlet-widget-content .ui-datepicker-calendar span, #ui-datepicker-div .ui-datepicker-calendar a, #ui-datepicker-div .ui-datepicker-calendar span { color: #656565; -webkit-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -moz-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -ms-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -o-text-shadow: rgba(255,255,255,0.8) 0 1px 0; text-shadow: rgba(255,255,255,0.8) 0 1px 0; } .juiportlet-widget-content .ui-datepicker-title, #ui-datepicker-div .ui-datepicker-title { color: #DFDFDF; -webkit-text-shadow: #000 0 1px 0; -moz-text-shadow: #000 0 1px 0; -ms-text-shadow: #000 0 1px 0; -o-text-shadow: #000 0 1px 0; text-shadow: #000 0 1px 0; } .juiportlet-widget-content .ui-timepicker-div, #ui-datepicker-div .ui-timepicker-div { width: 100%; border-bottom: 1px solid #bbb; } #ui-datepicker-div { z-index: 9999 !important; max-width: 250px; background-color: #f5f5f5 ; background-repeat: no-repeat ; background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),color-stop(80%,#f5f5f5),to(#f5f5f5)) ; background-image: -webkit-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -ms-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -o-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -moz-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); -moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); -ms-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); -o-box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); box-shadow: 0 0 5px 0 rgba(0,0,0,0.3); } .token-input-list { position: relative; } .token-input-input-token { padding: 2px; } .token-input-list { z-index: 0; overflow: hidden; height: auto !important; height: 1%; cursor: text; min-height: 1px; margin: 0; padding: 0; background-color: #fff; list-style-type: none; clear: left; border: 1px solid #ccc; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; color: #999; -webkit-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -moz-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -ms-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -o-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); width: 100%; } .token-input-list input[type="text"] { border: none; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; box-shadow: none !important; position: relative; z-index: 9999; } .token-input-list.disabled { pointer-events: none; background: #EFEFEF; } .token-input-list.disabled input { background: #EFEFEF; } .token-input-list li input { border: 0; margin: 0 !important; -webkit-appearance: caret; padding: 0 !important; line-height: 100%; } .token-input-token { overflow: hidden; height: auto !important; height: 20px; line-height: 20px; margin: 3px; padding: 0 5px; background-color: #D4E7BC; color: #666 !important; cursor: default; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; float: left; white-space: nowrap; -webkit-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -moz-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -ms-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -o-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); } .token-input-token p { display: inline; padding: 0; margin: 0; color: #545454 !important; font-size: 11px; font-style: normal; } .token-input-token span { line-height: 1; padding: 0 3px; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; color: #545454 !important; margin-left: 2px; font-weight: normal; cursor: pointer; } .token-input-token span:hover { color: #fff !important; background: #648c32; } .token-input-token b, .token-input-token p { font-weight: normal; } .token-input-selected-token { background-color: #2c3e50; color: #fff !important; -webkit-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -moz-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -ms-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -o-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); } .token-input-input-token { float: left; margin: 0; padding: 0; list-style-type: none; } .token-input-dropdown { position: absolute; background-color: #fff; overflow: hidden; border-left: 1px solid #ccc; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; cursor: default; z-index: 1; -webkit-border-radius: 0 0 3px 3px; -moz-border-radius: 0 0 3px 3px; -ms-border-radius: 0 0 3px 3px; -o-border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px; color: #999; -webkit-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -moz-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -ms-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -o-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); } .token-input-dropdown p { margin: 0; padding: 5px; } .token-input-dropdown ul { margin: 0; padding: 0; } .token-input-dropdown ul li { background-color: #fff; padding: 3px; margin: 3px; list-style-type: none; } .token-input-dropdown ul .token-input-dropdown-item { background-color: #fff; } .token-input-dropdown ul .token-input-dropdown-item2 { background-color: #fff; } .token-input-dropdown ul li em { font-style: normal; } .token-input-dropdown ul .token-input-selected-dropdown-item { background-color: #D4E7BC; color: #545454; } #NotificationsForUserListView h4 + div { margin-top: 5px; } .panel-buffer { padding: 15px; } .add-custom-field .left-column > div { width: 100%; float: left; } .add-custom-field .hasDropDown { margin-right: 130px; width: auto; } #attributeTypeNameButton { margin: 0 0 0 -105px; } #attributeTypeNameButton span { padding: 0 15px; } #attributeTypeNameButton span:before { content: "n"; font-weight: normal !important; font-size: 16px; font-family: "zurmo_gamification_symbly_rRg"; margin-right: 5px; position: relative; top: 0px; } .lead-conversion-radiobutton { display: block; margin-bottom: 10px; } .lead-conversion-radiobutton label { float: none !important; margin-left: 20px; } .modal-settings .wide.form { padding: 15px !important; background-color: #F5F5F5; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#ffffff,#F5F5F5); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffffff),color-stop(100%,#F5F5F5)); background-image: -webkit-linear-gradient(top,#ffffff,#F5F5F5); background-image: -o-linear-gradient(top,#ffffff,#F5F5F5); background-image: -moz-linear-gradient(top,#ffffff,#F5F5F5); background-image: linear-gradient(top,#ffffff,#F5F5F5); } .modal-settings .hasCheckBox { margin-left: 0; } .modal-settings th, .modal-settings td { padding: 0 0 15px 0; } .designer-toolbar { margin: 0; } .designer-toolbar input[type="submit"] { line-height: 1; cursor: pointer; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; position: relative; display: inline-block; text-indent: 0; -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); *zoom: 1; -webkit-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); border-top: 1px solid rgba(62,88,113,0.8); border-left: 1px solid rgba(44,62,80,0.8); border-right: 1px solid rgba(44,62,80,0.8); border-bottom: 1px solid rgba(26,37,47,0.8); margin-bottom: 15px; } .designer-toolbar input[type="submit"]:before, .designer-toolbar input[type="submit"]:after { content: " "; display: table; } .designer-toolbar input[type="submit"]:after { clear: both; } .designer-toolbar input[type="submit"]:hover { -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); } .designer-toolbar input[type="submit"].disabled { pointer-events: none; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -webkit-filter: grayscale(85%); -moz-filter: grayscale(85%); -ms-filter: grayscale(85%); -o-filter: grayscale(85%); filter: grayscale(85%); filter: gray; } .designer-toolbar h3 { margin: 0 0 5px 0; padding-left: 0; } .designer-toolbar > div { margin-bottom: 25px; } #NotificationBar span { font-size: 12px; display: block; color: #cc0000 !important; margin: 0 0 15px 0; } .panelToPlace, .rowToPlace, .element-to-place { text-align: center; white-space: nowrap; margin: 1px; line-height: 30px; min-width: 120px; height: 30px; border: 1px solid #ccc; background-color: #ededed; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#f6f6f6,#ededed); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f6f6f6),color-stop(100%,#ededed)); background-image: -webkit-linear-gradient(top,#f6f6f6,#ededed); background-image: -o-linear-gradient(top,#f6f6f6,#ededed); background-image: -moz-linear-gradient(top,#f6f6f6,#ededed); background-image: linear-gradient(top,#f6f6f6,#ededed); -webkit-box-shadow: inset 0 1px 0 0 #ffffff; -moz-box-shadow: inset 0 1px 0 0 #ffffff; -ms-box-shadow: inset 0 1px 0 0 #ffffff; -o-box-shadow: inset 0 1px 0 0 #ffffff; box-shadow: inset 0 1px 0 0 #ffffff; color: #2c3e50; } .panelToPlace.ui-state-disabled, .rowToPlace.ui-state-disabled, .element-to-place.ui-state-disabled { color: #dcdcdc; background-color: #ededed; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#efefef,#ededed); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#efefef),color-stop(100%,#ededed)); background-image: -webkit-linear-gradient(top,#efefef,#ededed); background-image: -o-linear-gradient(top,#efefef,#ededed); background-image: -moz-linear-gradient(top,#efefef,#ededed); background-image: linear-gradient(top,#efefef,#ededed); } .layout-parts-container { overflow: scroll; width: 100%; overflow-x: scroll; overflow-y: hidden; } .layout-parts { float: left; } .layout-parts ul { list-style-type: none; margin: 0; padding: 0; clear: both; } .layout-elements { width: 100%; } .layout-elements-column-container { float: left; } .sortable-panel { color: #2c3e50; height: auto; display: block; float: left; margin: 1px 0; padding: 10px 10px 10px 10px; width: 100% !important; min-height: 60px !important; -webkit-text-shadow: rgba(255,255,255,0.8) 0px 1px; -moz-text-shadow: rgba(255,255,255,0.8) 0px 1px; -ms-text-shadow: rgba(255,255,255,0.8) 0px 1px; -o-text-shadow: rgba(255,255,255,0.8) 0px 1px; text-shadow: rgba(255,255,255,0.8) 0px 1px; } .modal-settings { margin: 1px; padding: 1px; min-height: 60px; display: none; z-index: 2000; } .cell-element { color: #2c3e50; text-align: center; margin: 0px; padding: 0px; width: 100%; height: 100%; border: 1px solid #ccc; background-color: #ededed; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#f6f6f6,#ededed); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f6f6f6),color-stop(100%,#ededed)); background-image: -webkit-linear-gradient(top,#f6f6f6,#ededed); background-image: -o-linear-gradient(top,#f6f6f6,#ededed); background-image: -moz-linear-gradient(top,#f6f6f6,#ededed); background-image: linear-gradient(top,#f6f6f6,#ededed); -webkit-box-shadow: inset 0 1px 0 0 #ffffff; -moz-box-shadow: inset 0 1px 0 0 #ffffff; -ms-box-shadow: inset 0 1px 0 0 #ffffff; -o-box-shadow: inset 0 1px 0 0 #ffffff; box-shadow: inset 0 1px 0 0 #ffffff; } .cell-element-icon { float: right; } .cell-handle-icon { cursor: hand; cursor: pointer; float: left; clear: right; } .row-element-icon { float: right; clear: right; } .row-handle-icon { cursor: hand; cursor: pointer; float: left; clear: right; } .panel-element-icon { clear: none; float: right; } .panel-handle-icon { cursor: hand; cursor: pointer; float: left; } .panel-settings div.wide.form label.hasCheckBox, .cell-settings div.wide.form label.hasCheckBox { margin-top: -5px !important; margin-bottom: 0; } .sortable-row-list-container ul { list-style-type: none; clear: both; margin: 5px 5px 5px 20px; padding: 15px 0; } .sortable-row-list-container ul > li { min-height: 60px; margin-bottom: 5px; padding: 5px; } .sortable-row-list { color: #2c3e50 !important; } .layout-single-column { margin: 15px 0 15px 0; height: 30px; line-height: 30px; float: left; width: 100%; } .layout-single-column.droppable-cell-container { width: 90%; } .layout-double-column { margin: 15px 5px; line-height: 30px; width: 45%; height: 30px; float: left; } .panel-list { list-style-type: none; margin: 0; padding: 0; clear: both; min-height: 60px; float: left; width: 100%; } .panel-list > li { min-height: 60px; margin-bottom: 5px; } #sortable-editable-dropdown-collection { clear: left; } #sortable-editable-dropdown-collection li { height: auto; font-size: 1em; } .ui-icon { cursor: pointer; } .ui-icon-trash:after { content: "_"; font-weight: normal !important; font-size: 22px; font-family: "zurmo_gamification_symbly_rRg"; text-indent: 0; display: block; float: right; color: #A7A7A7; margin: 0; padding: 0 2px; } .ui-icon-circle-minus:after { content: "S"; font-weight: normal !important; font-size: 22px; font-family: "zurmo_gamification_symbly_rRg"; text-indent: 0; display: block; float: right; color: #A7A7A7; margin: 0; padding: 0 2px; } .ui-icon-circle-plus:after { content: "Y"; font-weight: normal !important; font-size: 22px; font-family: "zurmo_gamification_symbly_rRg"; text-indent: 0; display: block; float: right; color: #A7A7A7; margin: 0; padding: 0 2px; } .ui-icon-arrow-4 { display: block; } .ui-icon-arrow-4:after { content: ")"; font-weight: normal !important; font-size: 22px; font-family: "zurmo_gamification_symbly_rRg"; text-indent: 0; display: block; float: right; color: #A7A7A7; margin: -2px 5px 0 0; padding: 0; } .ui-icon-wrench { display: block; } .ui-icon-wrench:after { content: "n"; font-weight: normal !important; font-size: 22px; font-family: "zurmo_gamification_symbly_rRg"; text-indent: 0; display: block; float: right; color: #A7A7A7; margin: 0; padding: 0 2px; } .sticky { width: 100%; float: left; z-index: 15000; background-color: #ededed; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#f6f6f6,#ededed); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f6f6f6),color-stop(100%,#ededed)); background-image: -webkit-linear-gradient(top,#f6f6f6,#ededed); background-image: -o-linear-gradient(top,#f6f6f6,#ededed); background-image: -moz-linear-gradient(top,#f6f6f6,#ededed); background-image: linear-gradient(top,#f6f6f6,#ededed); } .sticky.stick { width: 75%; position: fixed; top: 0; z-index: 1000; margin-top: 41px; -webkit-box-shadow: 0 0 15px 0 #333; -moz-box-shadow: 0 0 15px 0 #333; -ms-box-shadow: 0 0 15px 0 #333; -o-box-shadow: 0 0 15px 0 #333; box-shadow: 0 0 15px 0 #333; } #layout-container { margin: 30px 0 15px 0; float: left; width: 100%; } #layout-container .ui-draggable-dragging { width: 150px; z-index: 99999999; font-weight: bold !important; } #layout-container .ui-draggable-disabled.ui-state-disabled { opacity: 0.2 !important; } #layout-container .ui-state-highlight, #layout-container .ui-widget-content .ui-state-highlight, #layout-container .ui-widget-header .ui-state-highlight { border: 1px solid #fcefa1; background: #fbf9ee; color: #333; } #layout-container .ui-state-highlight { width: 100%; min-height: 60px; float: left; display: block; } #layout-container .ui-state-highlight a, #layout-container .ui-widget-content .ui-state-highlight a, #layout-container .ui-widget-header .ui-state-highlight a { color: #333; } #layout-container .droppable-cell-container { background: #EFEFEF; } #layout-container .ui-widget-header { font-weight: bold; } #layout-container .ui-state-default, #layout-container .ui-widget-content .ui-state-default, #layout-container .ui-widget-header .ui-state-default { font-weight: normal; border: 1px solid #ccc; -webkit-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); -moz-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); -ms-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); -o-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); background-color: #f5f5f5 ; background-repeat: no-repeat ; background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),color-stop(80%,#f5f5f5),to(#f5f5f5)) ; background-image: -webkit-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -ms-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -o-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -moz-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; } #layout-container .movable-cell-element.ui-state-default { border: 1px solid #ccc; background-color: #ededed; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#f6f6f6,#ededed); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f6f6f6),color-stop(100%,#ededed)); background-image: -webkit-linear-gradient(top,#f6f6f6,#ededed); background-image: -o-linear-gradient(top,#f6f6f6,#ededed); background-image: -moz-linear-gradient(top,#f6f6f6,#ededed); background-image: linear-gradient(top,#f6f6f6,#ededed); box-shadow: inset 0 1px 0 0 #ffffff; } #layout-container .ui-state-default a, #layout-container .ui-state-default a:link, #layout-container .ui-state-default a:visited { text-decoration: none; } #layout-container .ui-state-hover a, #layout-container .ui-state-hover a:hover { text-decoration: none; } #layout-container .ui-state-active, #layout-container .ui-widget-content .ui-state-active, #layout-container .ui-widget-header .ui-state-active { z-index: 9999; color: #333; -webkit-box-shadow: 0 0 1px 1px #2c3e50; -moz-box-shadow: 0 0 1px 1px #2c3e50; -ms-box-shadow: 0 0 1px 1px #2c3e50; -o-box-shadow: 0 0 1px 1px #2c3e50; box-shadow: 0 0 1px 1px #2c3e50; } .AttributeEditView .ui-state-highlight p { margin-top: 10px; font-size: 11px; text-align: left; text-indent: 0; padding: 0; line-height: 150%; font-style: normal; } .AttributeEditView .ui-icon-info { margin-left: -6px; } .AttributeEditView .ui-icon-info:after { content: "o"; font-weight: normal !important; font-size: 22px; font-family: "zurmo_gamification_symbly_rRg"; margin-right: 3px; position: relative; top: 1px; color: #2c3e50; } .AttributeEditView .sortable { list-style: none; } .AttributeEditView .sortable li { position: relative; } .AttributeEditView .sortable li .has-lang-label > span { cursor: move; } .AttributeEditView .sortable .ui-icon.ui-icon-arrowthick-2-n-s { display: none; } .AttributeEditView .sortable .remove-sortable-item-link { position: absolute; left: 3px; top: 0; line-height: 1; z-index: 100; } .AttributeEditView .sortable .remove-sortable-item-link span { text-indent: -9999px; display: inline-block; } .AttributeEditView .sortable .remove-sortable-item-link:after { content: "_"; font-weight: normal !important; font-size: 22px; font-family: "zurmo_gamification_symbly_rRg"; text-indent: 0 !important; color: #A7A7A7; -webkit-text-shadow: 0 1px 0 #fff; -moz-text-shadow: 0 1px 0 #fff; -ms-text-shadow: 0 1px 0 #fff; -o-text-shadow: 0 1px 0 #fff; text-shadow: 0 1px 0 #fff; line-height: 1; position: relative; top: 1px; } .AttributeEditView form div table td { padding-left: 0 !important; } #DropDownDependencyMappingData table { border-top: none; padding-top: none; } #DropDownDependencyMappingData table td { padding-right: 15px; vertical-align: top; } .field-instructions { float: left; width: 100%; margin: 10px 0 15px 0; } .field-instructions table { border-top: none !important; } #available-fields { margin-top: 15px; border: 1px solid #DFDFDF; border-collapse: collapse; border-spacing: 1px; margin-bottom: 10px; } #available-fields th { font-weight: bold; background: url("../images/table-items-header.png") left top repeat-x; } #available-fields th, #available-fields td { border: 1px solid #DFDFDF; vertical-align: middle; padding: 10px 5px !important; } #picklist-values { margin: 15px 0; } #picklist-values td { padding-left: 0; padding-bottom: 0; } #picklist-values .errorMessage { margin-top: -5px; } #DropDownAttributeForm_customFieldDataData_em_ { margin-bottom: 10px; } #customFieldDataData_ul li { position: relative; } #contactStatesData_AddInputButton, #customFieldDataData_AddInputButton { line-height: 1; cursor: pointer; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; position: relative; display: inline-block; text-indent: 0; -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.2), 0 0 2px 0 rgba(153, 153, 153, 0.15); *zoom: 1; -webkit-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.14s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); border-top: 1px solid rgba(62,88,113,0.8); border-left: 1px solid rgba(44,62,80,0.8); border-right: 1px solid rgba(44,62,80,0.8); border-bottom: 1px solid rgba(26,37,47,0.8); margin: 5px 0 0 0 !important; float: left; clear: both; } #contactStatesData_AddInputButton:before, #contactStatesData_AddInputButton:after, #customFieldDataData_AddInputButton:before, #customFieldDataData_AddInputButton:after { content: " "; display: table; } #contactStatesData_AddInputButton:after, #customFieldDataData_AddInputButton:after { clear: both; } #contactStatesData_AddInputButton:hover, #customFieldDataData_AddInputButton:hover { -webkit-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -moz-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -ms-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); -o-box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.5), 0 0 7px 0 rgba(75, 75, 75, 0.25); } #contactStatesData_AddInputButton.disabled, #customFieldDataData_AddInputButton.disabled { pointer-events: none; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -webkit-filter: grayscale(85%); -moz-filter: grayscale(85%); -ms-filter: grayscale(85%); -o-filter: grayscale(85%); filter: grayscale(85%); filter: gray; } @-moz-document url-prefix() { body { font-smooth: always !important; } .form input[type="text"], .form input[type="password"] { height: 26px; } input[type="submit"], input[type="button"] { height: 26px; } input::-moz-focus-inner { border: 0; } .edit-row-menu ul { top: 0px !important; } } .tooltip { line-height: 11px !important; width: 12px !important; height: 12px !important; display: inline-block; background: #fff; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; border-radius: 50%; border: 1px solid #ccc; color: #333; font-weight: 400 !important; font-size: 8px !important; text-align: center; cursor: pointer; margin: 0 4px; } .qtip { color: #2c3e50; border: 1px solid #b6b6b6; background-color: #ebebeb; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#f5f5f5,#ebebeb); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f5f5f5),color-stop(100%,#ebebeb)); background-image: -webkit-linear-gradient(top,#f5f5f5,#ebebeb); background-image: -o-linear-gradient(top,#f5f5f5,#ebebeb); background-image: -moz-linear-gradient(top,#f5f5f5,#ebebeb); background-image: linear-gradient(top,#f5f5f5,#ebebeb); -webkit-box-shadow: 0 0 9px 5px rgba(153, 153, 153, 0.12); -moz-box-shadow: 0 0 9px 5px rgba(153, 153, 153, 0.12); -ms-box-shadow: 0 0 9px 5px rgba(153, 153, 153, 0.12); -o-box-shadow: 0 0 9px 5px rgba(153, 153, 153, 0.12); box-shadow: 0 0 9px 5px rgba(153, 153, 153, 0.12); } .ui-tooltip, .qtip { position: absolute; left: -28000px; top: -28000px; display: none; min-width: 50px; font-size: 11px; line-height: 12px; border-width: 1px; border-style: solid; white-space: nowrap; } .qtip-has-max-width { max-width: 360px; white-space: normal; line-height: 14px; } .ui-tooltip-fluid { display: block; visibility: hidden; position: static !important; float: left !important; } .ui-tooltip-content { position: relative; padding: 5px 9px; overflow: hidden; text-align: left; word-wrap: break-word; line-height: 140%; } .ui-tooltip-titlebar { position: relative; min-height: 14px; padding: 5px 35px 5px 10px; overflow: hidden; border-width: 0 0 1px; font-weight: bold; } .ui-tooltip-titlebar + .ui-tooltip-content { border-top-width: 0px !important; } .ui-tooltip-titlebar .ui-state-default { position: absolute; right: 4px; top: 50%; margin-top: -9px; cursor: pointer; outline: medium none; border-width: 1px; border-style: solid; } * html .ui-tooltip-titlebar .ui-state-default { top: 16px; } .ui-tooltip-titlebar .ui-icon, .ui-tooltip-icon .ui-icon { display: block; text-indent: -1000em; } .ui-tooltip-icon, .ui-tooltip-icon .ui-icon { -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } .ui-tooltip-icon .ui-icon { width: 18px; height: 14px; text-align: center; text-indent: 0; font: normal bold 10px/13px Tahoma, sans-serif; color: inherit; background: transparent none no-repeat -100em -100em; } .ui-tooltip-default .ui-tooltip-titlebar { color: #2c3e50; font-weight: bold; -webkit-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -moz-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -ms-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -o-text-shadow: rgba(255,255,255,0.8) 0 1px 0; text-shadow: rgba(255,255,255,0.8) 0 1px 0; background-color: #ededed; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#f6f6f6,#ededed); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f6f6f6),color-stop(100%,#ededed)); background-image: -webkit-linear-gradient(top,#f6f6f6,#ededed); background-image: -o-linear-gradient(top,#f6f6f6,#ededed); background-image: -moz-linear-gradient(top,#f6f6f6,#ededed); background-image: linear-gradient(top,#f6f6f6,#ededed); -webkit-box-shadow: inset 0 1px 0 0 #ffffff; -moz-box-shadow: inset 0 1px 0 0 #ffffff; -ms-box-shadow: inset 0 1px 0 0 #ffffff; -o-box-shadow: inset 0 1px 0 0 #ffffff; box-shadow: inset 0 1px 0 0 #ffffff; border-bottom: 1px solid #dfdfdf; } .ui-tooltip-default .ui-tooltip-icon { border-color: #fff; color: #fff; background-color: #2c3e50; } .ui-tooltip-default .ui-tooltip-titlebar .ui-state-hover { color: #111; } .ui-tooltip .ui-tooltip-tip { margin: 0 auto; overflow: hidden; z-index: 10; } .ui-tooltip .ui-tooltip-tip, .ui-tooltip .ui-tooltip-tip * { position: absolute; line-height: 0.1px !important; font-size: 0.1px !important; color: #123456; background: transparent; border: 0px dashed transparent; } .ui-tooltip .ui-tooltip-tip canvas { top: 0; left: 0; } #qtip-overlay { position: fixed; left: -10000em; top: -10000em; } #qtip-overlay.blurs { cursor: pointer; } #qtip-overlay div { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: black; opacity: 0.7; filter: alpha(opacity=70); -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; } .ui-tooltip-light { background-color: white; border-color: #E2E2E2; color: #454545; } .ui-tooltip-light .ui-tooltip-titlebar { background-color: #f1f1f1; } .ui-tooltip-dark { background-color: #505050; border-color: #303030; color: #f3f3f3; } .ui-tooltip-dark .ui-tooltip-titlebar { background-color: #404040; } .ui-tooltip-dark .ui-tooltip-icon { border-color: #444; } .ui-tooltip-dark .ui-tooltip-titlebar .ui-state-hover { border-color: #303030; } .ui-tooltip-cream { background-color: #FBF7AA; border-color: #F9E98E; color: #A27D35; } .ui-tooltip-cream .ui-tooltip-titlebar { background-color: #F0DE7D; } .ui-tooltip-cream .ui-state-default .ui-tooltip-icon { background-position: -82px 0; } .ui-tooltip-red { background-color: #F78B83; border-color: #D95252; color: #912323; } .ui-tooltip-red .ui-tooltip-titlebar { background-color: #F06D65; } .ui-tooltip-red .ui-state-default .ui-tooltip-icon { background-position: -102px 0; } .ui-tooltip-red .ui-tooltip-icon { border-color: #D95252; } .ui-tooltip-red .ui-tooltip-titlebar .ui-state-hover { border-color: #D95252; } .ui-tooltip-green { background-color: #CAED9E; border-color: #90D93F; color: #3F6219; } .ui-tooltip-green .ui-tooltip-titlebar { background-color: #B0DE78; } .ui-tooltip-green .ui-state-default .ui-tooltip-icon { background-position: -42px 0; } .ui-tooltip-blue { background-color: #E5F6FE; border-color: #ADD9ED; color: #5E99BD; } .ui-tooltip-blue .ui-tooltip-titlebar { background-color: #D0E9F5; } .ui-tooltip-blue .ui-state-default .ui-tooltip-icon { background-position: -2px 0; } .ui-tooltip-shadow { -webkit-box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.15); -moz-box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.15); box-shadow: 1px 1px 3px 1px rgba(0,0,0,0.15); } .ui-tooltip-rounded, .ui-tooltip-tipsy, .ui-tooltip-bootstrap { -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; } .ui-tooltip-youtube { -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; -webkit-box-shadow: 0 0 3px #333; -moz-box-shadow: 0 0 3px #333; box-shadow: 0 0 3px #333; color: white; border-width: 0; background: #4A4A4A; background-image: -moz-linear-gradient(top,#4A4A4A 0,black 100%); background-image: -ms-linear-gradient(top,#4A4A4A 0,black 100%); background-image: -o-linear-gradient(top,#4A4A4A 0,black 100%); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0,#4A4A4A),color-stop(100%,black)); background-image: -webkit-linear-gradient(top,#4A4A4A 0,black 100%); background-image: linear-gradient(to bottom,#4A4A4A 0,black 100%); } .ui-tooltip-youtube .ui-tooltip-titlebar { background-color: #4A4A4A; background-color: rgba(0,0,0,0); } .ui-tooltip-youtube .ui-tooltip-content { padding: .75em; font: 12px arial, sans-serif; filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000); -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);"; } .ui-tooltip-youtube .ui-tooltip-icon { border-color: #222; } .ui-tooltip-youtube .ui-tooltip-titlebar .ui-state-hover { border-color: #303030; } .ui-tooltip-jtools { background: #232323; background: rgba(0,0,0,0.7); background-image: -moz-linear-gradient(top,#717171,#232323); background-image: -webkit-gradient(linear,left top,left bottom,from(#717171),to(#232323)); border: 2px solid #ddd; border: 2px solid #f1f1f1; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; -webkit-box-shadow: 0 0 12px #333; -moz-box-shadow: 0 0 12px #333; box-shadow: 0 0 12px #333; } .ui-tooltip-jtools .ui-tooltip-titlebar { background-color: transparent; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A)"; } .ui-tooltip-jtools .ui-tooltip-content { filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323)"; } .ui-tooltip-jtools .ui-tooltip-titlebar, .ui-tooltip-jtools .ui-tooltip-content { background: transparent; color: white; border: 0 dashed transparent; } .ui-tooltip-jtools .ui-tooltip-icon { border-color: #555; } .ui-tooltip-jtools .ui-tooltip-titlebar .ui-state-hover { border-color: #333; } .ui-tooltip-cluetip { -webkit-box-shadow: 4px 4px 5px rgba(0,0,0,0.4); -moz-box-shadow: 4px 4px 5px rgba(0,0,0,0.4); box-shadow: 4px 4px 5px rgba(0,0,0,0.4); background-color: #D9D9C2; color: #111; border: 0 dashed transparent; } .ui-tooltip-cluetip .ui-tooltip-titlebar { background-color: #87876A; color: white; border: 0 dashed transparent; } .ui-tooltip-cluetip .ui-tooltip-icon { border-color: #808064; } .ui-tooltip-cluetip .ui-tooltip-titlebar .ui-state-hover { border-color: #696952; color: #696952; } .ui-tooltip-tipsy { background: black; background: rgba(0,0,0,0.87); color: white; border: 0px solid transparent; font-size: 11px; font-family: 'Lucida Grande', sans-serif; font-weight: bold; line-height: 16px; text-shadow: 0 1px black; } .ui-tooltip-tipsy .ui-tooltip-titlebar { padding: 6px 35px 0 10; background-color: transparent; } .ui-tooltip-tipsy .ui-tooltip-content { padding: 6px 10; } .ui-tooltip-tipsy .ui-tooltip-icon { border-color: #222; text-shadow: none; } .ui-tooltip-tipsy .ui-tooltip-titlebar .ui-state-hover { border-color: #303030; } .ui-tooltip-tipped { border: 3px solid #959FA9; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; background-color: #F9F9F9; color: #454545; font-weight: normal; font-family: serif; } .ui-tooltip-tipped .ui-tooltip-titlebar { border-bottom-width: 0; color: white; background: #3A79B8; background-image: -moz-linear-gradient(top,#3A79B8,#2E629D); background-image: -webkit-gradient(linear,left top,left bottom,from(#3A79B8),to(#2E629D)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D)"; } .ui-tooltip-tipped .ui-tooltip-icon { border: 2px solid #285589; background: #285589; } .ui-tooltip-tipped .ui-tooltip-icon .ui-icon { background-color: #FBFBFB; color: #555; } .ui-tooltip-bootstrap { font-size: 13px; line-height: 18px; color: #333333; background-color: #ffffff; border: 1px solid #ccc; border: 1px solid rgba(0,0,0,0.2); *border-right-width: 2px; *border-bottom-width: 2px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2); -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2); box-shadow: 0 5px 10px rgba(0,0,0,0.2); -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; } .ui-tooltip-bootstrap .ui-tooltip-titlebar { font-size: 18px; line-height: 22px; border-bottom: 1px solid #ccc; background-color: transparent; } .ui-tooltip-bootstrap .ui-tooltip-titlebar .ui-state-default { right: 9px; top: 49%; border-style: none; } .ui-tooltip-bootstrap .ui-tooltip-icon { background: white; } .ui-tooltip-bootstrap .ui-tooltip-icon .ui-icon { width: auto; height: auto; float: right; font-size: 20px; font-weight: bold; line-height: 18px; color: #000000; text-shadow: 0 1px 0 #ffffff; opacity: 0.2; filter: alpha(opacity=20); } .ui-tooltip-bootstrap .ui-tooltip-icon .ui-icon:hover { color: #000000; text-decoration: none; cursor: pointer; opacity: 0.4; filter: alpha(opacity=40); } .ui-tooltip:not(.ie9haxors) div.ui-tooltip-content, .ui-tooltip:not(.ie9haxors) div.ui-tooltip-titlebar { filter: none; -ms-filter: none; } #LeaderboardListView .pager { border: 1px solid #dfdfdf; border-top: none; } .user-label img { margin-right: 10px; width: 24px; height: 24px; display: inline-block; } .user-label span { line-height: 30px; display: inline-block; } .UserLeaderboardRankingForPortletView .ranking { float: right; } .icon-leaderboard-weekly:before { content: "x"; font-weight: normal !important; font-size: 24px; font-family: "zurmo_gamification_symbly_rRg"; padding: 0; margin: 0; vertical-align: middle; position: relative; top: -2px; } .icon-leaderboard-monthly:before { content: ":"; font-weight: normal !important; font-size: 24px; font-family: "zurmo_gamification_symbly_rRg"; padding: 0; margin: 0; vertical-align: middle; position: relative; top: -2px; } .icon-leaderboard-overall:before { content: ";"; font-weight: normal !important; font-size: 24px; font-family: "zurmo_gamification_symbly_rRg"; padding: 0; margin: 0; vertical-align: middle; position: relative; top: -2px; } .points { display: block; float: left; color: #fff; -webkit-box-shadow: 0 0 8px 0 #666, inset 0 0 0 1px #fff; -moz-box-shadow: 0 0 8px 0 #666, inset 0 0 0 1px #fff; -ms-box-shadow: 0 0 8px 0 #666, inset 0 0 0 1px #fff; -o-box-shadow: 0 0 8px 0 #666, inset 0 0 0 1px #fff; box-shadow: 0 0 8px 0 #666, inset 0 0 0 1px #fff; padding: 3px 6px; text-align: center; -webkit-border-radius: 6px; -moz-border-radius: 6px; -ms-border-radius: 6px; -o-border-radius: 6px; border-radius: 6px; font-size: 11px; background-color: #2c3e50; } .ranking { margin-right: 5px; display: block; color: #fff; -webkit-box-shadow: 0 0 8px 0 #666; -moz-box-shadow: 0 0 8px 0 #666; -ms-box-shadow: 0 0 8px 0 #666; -o-box-shadow: 0 0 8px 0 #666; box-shadow: 0 0 8px 0 #666; width: 26px; height: 26px; line-height: 24px; vertical-align: middle; text-align: center; font-weight: bold; font-size: 11px; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; border-radius: 50%; -webkit-text-shadow: none !important; -moz-text-shadow: none !important; -ms-text-shadow: none !important; -o-text-shadow: none !important; text-shadow: none !important; background-color: #2c3e50; } .UserLeaderboardRankingForPortletView tr th:first-child, .UserLeaderboardRankingForPortletView tr td:first-child, .UserGamificationStatisticsForPortletView tr th:first-child, .UserGamificationStatisticsForPortletView tr td:first-child, .UserBadgesForPortletView tr th:first-child, .UserBadgesForPortletView tr td:first-child { padding-left: 10px !important; } #UserGamificationStatisticsForPortletView tr:first-child td, #UserGamificationStatisticsForPortletView tr:first-child th, #UserLeaderboardRankingForPortletView tr:first-child td, #UserLeaderboardRankingForPortletView tr:first-child th { border-top: none; } #UserBadgesForPortletView { padding: 15px 15px 15px 0; } .game-badge, .badge { cursor: help; position: relative; display: inline-block; max-width: 100%; vertical-align: bottom; width: 50px; height: 50px; -webkit-border-radius: 7px; -moz-border-radius: 7px; -ms-border-radius: 7px; -o-border-radius: 7px; border-radius: 7px; margin: 0 0 15px 15px; -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5); -moz-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5); -ms-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5); -o-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5); box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5); background-color: #eeeeee ; background-repeat: no-repeat ; background-image: -webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),color-stop(80%,#eeeeee),to(#eeeeee)) ; background-image: -webkit-linear-gradient(#f5f5f5,#eeeeee 80%,#eeeeee) ; background-image: -ms-linear-gradient(#f5f5f5,#eeeeee 80%,#eeeeee) ; background-image: -o-linear-gradient(#f5f5f5,#eeeeee 80%,#eeeeee) ; background-image: -moz-linear-gradient(#f5f5f5,#eeeeee 80%,#eeeeee) ; background-image: linear-gradient(#f5f5f5,#eeeeee 80%,#eeeeee) ; } .game-badge:after, .badge:after { content: ' '; width: 100%; height: 100%; position: absolute; top: -1px; left: -1px; -webkit-border-radius: 7px; -moz-border-radius: 7px; -ms-border-radius: 7px; -o-border-radius: 7px; border-radius: 7px; border: solid 1px #CCC; -webkit-box-shadow: inset 0 0 1px rgba(155,155,155,.5), inset 0 1px 0 rgba(225,225,225,.5), inset 0 -6px 0 rgba(155,155,155,.7), inset 0 -7px 0 rgba(255,255,255,.3); -moz-box-shadow: inset 0 0 1px rgba(155,155,155,.5), inset 0 1px 0 rgba(225,225,225,.5), inset 0 -6px 0 rgba(155,155,155,.7), inset 0 -7px 0 rgba(255,255,255,.3); -ms-box-shadow: inset 0 0 1px rgba(155,155,155,.5), inset 0 1px 0 rgba(225,225,225,.5), inset 0 -6px 0 rgba(155,155,155,.7), inset 0 -7px 0 rgba(255,255,255,.3); -o-box-shadow: inset 0 0 1px rgba(155,155,155,.5), inset 0 1px 0 rgba(225,225,225,.5), inset 0 -6px 0 rgba(155,155,155,.7), inset 0 -7px 0 rgba(255,255,255,.3); box-shadow: inset 0 0 1px rgba(155,155,155,.5), inset 0 1px 0 rgba(225,225,225,.5), inset 0 -6px 0 rgba(155,155,155,.7), inset 0 -7px 0 rgba(255,255,255,.3); } .game-badge .badge-icon, .badge .badge-icon { color: #2c3e50; font-weight: normal !important; font-size: 50px; font-family: "zurmo_gamification_symbly_rRg"; display: block; text-align: center; -webkit-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9); -moz-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9); -ms-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9); -o-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9); text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9); line-height: 1; vertical-align: middle; -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.1); -moz-box-shadow: 0 1px 2px rgba(0,0,0,.1); -ms-box-shadow: 0 1px 2px rgba(0,0,0,.1); -o-box-shadow: 0 1px 2px rgba(0,0,0,.1); box-shadow: 0 1px 2px rgba(0,0,0,.1); -webkit-border-radius: 6px; -moz-border-radius: 6px; -ms-border-radius: 6px; -o-border-radius: 6px; border-radius: 6px; position: relative; z-index: 2; } .game-badge .badge-icon:before, .badge .badge-icon:before { position: relative; top: -2px; } .game-badge .badge-grade, .badge .badge-grade { font-size: 11px; position: absolute; top: -8px; right: -8px; display: block; color: #fff; -webkit-box-shadow: 0 0 8px 0 #666, inset 0 0 0 1px #fff; -moz-box-shadow: 0 0 8px 0 #666, inset 0 0 0 1px #fff; -ms-box-shadow: 0 0 8px 0 #666, inset 0 0 0 1px #fff; -o-box-shadow: 0 0 8px 0 #666, inset 0 0 0 1px #fff; box-shadow: 0 0 8px 0 #666, inset 0 0 0 1px #fff; width: 18px; height: 18px; text-align: center; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; border-radius: 50%; line-height: 18px; z-index: 10; background-color: #2c3e50; } .game-badge .gloss, .badge .gloss { background-color: rgba(255,255,255,0.1); background-repeat: repeat-x; background-image: -ms-linear-gradient(left,rgba(255,255,255,0.3),rgba(255,255,255,0.1)); background-image: -webkit-gradient(linear,left top,right top,color-stop(0%,rgba(255,255,255,0.3)),color-stop(100%,rgba(255,255,255,0.1))); background-image: -webkit-linear-gradient(left,rgba(255,255,255,0.3),rgba(255,255,255,0.1)); background-image: -o-linear-gradient(left,rgba(255,255,255,0.3),rgba(255,255,255,0.1)); background-image: -moz-linear-gradient(left,rgba(255,255,255,0.3),rgba(255,255,255,0.1)); background-image: linear-gradient(left,rgba(255,255,255,0.3),rgba(255,255,255,0.1)); height: 45%; width: 100%; position: absolute; z-index: 1; top: -1px; border-bottom: 1px solid rgba(0,0,0,0.1); -webkit-box-shadow: inset 0px 2px 1px rgba(255, 255, 255, 0.5); -moz-box-shadow: inset 0px 2px 1px rgba(255, 255, 255, 0.5); -ms-box-shadow: inset 0px 2px 1px rgba(255, 255, 255, 0.5); -o-box-shadow: inset 0px 2px 1px rgba(255, 255, 255, 0.5); box-shadow: inset 0px 2px 1px rgba(255, 255, 255, 0.5); -webkit-border-top-right-radius: 27px; -webkit-border-top-left-radius: 27px; -webkit-border-bottom-right-radius: 120px 20px; -webkit-border-bottom-left-radius: 100px 20px; -moz-border-top-right-radius: 27px; -moz-border-top-left-radius: 27px; -moz-border-bottom-right-radius: 120px 20px; -moz-border-bottom-left-radius: 100px 20px; -o-border-top-right-radius: 27px; -o-border-top-left-radius: 27px; -o-border-bottom-right-radius: 120px 20px; -o-border-bottom-left-radius: 100px 20px; -ms-border-top-right-radius: 27px; -ms-border-top-left-radius: 27px; -ms-border-bottom-right-radius: 120px 20px; -ms-border-bottom-left-radius: 100px 20px; -khtml-border-top-right-radius: 27px; -khtml-border-top-left-radius: 27px; -khtml-border-bottom-right-radius: 120px 20px; -khtml-border-bottom-left-radius: 100px 20px; border-top-right-radius: 27px; border-top-left-radius: 27px; border-bottom-right-radius: 120px 20px; border-bottom-left-radius: 100px 20px; } .game-badge { margin: 15px auto 25px auto; width: 200px; height: 200px; -webkit-border-radius: 28px; -moz-border-radius: 28px; -ms-border-radius: 28px; -o-border-radius: 28px; border-radius: 28px; clear: both; cursor: auto; } .game-badge:after { -webkit-border-radius: 28px; -moz-border-radius: 28px; -ms-border-radius: 28px; -o-border-radius: 28px; border-radius: 28px; -webkit-box-shadow: inset 0 0 1px rgba(155,155,155,.5), inset 0 1px 0 rgba(225,225,225,.5), inset 0 -20px 0 rgba(155,155,155,.7), inset 0 -21px 0 rgba(255,255,255,.3); -moz-box-shadow: inset 0 0 1px rgba(155,155,155,.5), inset 0 1px 0 rgba(225,225,225,.5), inset 0 -20px 0 rgba(155,155,155,.7), inset 0 -21px 0 rgba(255,255,255,.3); -ms-box-shadow: inset 0 0 1px rgba(155,155,155,.5), inset 0 1px 0 rgba(225,225,225,.5), inset 0 -20px 0 rgba(155,155,155,.7), inset 0 -21px 0 rgba(255,255,255,.3); -o-box-shadow: inset 0 0 1px rgba(155,155,155,.5), inset 0 1px 0 rgba(225,225,225,.5), inset 0 -20px 0 rgba(155,155,155,.7), inset 0 -21px 0 rgba(255,255,255,.3); box-shadow: inset 0 0 1px rgba(155,155,155,.5), inset 0 1px 0 rgba(225,225,225,.5), inset 0 -20px 0 rgba(155,155,155,.7), inset 0 -21px 0 rgba(255,255,255,.3); } .game-badge .badge-icon { color: #2c3e50; font-size: 200px; -webkit-border-radius: 27px; -moz-border-radius: 27px; -ms-border-radius: 27px; -o-border-radius: 27px; border-radius: 27px; } .game-badge .badge-icon:before { position: relative; top: -20px; } .badge-message { display: block; text-align: center; width: 100%; } .badge-message h3 { color: #2c3e50 !important; margin-top: 3px; } .game-badge-CreateContact .badge-icon:before, .CreateContact .badge-icon:before { content: "y"; } .game-badge-MassEditContacts .badge-icon:before, .MassEditContacts .badge-icon:before { content: "?"; } .game-badge-CreateAccount .badge-icon:before, .CreateAccount .badge-icon:before { content: "P"; } .game-badge-MassEditAccounts .badge-icon:before, .MassEditAccounts .badge-icon:before { content: "]"; } .game-badge-SearchAccounts .badge-icon:before, .SearchAccounts .badge-icon:before { content: "="; } .game-badge-SearchContacts .badge-icon:before, .SearchContacts .badge-icon:before { content: "%"; } .game-badge-SearchOpportunities .badge-icon:before, .SearchOpportunities .badge-icon:before { content: "+"; } .game-badge-LoginUser .badge-icon:before, .LoginUser .badge-icon:before { content: "E"; } .game-badge-CreateLead .badge-icon:before, .CreateLead .badge-icon:before { content: "."; } .game-badge-CreateCall .badge-icon:before, .CreateCall .badge-icon:before { content: "W"; } .game-badge-CreateMeeting .badge-icon:before, .CreateMeeting .badge-icon:before { content: "U"; } .game-badge-CreateNote .badge-icon:before, .CreateNote .badge-icon:before { content: "3"; } .game-badge-CreateOpportunity .badge-icon:before, .CreateOpportunity .badge-icon:before { content: "9"; } .game-badge-MassEditOpportunities .badge-icon:before, .MassEditOpportunities .badge-icon:before { content: "["; } .game-badge-SearchOpportunity .badge-icon:before, .SearchOpportunity .badge-icon:before { content: "+"; } .game-badge-WinOpportunity .badge-icon:before, .WinOpportunity .badge-icon:before { content: ";"; } .game-badge-CreateTask .badge-icon:before, .CreateTask .badge-icon:before { content: "4"; } .game-badge-CreateComment .badge-icon:before, .CreateComment .badge-icon:before { content: "b"; } .game-badge-CreateConversation .badge-icon:before, .CreateConversation .badge-icon:before { content: "O"; } .game-badge-CreateMission .badge-icon:before, .CreateMission .badge-icon:before { content: "Q"; } .game-badge-CreateSocialItem .badge-icon:before, .CreateSocialItem .badge-icon:before { content: "u"; } .game-badge-CreateEmailTemplate .badge-icon:before, .CreateEmailTemplate .badge-icon:before, .game-badge-EditEmailTemplate .badge-icon:before, .EditEmailTemplate .badge-icon:before { content: '\00B6'; } .game-badge-CreateCampaign .badge-icon:before, .CreateCampaign .badge-icon:before { content: '\002C'; } .game-badge-CreateMarketingList .badge-icon:before, .CreateMarketingList .badge-icon:before, .game-badge-EditMarketingList .badge-icon:before, .EditMarketingList .badge-icon:before { content: '\0022'; } .game-badge-CreateReport .badge-icon:before, .CreateReport .badge-icon:before, .game-badge-EditReport .badge-icon:before, .EditEmailReport .badge-icon:before { content: "V"; } .game-badge-CreateWorkflow .badge-icon:before, .CreateWorkflow .badge-icon:before, .game-badge-EditWorkflow .badge-icon:before, .EditWorkflow .badge-icon:before { content: '\20AC'; } .game-badge-NightOwl .badge-icon:before, .NightOwl .badge-icon:before { content: "$"; } .game-badge-EarlyBird .badge-icon:before, .EarlyBird .badge-icon:before { content: "#"; } .game-badge-SearchProducts .badge-icon:before, .SearchProducts .badge-icon:before, .game-badge-CreateProduct .badge-icon:before, .CreateProduct .badge-icon:before { content: '\003E'; } .game-badge-CreateProductTemplate .badge-icon:before, .CreateProductTemplate .badge-icon:before { content: '\00AC'; } .game-badge-SearchProductTemplates .badge-icon:before, .SearchProductTemplates .badge-icon:before, .game-badge-CreateProductCategory .badge-icon:before, .CreateProductCategory .badge-icon:before { content: '\00D7'; } .game-badge-SearchProjects .badge-icon:before, .SearchProjects .badge-icon:before { content: '\02C7'; } .game-badge-CreateProject .badge-icon:before, .CreateProject .badge-icon:before, .game-badge-MassEditProjects .badge-icon:before, .MassEditProjects .badge-icon:before, .game-badge-SearchProject .badge-icon:before, .SearchProject .badge-icon:before { content: '\02C7'; } .game-level-change .badge-icon:before { content: ";"; } .game-new-badge .badge-icon:before { content: ":"; } .game-badge-grade-change .badge-icon:before { content: "}"; } .hasPercentCounter { padding-right: 10px !important; } .percentHolder { display: inline-block; border: 1px solid #ccc; -webkit-box-shadow: 0 0 8px 0 rgba(153,153,153,0.5); -moz-box-shadow: 0 0 8px 0 rgba(153,153,153,0.5); -ms-box-shadow: 0 0 8px 0 rgba(153,153,153,0.5); -o-box-shadow: 0 0 8px 0 rgba(153,153,153,0.5); box-shadow: 0 0 8px 0 rgba(153,153,153,0.5); width: 100%; height: 16px; } .percentHolder:hover .percent { display: inline-block; } .percent { display: none; font-size: 10px; text-indent: 3px; font-weight: bold; line-height: 16px; position: relative; top: -4px; left: 3px; } .percentComplete { color: #2c3e50; position: relative; line-height: 16px; height: 100%; padding: 2px 0; display: inline-block; background-color: #f5f5f5; background-image: -webkit-repeating-linear-gradient(-45deg,transparent,transparent 2px,rgba(255,255,255,0.8) 5px,rgba(255,255,255,0.8) 4px); background-image: -moz-repeating-linear-gradient(-45deg,transparent,transparent 2px,rgba(255,255,255,0.8) 5px,rgba(255,255,255,0.8) 4px); background-image: -ms-repeating-linear-gradient(-45deg,transparent,transparent 2px,rgba(255,255,255,0.8) 5px,rgba(255,255,255,0.8) 4px); background-image: -o-repeating-linear-gradient(-45deg,transparent,transparent 2px,rgba(255,255,255,0.8) 5px,rgba(255,255,255,0.8) 4px); background-image: -khtml-repeating-linear-gradient(-45deg,transparent,transparent 2px,rgba(255,255,255,0.8) 5px,rgba(255,255,255,0.8) 4px); background-image: repeating-linear-gradient(-45deg,transparent,transparent 2px,rgba(255,255,255,0.8) 5px,rgba(255,255,255,0.8) 4px); } .z_0 { width: 0%; } .z_1 { width: 1%; } .z_2 { width: 2%; } .z_3 { width: 3%; } .z_4 { width: 4%; } .z_5 { width: 5%; } .z_6 { width: 6%; } .z_7 { width: 7%; } .z_8 { width: 8%; } .z_9 { width: 9%; } .z_10 { width: 10%; } .z_11 { width: 11%; } .z_12 { width: 12%; } .z_13 { width: 13%; } .z_14 { width: 14%; } .z_15 { width: 15%; } .z_16 { width: 16%; } .z_17 { width: 17%; } .z_18 { width: 18%; } .z_19 { width: 19%; } .z_20 { width: 20%; } .z_21 { width: 21%; } .z_22 { width: 22%; } .z_23 { width: 23%; } .z_24 { width: 24%; } .z_25 { width: 25%; } .z_26 { width: 26%; } .z_27 { width: 27%; } .z_28 { width: 28%; } .z_29 { width: 29%; } .z_30 { width: 30%; } .z_31 { width: 31%; } .z_32 { width: 32%; } .z_33 { width: 33%; } .z_34 { width: 34%; } .z_35 { width: 35%; } .z_36 { width: 36%; } .z_37 { width: 37%; } .z_38 { width: 38%; } .z_39 { width: 39%; } .z_40 { width: 40%; } .z_41 { width: 41%; } .z_42 { width: 42%; } .z_43 { width: 43%; } .z_44 { width: 44%; } .z_45 { width: 45%; } .z_46 { width: 46%; } .z_47 { width: 47%; } .z_48 { width: 48%; } .z_49 { width: 49%; } .z_50 { width: 50%; } .z_51 { width: 51%; } .z_52 { width: 52%; } .z_53 { width: 53%; } .z_54 { width: 54%; } .z_55 { width: 55%; } .z_56 { width: 56%; } .z_57 { width: 57%; } .z_58 { width: 58%; } .z_59 { width: 59%; } .z_60 { width: 60%; } .z_61 { width: 61%; } .z_62 { width: 62%; } .z_63 { width: 63%; } .z_64 { width: 64%; } .z_65 { width: 65%; } .z_66 { width: 66%; } .z_67 { width: 67%; } .z_68 { width: 68%; } .z_69 { width: 69%; } .z_70 { width: 70%; } .z_71 { width: 71%; } .z_72 { width: 72%; } .z_73 { width: 73%; } .z_74 { width: 74%; } .z_75 { width: 75%; } .z_76 { width: 76%; } .z_77 { width: 77%; } .z_78 { width: 78%; } .z_79 { width: 79%; } .z_80 { width: 80%; } .z_81 { width: 81%; } .z_82 { width: 82%; } .z_83 { width: 83%; } .z_84 { width: 84%; } .z_85 { width: 85%; } .z_86 { width: 86%; } .z_87 { width: 87%; } .z_88 { width: 88%; } .z_89 { width: 89%; } .z_90 { width: 90%; } .z_91 { width: 91%; } .z_92 { width: 92%; } .z_93 { width: 93%; } .z_94 { width: 94%; } .z_95 { width: 95%; } .z_96 { width: 96%; } .z_97 { width: 97%; } .z_98 { width: 98%; } .z_99 { width: 99%; } .z_100 { width: 100%; } .ModalGameNotification { height: auto !important; padding: 20px; text-align: center; -webkit-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); -moz-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); -ms-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); -o-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12); background-color: #f5f5f5 ; background-repeat: no-repeat ; background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),color-stop(80%,#f5f5f5),to(#f5f5f5)) ; background-image: -webkit-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -ms-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -o-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -moz-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; } .ModalGameNotification a:focus { outline: none; } .ModalGameNotificationParent { min-width: 310px !important; width: 310px !important; } a.close-ModalGameNotification.simple-link { text-decoration: underline !important; background: none !important; margin-right: 10px; margin-left: -35px; font-size: 11px; } .UserSocialItemsForPortletView { margin-right: 20px !important; } .UserSocialItemsForPortletView .wide.form { border: none; border-bottom: 1px solid #fff; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; float: none; margin-bottom: 0; } .UserSocialItemsForPortletView .empty { display: none; } #UserDetailsView { padding: 0 0 20px 0; } #UserDetailsView .details-table { *zoom: 1 !important; position: relative !important; } #UserDetailsView .details-table:before, #UserDetailsView .details-table:after { content: " "; display: table; } #UserDetailsView .details-table:after { clear: both; } .gravatar-container a { display: block; float: left; position: relative; } .gravatar-container span { text-align: center; padding: 10px; position: absolute; z-index: 1; display: none; width: 100%; height: auto; background: rgba(255,255,255,0.7); } .gravatar-container:hover span { display: block; } .gravatar-container + .panel { float: left; } .gravatar-container + .panel + .panel { clear: right; } #UserChangeAvatarView { *zoom: 1; } #UserChangeAvatarView:before, #UserChangeAvatarView:after { content: " "; display: table; } #UserChangeAvatarView:after { clear: both; } #UserChangeAvatarView .col-0 { width: 100%; } #UserChangeAvatarView .col-1 { width: 0; } #UserChangeAvatarView .wrapper { padding: 0 !important; border: none !important; background: none !important; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; margin-bottom: 0 !important; } #UserChangeAvatarView .wrapper table { margin-bottom: 0 !important; } #UserChangeAvatarView .wrapper td { padding-left: 0 !important; } #UserChangeAvatarView .view-toolbar-container { margin-top: 0 !important; } #customAvatarEmailAddressInput { float: left; width: 100%; margin-top: 3px; } #customAvatarEmailAddressInput label { float: left; margin-top: 5px; } #customAvatarEmailAddressInput input { width: 70%; } #user-gravatar-tooltip { margin-top: 4px; margin-left: 10px; } #GameRewardsRedeemListView .pager.horizontal { border: 1px solid #DFDFDF; border-top: none; } .reward-name { margin-bottom: 5px; display: block; } .reward-name span { font-weight: normal; font-size: 11px; color: #545454; } .reward-description { line-height: 1.5; padding-bottom: 1.33em; } .reward-cost { display: inline-block; line-height: 16px; font-weight: bold; padding-right: 20px; background: url("../images/game-dashboard/z-coin-small.png") right top no-repeat; } .reward-redeem-link { float: right; margin: -15px 10px 0 0; } #WelcomeView { padding-right: 20px !important; } #WelcomeView h1 { font-size: 50px; float: left; } #WelcomeView h1 span { font-size: 14px; } #WelcomeView a { text-decoration: underline !important; } #WelcomeView .social-links { margin: 30px -5px 0 0 !important; } a.dashboard-link { text-decoration: none !important; margin-top: 30px; margin-left: 0; font-size: 14px !important; cursor: pointer; } a.dashboard-link .z-label { line-height: 36px !important; } #welcome-content { margin-top: 30px; padding-bottom: 30px; display: block; float: left; width: 100%; *zoom: 1; } #welcome-content:before, #welcome-content:after { content: " "; display: table; } #welcome-content:after { clear: both; } #welcome-content.has-message .help-section { width: 30%; } .help-section { border-top: 1px solid #fff; padding: 30px 50px 0 0; width: 50%; float: left; font-size: 12px; margin-bottom: 30px; } .help-section h3 { font-size: 16px; margin-bottom: 20px; } .help-section ul { margin-left: 15px; font-weight: bold; color: #666; } .help-section li { margin-bottom: 10px; } .help-section a { color: #666; font-weight: bold; } .get-pro-message-small { width: 40%; } #tip-of-day-next-page-link { margin-left: 16px; } .hide-welcome { display: block; clear: both; position: relative; top: 30px; font-size: 11px; } .hide-welcome span { font-weight: normal !important; font-size: 26px; font-family: "zurmo_gamification_symbly_rRg"; line-height: 1; border: none; margin-right: 5px; outline: none !important; display: inline-block; position: relative; top: 2px; color: #2c3e50; } .hide-welcome span:before { content: "•"; } #instructions { *zoom: 1; padding-bottom: 30px; border-bottom: 1px solid #ccc; } #instructions p { font-size: 25px; line-height: 35px; padding-right: 100px; padding-top: 15px; } #instructions:before, #instructions:after { content: " "; display: table; } #instructions:after { clear: both; } #welcome-gallery { margin-right: 45px; float: left; -webkit-border-radius: 8px 0 0 8px; -moz-border-radius: 8px 0 0 8px; -ms-border-radius: 8px 0 0 8px; -o-border-radius: 8px 0 0 8px; border-radius: 8px 0 0 8px; position: relative; } #welcome-gallery img { -webkit-border-radius: 8px 0 0 8px; -moz-border-radius: 8px 0 0 8px; -ms-border-radius: 8px 0 0 8px; -o-border-radius: 8px 0 0 8px; border-radius: 8px 0 0 8px; z-index: 0; position: relative; } #welcome-gallery span { position: absolute; right: 0; top: 0; display: block; width: 100%; height: 100%; background-color: transparent !important; background-image: -o-linear-gradient(90deg,rgba(255,255,255,0) 55%,#ffffff 100%); background-image: -moz-linear-gradient(0deg,rgba(255,255,255,0) 55%,#ffffff 100%); background-image: -webkit-linear-gradient(0deg,rgba(255,255,255,0) 55%,#ffffff 100%); background-image: -ms-linear-gradient(90deg,rgba(255,255,255,0) 55%,#ffffff 100%); background-image: linear-gradient(90deg,rgba(255,255,255,0) 55%,#ffffff 100%); } .get-pro-message { background-color: #36719f !important; background-repeat: repeat-x !important; background-image: -ms-radial-gradient(circle,#3d82b6,#36719f) !important; background-image: -webkit-gradient(circle,color-stop(0%,#3d82b6),color-stop(100%,#36719f)) !important; background-image: -webkit-radial-gradient(circle,#3d82b6,#36719f) !important; background-image: -o-radial-gradient(circle,#3d82b6,#36719f) !important; background-image: -moz-radial-gradient(circle,#3d82b6,#36719f) !important; background-image: radial-gradient(circle,#3d82b6,#36719f) !important; } .get-pro-message > div { padding: 30px; background: url("../images/get-pro-screens.png") right bottom no-repeat; } .get-pro-message h2 { font-weight: 100; color: #e9c71b; -webkit-text-shadow: none; -moz-text-shadow: none; -ms-text-shadow: none; -o-text-shadow: none; text-shadow: none; margin-bottom: 15px; font-size: 42px; } .get-pro-message p { margin-bottom: 15px; line-height: 1.4; color: #fff; font-size: 18px; padding-right: 230px; } .get-pro-message .z-label { line-height: 36px !important; font-size: 16px; font-weight: 400; } .get-pro-message-small { width: 40%; font-weight: bold; padding-right: 60px; } .get-pro-message-small h3 { font-weight: 400; color: #e9c71b; -webkit-text-shadow: none; -moz-text-shadow: none; -ms-text-shadow: none; -o-text-shadow: none; text-shadow: none; margin-bottom: 15px; font-size: 24px; } .get-pro-message-small p { line-height: 1.5; } @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) { #LoginView, #HeaderLinksView > div, .AppContainer { margin: 0 !important; } .AppContainer { min-width: none; } } .gravatar { float: left; border: 1px solid #fff !important; background: #DFDFDF; padding: 2px; } .list-row-model-date { float: right; margin-right: 10px; } #ConversationEditView td { padding-left: 0; } #ConversationEditView textarea { line-height: 130%; } .single-coloumn-details-view.AppContent, #MissionDetailsView.AppContent, #ConversationDetailsView.AppContent, #ConversationDetailsAndRelationsView.AppContent { padding-right: 0; } .single-coloumn-details-view .GridView, #MissionDetailsView .GridView, #ConversationDetailsView .GridView, #ConversationDetailsAndRelationsView .GridView { display: none; } .single-coloumn-details-view .GridView:first-child, #MissionDetailsView .GridView:first-child, #ConversationDetailsView .GridView:first-child, #ConversationDetailsAndRelationsView .GridView:first-child { display: block; width: 100%; } .single-coloumn-details-view .panel, #MissionDetailsView .panel, #ConversationDetailsView .panel, #ConversationDetailsAndRelationsView .panel { width: 70%; float: left; } .single-coloumn-details-view .panel > table, #MissionDetailsView .panel > table, #ConversationDetailsView .panel > table, #ConversationDetailsAndRelationsView .panel > table { border-bottom: none; } .single-coloumn-details-view .details-table, #MissionDetailsView .details-table, #ConversationDetailsView .details-table, #ConversationDetailsAndRelationsView .details-table { border: 1px solid #ccc !important; -webkit-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12) !important; -moz-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12) !important; -ms-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12) !important; -o-box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12) !important; box-shadow: inset 0 0 0 2px #ffffff, 0 0 9px 5px rgba(153, 153, 153, 0.12) !important; background-color: #f5f5f5 !important; background-repeat: no-repeat !important; background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),color-stop(80%,#f5f5f5),to(#f5f5f5)) !important; background-image: -webkit-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) !important; background-image: -ms-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) !important; background-image: -o-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) !important; background-image: -moz-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) !important; background-image: linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) !important; *zoom: 1; } .single-coloumn-details-view .details-table:before, .single-coloumn-details-view .details-table:after, #MissionDetailsView .details-table:before, #MissionDetailsView .details-table:after, #ConversationDetailsView .details-table:before, #ConversationDetailsView .details-table:after, #ConversationDetailsAndRelationsView .details-table:before, #ConversationDetailsAndRelationsView .details-table:after { content: " "; display: table; } .single-coloumn-details-view .details-table:after, #MissionDetailsView .details-table:after, #ConversationDetailsView .details-table:after, #ConversationDetailsAndRelationsView .details-table:after { clear: both; } .single-coloumn-details-view .toolbar-mbmenu, #MissionDetailsView .toolbar-mbmenu, #ConversationDetailsView .toolbar-mbmenu, #ConversationDetailsAndRelationsView .toolbar-mbmenu { top: 8px !important; } #MissionDetailsView .panel, #ConversationDetailsView .panel { width: 100%; } .thread-details { margin: 0 0 10px 0 !important; width: 100%; } .thread-details td + th { padding-left: 0 !important; } .thread-details th, .thread-details td { text-align: left; padding: 5px 0; } .thread-details th { color: #545454; } .thread-details .attachments { margin: 0; font-weight: normal; } .conversation-related-Account { -webkit-text-shadow: 0 1px #fff; -moz-text-shadow: 0 1px #fff; -ms-text-shadow: 0 1px #fff; -o-text-shadow: 0 1px #fff; text-shadow: 0 1px #fff; } .conversation-related-Account > div { position: relative; } .conversation-related-Account > div:before { font-weight: normal !important; font-size: 20px; font-family: "zurmo_gamification_symbly_rRg"; content: "P"; position: absolute; top: -3px; line-height: 1; } .conversation-related-Account a { position: relative; left: 15px; } .conversation-related-Opportunity { -webkit-text-shadow: 0 1px #fff; -moz-text-shadow: 0 1px #fff; -ms-text-shadow: 0 1px #fff; -o-text-shadow: 0 1px #fff; text-shadow: 0 1px #fff; } .conversation-related-Opportunity > div { position: relative; } .conversation-related-Opportunity > div:before { font-weight: normal !important; font-size: 21px; font-family: "zurmo_gamification_symbly_rRg"; content: "9"; position: absolute; top: -2px; line-height: 1; } .conversation-related-Opportunity a { position: relative; left: 15px; } .conversationStatusChangeArea { margin: 0 0 15px 0; padding: 0; } .conversationStatusChangeArea > span { float: left; line-height: 1; margin: 10px 10px 0 0; padding: 0 0; font-weight: bold; } .conversationStatusChangeArea label { display: inline !important; margin-right: 10px; } .conversationStatusChangeArea label input { margin-right: 5px; } .switch { border: 1px solid rgba(170,170,170,0.3); background-color: #999; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#777,#999); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#777),color-stop(100%,#999)); background-image: -webkit-linear-gradient(top,#777,#999); background-image: -o-linear-gradient(top,#777,#999); background-image: -moz-linear-gradient(top,#777,#999); background-image: linear-gradient(top,#777,#999); -webkit-box-shadow: 0 0 9px 5px rgba(153,153,153,0.15); -moz-box-shadow: 0 0 9px 5px rgba(153,153,153,0.15); -ms-box-shadow: 0 0 9px 5px rgba(153,153,153,0.15); -o-box-shadow: 0 0 9px 5px rgba(153,153,153,0.15); box-shadow: 0 0 9px 5px rgba(153,153,153,0.15); display: inline-block; padding: 8px 2px 7px 2px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; cursor: pointer; float: right; } .switch-state { display: inline-block; position: relative; width: auto; } .switch-state label { position: relative; z-index: 0; padding: 5px 7px 5px 7px !important; margin: 0; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; color: #fff; font-size: 11px !important; font-weight: 700 !important; cursor: pointer; } .switch-state input { position: absolute; z-index: 1; left: 7px; filter: alpha(opacity=0); -khtml-opacity: 0; -moz-opacity: 0; opacity: 0; } .switch-state input:after { content: ""; width: 14px; height: 14px; -webkit-border-radius: 50px; -moz-border-radius: 50px; -ms-border-radius: 50px; -o-border-radius: 50px; border-radius: 50px; display: block; position: absolute; left: -3px; top: -2px; } .switch-state input:checked + label { filter: alpha(opacity=100); -khtml-opacity: 1; -moz-opacity: 1; opacity: 1; } .switch-state:first-child input:checked + label { background-color: #6fa82d !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#97c43d,#6fa82d) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#97c43d),color-stop(100%,#6fa82d)) !important; background-image: -webkit-linear-gradient(top,#97c43d,#6fa82d) !important; background-image: -o-linear-gradient(top,#97c43d,#6fa82d) !important; background-image: -moz-linear-gradient(top,#97c43d,#6fa82d) !important; background-image: linear-gradient(top,#97c43d,#6fa82d) !important; border: 1px solid #97c43d; } .switch-state:last-child input:checked + label { background-color: #a82d31 !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#c43d53,#a82d31) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#c43d53),color-stop(100%,#a82d31)) !important; background-image: -webkit-linear-gradient(top,#c43d53,#a82d31) !important; background-image: -o-linear-gradient(top,#c43d53,#a82d31) !important; background-image: -moz-linear-gradient(top,#c43d53,#a82d31) !important; background-image: linear-gradient(top,#c43d53,#a82d31) !important; border: 1px solid #c43d53; } .switch-state:first-child input:checked:after { border: 2px solid #6fa82d; box-shadow: 0 0 10px #6fa82d; } .switch-state:last-child input:checked:after { border: 2px solid #a82d31; box-shadow: 0 0 10px #a82d31; } .switch-state + .switch-state { margin-left: 0; } #ModelDetailsSummaryView h2, .CommentList h2 { margin-bottom: 15px; } .comment-details { display: inline-block; font-size: 11px; } .comment-details strong { color: #999; font-weight: normal !important; } .CommentList { margin-left: 115px; } .CommentList .comment { margin-top: 10px; } .CommentList:last-child { margin-bottom: 5px; } .comment { *zoom: 1; line-height: 140%; } .comment:before, .comment:after { content: " "; display: table; } .comment:after { clear: both; } .comment .gravatar { margin-top: 1px; } .comment .comment-content { padding-left: 50px; line-height: 140%; } .comment.unread { font-weight: bold; } .comment .delete-comment, .comment .edit-comment { font-size: 11px; color: #2c3e50; } .comment .delete-comment a, .comment .edit-comment a { filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; color: #2c3e50; } .comment .delete-comment a:hover, .comment .edit-comment a:hover { filter: alpha(opacity=100); -khtml-opacity: 1; -moz-opacity: 1; opacity: 1; } .model-details-summary { font-size: 12px !important; padding-left: 115px; } .model-details-summary .gravatar { margin-left: -115px; } .model-details-summary .comment-content { font-size: 12px; padding-left: 0; } .conversation-subject { margin-bottom: 30px; } .conversation-subject .comment-content { font-size: 15px; line-height: 150%; font-style: italic; } .showAllCommentsLink { margin-left: 130px; position: relative; top: 5px; display: block; font-size: 11px; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; text-decoration: none; color: #2c3e50; } .showAllCommentsLink:hover { filter: alpha(opacity=100); -khtml-opacity: 1; -moz-opacity: 1; opacity: 1; text-decoration: none; } #ModelDetailsSummaryView, #CommentInlineEditForModelView, #CommentsForRelatedModelView, #CommentForTaskInlineEditForModelView, #CommentsForRelatedTaskModelView { max-width: 600px; } #ModelDetailsSummaryView .wide.form, #CommentInlineEditForModelView .wide.form, #CommentsForRelatedModelView .wide.form, #CommentForTaskInlineEditForModelView .wide.form, #CommentsForRelatedTaskModelView .wide.form { border: none; background: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; padding: 0; margin: 0; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } #ModelDetailsSummaryView h2, #CommentInlineEditForModelView h2, #CommentsForRelatedModelView h2, #CommentForTaskInlineEditForModelView h2, #CommentsForRelatedTaskModelView h2 { font-size: 15px; } #CommentInlineEditForModelView, #CommentForTaskInlineEditForModelView { margin-top: 25px; padding-left: 115px; } #CommentInlineEditForModelView td, #CommentForTaskInlineEditForModelView td { padding: 0 0 0 0 !important; } #CommentInlineEditForModelView h2, #CommentForTaskInlineEditForModelView h2 { margin: 0 0 10px 0; } #CommentInlineEditForModelView .wide.form, #CommentForTaskInlineEditForModelView .wide.form { padding: 0; border: none; background: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; margin-bottom: 0; } #CommentInlineEditForModelView form, #CommentForTaskInlineEditForModelView form { padding: 0; margin-bottom: 15px; } #CommentInlineEditForModelView .panel, #CommentForTaskInlineEditForModelView .panel { width: 100%; float: none; } #CommentInlineEditForModelView table, #CommentForTaskInlineEditForModelView table { margin-bottom: 0; } .attachments { margin-top: 5px; list-style: none; line-height: 140%; } .attachments li { margin-bottom: 2px; padding-left: 15px; } .icon-attachment { font-weight: normal !important; font-size: 18px; font-family: "zurmo_gamification_symbly_rRg"; } .icon-attachment:before { content: "H"; } #ConversationsPageView ~ .token-input-dropdown { min-width: 0 !important; } .unread td, .unread td a { font-weight: bold; color: #2c3e50; } #ConversationDetailsView .details-table, #MissionDetailsView .details-table { *zoom: 1; margin-right: 0 !important; } #ConversationDetailsView .details-table:before, #ConversationDetailsView .details-table:after, #MissionDetailsView .details-table:before, #MissionDetailsView .details-table:after { content: " "; display: table; } #ConversationDetailsView .details-table:after, #MissionDetailsView .details-table:after { clear: both; } #ConversationDetailsView .panel > table, #MissionDetailsView .panel > table { border-bottom: none; } #MissionEditView .panel { width: 100% !important; } #MissionEditView .view-toolbar-container + .left-column { display: none; } .mission-change-status-link { margin: 0 5px !important; } #MissionDetailsView .missionStatusChangeArea { margin-bottom: 10px; } #MissionDetailsView .mission-change-status-link { position: relative; top: 9px; } .missionStatusChangeArea { margin-top: 10px; display: inline-block; } .missionStatusChangeArea a { float: none; color: #fff !important; } .actions-column .missionStatusChangeArea { margin-top: 0; } .comment-content { font-weight: normal; } .comment-content .missionStatusChangeArea a:first-child { margin-left: 15px; } .comment-content .comment-text a:not(.user-link) { color: #2c3e50; } .comment-content .comment-text a:not(.user-link):hover { color: #080b0e; } a.user-link { font-weight: bold; color: #545454; } .mission-status { margin: 0 5px; font-weight: bold; } #MissionsListView .actions-column { width: 250px; } .actions-column { text-align: right; } .actions-column .mission-status { vertical-align: 60%; font-weight: normal; font-style: italic; } .SocialItemsListView tr:hover, #AllSocialItemsForPortletView tr:hover { background: none !important; color: inherit !important; } .SocialItemsListView td:first-child, #AllSocialItemsForPortletView td:first-child { border-top: none; } .SocialItemsListView .CommentList, #AllSocialItemsForPortletView .CommentList { margin-left: 80px; } .SocialItemsListView .model-details-summary, #AllSocialItemsForPortletView .model-details-summary { padding-left: 80px; padding-top: 0; } .SocialItemsListView .model-details-summary .gravatar, #AllSocialItemsForPortletView .model-details-summary .gravatar { margin-left: -65px; } .SocialItemsListView .show-create-comment, #AllSocialItemsForPortletView .show-create-comment { margin-left: 80px; font-size: 11px; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; color: #2c3e50; } .SocialItemsListView .show-create-comment:hover, #AllSocialItemsForPortletView .show-create-comment:hover { filter: alpha(opacity=100); -khtml-opacity: 1; -moz-opacity: 1; opacity: 1; } .SocialItemsListView .wide.form, #AllSocialItemsForPortletView .wide.form { margin-bottom: 0; border: none; border-bottom: 1px solid #fff; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; float: none; } .SocialItemsListView .comment-content, #AllSocialItemsForPortletView .comment-content { padding-right: 15px; } #MissionsPageView #comment-inline-edit-form .left-column, #MissionsPageView #comment-for-task-inline-edit-form .left-column, #MissionsPageView #social-item-inline-edit-form .left-column, #ConversationsPageView #comment-inline-edit-form .left-column, #ConversationsPageView #comment-for-task-inline-edit-form .left-column, #ConversationsPageView #social-item-inline-edit-form .left-column { padding: 0; z-index: 99999; position: relative; } #MissionsPageView #comment-inline-edit-form .form-toolbar, #MissionsPageView #comment-for-task-inline-edit-form .form-toolbar, #MissionsPageView #social-item-inline-edit-form .form-toolbar, #ConversationsPageView #comment-inline-edit-form .form-toolbar, #ConversationsPageView #comment-for-task-inline-edit-form .form-toolbar, #ConversationsPageView #social-item-inline-edit-form .form-toolbar { padding: 0; } #comment-inline-edit-form, #comment-for-task-inline-edit-form, #social-item-inline-edit-form { padding-bottom: 15px; border: none; border-bottom: 1px solid #ccc; background: none !important; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } #comment-inline-edit-form td:first-child, #comment-for-task-inline-edit-form td:first-child, #social-item-inline-edit-form td:first-child { padding-left: 0; } #comment-inline-edit-form .form-toolbar, #comment-for-task-inline-edit-form .form-toolbar, #social-item-inline-edit-form .form-toolbar { text-align: right; border-top: none; margin-top: 0; } #comment-inline-edit-form .form-toolbar a, #comment-for-task-inline-edit-form .form-toolbar a, #social-item-inline-edit-form .form-toolbar a { color: #fff; margin-right: 0; float: right; } #comment-inline-edit-form table.files, #comment-for-task-inline-edit-form table.files, #social-item-inline-edit-form table.files { border-bottom: none; float: left; margin-top: 5px; } #comment-inline-edit-form .panel > table, #comment-for-task-inline-edit-form .panel > table, #social-item-inline-edit-form .panel > table { border: none; } #social-item-inline-edit-form .view-toolbar-container { float: none; padding: 0 15px; } #comment-inline-edit-form, #comment-for-task-inline-edit-form { border-bottom: none; } #comment-inline-edit-form tr.template-download td, #comment-for-task-inline-edit-form tr.template-download td { padding-left: 0 !important; } #comment-for-task-inline-edit-form .view-toolbar-container { top: auto !important; } [id^="comment-inline-edit-form"] .left-column { padding: 0; } .SocialItemsListView .items { width: 100%; } .SocialItemsListView .items > tbody > tr > td { padding: 0 !important; } .social-item { border-top: 1px solid #fff; padding: 15px 0; } .social-item .wide.form { border: none !important; background: none !important; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; } .social-item .wide.form form { border: none !important; background: none !important; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; padding-bottom: 0; } .social-item .comments-activity td { padding: 0; border-bottom: none; } .social-item .comments-activity .form-fields td:first-child { padding-left: 0; } .social-item textarea { width: 100%; } .social-item table { border-bottom: none; } .social-item .form-toolbar { text-align: right; border: none; } .social-item .form-toolbar a { margin-right: 0; } .CommentInlineEditView { padding-top: 2px; } .CommentForSocialItemInlineEditView { margin: 10px 15px 0 80px; } .CommentForSocialItemInlineEditView.CommentInlineEditView .wide.form td { padding: 0; } .SocialItemInlineEditView td { padding-bottom: 0; } .SocialItemInlineEditView .file-upload-box { margin-top: 7px; } .SocialItemInlineEditView .left-column { padding-bottom: 0; } .mentions-input-box { margin-bottom: 10px; } .comment-text .form-toolbar { text-align: right; border-top: none; } .comment-text .form-toolbar a { margin-right: 0; } .comment-text .form-fields td:first-child { padding: 0; } .comment .comment-content table { margin-bottom: 0; } .comment .comment-content .comment-text h1, .comment .comment-content .comment-text h2, .comment .comment-content .comment-text h3, .comment .comment-content .comment-text h4, .comment .comment-content .comment-text h5, .comment .comment-content .comment-text h6 { color: #545454; margin: 0 !important; padding: 0 !important; background: none !important; border: 0 !important; outline: 0 !important; text-indent: 0 !important; box-shadow: none !important; } .comment .comment-content .comment-text h1 { font-size: 15px !important; } .comment .comment-content .comment-text h2 { font-size: 14px !important; } .comment .comment-content .comment-text h3 { font-size: 14px !important; } .comment .comment-content .comment-text ul, .comment .comment-content .comment-text ol { display: block; margin-top: 0.25em; margin-bottom: 0.25em; margin-left: 0; margin-right: 0; padding-left: 10px; } .comment .comment-content .comment-text ul { list-style-type: disc; } .comment .comment-content .comment-text ol { list-style-type: decimal; } .comment .comment-content .comment-text li { color: #545454; display: list-item; } .comment .comment-content .comment-text table, .comment .comment-content .comment-text th, .comment .comment-content .comment-text td { border: 1px solid #545454; border-collapse: collapse; } .comment .comment-content .comment-text table.form-fields { border: 0; border-collapse: collapse; } .comment .comment-content .comment-text table.form-fields th, .comment .comment-content .comment-text table.form-fields td { border: 0; } .comment-markdown-guide-link { margin: 0px 5px 0px 0px; text-align: right; } .comment-markdown-guide-link .simple-link { margin-left: 0; } .markdown-guide-modal { padding: 15px; line-height: 140%; } .markdown-guide-modal > div { margin-top: 15px; } .markdown-guide-modal h4 { margin-bottom: 5px; } .markdown-guide-modal ul { padding-left: 16px; } .markdown-guide-modal li { margin-bottom: 4px; } .details-table .left-column .left-column { padding: 0; } #ArchivedEmailMatchingListView .items td { padding-right: 10px; } #ArchivedEmailMatchingListView .view-toolbar-container { border-top: 1px solid #CCCCCC; } #ArchivedEmailMatchingListView table { width: 100%; } .email-archive-item { border: none !important; background: none !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; box-shadow: none !important; margin: 0 0 0 0 !important; padding: 0 !important; } .email-archive-item .lead-conversion-actions { padding-left: 0; } .email-archive-item .wide.form { background: none !important; border: none !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; box-shadow: none !important; padding-bottom: 0; margin-bottom: 0; } .email-archive-item .wide.form > form { padding: 0; } .email-archive-item .wide.form > form table { padding-bottom: 15px !important; } .email-archive-item .overlay-label-field { padding-bottom: 0; } .email-archive-item .matching-actions-and-content > div { margin-top: 15px; } .email-archive-item .matching-actions-and-content form { padding-bottom: 0; } .email-archive-item tr:hover { background: none !important; } .email-archive-item th { height: auto !important; line-height: 1 !important; padding: 0 0 15px 0 !important; } .email-archive-item td { padding-right: 0 !important; padding-bottom: 15px; } .email-archive-item th, .email-archive-item td { background: none !important; border: none !important; } .email-archive-item .email-matching-summary-content span { line-height: 150%; font-weight: bold; color: #525252; font-size: 11px; } .email-archive-item .email-from, .email-archive-item .email-to { display: block; font-weight: 400 !important; } .email-archive-item .email-from strong, .email-archive-item .email-to strong { font-weight: bold; } .email-archive-item .email-from, .email-archive-item .email-to, .email-archive-item .email-subject { line-height: 140%; margin-bottom: 2px; } .email-archive-item .beforeOptOutCheckBox + .hasCheckBox { left: 0 !important; } .email-archive-item .beforeOptOutCheckBox + .hasCheckBox label.hasCheckBox { margin-right: 0; margin-left: 5px; } .email-archive-item .beforeOptOutCheckBox + .hasCheckBox label.hasCheckBox+label { margin-left: 5px; margin-right: 0; } .email-matching-actions { margin: 5px 0 0 0 !important; display: block; } .email-matching-actions a { text-decoration: none; color: #2c3e50; } .email-matching-show-more, .email-matching-show-less { margin-top: 10px; cursor: pointer; } .email-matching-show-less { padding-bottom: 10px; border-bottom: 1px solid #ccc; } .icon-down-arrow { font-weight: normal; } .icon-down-arrow:before { position: relative; color: #545454 !important; content: "6"; font-weight: normal !important; font-size: 18px; font-family: "zurmo_gamification_symbly_rRg"; top: 1px; margin: 0 4px 0 0; } .icon-up-arrow { font-weight: normal; } .icon-up-arrow:before { position: relative; color: #545454 !important; content: "5"; font-weight: normal !important; font-size: 18px; font-family: "zurmo_gamification_symbly_rRg"; top: 1px; margin: 0 4px 0 0; } .expanded { background-color: #f5f5f5 !important; background-repeat: no-repeat !important; background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),color-stop(80%,#f5f5f5),to(#f5f5f5)) !important; background-image: -webkit-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) !important; background-image: -ms-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) !important; background-image: -o-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) !important; background-image: -moz-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) !important; background-image: linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) !important; } .expanded > td { padding-bottom: 0 !important; -webkit-box-shadow: inset 0 0 0 2px #ffffff; -moz-box-shadow: inset 0 0 0 2px #ffffff; -ms-box-shadow: inset 0 0 0 2px #ffffff; -o-box-shadow: inset 0 0 0 2px #ffffff; box-shadow: inset 0 0 0 2px #ffffff; } .active-panel { -webkit-box-shadow: inset 0 0 0 2px #ffffff; -moz-box-shadow: inset 0 0 0 2px #ffffff; -ms-box-shadow: inset 0 0 0 2px #ffffff; -o-box-shadow: inset 0 0 0 2px #ffffff; box-shadow: inset 0 0 0 2px #ffffff; background-color: #f5f5f5 ; background-repeat: no-repeat ; background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),color-stop(80%,#f5f5f5),to(#f5f5f5)) ; background-image: -webkit-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -ms-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -o-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -moz-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; } #CreateEmailMessageModalEditView .panel { width: 100%; } #CreateEmailMessageModalEditView td { padding-left: 0; } #CreateEmailMessageModalEditView .more-panels-link { display: block; margin: 0 0 0 10%; font-size: 11px; float: left; position: relative; top: 6px; } #CreateEmailMessageModalEditView div.overlay-label-field { padding-bottom: 0; } #CreateEmailMessageModalEditView .redactor_box iframe { min-height: 300px !important; height: auto !important; } .recipient { *zoom: 1; } .recipient:before, .recipient:after { content: " "; display: table; } .recipient:after { clear: both; } .recipient > label { float: left; width: 10%; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; -o-text-overflow: ellipsis; -webkit-text-overflow: ellipsis; white-space: nowrap; } .recipient > div { float: right; width: 90%; } #cc-bcc-fields .recipient { margin-top: 15px; } #NoGlobalEmailConfigurationYetView, #NoUserEmailConfigurationYetView { *zoom: 1; padding: 0 0 30px 0; } #NoGlobalEmailConfigurationYetView:before, #NoGlobalEmailConfigurationYetView:after, #NoUserEmailConfigurationYetView:before, #NoUserEmailConfigurationYetView:after { content: " "; display: table; } #NoGlobalEmailConfigurationYetView:after, #NoUserEmailConfigurationYetView:after { clear: both; } #NoGlobalEmailConfigurationYetView .large-icon, #NoUserEmailConfigurationYetView .large-icon { margin-top: 0; } #NoGlobalEmailConfigurationYetView .large-icon:after, #NoUserEmailConfigurationYetView .large-icon:after { font-size: 220px; } #NoGlobalEmailConfigurationYetView p, #NoUserEmailConfigurationYetView p { margin-top: 15px; } #NoGlobalEmailConfigurationYetView .z-button, #NoUserEmailConfigurationYetView .z-button { margin-top: 20px; } #redactor_modal input[type="text"], #redactor_modal input[type="password"], #redactor_modal input[type="email"], #redactor_modal textarea { z-index: 9999 !important; } .outbound-settings { clear: left; position: relative; top: 5px; } .outbound-settings div { margin-bottom: 10px; } .outbound-settings label { margin-bottom: 5px; } #MashableInboxActionBarForViews .view-toolbar ul:first-child > li > a { border-left: none; } #MashableInboxActionBarForViews .search-view-0 { padding: 0 15px 15px 15px; } #MashableInboxActionBarForViews .list-view-items-summary-clone { margin-top: 5px; } #MashableInboxActionBarForViews .global-search-loopa { width: 24px; } #MashableInboxActionBarForViews #MashableInboxForm_searchTerm { width: 204px; } #MashableInboxActionBarForViews .nav > li:first-child:before { margin: 0; } #MashableInboxActionBarForViews .nav > li:first-child > a { color: #656565; font-weight: bold; text-shadow: #fff 0 1px 0; padding: 0 10px 0 40px; line-height: 30px; display: inline-block; position: relative; vertical-align: middle; border-left: 1px solid #bababa; } #MashableInboxActionBarForViews .nav > li:first-child > a:after { margin-left: 6px; } #MashableInboxActionBarForViews .icon-conversation, #MashableInboxActionBarForViews .icon-mission { position: relative; } #MashableInboxActionBarForViews .icon-conversation ul, #MashableInboxActionBarForViews .icon-mission ul { width: 100%; left: 0; right: 0; top: 31px; } .inbox-item { position: relative; } .inbox-item div + span { display: block; padding-right: 80px; } .inbox-item .list-item-details { position: absolute; top: 0; right: 0; } .inbox-item .z-link { margin-left: 5px; } .inbox-item .z-link:before { font-weight: normal !important; font-size: 14px; font-family: "zurmo_gamification_symbly_rRg"; content: "÷"; line-height: 1; margin-right: 3px; display: inline-block; text-decoration: none !important; } .model-tag { display: inline-block; font-weight: 400; font-size: 11px !important; float: left; margin: 1px 5px 0 0 !important; } .model-tag span { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; color: #fff; padding: 2px 4px; line-height: 1; } .model-tag.mission span { background-color: #16A085; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#1ABC9C,#16A085); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#1ABC9C),color-stop(100%,#16A085)); background-image: -webkit-linear-gradient(top,#1ABC9C,#16A085); background-image: -o-linear-gradient(top,#1ABC9C,#16A085); background-image: -moz-linear-gradient(top,#1ABC9C,#16A085); background-image: linear-gradient(top,#1ABC9C,#16A085); } .model-tag.conversation span { background-color: #2C3E50; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#34495E,#2C3E50); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#34495E),color-stop(100%,#2C3E50)); background-image: -webkit-linear-gradient(top,#34495E,#2C3E50); background-image: -o-linear-gradient(top,#34495E,#2C3E50); background-image: -moz-linear-gradient(top,#34495E,#2C3E50); background-image: linear-gradient(top,#34495E,#2C3E50); } .model-tag.notification span { background-color: #8E44AD; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#9B59B6,#8E44AD); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#9B59B6),color-stop(100%,#8E44AD)); background-image: -webkit-linear-gradient(top,#9B59B6,#8E44AD); background-image: -o-linear-gradient(top,#9B59B6,#8E44AD); background-image: -moz-linear-gradient(top,#9B59B6,#8E44AD); background-image: linear-gradient(top,#9B59B6,#8E44AD); } .last-comment ul, .last-comment li { list-style: none; } .last-comment li { margin-top: 2px; } .back-to-inbox-link { color: #2c3e50; } .notification-message-html-content-div { padding: 15px 0; } .toolbar-mbmenu i[class^="icon"] { display: none !important; } .pillbox-icon { color: #656565; font-weight: normal; font-size: 24px; font-family: "zurmo_gamification_symbly_rRg"; vertical-align: middle; padding: 0 0 0 0; margin: 0 0 0 0; position: relative; top: -1px; } .pillbox { line-height: 1; position: relative; display: inline-block; z-index: 9999; font-size: 11px; border: 1px solid #b7b7b7; border-top-color: #e7e7e7; border-left-color: #d7d7d7; border-right-color: #d7d7d7; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; margin: 0 0 30px 0; background-color: #f5f5f5; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#ffffff,#f5f5f5); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffffff),color-stop(100%,#f5f5f5)); background-image: -webkit-linear-gradient(top,#ffffff,#f5f5f5); background-image: -o-linear-gradient(top,#ffffff,#f5f5f5); background-image: -moz-linear-gradient(top,#ffffff,#f5f5f5); background-image: linear-gradient(top,#ffffff,#f5f5f5); -webkit-box-shadow: inset 0 -2px 0 0 rgb(255, 255, 255), 0 0 9px 5px rgba(153, 153, 153, 0.12); -moz-box-shadow: inset 0 -2px 0 0 rgb(255, 255, 255), 0 0 9px 5px rgba(153, 153, 153, 0.12); -ms-box-shadow: inset 0 -2px 0 0 rgb(255, 255, 255), 0 0 9px 5px rgba(153, 153, 153, 0.12); -o-box-shadow: inset 0 -2px 0 0 rgb(255, 255, 255), 0 0 9px 5px rgba(153, 153, 153, 0.12); box-shadow: inset 0 -2px 0 0 rgb(255, 255, 255), 0 0 9px 5px rgba(153, 153, 153, 0.12); } .pillbox + div, .pillbox + .pillbox { float: right; z-index: 0; } .pillbox.empty { visibility: hidden; } .pillbox i[class^="icon"] { color: #656565; font-weight: normal; font-size: 24px; font-family: "zurmo_gamification_symbly_rRg"; vertical-align: middle; padding: 0 0 0 0; margin: 0 0 0 0; position: relative; top: -1px; } .pillbox .active > a, .pillbox .active span, .pillbox .active i[class^="icon"], .pillbox .active i[class^="icon"]:before, .pillbox .active i[class^="icon"]:after, .pillbox .nav-open > a, .pillbox .nav-open span, .pillbox .nav-open i[class^="icon"], .pillbox .nav-open i[class^="icon"]:before, .pillbox .nav-open i[class^="icon"]:after { color: #2c3e50; } .split-button, .default-button { cursor: pointer; position: relative; display: inline-block; float: left; line-height: 1; } .split-button + .default-button, .split-button + .split-button, .default-button + .default-button, .default-button + .split-button { border-left: 1px solid #bababa; } .split-button > a, .default-button > a { padding: 0 5px 0 5px; } .split-button i, .default-button i { font-style: normal; line-height: 30px; margin-right: 3px; } .split-button:last-child .button-trigger { -webkit-border-radius: 0 4px 4px 0; -moz-border-radius: 0 4px 4px 0; -ms-border-radius: 0 4px 4px 0; -o-border-radius: 0 4px 4px 0; border-radius: 0 4px 4px 0; } .split-button .icon-trigger:before { display: block; } .split-button .button-actions:before { right: 4px; background: url("../images/tip.png") right bottom no-repeat; } .split-button.active .icon-trigger:after { color: #656565 !important; } .split-button.active .button-trigger:hover .icon-trigger:after { color: #2c3e50 !important; } .split-button.active .button-actions a { color: #fff; } .default-button:hover .icon-trigger:before { display: block !important; } .default-button:hover span, .default-button:hover i[class^="icon"], .default-button:hover i[class^="icon"]:after, .default-button:hover i[class^="icon"]:before { color: #2c3e50; } .button-label { font-weight: bold; padding: 0 5px; line-height: 30px; display: inline-block; white-space: nowrap; } .button-label:empty { display: none; } .button-action, .button-action-trigger, .button-trigger { position: relative; z-index: 99999; display: inline-block; line-height: 30px; text-align: center; float: right; -webkit-text-shadow: rgba(255,255,255,0.8) 0px 1px; -moz-text-shadow: rgba(255,255,255,0.8) 0px 1px; -ms-text-shadow: rgba(255,255,255,0.8) 0px 1px; -o-text-shadow: rgba(255,255,255,0.8) 0px 1px; text-shadow: rgba(255,255,255,0.8) 0px 1px; } .button-action:hover, .button-action-trigger:hover, .button-trigger:hover { background-color: #fff ; background-repeat: no-repeat ; background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),color-stop(50%,#ddd),to(#fff)) ; background-image: -webkit-linear-gradient(#fff,#ddd 50%,#fff) ; background-image: -ms-linear-gradient(#fff,#ddd 50%,#fff) ; background-image: -o-linear-gradient(#fff,#ddd 50%,#fff) ; background-image: -moz-linear-gradient(#fff,#ddd 50%,#fff) ; background-image: linear-gradient(#fff,#ddd 50%,#fff) ; border-left: 1px solid #e7e7e7; } .button-action:hover i, .button-action-trigger:hover i, .button-trigger:hover i { -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; border-left: none; } .button-action:hover .icon-trigger:before, .button-action-trigger:hover .icon-trigger:before, .button-trigger:hover .icon-trigger:before { display: block; } .button-action:hover + .button-actions, .button-action-trigger:hover + .button-actions, .button-trigger:hover + .button-actions { display: block; } .button-action .icon-trigger, .button-action-trigger .icon-trigger, .button-trigger .icon-trigger { font-size: 14px !important; line-height: 1 !important; -webkit-box-shadow: inset 1px 0 0 0 #fff; -moz-box-shadow: inset 1px 0 0 0 #fff; -ms-box-shadow: inset 1px 0 0 0 #fff; -o-box-shadow: inset 1px 0 0 0 #fff; box-shadow: inset 1px 0 0 0 #fff; -webkit-text-shadow: 0 2px 0 #fff; -moz-text-shadow: 0 2px 0 #fff; -ms-text-shadow: 0 2px 0 #fff; -o-text-shadow: 0 2px 0 #fff; text-shadow: 0 2px 0 #fff; top: 0; margin: 0; padding: 0; border-left: 1px solid #e7e7e7; } .button-action .icon-trigger:after, .button-action-trigger .icon-trigger:after, .button-trigger .icon-trigger:after { content: "÷"; padding: 0 0 0 6px; } .button-action .icon-trigger:before, .button-action-trigger .icon-trigger:before, .button-trigger .icon-trigger:before { content: ""; display: none; position: absolute; top: 24px; right: -2px; width: 13px; height: 8px; background: url("../images/tip.png") right bottom no-repeat; } .button-trigger { padding: 0 8px 0 0 !important; } .button-action, .button-action-trigger { float: left; } .button-action:hover, .button-action-trigger:hover { background: none; border-left: none; } .button-action:hover i, .button-action-trigger:hover i { -webkit-text-shadow: none; -moz-text-shadow: none; -ms-text-shadow: none; -o-text-shadow: none; text-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; border-left: none; } .button-action:hover .icon-trigger:before, .button-action-trigger:hover .icon-trigger:before { display: block !important; } .button-action .icon-options:after, .button-action-trigger .icon-options:after { margin: 0 !important; color: #656565; font-weight: normal; font-size: 24px; font-family: "zurmo_gamification_symbly_rRg"; vertical-align: middle; padding: 0 0 0 0; margin: 0 0 0 0; position: relative; top: -1px; } .button-action .icon-trigger, .button-action-trigger .icon-trigger { border-left: none !important; } .button-action .icon-trigger:before, .button-action-trigger .icon-trigger:before { right: 0px; } .button-action .icon-trigger:after, .button-action-trigger .icon-trigger:after { padding: 0 3px; } .button-actions { cursor: text; z-index: 9999; color: #EFEFEF; display: none; list-style: none; position: absolute; top: 40px; right: 0; min-width: 100px; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; white-space: nowrap; border: 1px solid #444; background: #252525; -webkit-box-shadow: 0 0 10px 2px rgba(53, 53, 53, 0.5); -moz-box-shadow: 0 0 10px 2px rgba(53, 53, 53, 0.5); -ms-box-shadow: 0 0 10px 2px rgba(53, 53, 53, 0.5); -o-box-shadow: 0 0 10px 2px rgba(53, 53, 53, 0.5); box-shadow: 0 0 10px 2px rgba(53, 53, 53, 0.5); } .button-actions a:hover { color: #fdfdfe !important; background-color: #080b0e !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#2c3e50,#080b0e) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#2c3e50),color-stop(100%,#080b0e)) !important; background-image: -webkit-linear-gradient(top,#2c3e50,#080b0e) !important; background-image: -o-linear-gradient(top,#2c3e50,#080b0e) !important; background-image: -moz-linear-gradient(top,#2c3e50,#080b0e) !important; background-image: linear-gradient(top,#2c3e50,#080b0e) !important; -webkit-text-shadow: 0px -1px 0 #000000 !important; -moz-text-shadow: 0px -1px 0 #000000 !important; -ms-text-shadow: 0px -1px 0 #000000 !important; -o-text-shadow: 0px -1px 0 #000000 !important; text-shadow: 0px -1px 0 #000000 !important; } .button-actions:hover, .button-actions.stayOpen, .button-actions.nav-open { display: block; } .button-actions:before { content: ""; display: block; position: absolute; top: -15px; right: 0; width: 100%; height: 15px; background: transparent; } .button-actions li { line-height: 100%; } .button-actions li:first-child { border-top: none; } .button-actions li:last-child { border-bottom: none; } .button-actions .divider { border-top: 1px solid #181818; border-bottom: 1px solid #323232; margin: 5px 5px; } .button-actions li > a { color: #EFEFEF; font-size: 11px; font-weight: normal; display: block; padding: 6px 10px 6px 10px; margin: 1px; -webkit-text-shadow: none; -moz-text-shadow: none; -ms-text-shadow: none; -o-text-shadow: none; text-shadow: none; } .button-actions label { color: #EFEFEF; } .button-actions .has-model-select { -webkit-border-radius: 0 3px 3px 0; -moz-border-radius: 0 3px 3px 0; -ms-border-radius: 0 3px 3px 0; -o-border-radius: 0 3px 3px 0; border-radius: 0 3px 3px 0; } .button-actions .has-model-select a { right: -1px; bottom: 3px; height: 23px; -webkit-border-radius: inherit; -moz-border-radius: inherit; -ms-border-radius: inherit; -o-border-radius: inherit; border-radius: inherit; } .button-actions .has-model-select a:hover { background: url("../images/dropdown-general.png") left top no-repeat !important; } .default-button:hover span, .default-button:hover i[class^="icon"], .default-button:hover i[class^="icon"]:after, .default-button:hover i[class^="icon"]:before, .button-action:hover span, .button-action:hover i[class^="icon"], .button-action:hover i[class^="icon"]:after, .button-action:hover i[class^="icon"]:before, .button-action-trigger:hover span, .button-action-trigger:hover i[class^="icon"], .button-action-trigger:hover i[class^="icon"]:after, .button-action-trigger:hover i[class^="icon"]:before { color: #2c3e50; } .nav-open .button-actions { display: block; } .nav-open .icon-trigger:before { display: block !important; } .nav-open .close-flyout { color: #fff !important; } .nav-open .flyout-action .close-flyout { color: #333333 !important; } .button-actions.open-on-left { right: auto; left: 0; } .button-actions.open-on-left:before { width: 80%; right: auto; background-position: 50% bottom; } .juiportlet-widget-content .pillbox { margin: 15px 0 0 15px; } .unread-count { display: inline-block; position: relative; top: -1px; margin: 0; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; border-radius: 50%; width: 16px; height: 16px; line-height: 15px; text-align: center; color: #545454; -webkit-text-shadow: none; -moz-text-shadow: none; -ms-text-shadow: none; -o-text-shadow: none; text-shadow: none; font-size: 9px; font-weight: bold !important; background-color: #dfdfdf; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#fff,#dfdfdf); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fff),color-stop(100%,#dfdfdf)); background-image: -webkit-linear-gradient(top,#fff,#dfdfdf); background-image: -o-linear-gradient(top,#fff,#dfdfdf); background-image: -moz-linear-gradient(top,#fff,#dfdfdf); background-image: linear-gradient(top,#fff,#dfdfdf); border: 1px solid #dfdfdf; } .unread-count:hover { color: inherit; } .hasCheckboxes { float: left; display: inline-block; border-left: 1px solid #bababa; text-indent: 0 !important; vertical-align: middle; padding: 0 0 0 15px; line-height: 30px; } .hasCheckboxes:before { content: ""; margin: 0; display: none; } .hasCheckboxes .hasCheckBox { display: inline-block; width: auto; padding-left: 20px; margin-right: 0; position: relative; top: 3px; } .hasCheckboxes .hasCheckBox + label { padding-right: 15px; margin: 0 !important; font-size: 11px !important; font-weight: bold !important; } .clickable-dividedmenu:not(.nav-open) .button-actions:hover, .clickable-dividedmenu:not(.nav-open) .button-action-trigger:hover + .button-actions { display: none; } .overlay-view { width: 500px; text-align: left; padding: 5px 5px 10px 5px; white-space: normal; } .overlay-view div { background: none !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; box-shadow: none !important; border: none !important; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; padding: 0 !important; margin: 0 !important; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); margin-bottom: 5px !important; line-height: 1.4; font-size: 12px; cursor: text; } .overlay-view .after-form-details-content { padding: 0px; color: #efefef !important; text-align: left; } .overlay-view .after-form-details-content a { display: inline; color: #EFEFEF !important; padding: 0; text-decoration: underline !important; } .overlay-view h3 { font-weight: bold; font-size: 13px; color: #EFEFEF !important; -webkit-text-shadow: none !important; -moz-text-shadow: none !important; -ms-text-shadow: none !important; -o-text-shadow: none !important; text-shadow: none !important; } .overlay-view .details-description { margin-bottom: 5px !important; line-height: 1.4; font-size: 12px; } .overlay-view strong { display: block; } body .overlay-view .after-form-details-content a:hover { background: none !important; background-image: none !important; color: #fff !important; -webkit-text-shadow: none !important; -moz-text-shadow: none !important; -ms-text-shadow: none !important; -o-text-shadow: none !important; text-shadow: none !important; } .stay-open { display: block !important; } .tabs-container, .email-template-content { position: relative; margin-bottom: 15px; } .tabs-container > .tab, .email-template-content > .tab { position: absolute; top: 28px; left: 0; width: 100%; display: none; line-height: 150%; padding: 0; border: 1px solid #dfdfdf; border-top: none; background: #fefefe; } .tabs-container > .tab label, .email-template-content > .tab label { display: none; } .tabs-container > .tab .redactor_box, .email-template-content > .tab .redactor_box { border: none !important; } .tabs-container > .tab .redactor_box textarea, .email-template-content > .tab .redactor_box textarea { color: #fff !important; background: #111 !important; } .tabs-container > .tab textarea, .email-template-content > .tab textarea { border: none !important; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; box-shadow: none !important; } .tabs-container .tab.active-tab, .email-template-content .tab.active-tab { display: block; position: relative; top: 0; } .autoresponder-combined-content, .email-template-combined-content { padding: 0; position: relative; } .autoresponder-combined-content .big-spinner, .email-template-combined-content .big-spinner { position: absolute; top: 0; left: 0; z-index: 1000000; width: 100%; height: 100%; margin: 0; } .autoresponder-combined-content .spinner, .email-template-combined-content .spinner { margin: 100px 0 0 50%; left: 0 !important; top: 0 !important; } .autoresponder-combined-content.strong-right, .email-template-combined-content.strong-right { padding-left: 15px; padding-bottom: 15px; } .autoresponder-combined-content.full-width, .email-template-combined-content.full-width { padding-right: 15px; } .autoresponder-combined-content.right-column, .email-template-combined-content.right-column { overflow: visible; } .email-template-content .big-spinner { position: absolute; top: 0; left: 0; z-index: 1000000; width: 100%; height: 100%; background: rgba(255,255,255,0.8); margin: 0; } .tabs-nav { border-bottom: 1px solid #dfdfdf; line-height: 1; } .tabs-nav a { display: inline-block; padding: 0 12px; line-height: 26px; margin: 0 5px 0 0; background: url("../images/table-items-header.png") left bottom repeat-x; border: 1px solid #dfdfdf; border-bottom: none; -webkit-border-radius: 3px 3px 0 0; -moz-border-radius: 3px 3px 0 0; -ms-border-radius: 3px 3px 0 0; -o-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; font-size: 11px; font-weight: 700; color: #666; -webkit-text-shadow: 0 1px 0 #fff; -moz-text-shadow: 0 1px 0 #fff; -ms-text-shadow: 0 1px 0 #fff; -o-text-shadow: 0 1px 0 #fff; text-shadow: 0 1px 0 #fff; vertical-align: bottom; } .tabs-nav a:hover, .tabs-nav a.active-tab { background: url("../images/view-toolbar-gradient.png") left bottom repeat-x; text-decoration: none; position: relative; top: 1px; color: #2c3e50; } .tabs-nav label { float: none; line-height: 26px; margin: 0; cursor: pointer; } .mergetag-guide-modal { padding: 15px; line-height: 140%; } .mergetag-guide-modal > div { margin-top: 15px; } .mergetag-guide-modal h4 { margin-bottom: 5px; } .mergetag-guide-modal ul { padding-left: 16px; } .mergetag-guide-modal li { margin-bottom: 4px; } .redactor-iframe { width: 100%; height: 100%; border: none; } .juiportlet-columns-MarketingDashboard .juiportlet-widget { margin-right: 0; } .marketing-list-members-portlet-container .portlet-view-toolbar { float: left; } #marketing-list-member-configuration-form { position: relative; padding: 15px; border-bottom: 1px solid #DFDFDF; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; *zoom: 1; } #marketing-list-member-configuration-form:before, #marketing-list-member-configuration-form:after { content: " "; display: table; } #marketing-list-member-configuration-form:after { clear: both; } #marketing-list-member-configuration-form input[type="text"] { position: relative; left: -3px; width: 219px; float: left; margin: 0 0 0 0; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; border-left: none; font-style: italic; color: #999; text-indent: 5px; line-height: 25px; height: 25px !important; border: 1px solid #d5d4d4; background: url("../images/search-bar-gradient.png") left top repeat-x; } #marketing-list-member-configuration-form input[type="text"]:focus { outline: none !important; box-shadow: none !important; } #marketing-list-member-configuration-form .list-view-items-summary-clone { margin-top: 51px; } .MarketingListMembersListView { margin-bottom: 0; } .MarketingListMembersListView .items { background: #fff; } .marketing-list-members-list { float: none !important; } #marketing-list-member-select-contact-or-report-form { padding: 15px; position: relative; } #marketing-list-member-select-contact-or-report-form .close-flyout { position: absolute; right: 3px; top: 3px; font-weight: normal !important; font-size: 18px; font-family: "zurmo_gamification_symbly_rRg"; cursor: pointer; } #marketing-list-member-select-contact-or-report-form .close-flyout:hover { background: none !important; } #marketing-list-member-select-contact-or-report-form .search-without-scope { margin-top: 10px; position: relative; background: url("../images/search-bar-loopa.png") left top no-repeat; } #marketing-list-member-select-contact-or-report-form .search-without-scope .z-spinner { top: 2px; right: 0; left: auto; display: block; } #marketing-list-member-select-contact-or-report-form input[type="text"] { width: 300px; margin: 0 0 0 23px; font-style: italic; color: #999; text-indent: 5px; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; border: none; background: url("../images/search-bar-gradient.png") left top repeat-x; -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; } #marketing-list-member-select-contact-or-report-form input[type="text"]:focus { outline: none !important; box-shadow: none !important; } #marketing-list-member-select-contact-or-report-form input[type="radio"] { margin-right: 5px; } #marketing-list-member-select-contact-or-report-form label + input[type="radio"] { margin-left: 15px; } #MarketingListMembersForPortletView { float: left; width: 100%; box-shadow: inset 0 1px 0 0 #ffffff; background: #f6f6f6; background: -moz-linear-gradient(top,#f6f6f6 0,#ededed 110px,transparent 110px,transparent 100%); background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f6f6f6),color-stop(110px,#ededed),color-stop(110px,transparent),color-stop(100%,transparent)); background: -webkit-linear-gradient(top,#f6f6f6 0,#ededed 110px,transparent 110px,transparent 100%); background: -o-linear-gradient(top,#f6f6f6 0,#ededed 110px,transparent 110px,transparent 100%); background: -ms-linear-gradient(top,#f6f6f6 0,#ededed 110px,transparent 110px,transparent 100%); background: linear-gradient(to bottom,#f6f6f6 0,#ededed 110px,transparent 110px,transparent 100%); } #MarketingListMembersConfigurationForm_filteredBySearchTerm_area { margin-right: 15px; float: left; border: 1px solid #d5d4d4; background: url("../images/search-bar-loopa.png") left top no-repeat; } #MarketingListMembersConfigurationForm_filteredBySearchTerm_area input[type="text"] { margin: 0 0 0 23px; text-indent: 5px; line-height: 23px; height: 23px !important; border: none; left: 0; } #MarketingListMembersConfigurationForm_filteredBySearchTerm_area input[type="text"]:focus { outline: none !important; box-shadow: none !important; } #MarketingListMembersConfigurationForm_filteredBySubscriptionType_area { margin-left: 15px; width: auto; top: 20px; } .marketing-list-member-stats { margin: 5px 0 0 0; font-size: 12px; } .marketing-list-member-stats strong { display: block; margin-bottom: 3px; } .portlet-with-toolbar .view-toolbar { margin: 15px 0 0 15px; } .portlet-with-toolbar .view-toolbar .parent > ul { top: auto; } #ReportDetailsView, #CampaignDetailsView, #MarketingListDetailsView, #SecuredActionBarForMarketingSearchAndListView { position: relative; z-index: 10; } #ReportDetailsView + div, #CampaignDetailsView + div, #MarketingListDetailsView + div, #SecuredActionBarForMarketingSearchAndListView + div { position: relative; z-index: 5; } #ReportDetailsView + div + div, #CampaignDetailsView + div + div, #MarketingListDetailsView + div + div, #SecuredActionBarForMarketingSearchAndListView + div + div { position: relative; z-index: 1; } .marketing-graph { float: left; padding: 0 5px 15px 5px; } .marketing-graph h3 { padding-left: 15px; } .marketing-graph.half { width: 49%; } .graph-container { clear: left; margin: 15px 0 0 0; } .marketing-list-autoresponders-list .items { background: #ffffff; } .edit-autoresponder-link { color: #2c3e50; font-size: 14px; font-weight: bold; font-style: normal; } .edit-autoresponder-link:after { content: " — "; font-weight: 400; color: #545454; } .autoresponder-extra-info { margin-bottom: 10px; font-style: italic; } .autoresponder-stats { padding-right: 5px; width: 20%; float: left; text-align: left; font-size: 12px; } .autoresponder-stats strong { font-size: 26px; font-weight: bold; display: block; } a + .autoresponder-stats { margin-left: 0; } .metrics-details { text-align: right; } .metrics-details h3 { width: auto; float: left; color: #545454 !important; } .metrics-details div, .metrics-details form { width: auto; display: inline-block; } .metrics-details div label, .metrics-details form label { float: left; } .metrics-details > div { font-size: 14px; line-height: 1; font-weight: bold; color: #656565; display: block; margin-bottom: 10px; } .module-intro-content, #marketing-intro-content { margin-bottom: 30px; } .module-intro-examples h3 { margin-bottom: 10px; } .module-intro-examples ol { padding-left: 15px; line-height: 175%; } .module-intro-steps { width: 100%; margin: 30px 0 15px 0; } .module-intro-steps:after { clear: none; } .module-intro-steps > div { width: 32%; float: left; margin-left: 2%; min-height: 150px; background-color: rgba(51,51,51,0.75); background-repeat: repeat-x; background-image: -ms-linear-gradient(top,rgba(34,34,34,0.85),rgba(51,51,51,0.75)); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(34,34,34,0.85)),color-stop(100%,rgba(51,51,51,0.75))); background-image: -webkit-linear-gradient(top,rgba(34,34,34,0.85),rgba(51,51,51,0.75)); background-image: -o-linear-gradient(top,rgba(34,34,34,0.85),rgba(51,51,51,0.75)); background-image: -moz-linear-gradient(top,rgba(34,34,34,0.85),rgba(51,51,51,0.75)); background-image: linear-gradient(top,rgba(34,34,34,0.85),rgba(51,51,51,0.75)); color: #EFEFEF; border: 1px solid #333; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px 0 rgba(200, 200, 200, 0.4), 0 1px 0 0 #111; -moz-box-shadow: inset 0 1px 1px 0 rgba(200, 200, 200, 0.4), 0 1px 0 0 #111; -ms-box-shadow: inset 0 1px 1px 0 rgba(200, 200, 200, 0.4), 0 1px 0 0 #111; -o-box-shadow: inset 0 1px 1px 0 rgba(200, 200, 200, 0.4), 0 1px 0 0 #111; box-shadow: inset 0 1px 1px 0 rgba(200, 200, 200, 0.4), 0 1px 0 0 #111; padding: 1px 0 0 0; } .module-intro-steps > div:first-child { margin-left: 0; } .module-intro-steps h3 { color: #fff !important; font-size: 14px; padding: 34px 0 0 10px; font-weight: normal; -webkit-text-shadow: 0 1px 0 #000; -moz-text-shadow: 0 1px 0 #000; -ms-text-shadow: 0 1px 0 #000; -o-text-shadow: 0 1px 0 #000; text-shadow: 0 1px 0 #000; position: relative; float: left; line-height: 1; height: 100%; min-height: 149px; width: 85px; } .module-intro-steps h3 strong { display: block; font-size: 50px; line-height: 1; } .module-intro-steps h3 span { color: #fff; display: inline-block; font-weight: 100 !important; font-size: 80%; line-height: 50px; margin-top: -5px; } .module-intro-steps p { min-height: 149px; padding: 10px 10px 10px 10px; margin-left: 85px; font-size: 13px; line-height: 21px; color: #ececec; } .module-intro-steps p strong { color: #fff; display: block; font-size: 14px; line-height: 22px; } .module-intro-steps span { display: block; } #products-intro-steps img { float: left; margin: 10px 15px 10px 10px; opacity: 0.83; } #products-intro-steps .third p { border-left: none !important; padding-top: 0; } .hide-module-intro, .hide-marketing-intro { margin-bottom: 30px; width: 100%; text-align: right; } .hide-module-intro span, .hide-marketing-intro span { font-weight: normal !important; font-size: 26px; font-family: "zurmo_gamification_symbly_rRg"; line-height: 1; border: none; margin-right: 5px; outline: none !important; display: inline-block; position: relative; top: 2px; color: #2c3e50; } .hide-module-intro span:before, .hide-marketing-intro span:before { content: "•"; } .catalog-item-description .icon, .product-description .icon, .catalog-description .icon { position: relative; margin: 0px 15px 0 0; display: inline-block; height: 100%; } .catalog-item-description .icon:before, .product-description .icon:before, .catalog-description .icon:before { content: '\00CE'; font-weight: normal !important; font-size: 145px; font-family: "zurmo_gamification_symbly_rRg"; line-height: 60px; position: absolute; top: 10px; -webkit-text-shadow: 0 -1px 0 #000; -moz-text-shadow: 0 -1px 0 #000; -ms-text-shadow: 0 -1px 0 #000; -o-text-shadow: 0 -1px 0 #000; text-shadow: 0 -1px 0 #000; } .catalog-item-description p { margin-left: 95px; } .catalog-item-description .icon:before { content: '\00CF'; font-size: 160px; } .product-description p { margin-left: 110px; } .product-description .icon:before { left: 10px; content: '\0027'; font-size: 160px; } .products .product-description { color: #fff !important; } .producttemplates .catalog-item-description .icon:before { color: #fff !important; } .campaign-items-container .hasDrillDownContent { padding: 5px !important; } .campaign-items-container .hasDrillDownContent table { border-bottom: 1px solid #DFDFDF; margin: 5px 0 0 0; width: 100%; } .campaign-items-container .hasDrillDownContent td, .campaign-items-container .hasDrillDownContent th { border: 1px solid #DFDFDF; border-right: none; vertical-align: middle; padding: 5px; word-wrap: break-word; text-align: left; } .campaign-items-container .hasDrillDownContent th { font-weight: bold !important; height: 25px; line-height: 25px; background: url("../images/table-items-header.png") left top repeat-x; padding: 0 5px; } .campaign-items-container .error { color: #c43d53; } .email-recipient-name { float: left; width: 15%; display: block; line-height: 23px; } .continuum { float: left; display: inline-block; font-size: 11px; margin-right: 10px; } .continuum > div { display: inline-block; border: 1px solid #b7b7b7; border-top-color: #e7e7e7; border-left-color: #d7d7d7; border-right-color: #d7d7d7; border-radius: 4px; background: url("../images/view-toolbar-gradient-darker.png") left bottom repeat-x; -webkit-box-shadow: inset 0 0 1px 1px #efefef; -moz-box-shadow: inset 0 0 1px 1px #efefef; -ms-box-shadow: inset 0 0 1px 1px #efefef; -o-box-shadow: inset 0 0 1px 1px #efefef; box-shadow: inset 0 0 1px 1px #efefef; } .last-email-activity-status { float: none; margin-left: 8px; position: absolute; top: 2px; display: inline-block; } .last-email-activity-status .continuum { margin-right: 4px; } .last-email-activity-status .tooltip { font-weight: normal; margin-right: 0; font-size: 8px; } .gmail-user-stage-status, .import-item-stage-status, .export-item-stage-status, .email-recipient-stage-status { text-align: center; float: left; font-size: 11px; width: auto; font-weight: 700; position: relative; color: #545454; text-shadow: #fff 0 1px 0; margin: 0; padding-right: 6px; line-height: 20px; display: inline-block; border-left: 1px solid #bababa; } .gmail-user-stage-status.completed i, .gmail-user-stage-status.stage-true i, .gmail-user-stage-status.stage-running i, .import-item-stage-status.completed i, .import-item-stage-status.stage-true i, .import-item-stage-status.stage-running i, .export-item-stage-status.completed i, .export-item-stage-status.stage-true i, .export-item-stage-status.stage-running i, .email-recipient-stage-status.completed i, .email-recipient-stage-status.stage-true i, .email-recipient-stage-status.stage-running i { color: #97c43d; -webkit-text-shadow: 0 0 5px #97c43d; -moz-text-shadow: 0 0 5px #97c43d; -ms-text-shadow: 0 0 5px #97c43d; -o-text-shadow: 0 0 5px #97c43d; text-shadow: 0 0 5px #97c43d; } .gmail-user-stage-status.stage-running i, .import-item-stage-status.stage-running i, .export-item-stage-status.stage-running i, .email-recipient-stage-status.stage-running i { -o-animation: led-throb 0.25s; -ms-animation: led-throb 0.25s; -moz-animation: led-throb 0.25s; -webkit-animation: led-throb 0.25s; animation: led-throb 0.25s; } .gmail-user-stage-status.stage-false i, .import-item-stage-status.stage-false i, .export-item-stage-status.stage-false i, .email-recipient-stage-status.stage-false i { color: #c43d53; -webkit-text-shadow: 0 0 5px #c43d53; -moz-text-shadow: 0 0 5px #c43d53; -ms-text-shadow: 0 0 5px #c43d53; -o-text-shadow: 0 0 5px #c43d53; text-shadow: 0 0 5px #c43d53; } .gmail-user-stage-status.processing i, .gmail-user-stage-status.active i, .gmail-user-stage-status.stage-pending i, .gmail-user-stage-status i, .import-item-stage-status.processing i, .import-item-stage-status.active i, .import-item-stage-status.stage-pending i, .import-item-stage-status i, .export-item-stage-status.processing i, .export-item-stage-status.active i, .export-item-stage-status.stage-pending i, .export-item-stage-status i, .email-recipient-stage-status.processing i, .email-recipient-stage-status.active i, .email-recipient-stage-status.stage-pending i, .email-recipient-stage-status i { font-weight: bold; line-height: 1; padding: 0 6px; color: #ffd900; -webkit-text-shadow: 0 0 5px #ffd900; -moz-text-shadow: 0 0 5px #ffd900; -ms-text-shadow: 0 0 5px #ffd900; -o-text-shadow: 0 0 5px #ffd900; text-shadow: 0 0 5px #ffd900; } .gmail-user-stage-status:first-child, .import-item-stage-status:first-child, .export-item-stage-status:first-child, .email-recipient-stage-status:first-child { border-left: none; } .gmail-user-stage-status span, .import-item-stage-status span, .export-item-stage-status span, .email-recipient-stage-status span { font-size: 10px; font-weight: bold; } @-webkit-keyframes led-throb { 50% { filter: alpha(opacity=10); -khtml-opacity: 0.1; -moz-opacity: 0.1; opacity: 0.1; -webkit-transform: scale(1.2); } } @-moz-keyframes led-throb { 50% { filter: alpha(opacity=10); -khtml-opacity: 0.1; -moz-opacity: 0.1; opacity: 0.1; -moz-transform: scale(1.2); } } @-o-keyframes led-throb { 50% { filter: alpha(opacity=10); -khtml-opacity: 0.1; -moz-opacity: 0.1; opacity: 0.1; -o-transform: scale(1.2); } } @-ms-keyframes led-throb { 50% { filter: alpha(opacity=10); -khtml-opacity: 0.1; -moz-opacity: 0.1; opacity: 0.1; -ms-transform: scale(1.2); } } @keyframes led-throb { 50% { filter: alpha(opacity=10); -khtml-opacity: 0.1; -moz-opacity: 0.1; opacity: 0.1; transform: scale(1.2); } } .opportunity-time-stage, .opportunity-time-stage-related, .opportunity-time-stage-kanban, .campaign-status { text-align: center; float: left; font-size: 11px; width: auto; font-weight: 700; position: relative; color: #545454; text-shadow: #fff 0 1px 0; margin: 0; padding-right: 6px; line-height: 20px; display: inline-block; } .opportunity-time-stage span, .opportunity-time-stage-related span, .opportunity-time-stage-kanban span, .campaign-status span { font-size: 10px; font-weight: bold; } .opportunity-time-stage i, .opportunity-time-stage-related i, .opportunity-time-stage-kanban i, .campaign-status i { font-weight: bold; line-height: 1; padding: 0 6px; color: #cccccc; -webkit-text-shadow: 0 0 5px #cccccc; -moz-text-shadow: 0 0 5px #cccccc; -ms-text-shadow: 0 0 5px #cccccc; -o-text-shadow: 0 0 5px #cccccc; text-shadow: 0 0 5px #cccccc; -webkit-transform-origin: 50%; -moz-transform-origin: 50%; -ms-transform-origin: 50%; -o-transform-origin: 50%; transform-origin: 50%; } .opportunity-time-stage.completed i, .opportunity-time-stage-related.completed i, .opportunity-time-stage-kanban.completed i, .campaign-status.completed i { color: #97c43d; -webkit-text-shadow: 0 0 5px #97c43d; -moz-text-shadow: 0 0 5px #97c43d; -ms-text-shadow: 0 0 5px #97c43d; -o-text-shadow: 0 0 5px #97c43d; text-shadow: 0 0 5px #97c43d; } .opportunity-time-stage.sending i, .opportunity-time-stage.scheduled i, .opportunity-time-stage-related.sending i, .opportunity-time-stage-related.scheduled i, .opportunity-time-stage-kanban.sending i, .opportunity-time-stage-kanban.scheduled i, .campaign-status.sending i, .campaign-status.scheduled i { color: #ffd900; -webkit-text-shadow: 0 0 5px #ffd900; -moz-text-shadow: 0 0 5px #ffd900; -ms-text-shadow: 0 0 5px #ffd900; -o-text-shadow: 0 0 5px #ffd900; text-shadow: 0 0 5px #ffd900; } .opportunity-time-stage.sending i, .opportunity-time-stage-related.sending i, .opportunity-time-stage-kanban.sending i, .campaign-status.sending i { -o-animation: led-throb 0.5s ease-in-out infinite; -ms-animation: led-throb 0.5s ease-in-out infinite; -moz-animation: led-throb 0.5s ease-in-out infinite; -webkit-animation: led-throb 0.5s ease-in-out infinite; animation: led-throb 0.5s ease-in-out infinite; } .opportunity-time-stage.paused i, .opportunity-time-stage-related.paused i, .opportunity-time-stage-kanban.paused i, .campaign-status.paused i { color: #c43d53; -webkit-text-shadow: 0 0 5px #c43d53; -moz-text-shadow: 0 0 5px #c43d53; -ms-text-shadow: 0 0 5px #c43d53; -o-text-shadow: 0 0 5px #c43d53; text-shadow: 0 0 5px #c43d53; } .opportunity-time-stage-related { float: none; } .led { font-weight: bold; line-height: 1; color: #ffd900; -webkit-text-shadow: 0 0 5px #ffd900; -moz-text-shadow: 0 0 5px #ffd900; -ms-text-shadow: 0 0 5px #ffd900; -o-text-shadow: 0 0 5px #ffd900; text-shadow: 0 0 5px #ffd900; } .led.state-true { color: #97c43d; -webkit-text-shadow: 0 0 5px #97c43d; -moz-text-shadow: 0 0 5px #97c43d; -ms-text-shadow: 0 0 5px #97c43d; -o-text-shadow: 0 0 5px #97c43d; text-shadow: 0 0 5px #97c43d; } .led.state-false { color: #c43d53; -webkit-text-shadow: 0 0 5px #c43d53; -moz-text-shadow: 0 0 5px #c43d53; -ms-text-shadow: 0 0 5px #c43d53; -o-text-shadow: 0 0 5px #c43d53; text-shadow: 0 0 5px #c43d53; } .campaign-status-badge { position: relative; top: -1px; margin-left: 8px; color: #fff; background: gold; font-size: 11px; padding: 2px 4px; -webkit-text-shadow: none; -moz-text-shadow: none; -ms-text-shadow: none; -o-text-shadow: none; text-shadow: none; background-color: #e4b600; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#ffcc00,#e4b600); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffcc00),color-stop(100%,#e4b600)); background-image: -webkit-linear-gradient(top,#ffcc00,#e4b600); background-image: -o-linear-gradient(top,#ffcc00,#e4b600); background-image: -moz-linear-gradient(top,#ffcc00,#e4b600); background-image: linear-gradient(top,#ffcc00,#e4b600); -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; font-weight: normal; } .campaign-status-badge.status-true { background-color: #6fa82d; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#97c43d,#6fa82d); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#97c43d),color-stop(100%,#6fa82d)); background-image: -webkit-linear-gradient(top,#97c43d,#6fa82d); background-image: -o-linear-gradient(top,#97c43d,#6fa82d); background-image: -moz-linear-gradient(top,#97c43d,#6fa82d); background-image: linear-gradient(top,#97c43d,#6fa82d); } .campaign-status-badge.status-true:before { margin-right: 4px; content: "✔"; color: #476c1d; } .campaign-status-badge.status-false { background-color: #a82d31; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#c43d53,#a82d31); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#c43d53),color-stop(100%,#a82d31)); background-image: -webkit-linear-gradient(top,#c43d53,#a82d31); background-image: -o-linear-gradient(top,#c43d53,#a82d31); background-image: -moz-linear-gradient(top,#c43d53,#a82d31); background-image: linear-gradient(top,#c43d53,#a82d31); } .campaign-status-badge.status-false:before { margin-right: 4px; content: "✖"; color: #6c1d1f; } .CampaignItemsRelatedListView .icon-empty:before { content: "f"; } .no-subscribers-found .icon-notice:before, .no-email-recipients-found .icon-notice:before { content: "f"; } .no-autoresponders-found .icon-notice:before { content: "g7"; } #ProductIntroLinkActionElement ul, #MarketingIntroLinkActionElement ul, #MarketingListCampaignRetargetingIntroLinkActionElement ul { right: 0; } #ProductIntroLinkActionElement ul li, #MarketingIntroLinkActionElement ul li, #MarketingListCampaignRetargetingIntroLinkActionElement ul li { padding: 0 5px 5px 5px; } #ProductIntroLinkActionElement ul li .hasCheckBox, #MarketingIntroLinkActionElement ul li .hasCheckBox, #MarketingListCampaignRetargetingIntroLinkActionElement ul li .hasCheckBox { display: inline-block; margin-right: 5px; position: relative; top: 4px; } #ProductIntroLinkActionElement .parent a, #MarketingIntroLinkActionElement .parent a, #MarketingListCampaignRetargetingIntroLinkActionElement .parent a { padding-left: 10px; } #ProductIntroLinkActionElement .parent > a > span, #MarketingIntroLinkActionElement .parent > a > span, #MarketingListCampaignRetargetingIntroLinkActionElement .parent > a > span { text-indent: -9999px; display: inline-block; width: 0; } #ProductIntroLinkActionElement .parent > a:before, #MarketingIntroLinkActionElement .parent > a:before, #MarketingListCampaignRetargetingIntroLinkActionElement .parent > a:before { content: "n"; font-weight: normal !important; font-size: 24px; font-family: "zurmo_gamification_symbly_rRg"; position: relative; top: 2px; } #ProductIntroLinkActionElement .parent a:after, #MarketingIntroLinkActionElement .parent a:after, #MarketingListCampaignRetargetingIntroLinkActionElement .parent a:after { margin-left: 2px; top: 0; } .screen-options { padding: 5px 10px 10px 10px; text-align: left; color: #EFEFEF; } .screen-options h4 { text-align: right; color: #EFEFEF !important; font-weight: bold; -webkit-text-shadow: none !important; -moz-text-shadow: none !important; -ms-text-shadow: none !important; -o-text-shadow: none !important; text-shadow: none !important; } .screen-options .hasCheckBox { display: inline-block; margin-right: 5px; position: relative; top: 4px; } #MarketingListsManageSubscriptionsListView, #MarketingListsExternalActionsPreviewView, #MarketingListsExternalActionsPageView, #MarketingListsManageSubscriptionsPageView { margin-left: 0; padding: 75px 15% 15px 15%; } #MarketingListsManageSubscriptionsListView > .GridView, #MarketingListsExternalActionsPreviewView > .GridView, #MarketingListsExternalActionsPageView > .GridView, #MarketingListsManageSubscriptionsPageView > .GridView { *zoom: 1; } #MarketingListsManageSubscriptionsListView > .GridView:before, #MarketingListsManageSubscriptionsListView > .GridView:after, #MarketingListsExternalActionsPreviewView > .GridView:before, #MarketingListsExternalActionsPreviewView > .GridView:after, #MarketingListsExternalActionsPageView > .GridView:before, #MarketingListsExternalActionsPageView > .GridView:after, #MarketingListsManageSubscriptionsPageView > .GridView:before, #MarketingListsManageSubscriptionsPageView > .GridView:after { content: " "; display: table; } #MarketingListsManageSubscriptionsListView > .GridView:after, #MarketingListsExternalActionsPreviewView > .GridView:after, #MarketingListsExternalActionsPageView > .GridView:after, #MarketingListsManageSubscriptionsPageView > .GridView:after { clear: both; } #MarketingListsManageSubscriptionsListView #HeaderLinksView, #MarketingListsExternalActionsPreviewView #HeaderLinksView, #MarketingListsExternalActionsPageView #HeaderLinksView, #MarketingListsManageSubscriptionsPageView #HeaderLinksView { margin: 0 0 20px 0; } #MarketingListsManageSubscriptionsListView #HeaderLinksView > div, #MarketingListsExternalActionsPreviewView #HeaderLinksView > div, #MarketingListsExternalActionsPageView #HeaderLinksView > div, #MarketingListsManageSubscriptionsPageView #HeaderLinksView > div { margin: 0; } #MarketingListsManageSubscriptionsListView #HeaderLinksView + div, #MarketingListsExternalActionsPreviewView #HeaderLinksView + div, #MarketingListsExternalActionsPageView #HeaderLinksView + div, #MarketingListsManageSubscriptionsPageView #HeaderLinksView + div { background: none; border: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; padding: 0; margin: 0; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } #MarketingListsManageSubscriptionsListView #corp-logo span, #MarketingListsExternalActionsPreviewView #corp-logo span, #MarketingListsExternalActionsPageView #corp-logo span, #MarketingListsManageSubscriptionsPageView #corp-logo span { color: #545454; } #MarketingListsManageSubscriptionsListView .Warning, #MarketingListsManageSubscriptionsListView .wrapper, #MarketingListsExternalActionsPreviewView .Warning, #MarketingListsExternalActionsPreviewView .wrapper, #MarketingListsExternalActionsPageView .Warning, #MarketingListsExternalActionsPageView .wrapper, #MarketingListsManageSubscriptionsPageView .Warning, #MarketingListsManageSubscriptionsPageView .wrapper { border: none; background: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; padding: 0; margin: 0; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); float: none; } #MarketingListsManageSubscriptionsListView .Warning, #MarketingListsManageSubscriptionsListView .wrapper, #MarketingListsExternalActionsPreviewView .Warning, #MarketingListsExternalActionsPreviewView .wrapper, #MarketingListsExternalActionsPageView .Warning, #MarketingListsExternalActionsPageView .wrapper, #MarketingListsManageSubscriptionsPageView .Warning, #MarketingListsManageSubscriptionsPageView .wrapper { background: #fff; -webkit-box-shadow: 0 0 5px 0px rgba(153,153,153,0.3); -moz-box-shadow: 0 0 5px 0px rgba(153,153,153,0.3); -ms-box-shadow: 0 0 5px 0px rgba(153,153,153,0.3); -o-box-shadow: 0 0 5px 0px rgba(153,153,153,0.3); box-shadow: 0 0 5px 0px rgba(153,153,153,0.3); -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; } #MarketingListsManageSubscriptionsListView .Warning, #MarketingListsExternalActionsPreviewView .Warning, #MarketingListsExternalActionsPageView .Warning, #MarketingListsManageSubscriptionsPageView .Warning { *zoom: 1; padding: 15px 0 30px 0; } #MarketingListsManageSubscriptionsListView .Warning:before, #MarketingListsManageSubscriptionsListView .Warning:after, #MarketingListsExternalActionsPreviewView .Warning:before, #MarketingListsExternalActionsPreviewView .Warning:after, #MarketingListsExternalActionsPageView .Warning:before, #MarketingListsExternalActionsPageView .Warning:after, #MarketingListsManageSubscriptionsPageView .Warning:before, #MarketingListsManageSubscriptionsPageView .Warning:after { content: " "; display: table; } #MarketingListsManageSubscriptionsListView .Warning:after, #MarketingListsExternalActionsPreviewView .Warning:after, #MarketingListsExternalActionsPageView .Warning:after, #MarketingListsManageSubscriptionsPageView .Warning:after { clear: both; } #MarketingListsManageSubscriptionsListView .Warning h2, #MarketingListsManageSubscriptionsListView .Warning div, #MarketingListsManageSubscriptionsListView .Warning p, #MarketingListsExternalActionsPreviewView .Warning h2, #MarketingListsExternalActionsPreviewView .Warning div, #MarketingListsExternalActionsPreviewView .Warning p, #MarketingListsExternalActionsPageView .Warning h2, #MarketingListsExternalActionsPageView .Warning div, #MarketingListsExternalActionsPageView .Warning p, #MarketingListsManageSubscriptionsPageView .Warning h2, #MarketingListsManageSubscriptionsPageView .Warning div, #MarketingListsManageSubscriptionsPageView .Warning p { float: none; margin: 0; width: 100%; text-align: center; } #MarketingListsManageSubscriptionsListView .Warning h2, #MarketingListsExternalActionsPreviewView .Warning h2, #MarketingListsExternalActionsPageView .Warning h2, #MarketingListsManageSubscriptionsPageView .Warning h2 { padding: 0; } #MarketingListsManageSubscriptionsListView .Warning div, #MarketingListsExternalActionsPreviewView .Warning div, #MarketingListsExternalActionsPageView .Warning div, #MarketingListsManageSubscriptionsPageView .Warning div { margin: 15px 0 20px 0; border: 0; } #MarketingListsManageSubscriptionsListView ~ #FooterView, #MarketingListsExternalActionsPreviewView ~ #FooterView, #MarketingListsExternalActionsPageView ~ #FooterView, #MarketingListsManageSubscriptionsPageView ~ #FooterView { margin: 20px 0 20px 15%; padding: 0 0 0 15px; clear: both; } #MarketingListsManageSubscriptionsListView h1, #MarketingListsExternalActionsPreviewView h1, #MarketingListsExternalActionsPageView h1, #MarketingListsManageSubscriptionsPageView h1 { border: none; background: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; padding: 0; margin: 0; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); font-size: 25px; margin-bottom: 30px; text-indent: 0; } #MarketingListsManageSubscriptionsListView #marketingLists-manageSubscriptionsList table, #MarketingListsExternalActionsPreviewView #marketingLists-manageSubscriptionsList table, #MarketingListsExternalActionsPageView #marketingLists-manageSubscriptionsList table, #MarketingListsManageSubscriptionsPageView #marketingLists-manageSubscriptionsList table { width: 100%; } #MarketingListsManageSubscriptionsListView #marketingLists-manageSubscriptionsList table th, #MarketingListsExternalActionsPreviewView #marketingLists-manageSubscriptionsList table th, #MarketingListsExternalActionsPageView #marketingLists-manageSubscriptionsList table th, #MarketingListsManageSubscriptionsPageView #marketingLists-manageSubscriptionsList table th { font-weight: bold !important; height: 35px; line-height: 35px; padding: 0 5px; white-space: nowrap; } #MarketingListsManageSubscriptionsListView #marketingLists-manageSubscriptionsList table td, #MarketingListsExternalActionsPreviewView #marketingLists-manageSubscriptionsList table td, #MarketingListsExternalActionsPageView #marketingLists-manageSubscriptionsList table td, #MarketingListsManageSubscriptionsPageView #marketingLists-manageSubscriptionsList table td { padding-bottom: 15px; } #MarketingListsManageSubscriptionsListView .switch, #MarketingListsExternalActionsPreviewView .switch, #MarketingListsExternalActionsPageView .switch, #MarketingListsManageSubscriptionsPageView .switch { margin-right: 15px; float: none; } #MarketingListsManageSubscriptionsListView .simple-link, #MarketingListsExternalActionsPreviewView .simple-link, #MarketingListsExternalActionsPageView .simple-link, #MarketingListsManageSubscriptionsPageView .simple-link { display: block; margin-top: 15px; } #SendTestEmailModalEditView div.wide.form { float: left; } #SendTestEmailModalEditView .attributesContainer { padding-bottom: 0; } #SendTestEmailModalEditView td { padding-left: 0; padding-bottom: 0; } #SendTestEmailModalEditView label { float: none; margin-right: 30px; } #SendTestEmailModalEditView #select-primary-or-secondary-radio { margin-bottom: 10px; } #SendTestEmailModalEditView input[type="radio"] { margin-right: 8px; } #SendTestEmailModalEditView #secondary-input-id h4 { margin-top: 5px; } a[id^="SendTestEmailLinkActionElement"] .z-label:after { content: "7"; font-weight: normal !important; font-size: 20px; font-family: "zurmo_gamification_symbly_rRg"; line-height: 1; position: relative; right: -10px; top: 1px; } #kanban-holder { background-color: #f0f0f0; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#fafafa,#f0f0f0); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fafafa),color-stop(100%,#f0f0f0)); background-image: -webkit-linear-gradient(top,#fafafa,#f0f0f0); background-image: -o-linear-gradient(top,#fafafa,#f0f0f0); background-image: -moz-linear-gradient(top,#fafafa,#f0f0f0); background-image: linear-gradient(top,#fafafa,#f0f0f0); margin: 0; padding: 0; background-size: auto 100%; vertical-align: top; border-top: none; } #kanban-holder #kanban-board, #kanban-holder .kanban-column, #kanban-holder .kanban-column > div { margin-bottom: 0 !important; } #kanban-holder .empty { padding: 10px; } #kanban-holder .general-issue-notice { width: 100%; background: rgba(255,255,255,0.6); padding: 15px 0; } #kanban-holder .general-issue-notice p { font-weight: bold; } #kanban-holder.kanban-background-football { background: #fff url("../images/kanban/football.jpg") left bottom no-repeat; } .kanban-background-football .background-texture-1 { background: #fff url("../images/kanban/swatch-football.jpg") left top no-repeat; } #kanban-holder.kanban-background-tennis { background: #fff url("../images/kanban/tennis.jpg") left bottom no-repeat; } .kanban-background-tennis .background-texture-1 { background: #fff url("../images/kanban/swatch-tennis.jpg") left top no-repeat; } #kanban-holder.kanban-background-motor { background: #fff url("../images/kanban/asphalt.jpg") center bottom no-repeat; } .kanban-background-motor .background-texture-1 { background: #fff url("../images/kanban/swatch-asphalt.jpg") left top no-repeat; } #kanban-holder.kanban-background-yoga { background: #fff url("../images/kanban/yoga.jpg") right top no-repeat; } .kanban-background-yoga .background-texture-1 { background: #fff url("../images/kanban/swatch-yoga.jpg") left top no-repeat; } #kanban-holder.kanban-background-blurred-lights, .kanban-background-blurred-lights .background-texture-1 { background: #fff url("../images/kanban/defocus-light-yellowish-blue.jpg") center center no-repeat; background-size: 100% 100% !important; } #kanban-holder.kanban-background-blurred-city, .kanban-background-blurred-city .background-texture-1 { background: #fff url("../images/kanban/blurred-defocused-lights-on-rainy-city-road-at-night.jpg") center center no-repeat; background-size: 100% 100% !important; } #kanban-holder.kanban-background-blurred-vera, .kanban-background-blurred-vera .background-texture-1 { background: #fff url("../images/kanban/blurred-vera.png") center top no-repeat; background-size: 100% 100% !important; } #kanban-holder.kanban-background-perfect-beach, .kanban-background-perfect-beach .background-texture-1 { background: #fff url("../images/kanban/perfect-beach.jpg") center center no-repeat; background-size: 100% 100% !important; } #kanban-holder.kanban-background-flip-flops, .kanban-background-flip-flops .background-texture-1 { background: #fff url("../images/kanban/flip-flops-with-blue-decking.jpg") center bottom no-repeat; } #kanban-holder.kanban-background-blue-structure, .kanban-background-blue-structure .background-texture-1 { background: #fff url("../images/kanban/blue-structure.jpg") center bottom no-repeat; } #kanban-holder.kanban-background-sepia-sf, .kanban-background-sepia-sf .background-texture-1 { background: #fff url("../images/kanban/sepia-sf.jpg") center bottom no-repeat; } #kanban-holder.kanban-background-men-on-bridge, .kanban-background-men-on-bridge .background-texture-1 { background: #fff url("../images/kanban/men-on-bridge.jpg") center bottom no-repeat; } .background-texture-1 { background-size: 100%; } #kanban-board { display: table; vertical-align: top; height: 100%; width: 100%; } .drop-zone-container { padding: 37px 2px 2px 2px; position: absolute; left: 0; top: 0; height: 100%; width: 100%; } .drop-zone-container .drop-zone { position: relative; } .drop-zone { border: 2px dashed #2c3e50; } .kanban-column { white-space: normal; display: table-cell; vertical-align: top; border-left: 1px solid #dfdfdf; position: relative; } .kanban-column:first-child { border-left: none; } .kanban-column ul { list-style: none; padding: 5px 5px; position: relative; z-index: 5; min-height: 600px; } .kanban-column .droppable-dynamic-rows-container { width: 100%; height: 100%; } .column-header { font-weight: bold !important; height: 35px; line-height: 35px; background: rgba(255,255,255,0.8) url("../images/table-items-header.png") left top repeat-x; padding: 0 0 0 5px; white-space: nowrap; border-bottom: 1px solid #dfdfdf; } .kanban-card > div { position: relative; width: 100%; display: block; margin: 0 0 5px 0 !important; background: #f0f0f0; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 5px; -webkit-box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) , 1px 1px 1px 0px rgba(153, 153, 153, 0.15); -moz-box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) , 1px 1px 1px 0px rgba(153, 153, 153, 0.15); -ms-box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) , 1px 1px 1px 0px rgba(153, 153, 153, 0.15); -o-box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) , 1px 1px 1px 0px rgba(153, 153, 153, 0.15); box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) , 1px 1px 1px 0px rgba(153, 153, 153, 0.15); } .kanban-card span { display: inline-block; margin-bottom: 3px; } .kanban-card .hidden-content > a { font-size: 11px; position: relative; top: 5px; } .kanban-card .hidden-content > div { display: none; padding: 10px 0 5px 0; } .kanban-card .gravatar { border: none !important; } .opportunity-name { font-size: 12px; font-weight: normal; } .account-name { font-size: 14px; font-weight: bold; color: #666; } .opportunity-amount { font-size: 20px; font-weight: bold; text-align: right; color: #222363; -webkit-text-shadow: 0 1px 0 rgba(255,255,255,0.9); -moz-text-shadow: 0 1px 0 rgba(255,255,255,0.9); -ms-text-shadow: 0 1px 0 rgba(255,255,255,0.9); -o-text-shadow: 0 1px 0 rgba(255,255,255,0.9); text-shadow: 0 1px 0 rgba(255,255,255,0.9); line-height: 1; margin-bottom: 5px; } .closing-date { font-size: 11px; text-align: right; } .closing-date i { text-align: left; font-weight: normal !important; font-size: 12px; font-family: "zurmo_gamification_symbly_rRg"; } .closing-date i:after { content: "z"; } .opportunity-owner { position: absolute; right: 5px; bottom: 5px; text-align: right; display: block; line-height: 1; } .opportunity-owner span { display: inline-block; top: -7px; position: relative; margin: 0 5px; } .opportunity-owner img { background: #DFDFDF; padding: 1px; } #OpportunitiesListView .kanban-card > div { padding: 5px 5px 15px 10px; } #OpportunitiesListView .kanban-card span { display: block; } .kanban-card.clone { position: absolute; z-index: 10000; } .kanban-board-options-panel { width: 50%; float: left; } .kanban-board-options-panel h3 { margin-bottom: 10px; } #kanban-board-options-link { color: #2c3e50; } #kanban-board-options-link:hover { color: #2c3e50; } .icon-kanban-board-view-type, .icon-grid-view-type { margin: 0 3px !important; } .icon-kanban-board-view-type span, .icon-grid-view-type span { display: none; } .task-details { display: block; width: 100%; padding-bottom: 5px; border-bottom: 1px solid #dfdfdf; } .completion-percentage-bar { position: relative; top: -5px; text-indent: -9999px; height: 3px; width: 0; -webkit-transition: all 0.5s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.5s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.5s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.5s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.5s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); background-color: #97c43d; background-repeat: repeat-x; background-image: -ms-linear-gradient(left,#6fa82d,#97c43d); background-image: -webkit-gradient(linear,left top,right top,color-stop(0%,#6fa82d),color-stop(100%,#97c43d)); background-image: -webkit-linear-gradient(left,#6fa82d,#97c43d); background-image: -o-linear-gradient(left,#6fa82d,#97c43d); background-image: -moz-linear-gradient(left,#6fa82d,#97c43d); background-image: linear-gradient(left,#6fa82d,#97c43d); } .task-status { font-weight: normal; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; font-size: 10px; float: left; } .task-status:hover { filter: alpha(opacity=100); -khtml-opacity: 1; -moz-opacity: 1; opacity: 1; } .status-4 .task-status { color: #a82d31; } .task-due-date { float: right; font-weight: bold; font-size: 10px; color: #323232; } .task-content { padding: 10px 0 0 0; border-top: 1px solid #fff; } .task-content h4 span { font-weight: normal; margin-left: 5px; font-size: 11px; } .task-subscribers { margin-top: 10px; padding-top: 7px; border-top: 1px solid #dfdfdf; -webkit-box-shadow: inset 0 1px 0 #fff; -moz-box-shadow: inset 0 1px 0 #fff; -ms-box-shadow: inset 0 1px 0 #fff; -o-box-shadow: inset 0 1px 0 #fff; box-shadow: inset 0 1px 0 #fff; } .task-subscribers img { margin-right: 5px; } .task-subscribers .z-link { position: relative; top: 3px; } .task-owner .gravatar { background-color: #2c3e50; } .task-action-toolbar { overflow: hidden; float: right; margin: 0 0 10px 5px !important; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; } .task-action-toolbar .default-button { border: none; } .task-action-toolbar .default-button + .default-button { bordr-left: 1px solid #bababa; } .task-action-toolbar a { line-height: 1; } .task-action-toolbar .button-label { font-size: 11px; padding: 0 3px !important; line-height: 20px !important; z-index: 10; margin: 0 !important; } .task-action-toolbar .button-label:before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1; } .subscribe-model-link, .unsubscribe-model-link { background: #DFDFDF; padding: 2px; display: inline-block; width: 20px; height: 20px; } .subscribe-model-link .icon-subscribe, .subscribe-model-link .icon-unsubscribe, .unsubscribe-model-link .icon-subscribe, .unsubscribe-model-link .icon-unsubscribe { position: relative; top: -3px; display: block; text-align: center; } .subscribe-model-link .icon-subscribe:after, .subscribe-model-link .icon-unsubscribe:after, .unsubscribe-model-link .icon-subscribe:after, .unsubscribe-model-link .icon-unsubscribe:after { color: #545454; content: '\2260'; font-size: 29px; } .detail-subscribe-model-link, .detail-unsubscribe-model-link { background: #DFDFDF; padding: 2px; display: inline-block; width: 36px; height: 36px; } .detail-subscribe-model-link .icon-subscribe, .detail-subscribe-model-link .icon-unsubscribe, .detail-unsubscribe-model-link .icon-subscribe, .detail-unsubscribe-model-link .icon-unsubscribe { position: relative; top: -2px; display: block; text-align: center; } .detail-subscribe-model-link .icon-subscribe:after, .detail-subscribe-model-link .icon-unsubscribe:after, .detail-unsubscribe-model-link .icon-subscribe:after, .detail-unsubscribe-model-link .icon-unsubscribe:after { color: #545454; content: '\2260'; font-size: 44px; } .icon-unsubscribe:after { content: '\2122' !important; } .webform-embed-code { padding: 0; margin-bottom: 15px; word-break: break-all; white-space: normal; } .webform-embed-code code { white-space: normal; } .webform-embed-code textarea { margin-top: 10px; border: 1px solid #ccc; background: #fff; -webkit-box-shadow: inset 0 0 2px 0 #ccc; -moz-box-shadow: inset 0 0 2px 0 #ccc; -ms-box-shadow: inset 0 0 2px 0 #ccc; -o-box-shadow: inset 0 0 2px 0 #ccc; box-shadow: inset 0 0 2px 0 #ccc; width: 100%; padding: 5px; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; resize: none; white-space: pre; overflow: auto; font-family: "Courier New", Courier, monospace; } #ContactWebFormEditAndDetailsView .ui-sortable { *zoom: 1; list-style: none; } #ContactWebFormEditAndDetailsView .ui-sortable:before, #ContactWebFormEditAndDetailsView .ui-sortable:after { content: " "; display: table; } #ContactWebFormEditAndDetailsView .ui-sortable:after { clear: both; } #ContactWebFormEditAndDetailsView .ui-sortable .hasCheckBox + label { top: 0; left: 8px; } #ContactWebFormEditAndDetailsView #ContactWebForm_serializedData { display: block; margin-top: -5px; } #ContactWebFormEditAndDetailsView label + label { margin-left: 0; } #ContactWebFormEditAndDetailsView .dynamic-row .remove-dynamic-row-link { top: 13px; } #ContactWebFormEditAndDetailsView h4 { margin-bottom: 15px; } #ContactWebFormEditAndDetailsView h3 { margin-left: 15px; } #zurmoExternalWebForm { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 12px; color: #545454; } #zurmoExternalWebForm .AppContent, #zurmoExternalWebForm .wrapper { -webkit-border-radius: 0; -moz-border-radius: 0; -ms-border-radius: 0; -o-border-radius: 0; border-radius: 0; padding: 0; margin: 0; border: none !important; background: none !important; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; padding: 0 !important; margin: 0 !important; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } #zurmoExternalWebForm .left-column { padding-bottom: 0; } #zurmoExternalWebForm .attributesContainer { margin: 0; padding: 0; } #zurmoExternalWebForm .form-toolbar, #zurmoExternalWebForm .view-toolbar-container { border: none; text-align: right; padding: 0; margin: 0; } #zurmoExternalWebForm .float-bar { margin: 0; padding: 0; } #zurmoExternalWebForm .z-button { margin: 0; } #zurmoExternalWebForm .z-label { color: #fff; background-color: #799e30; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#97c43d,#799e30); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#97c43d),color-stop(100%,#799e30)); background-image: -webkit-linear-gradient(top,#97c43d,#799e30); background-image: -o-linear-gradient(top,#97c43d,#799e30); background-image: -moz-linear-gradient(top,#97c43d,#799e30); background-image: linear-gradient(top,#97c43d,#799e30); -webkit-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; -moz-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; -ms-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; -o-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; } #zurmoExternalWebForm .z-label:active { color: #1f290c !important; background-color: #5b7724; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#97c43d,#5b7724); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#97c43d),color-stop(100%,#5b7724)); background-image: -webkit-linear-gradient(top,#97c43d,#5b7724); background-image: -o-linear-gradient(top,#97c43d,#5b7724); background-image: -moz-linear-gradient(top,#97c43d,#5b7724); background-image: linear-gradient(top,#97c43d,#5b7724); -webkit-text-shadow: 0px 1px 0 #b6d678 !important; -moz-text-shadow: 0px 1px 0 #b6d678 !important; -ms-text-shadow: 0px 1px 0 #b6d678 !important; -o-text-shadow: 0px 1px 0 #b6d678 !important; text-shadow: 0px 1px 0 #b6d678 !important; } #zurmoExternalWebForm .z-label:hover { -webkit-box-shadow: inset 0 5px 15px 2px rgba(0, 0, 0, 0.4), 0 1px 0 0 #FFF; -moz-box-shadow: inset 0 5px 15px 2px rgba(0, 0, 0, 0.4), 0 1px 0 0 #FFF; -ms-box-shadow: inset 0 5px 15px 2px rgba(0, 0, 0, 0.4), 0 1px 0 0 #FFF; -o-box-shadow: inset 0 5px 15px 2px rgba(0, 0, 0, 0.4), 0 1px 0 0 #FFF; box-shadow: inset 0 5px 15px 2px rgba(0, 0, 0, 0.4), 0 1px 0 0 #FFF; } .field-label, .hidden-field-label { float: left; display: inline-block; width: 80%; } .field-label input[type="text"], .field-label textarea, .hidden-field-label input[type="text"], .hidden-field-label textarea { width: 80%; } .field-label .has-model-select, .field-label .has-date-select, .field-label .hasDropDown, .hidden-field-label .has-model-select, .hidden-field-label .has-date-select, .hidden-field-label .hasDropDown { width: 80% !important; float: left; } .field-label .has-date-select, .hidden-field-label .has-date-select { clear: none; } .field-label .has-date-select input, .hidden-field-label .has-date-select input { width: 100% !important; } .field-label label, .hidden-field-label label { width: 20%; line-height: 26px; } .is-required-checkbox, .is-hidden-checkbox { float: left; display: inline-block; width: 20%; } .hidden-field-label, .is-hidden-checkbox { margin-top: 10px; } #reCaptcha { padding-left: 30%; padding-bottom: 15px; } #captchaError { font-weight: bold; display: inline-block; width: 318px; text-align: center; } .sliding-panel { display: none; width: 100%; position: relative; } div.showing-panel { display: block; } .business-card .gravatar { margin-right: 12px; margin-bottom: 6px; } .business-card h2 { line-height: 100%; margin-right: 10px; display: inline-block; } .business-card h2 .salutation { font-weight: normal; font-size: 80%; margin-right: 5px; } .business-card h2 .user-name { font-weight: normal; font-size: 80%; margin-left: 5px; } .business-card .icon-star { margin-left: 5px; } .business-card h3.position { margin-top: 10px; line-height: 140%; font-weight: normal; color: #545454 !important; } .business-card h4 { color: #545454 !important; line-height: 150%; margin-bottom: 15px; font-size: 14px; } .business-card .contact-details { *zoom: 1; clear: left; font-size: 14px; color: #666; margin-bottom: 7px; margin-top: 10px; } .business-card .contact-details:before, .business-card .contact-details:after { content: " "; display: table; } .business-card .contact-details:after { clear: both; } .business-card .contact-details > span { margin: 5px 20px 5px 0; color: #333; white-space: nowrap; } .business-card .address { clear: left; margin-bottom: 15px; } .business-card .icon-office-phone:before { content: "W"; font-weight: normal !important; font-size: 20px; font-family: "zurmo_gamification_symbly_rRg"; padding-right: 3px; color: #111; line-height: 1; } .business-card .icon-mobile-phone:before { content: '\2018'; font-weight: normal !important; font-size: 21px; font-family: "zurmo_gamification_symbly_rRg"; padding-right: 3px; color: #111; line-height: 1; } .business-card .icon-email:before { content: "g"; font-weight: normal !important; font-size: 18px; font-family: "zurmo_gamification_symbly_rRg"; padding-right: 5px; color: #111; line-height: 1; } .business-card .icon-map:before { content: "L"; font-weight: normal !important; font-size: 20px; font-family: "zurmo_gamification_symbly_rRg"; padding-right: 3px; color: #111; line-height: 1; } .business-card .demographic-details { position: absolute; top: 0; right: 0; text-align: right; } .business-card .demographic-details .sex { width: 35px; height: 62px; display: block; text-indent: -9999px; text-align: left; margin-top: 0; line-height: 1; } .business-card .demographic-details .male { background: url("../images/people.png") right top no-repeat; } .business-card .demographic-details .female { background: url("../images/people.png") right bottom no-repeat; } .business-card .demographic-details span { margin-top: 8px; font-weight: bold; display: block; float: right; line-height: 150%; } .business-card .social-details a { display: inline-block; margin-right: 6px; height: 24px; width: 24px; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; overflow: hidden; } .business-card .social-details a:hover { -webkit-box-shadow: 0 0 7px 0 #999; -moz-box-shadow: 0 0 7px 0 #999; -ms-box-shadow: 0 0 7px 0 #999; -o-box-shadow: 0 0 7px 0 #999; box-shadow: 0 0 7px 0 #999; } #business-card-buttons { display: none !important; display: inline-block; font-size: 11px; } #business-card-buttons > div { display: inline-block; border: 1px solid #b7b7b7; border-top-color: #e7e7e7; border-left-color: #d7d7d7; border-right-color: #d7d7d7; border-radius: 4px; background: url("../images/view-toolbar-gradient-darker.png") left bottom repeat-x; -webkit-box-shadow: inset 0 0 1px 1px #efefef, 0 0 9px 5px rgba(153, 153, 153, 0.12); -moz-box-shadow: inset 0 0 1px 1px #efefef, 0 0 9px 5px rgba(153, 153, 153, 0.12); -ms-box-shadow: inset 0 0 1px 1px #efefef, 0 0 9px 5px rgba(153, 153, 153, 0.12); -o-box-shadow: inset 0 0 1px 1px #efefef, 0 0 9px 5px rgba(153, 153, 153, 0.12); box-shadow: inset 0 0 1px 1px #efefef, 0 0 9px 5px rgba(153, 153, 153, 0.12); } #business-card-buttons a { text-align: center; width: auto; position: relative; border-left: 1px solid #bababa; text-shadow: #fff 0 1px 0; margin: 0; padding: 0 6px; display: inline-block; } #business-card-buttons a:first-child { border-left: none; } #business-card-buttons a span { font-size: 10px; font-weight: bold; display: none; } #business-card-buttons a i { font-style: normal; font-weight: normal !important; font-size: 22px; font-family: "zurmo_gamification_symbly_rRg"; line-height: 1; color: #656565; } #business-card-buttons.center-top { position: absolute; top: -1px; left: 50%; margin-left: -72px; } #business-card-buttons.center-top strong { margin-right: 4px; } #business-card-buttons.center-top > div { -webkit-border-radius: 0 0 4px 4px; -moz-border-radius: 0 0 4px 4px; -ms-border-radius: 0 0 4px 4px; -o-border-radius: 0 0 4px 4px; border-radius: 0 0 4px 4px; } #business-card-buttons.top-right { position: absolute; right: 12px; top: 16px; } #business-card-buttons.top-right a, #business-card-buttons.top-right strong { display: block; } #business-card-buttons.top-right strong { margin-bottom: 3px; font-size: 10px; text-align: right; } #business-card-buttons.top-right a { border-left: none; border-top: 1px solid #bababa; } #business-card-buttons.top-right a:first-child { border-top: none; } #business-card-buttons.top-right a:hover span { float: left; position: absolute; right: 32px; top: 5px; display: block; } #business-card-buttons .active { color: #97c43d; -webkit-text-shadow: 0 0 1px #cbe29f; -moz-text-shadow: 0 0 1px #cbe29f; -ms-text-shadow: 0 0 1px #cbe29f; -o-text-shadow: 0 0 1px #cbe29f; text-shadow: 0 0 1px #cbe29f; } #business-card-buttons .active i { color: #97c43d; } .social-icon { width: 22px; height: 22px; display: inline-block; text-indent: -9999px; margin-right: 4px; } .social-icon:hover { -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 0 7px 0 #999; -moz-box-shadow: 0 0 7px 0 #999; -ms-box-shadow: 0 0 7px 0 #999; -o-box-shadow: 0 0 7px 0 #999; box-shadow: 0 0 7px 0 #999; } .icon-bebo { background: url("../images/social-icons/bebo.png") center center no-repeat; } .icon-instagram { background: url("../images/social-icons/instagram.png") center center no-repeat; } .icon-picasa { background: url("../images/social-icons/picasa.png") center center no-repeat; } .icon-stumbleupon { background: url("../images/social-icons/stumbleupon.png") center center no-repeat; } .icon-behance { background: url("../images/social-icons/behance.png") center center no-repeat; } .icon-evernote { background: url("../images/social-icons/evernote.png") center center no-repeat; } .icon-lastfm { background: url("../images/social-icons/lastfm.png") center center no-repeat; } .icon-pinterest { background: url("../images/social-icons/pinterest.png") center center no-repeat; } .icon-tumblr { background: url("../images/social-icons/tumblr.png") center center no-repeat; } .icon-blogger { background: url("../images/social-icons/blogger.png") center center no-repeat; } .icon-facebook { background: url("../images/social-icons/facebook.png") center center no-repeat; } .icon-posterous { background: url("../images/social-icons/posterous.png") center center no-repeat; } .icon-twitter { background: url("../images/social-icons/twitter.png") center center no-repeat; } .icon-delicious { background: url("../images/social-icons/delicious.png") center center no-repeat; } .icon-flickr { background: url("../images/social-icons/flickr.png") center center no-repeat; } .icon-linkedin { background: url("../images/social-icons/linkedin.png") center center no-repeat; } .icon-reddit { background: url("../images/social-icons/reddit.png") center center no-repeat; } .icon-typepad { background: url("../images/social-icons/typepad.png") center center no-repeat; } .icon-designfloat { background: url("../images/social-icons/designfloat.png") center center no-repeat; } .icon-forrst { background: url("../images/social-icons/forrst.png") center center no-repeat; } .icon-myspace { background: url("../images/social-icons/myspace.png") center center no-repeat; } .icon-rss { background: url("../images/social-icons/rss.png") center center no-repeat; } .icon-vimeo { background: url("../images/social-icons/vimeo.png") center center no-repeat; } .icon-deviantart { background: url("../images/social-icons/deviantart.png") center center no-repeat; } .icon-friendfeed { background: url("../images/social-icons/friendfeed.png") center center no-repeat; } .icon-netvibes { background: url("../images/social-icons/netvibes.png") center center no-repeat; } .icon-skype { background: url("../images/social-icons/skype.png") center center no-repeat; } .icon-wordpress { background: url("../images/social-icons/wordpress.png") center center no-repeat; } .icon-digg { background: url("../images/social-icons/digg.png") center center no-repeat; } .icon-googleplus { background: url("../images/social-icons/googleplus.png") center center no-repeat; } .icon-orkut { background: url("../images/social-icons/orkut.png") center center no-repeat; } .icon-soundcloud { background: url("../images/social-icons/soundcloud.png") center center no-repeat; } .icon-yahoo { background: url("../images/social-icons/yahoo.png") center center no-repeat; } .icon-dribbble { background: url("../images/social-icons/dribbble.png") center center no-repeat; } .icon-grooveshark { background: url("../images/social-icons/grooveshark.png") center center no-repeat; } .icon-path { background: url("../images/social-icons/path.png") center center no-repeat; } .icon-spotify { background: url("../images/social-icons/spotify.png") center center no-repeat; } .icon-youtube { background: url("../images/social-icons/youtube.png") center center no-repeat; } .icon-klout { background: url("../images/social-icons/klout.png") center center no-repeat; } .icon-gravatar { background: url("../images/social-icons/gravatar.png") center center no-repeat; } .icon-plancast { background: url("../images/social-icons/plancast.png") center center no-repeat; } .icon-quora { background: url("../images/social-icons/quora.png") center center no-repeat; } .icon-foursquare { background: url("../images/social-icons/foursquare.png") center center no-repeat; } .icon-lanyrd { background: url("../images/social-icons/lanyrd.png") center center no-repeat; } .icon-aboutme { background: url("../images/social-icons/aboutme.png") center center no-repeat; } .back-of-card { display: none; } .back-of-card h3 { margin-bottom: 10px; margin-top: 30px; } .back-of-card ul { list-style: none; } .back-of-card li { font-weight: bold; margin-bottom: 3px; color: #666; } .back-of-card li span { font-weight: normal; margin-left: 5px; border: 1px solid #ccc; background: #eaeaea; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; padding: 2px 4px; font-size: 11px; color: #323232; } .back-of-card .complex-data li { line-height: 200%; width: 33.3%; float: left; } .back-of-card .simple-data li { float: left; width: auto; margin-bottom: 7px; } .back-of-card .simple-data span { margin: 0 5px 0 0; } .back-of-card .half { float: left; width: 49%; } .back-of-card .half + .half { margin-left: 2%; } div.special-pager { margin-bottom: 0 !important; border-left: none !important; border-right: none !important; border-bottom: none !important; } div.special-pager .next span { text-indent: 0 !important; font-size: 11px; padding: 5px 0 5px 0 !important; } div.special-pager .next a:after, div.special-pager .hidden.next:after { display: none !important; } #sliding-panel-toggle { width: 100%; background: #fff url("../images/view-toolbar-gradient.png") left bottom repeat-x; -webkit-box-shadow: inset 0 1px 0 #DFDFDF; -moz-box-shadow: inset 0 1px 0 #DFDFDF; -ms-box-shadow: inset 0 1px 0 #DFDFDF; -o-box-shadow: inset 0 1px 0 #DFDFDF; box-shadow: inset 0 1px 0 #DFDFDF; overflow: hidden; display: block; text-align: center; font-weight: bold; padding: 5px 0; font-size: 11px; } .mini-button { cursor: pointer; display: inline-block; border: 1px solid #b7b7b7; border-top-color: #e7e7e7; border-left-color: #d7d7d7; border-right-color: #d7d7d7; border-radius: 4px; background: url("../images/view-toolbar-gradient-darker.png") left bottom repeat-x; -webkit-box-shadow: inset 0 0 1px 1px #efefef; -moz-box-shadow: inset 0 0 1px 1px #efefef; -ms-box-shadow: inset 0 0 1px 1px #efefef; -o-box-shadow: inset 0 0 1px 1px #efefef; box-shadow: inset 0 0 1px 1px #efefef; color: #545454; -webkit-text-shadow: #fff 0 1px 0; -moz-text-shadow: #fff 0 1px 0; -ms-text-shadow: #fff 0 1px 0; -o-text-shadow: #fff 0 1px 0; text-shadow: #fff 0 1px 0; line-height: 22px; height: 22px; padding: 0 6px; } .mini-button span { font-size: 11px; font-weight: bold; -webkit-text-shadow: 0 1px 0 #fff; -moz-text-shadow: 0 1px 0 #fff; -ms-text-shadow: 0 1px 0 #fff; -o-text-shadow: 0 1px 0 #fff; text-shadow: 0 1px 0 #fff; color: #545454; line-height: 22px; } .mini-button:hover { color: #2c3e50 !important; } .mini-button:hover span { color: #2c3e50; } .toggle-back-of-card-link { margin-top: 5px; } .toggle-back-of-card-link span { display: none; padding: 0 6px 0 28px; background: url("../images/rapleaf.png") 4px center no-repeat; } .toggle-back-of-card-link span + span { line-height: 22px; } .toggle-back-of-card-link .show { display: block; } .callable-item { position: relative; z-index: 100; } .callable-item em { margin-right: 4px; font-style: normal; } .callable-item:hover .icon-onsip { display: block; } .callable-item .icon-onsip { animation-name: shake; animation-duration: 200ms; animation-iteration-count: 2; animation-timing-function: linear; -moz-animation-name: shake; -moz-animation-duration: 200ms; -moz-animation-iteration-count: 2; -moz-animation-timing-function: linear; -webkit-animation-name: shake; -webkit-animation-duration: 200ms; -webkit-animation-iteration-count: 2; -webkit-animation-timing-function: linear; font-size: 28px; font-weight: normal !important; -webkit-text-shadow: none !important; -moz-text-shadow: none !important; -ms-text-shadow: none !important; -o-text-shadow: none !important; text-shadow: none !important; display: none; color: #fff; position: absolute; left: -32px; top: -2px; background: #545454; width: 24px; height: 24px; line-height: 21px; text-align: center; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; border-radius: 50%; } .callable-item .icon-onsip:before { position: absolute; right: -10px; top: 6px; content: ''; display: block; border: 6px solid #545454; border-top-color: transparent; border-bottom-color: transparent; border-right-color: transparent; } .hangup { position: relative; z-index: 0; padding-left: 12px; margin-left: -25px; font-size: 11px; border: 1px solid #c43d53; -webkit-box-shadow: inset 0 0 1px 1px #a82d31; -moz-box-shadow: inset 0 0 1px 1px #a82d31; -ms-box-shadow: inset 0 0 1px 1px #a82d31; -o-box-shadow: inset 0 0 1px 1px #a82d31; box-shadow: inset 0 0 1px 1px #a82d31; -webkit-text-shadow: #a82d31 0 1px 0; -moz-text-shadow: #a82d31 0 1px 0; -ms-text-shadow: #a82d31 0 1px 0; -o-text-shadow: #a82d31 0 1px 0; text-shadow: #a82d31 0 1px 0; line-height: 20px; color: #ffffff; background-color: #a82d31; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#c43d53,#a82d31); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#c43d53),color-stop(100%,#a82d31)); background-image: -webkit-linear-gradient(top,#c43d53,#a82d31); background-image: -o-linear-gradient(top,#c43d53,#a82d31); background-image: -moz-linear-gradient(top,#c43d53,#a82d31); background-image: linear-gradient(top,#c43d53,#a82d31); } .hangup:hover { color: #000000 !important; -webkit-text-shadow: 0px 1px 0 #ca5164; -moz-text-shadow: 0px 1px 0 #ca5164; -ms-text-shadow: 0px 1px 0 #ca5164; -o-text-shadow: 0px 1px 0 #ca5164; text-shadow: 0px 1px 0 #ca5164; background-color: #802225; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#c43d53,#802225); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#c43d53),color-stop(100%,#802225)); background-image: -webkit-linear-gradient(top,#c43d53,#802225); background-image: -o-linear-gradient(top,#c43d53,#802225); background-image: -moz-linear-gradient(top,#c43d53,#802225); background-image: linear-gradient(top,#c43d53,#802225); } #gd-overlay { top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.65); position: absolute; width: 100%; display: block; z-index: 99; } #gd-container { z-index: 100; top: 0; left: 0; right: 0; bottom: 0; position: absolute; width: 100%; height: 100%; display: table; overflow: hidden; } #gd-centralizer { display: table-cell; vertical-align: middle; width: 100%; height: 100%; padding: 0 30px; } #game-dashboard { position: relative; width: 100%; max-width: 1200px; max-height: 600px; margin: auto; overflow: hidden; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; color: #f1f1f1; background: url("../images/game-dashboard/blue-chalkboard-blurred.jpg") left top repeat; } #game-dashboard > div { padding: 10px 15px 15px 15px; display: block; } #game-dashboard h2, #game-dashboard h3 { -webkit-text-shadow: 0 -1px 0 #151f1f; -moz-text-shadow: 0 -1px 0 #151f1f; -ms-text-shadow: 0 -1px 0 #151f1f; -o-text-shadow: 0 -1px 0 #151f1f; text-shadow: 0 -1px 0 #151f1f; color: #fff !important; } #game-dashboard ul { list-style: none; } #game-dashboard h2 { margin-bottom: 15px; } #game-dashboard a { color: #fff; } .close-dashboard-button { z-index: 999; width: 100%; height: 31px; max-width: 1200px; margin: auto; position: relative; top: 15px; } .close-dashboard-button a { margin-right: -15px; float: right; width: 30px !important; height: 31px !important; filter: alpha(opacity=100); -khtml-opacity: 1; -moz-opacity: 1; opacity: 1; display: block; z-index: 11000; } .close-dashboard-button a:hover { border: none; background: none; } .close-dashboard-button .ui-icon-closethick { background: transparent url("../images/widget-close-btn.png") left top no-repeat; padding: 0 !important; margin: 0 !important; width: 30px !important; height: 31px !important; text-indent: -9999px; display: block; } .close-dashboard-button .ui-icon-closethick:hover { background: transparent url("../images/widget-close-btn.png") left top no-repeat; } .div-hover { -webkit-box-shadow: inset 0 5px 0 0 rgba(32,50,52,0.5), inset 0 6px 0 0 rgba(83,112,115,0.4); -moz-box-shadow: inset 0 5px 0 0 rgba(32,50,52,0.5), inset 0 6px 0 0 rgba(83,112,115,0.4); -ms-box-shadow: inset 0 5px 0 0 rgba(32,50,52,0.5), inset 0 6px 0 0 rgba(83,112,115,0.4); -o-box-shadow: inset 0 5px 0 0 rgba(32,50,52,0.5), inset 0 6px 0 0 rgba(83,112,115,0.4); box-shadow: inset 0 5px 0 0 rgba(32,50,52,0.5), inset 0 6px 0 0 rgba(83,112,115,0.4); } #gd-profile-card { padding: 0 !important; height: 84%; width: 20%; float: left; border-right: 1px solid rgba(32,50,52,0.5); text-align: center; } #gd-profile-card h3 { margin: 0 0 10px 0; } #gd-profile-card ul { font-weight: bold; } #gd-profile-card ul li { line-height: 1.15; } #gd-profile-card ul i { font-style: normal; margin-right: 3px; color: #7cb830; font-size: 16px; } #gd-profile-card .gravatar, #gd-profile-card img { max-width: 100%; height: auto; margin-bottom: 5px; padding: 0; border: none !important; background: none; } #gd-mini-stats-card { margin-top: 0px; *zoom: 1; } #gd-mini-stats-card:before, #gd-mini-stats-card:after { content: " "; display: table; } #gd-mini-stats-card:after { clear: both; } #gd-mini-stats-card #gd-mini-stats-chart-div svg g:last-child > g:first-child { display: none; } #gd-mini-stats-card .gd-level { margin-top: -113px; -webkit-border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; -ms-border-radius: 4px 4px 0 0; -o-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0; position: relative; z-index: 3; padding: 10px; } #gd-mini-stats-card .gd-level span:last-child { display: none; font-weight: bold; position: relative; top: 10px; } #gd-mini-stats-card strong { font-size: 36px; line-height: 1; display: block; color: #7cb830; font-weight: bold; } #gd-mini-stats-card strong + span { display: block; font-size: 14px; font-weight: bold; margin: 0 0 10px 0; } #gd-mini-stats-card .gd-num-badges, #gd-mini-stats-card .gd-num-collections { position: relative; z-index: 1; text-align: center; padding: 5px; float: right; width: 45%; margin: 15px 0 0 0; font-weight: bold; } #gd-mini-stats-card .gd-num-badges strong, #gd-mini-stats-card .gd-num-collections strong { font-size: 24px; display: block; font-weight: bold; } #gd-mini-stats-card .gd-num-badges { -webkit-border-radius: 0 0 4px 0; -moz-border-radius: 0 0 4px 0; -ms-border-radius: 0 0 4px 0; -o-border-radius: 0 0 4px 0; border-radius: 0 0 4px 0; float: right; margin-right: 5%; } #gd-badges-list { overflow-y: auto; height: 84%; width: 30%; position: absolute; top: 0; left: 20%; float: left; border-left: 1px solid rgba(83,112,115,0.4); border-right: 1px solid rgba(32,50,52,0.5); } #gd-badges-list li { *zoom: 1; } #gd-badges-list li:before, #gd-badges-list li:after { content: " "; display: table; } #gd-badges-list li:after { clear: both; } #gd-badges-list li + li { padding-top: 10px; } #gd-badges-list .badge { float: left; margin-right: 15px; } #gd-badges-list .badge-grade { right: auto; left: -8px; } #gd-badges-list h3, #gd-badges-list p { margin-bottom: 5px; } #gd-badges-list p { line-height: 1.4; } #gd-badges-list p + span { font-size: 11px; color: #aaa; } #gd-badges-list .type-achievements { -webkit-text-shadow: 0 -1px 0 #151f1f; -moz-text-shadow: 0 -1px 0 #151f1f; -ms-text-shadow: 0 -1px 0 #151f1f; -o-text-shadow: 0 -1px 0 #151f1f; text-shadow: 0 -1px 0 #151f1f; margin-top: 150px; font-size: 14px; } #gd-badges-list .type-achievements .icon-empty { position: relative; top: 10px; } #gd-badges-list .type-achievements .icon-empty:before { font-size: 64px; } #gd-z-coins { width: 15%; height: 25%; float: left; margin-left: 30%; border-left: 1px solid rgba(83,112,115,0.4); border-right: 1px solid rgba(32,50,52,0.5); border-bottom: 1px solid rgba(32,50,52,0.5); position: relative; text-align: center; } #gd-z-coins a { position: absolute; right: 5px; bottom: 5px; font-size: 11px; text-decoration: underline; } #gd-z-coin { display: block; width: 85px; height: 85px; line-height: 85px; -webkit-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4); -moz-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4); -ms-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4); -o-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4); -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; border-radius: 50%; margin: 5px auto; font-weight: normal !important; font-size: 72px; font-family: "zurmo_gamification_symbly_rRg"; cursor: default; color: #e2b321; background: url("../images/game-dashboard/coin.png") left top no-repeat; -webkit-transition: all 1s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 1s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 1s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 1s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 1s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); -webkit-transform: rotateY(0deg); -moz-transform: rotateY(0deg); -o-transform: rotateY(0deg); -ms-transform: rotateY(0deg); transform: rotateY(0deg); } #gd-z-coin:hover { -webkit-animation: spinCoin 1s linear infinite; -moz-animation: spinCoin 1s linear infinite; -o-animation: spinCoin 1s linear infinite; -ms-animation: spinCoin 1s linear infinite; animation: spinCoin 1s linear infinite; } #gd-leaderboard { width: 35%; height: 25%; float: left; border-bottom: 1px solid rgba(32,50,52,0.5); border-left: 1px solid rgba(83,112,115,0.4); } .leaderboard-rank { float: left; overflow: visible; width: 32%; margin-right: 2%; padding: 10px; text-align: center; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; background: rgba(7,53,58,0.3); -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2), 0 -1px 0 0 rgba(0, 0, 0, 0.3); -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2), 0 -1px 0 0 rgba(0, 0, 0, 0.3); -ms-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2), 0 -1px 0 0 rgba(0, 0, 0, 0.3); -o-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2), 0 -1px 0 0 rgba(0, 0, 0, 0.3); box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2), 0 -1px 0 0 rgba(0, 0, 0, 0.3); } .leaderboard-rank:last-child { margin-right: 0; } .leaderboard-rank strong, .leaderboard-rank span { display: block; } .leaderboard-rank strong { -webkit-text-shadow: 0 -1px 0 #1c5a4f; -moz-text-shadow: 0 -1px 0 #1c5a4f; -ms-text-shadow: 0 -1px 0 #1c5a4f; -o-text-shadow: 0 -1px 0 #1c5a4f; text-shadow: 0 -1px 0 #1c5a4f; color: #fff; font-size: 24px; line-height: 1.5; } .leaderboard-rank span { font-size: 16px; font-weight: bold; color: #fff; } #gd-statistics { width: 50%; height: 59%; margin-left: 30%; float: left; border-top: 1px solid rgba(83,112,115,0.4); border-left: 1px solid rgba(83,112,115,0.4); } #gd-stats-wrapper { border: 1px solid #d7d7d7; border-bottom: none; max-height: 320px; } .stat-row { width: 100%; padding: 10px 12px 10px 5px; white-space: nowrap; border-bottom: 1px solid #d7d7d7; } .stat-row:nth-child(even) { background: rgba(0,0,0,0.05); } .stat-row h3 { width: 35%; text-align: right; display: inline-block; } .stat-row .stat-level, .stat-row .stat-points { float: none; display: inline-block; width: 5%; text-align: center; } .stat-row .stat-level { font-weight: bold; } .stat-row .stat-points { width: 10%; position: relative; top: -8px; font-weight: 800; } .stat-row .stat-points em { position: absolute; top: 14px; left: 0; text-align: center; font-size: 11px; width: 100%; font-style: normal; font-weight: 100; color: #fff; } .stat-row .percentHolder { width: 45%; margin-left: 5%; } #gd-collections { width: 100%; height: 100px; float: left; border-top: 1px solid rgba(83,112,115,0.4); padding: 0 !important; position: relative; z-index: 100; } #gd-carousel-wrapper { width: 95%; height: 100px; float: left; border-left: 1px solid rgba(83,112,115,0.4); border-right: 1px solid rgba(32,50,52,0.5); position: relative; z-index: 0; } #gd-carousel { width: 100%; height: 100px; position: absolute; z-index: 1; } .nav-button { width: 2.5%; height: 100%; text-align: center; line-height: 100px; font-size: 22px; float: left; display: block; -webkit-text-shadow: 0 -1px 0 #fff; -moz-text-shadow: 0 -1px 0 #fff; -ms-text-shadow: 0 -1px 0 #fff; -o-text-shadow: 0 -1px 0 #fff; text-shadow: 0 -1px 0 #fff; position: relative; overflow: hidden; background: url("../images/game-dashboard/blue-chalkboard-blurred.jpg") left top repeat; z-index: 100; font-weight: normal !important; font-size: 42px; font-family: "zurmo_gamification_symbly_rRg"; } #nav-left { border-right: 1px solid rgba(32,50,52,0.5); } #nav-right { border-left: 1px solid rgba(83,112,115,0.4); } .gd-collection-panel { position: relative; width: 285px; height: 300px; float: left; border-left: 1px solid rgba(32,50,52,0.5); border-right: 1px solid rgba(83,112,115,0.4); } .gd-collection-panel h3 { margin-top: 5px; } .gd-collection-panel .collection-badge { float: left; display: inline-block; height: 70px; margin: 0; margin: 0 15px 0 0; background-size: 100% auto; } .gd-collection-panel > div { position: absolute; top: 0; left: 0; width: 100%; height: 200%; padding: 15px 15px; -webkit-box-shadow: inset 0 30px 30px 0 rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 30px 30px 0 rgba(0, 0, 0, 0.1); -ms-box-shadow: inset 0 30px 30px 0 rgba(0, 0, 0, 0.1); -o-box-shadow: inset 0 30px 30px 0 rgba(0, 0, 0, 0.1); box-shadow: inset 0 30px 30px 0 rgba(0, 0, 0, 0.1); background: url("../images/game-dashboard/blue-chalkboard-blurred.jpg") center top repeat; } .gd-collection-panel > div.open-panel, .gd-collection-panel > div:hover { -webkit-box-shadow: inset 0 5px 0 0 rgba(32,50,52,0.5), inset 0 6px 0 0 rgba(83,112,115,0.4); -moz-box-shadow: inset 0 5px 0 0 rgba(32,50,52,0.5), inset 0 6px 0 0 rgba(83,112,115,0.4); -ms-box-shadow: inset 0 5px 0 0 rgba(32,50,52,0.5), inset 0 6px 0 0 rgba(83,112,115,0.4); -o-box-shadow: inset 0 5px 0 0 rgba(32,50,52,0.5), inset 0 6px 0 0 rgba(83,112,115,0.4); box-shadow: inset 0 5px 0 0 rgba(32,50,52,0.5), inset 0 6px 0 0 rgba(83,112,115,0.4); } .gd-collection-panel .gd-number-collected { visibility: hidden; margin: -2px 0 0 0; white-space: nowrap; } .gd-collection-panel .gd-number-collected .have-it, .gd-collection-panel .gd-number-collected .have-it-not { font-weight: normal !important; font-size: 34px; font-family: "zurmo_gamification_symbly_rRg"; line-height: 1; margin: 0 0 0 -2px; color: #7cb830; } .gd-collection-panel .gd-number-collected .have-it-not { filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; } .gd-collection-panel .gd-total-completed { position: relative; top: -3px; font-size: 14px; font-weight: bold; text-align: center; line-height: 34px; } .gd-collection-items { margin-top: 70px; position: relative; clear: left; } .gd-collection-items .num-collected { width: 20px; height: 20px; line-height: 20px; text-align: center; display: block; position: absolute; top: -6px; left: -10px; color: #fff; font-size: 11px; font-weight: bold; background: #7cb830; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; border-radius: 50%; -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3), 0 -1px 0 0 rgba(90, 142, 44, 0.9); -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3), 0 -1px 0 0 rgba(90, 142, 44, 0.9); -ms-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3), 0 -1px 0 0 rgba(90, 142, 44, 0.9); -o-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3), 0 -1px 0 0 rgba(90, 142, 44, 0.9); box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3), 0 -1px 0 0 rgba(90, 142, 44, 0.9); } .gd-collection-items .missing img { filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -webkit-filter: grayscale(85%); -moz-filter: grayscale(85%); -ms-filter: grayscale(85%); -o-filter: grayscale(85%); filter: grayscale(85%); filter: gray; } .gd-collection-items .missing .num-collected { background: #c0392b; -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3), 0 -1px 0 0 rgba(161, 45, 37, 0.9); -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3), 0 -1px 0 0 rgba(161, 45, 37, 0.9); -ms-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3), 0 -1px 0 0 rgba(161, 45, 37, 0.9); -o-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3), 0 -1px 0 0 rgba(161, 45, 37, 0.9); box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3), 0 -1px 0 0 rgba(161, 45, 37, 0.9); } .gd-collection-item { position: relative; display: inline-block; float: left; margin-right: 25px; } .gd-collection-item img { max-height: 55px; width: auto; } .gd-collection-item-redeemed { margin-top: -8px; display: block; float: right; text-align: center; position: absolute; right: 0; } .gd-collection-item-redeemed img { max-width: 70px; height: auto; text-align: center; } .gd-collection-item-redeemed .num-collected { width: 24px; height: 24px; line-height: 24px; z-index: 9999; } .redeemable h3 { background: url("../images/game-dashboard/redeemable-coin-2.png") right 2px no-repeat; } .zurmo body .coin-button { position: relative; z-index: 1; overflow: visible; background: url("../images/game-dashboard/coin-button.png") center center no-repeat; width: 90px; height: 70px; border: none !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; box-shadow: none !important; } .zurmo body .coin-button .z-label { text-indent: 0; display: block; text-align: center; font-size: 13px; width: 100%; padding: 0; margin: 22px 0 0 0; color: #763e05 !important; -webkit-text-shadow: 0px 1px 0 #f9bd81 !important; -moz-text-shadow: 0px 1px 0 #f9bd81 !important; -ms-text-shadow: 0px 1px 0 #f9bd81 !important; -o-text-shadow: 0px 1px 0 #f9bd81 !important; text-shadow: 0px 1px 0 #f9bd81 !important; background-color: rgba(246,146,30,0.8) !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,rgba(255,241,0,0.8),rgba(246,146,30,0.8)) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(255,241,0,0.8)),color-stop(100%,rgba(246,146,30,0.8))) !important; background-image: -webkit-linear-gradient(top,rgba(255,241,0,0.8),rgba(246,146,30,0.8)) !important; background-image: -o-linear-gradient(top,rgba(255,241,0,0.8),rgba(246,146,30,0.8)) !important; background-image: -moz-linear-gradient(top,rgba(255,241,0,0.8),rgba(246,146,30,0.8)) !important; background-image: linear-gradient(top,rgba(255,241,0,0.8),rgba(246,146,30,0.8)) !important; border-top: 1px solid rgba(255,241,0,0.3); border-bottom: 1px solid rgba(255,241,0,0.3); border-left: 1px solid rgba(255,241,0,0.5); border-right: 1px solid rgba(255,241,0,0.5); -webkit-box-shadow: 0 0 3px 0 rgba(255,241,0,0.1); -moz-box-shadow: 0 0 3px 0 rgba(255,241,0,0.1); -ms-box-shadow: 0 0 3px 0 rgba(255,241,0,0.1); -o-box-shadow: 0 0 3px 0 rgba(255,241,0,0.1); box-shadow: 0 0 3px 0 rgba(255,241,0,0.1); } .zurmo body .coin-button:hover span.z-label, .zurmo body .coin-button:active span.z-label { color: #452403 !important; background-color: rgba(216,120,9,0.8) !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,rgba(255,241,0,0.8),rgba(216,120,9,0.8)) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(255,241,0,0.8)),color-stop(100%,rgba(216,120,9,0.8))) !important; background-image: -webkit-linear-gradient(top,rgba(255,241,0,0.8),rgba(216,120,9,0.8)) !important; background-image: -o-linear-gradient(top,rgba(255,241,0,0.8),rgba(216,120,9,0.8)) !important; background-image: -moz-linear-gradient(top,rgba(255,241,0,0.8),rgba(216,120,9,0.8)) !important; background-image: linear-gradient(top,rgba(255,241,0,0.8),rgba(216,120,9,0.8)) !important; -webkit-text-shadow: 0px 1px 0 #f8b068 !important; -moz-text-shadow: 0px 1px 0 #f8b068 !important; -ms-text-shadow: 0px 1px 0 #f8b068 !important; -o-text-shadow: 0px 1px 0 #f8b068 !important; text-shadow: 0px 1px 0 #f8b068 !important; } .zurmo body .coin-button.loading .z-label { text-indent: 20px; } .zurmo body .coin-button .z-spinner { display: block !important; top: 24px; left: 2px; } .coin-button.disabled { pointer-events: none; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -webkit-filter: grayscale(85%); -moz-filter: grayscale(85%); -ms-filter: grayscale(85%); -o-filter: grayscale(85%); filter: grayscale(85%); filter: gray; } .random-game-coin { position: fixed; z-index: 999999999; left: 20px; bottom: 40px; display: block; width: 128px; height: 128px; line-height: 85px; -webkit-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4); -moz-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4); -ms-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4); -o-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4); margin: 0; } .random-game-coin > div { position: relative; } .game-coin { position: absolute; top: 0; left: 0; height: 128px; width: 128px; display: block; cursor: pointer; color: #e2b321; background: url("../images/game-dashboard/random-coin.png") center bottom no-repeat; } .smoke { position: absolute; top: 50px; left: 0; height: 128px; width: 128px; background-image: url("../images/game-dashboard/smoke_1_40_128_corrected.png"); display: none; } .game-coin-quantity { font-weight: bold; font-size: 14px; line-height: 16px; float: left; position: relative; top: 50px; margin-right: 10px; color: #FFF; } .game-coin-quantity i { display: inline-block; line-height: inherit; position: relative; top: 3px; margin-left: 4px; height: 16px; width: 16px; background-image: url("../images/game-dashboard/z-coin-small.png"); -webkit-animation: spinCoin .7s linear infinite; -moz-animation: spinCoin .7s linear infinite; -ms-animation: spinCoin .7s linear infinite; -o-animation: spinCoin .7s linear infinite; animation: spinCoin .7s linear infinite; } #header-game-dashboard-link-wrapper { position: relative; overflow: visible; } #game-notification { position: absolute; min-width: 280px; padding: 15px; -webkit-border-radius: 4px; -moz-border-radius: 4px; -ms-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; color: #EFEFEF; top: 38px; right: 0; border: 1px solid #444; background: #252525; -webkit-box-shadow: 0 0 10px 2px rgba(53, 53, 53, 0.5); -moz-box-shadow: 0 0 10px 2px rgba(53, 53, 53, 0.5); -ms-box-shadow: 0 0 10px 2px rgba(53, 53, 53, 0.5); -o-box-shadow: 0 0 10px 2px rgba(53, 53, 53, 0.5); box-shadow: 0 0 10px 2px rgba(53, 53, 53, 0.5); } #game-notification h5 { color: #EFEFEF; -webkit-text-shadow: none; -moz-text-shadow: none; -ms-text-shadow: none; -o-text-shadow: none; text-shadow: none; font-size: 14px; margin-bottom: 15px; } #game-notification .notification-wrapper { float: left; } #game-notification p { line-height: 1.5; } #game-notification a { color: #ccc; font-size: 12px; line-height: 1; display: inline; margin: 0; padding: 0; text-decoration: underline; } .collection-item-image { position: relative; display: inline-block; float: left; overflow: hidden; margin-right: 15px; margin-bottom: 15px; height: 85px; min-width: 45px; width: auto; text-align: center; } .collection-item-image img { position: relative; top: 0; } a#claim-item-link { font-size: 11px; font-weight: bold; text-decoration: none; color: #545454; line-height: 1; padding: 2px 6px; position: relative; top: 2px; z-index: 5; } .animate-spin { -webkit-animation: spinCoin 1.2s linear infinite; -moz-animation: spinCoin 1.2s linear infinite; -o-animation: spinCoin 1.2s linear infinite; -ms-animation: spinCoin 1.2s linear infinite; animation: spinCoin 1.2s linear infinite; } .project-create .icon, .project-collaborate .icon, .project-track .icon { position: relative; margin: 0px 15px 0 0; display: inline-block; height: 100%; } .project-create .icon:before, .project-collaborate .icon:before, .project-track .icon:before { content: '\02DB'; font-weight: normal !important; font-size: 145px; font-family: "zurmo_gamification_symbly_rRg"; line-height: 60px; position: absolute; top: 10px; -webkit-text-shadow: 0 -1px 0 #000; -moz-text-shadow: 0 -1px 0 #000; -ms-text-shadow: 0 -1px 0 #000; -o-text-shadow: 0 -1px 0 #000; text-shadow: 0 -1px 0 #000; } .project-collaborate p { margin-left: 110px; } .project-collaborate .icon:before { left: 10px; content: '\00AF'; } .project-track p { margin-left: 110px; } .project-track .icon:before { left: 10px; content: '\02DA'; } #ActiveProjectsListView { float: none; margin-bottom: 0; } #ActiveProjectsListView .items { background: #fff; } #ActiveProjectsListView .edit-autoresponder-link { display: block; text-align: left; margin-bottom: 5px; } #ProjectsFeedListView { float: none; margin-bottom: 0; } #ProjectsFeedListView .items { background: #fff; } .type-tasks .items-wrapper { border: 1px solid #dfdfdf; } .task-dialog, .product-dialog { *zoom: 1; min-width: 1000px; max-width: 1000px; border: none; background: #f0f0f0; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) ,0 0 15px 0 rgba(51, 51, 51, 0.25); -moz-box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) ,0 0 15px 0 rgba(51, 51, 51, 0.25); -ms-box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) ,0 0 15px 0 rgba(51, 51, 51, 0.25); -o-box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) ,0 0 15px 0 rgba(51, 51, 51, 0.25); box-shadow: inset 0 0 0 1px rgba(204, 204, 204, 0.3) ,0 0 15px 0 rgba(51, 51, 51, 0.25); } .task-dialog:before, .task-dialog:after, .product-dialog:before, .product-dialog:after { content: " "; display: table; } .task-dialog:after, .product-dialog:after { clear: both; } .task-dialog .col-0, .product-dialog .col-0 { width: 15%; } .task-dialog .col-1, .product-dialog .col-1 { width: 85%; } .task-dialog .ui-dialog-title, .product-dialog .ui-dialog-title { padding: 0 !important; margin: 0 !important; font-size: 15px; font-weight: bold; -webkit-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -moz-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -ms-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -o-text-shadow: rgba(255,255,255,0.8) 0 1px 0; text-shadow: rgba(255,255,255,0.8) 0 1px 0; line-height: 40px; background: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; border-bottom: none; text-indent: 15px; width: 100%; height: 100%; display: block; } .task-dialog .toolbar-mbmenu, .product-dialog .toolbar-mbmenu { position: absolute; right: 0; top: 12px; } .task-dialog .view-toolbar .parent > ul, .product-dialog .view-toolbar .parent > ul { right: 0; } .task-dialog .wrapper, .task-dialog .details-table, .product-dialog .wrapper, .product-dialog .details-table { margin: 0; padding: 0; border: none !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; box-shadow: none !important; background: none !important; } .task-dialog table, .product-dialog table { border: none; } .task-dialog td, .product-dialog td { padding-bottom: 15px; } .task-dialog .attributesContainer, .product-dialog .attributesContainer { padding-bottom: 0; } .task-dialog .float-bar, .product-dialog .float-bar { margin-bottom: 0; } .task-dialog .right-side-edit-view-panel, .product-dialog .right-side-edit-view-panel { background: rgba(236,240,241,0.25) url("../images/stripes.png") left top repeat; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; } .details-table .view-toolbar-container { top: -35px; } .task-modal-details-options-menu .parent > a, .product-modal-details-options-menu .parent > a { padding: 0; } .task-modal-details-options-menu .parent > a span, .product-modal-details-options-menu .parent > a span { display: none; } .task-modal-details-options-menu .parent > a:before, .product-modal-details-options-menu .parent > a:before { content: 'n'; font-weight: normal !important; font-size: 26px; font-family: "zurmo_gamification_symbly_rRg"; } .task-modal-details-options-menu .parent > a:after, .product-modal-details-options-menu .parent > a:after { margin-left: 2px; position: relative; top: -2px; } #task-left-column-form-data label { margin-top: 15px; float: none; display: block; } #task-right-column-form-data label { float: none; } #task-right-column-form-data #status-box { margin-bottom: 15px; } #task-right-column-form-data .owner-box { position: relative; margin-bottom: 15px; } #task-subscriber-box { margin: 15px; } #task-subscriber-box h4 { margin-bottom: 4px; } #task-subscriber-box img { margin-right: 5px; } #task-subscriber-box + .model-comments-activity { margin-top: 0; } .check-list { margin-top: 30px; } .check-list h3 { margin-bottom: 10px; } .check-list-item { margin-top: 3px; position: relative; } .check-list-item .hasCheckBox { float: left; position: relative; top: -5px; margin-right: 5px; } .check-list-item.ui-sortable-helper { height: auto !important; padding: 8px 8px 4px 8px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; background: #f5f5f5; } .check-list-item.ui-sortable-helper .task-check-item-actions { visibility: hidden !important; } .check-list-item:hover .task-check-item-actions { visibility: visible; } .check-list-item p { line-height: 1.4; padding-left: 22px; } .task-check-item-actions { visibility: hidden; position: absolute; right: 0; top: 0; background: #f0f0f0; -webkit-box-shadow: -10px 0 15px 5px #f0f0f0; -moz-box-shadow: -10px 0 15px 5px #f0f0f0; -ms-box-shadow: -10px 0 15px 5px #f0f0f0; -o-box-shadow: -10px 0 15px 5px #f0f0f0; box-shadow: -10px 0 15px 5px #f0f0f0; } .task-check-item-actions a { margin-left: 5px; } .task-check-item-actions i { color: #a7a7a7; } .editable-task-input { padding-left: 22px; } .editable-task-input input { width: 100%; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; display: inline-block; border: 1px solid #ccc; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; font-size: 12px; color: #666 !important; text-indent: 6px; line-height: 24px; height: 26px; -webkit-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -moz-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -ms-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -o-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); zoom: 1; filter: progid:DXImageTransform.Microsoft.Shadow(Color=#bfbfbf,Strength=1,Direction=0), progid:DXImageTransform.Microsoft.Shadow(Color=#bfbfbf,Strength=1,Direction=90), progid:DXImageTransform.Microsoft.Shadow(Color=#bfbfbf,Strength=1,Direction=180), progid:DXImageTransform.Microsoft.Shadow(Color=#bfbfbf,Strength=1,Direction=270); } .editable-task-input input:focus { -webkit-box-shadow: 0 0 1px 1px #2c3e50; -moz-box-shadow: 0 0 1px 1px #2c3e50; -ms-box-shadow: 0 0 1px 1px #2c3e50; -o-box-shadow: 0 0 1px 1px #2c3e50; box-shadow: 0 0 1px 1px #2c3e50; } #task-check-item-inline-edit-form { margin-top: 10px; padding: 8px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; background: rgba(236,240,241,0.25) url("../images/stripes.png") left top repeat; display: table; width: 100%; } #task-check-item-inline-edit-form input { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; display: inline-block; border: 1px solid #ccc; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; font-size: 12px; color: #666 !important; text-indent: 6px; line-height: 24px; height: 26px; -webkit-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -moz-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -ms-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); -o-box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); box-shadow: 0 0 1px 1px rgba(153,153,153,0.3); zoom: 1; filter: progid:DXImageTransform.Microsoft.Shadow(Color=#bfbfbf,Strength=1,Direction=0), progid:DXImageTransform.Microsoft.Shadow(Color=#bfbfbf,Strength=1,Direction=90), progid:DXImageTransform.Microsoft.Shadow(Color=#bfbfbf,Strength=1,Direction=180), progid:DXImageTransform.Microsoft.Shadow(Color=#bfbfbf,Strength=1,Direction=270); width: 100%; } #task-check-item-inline-edit-form input:focus { -webkit-box-shadow: 0 0 1px 1px #2c3e50; -moz-box-shadow: 0 0 1px 1px #2c3e50; -ms-box-shadow: 0 0 1px 1px #2c3e50; -o-box-shadow: 0 0 1px 1px #2c3e50; box-shadow: 0 0 1px 1px #2c3e50; } #task-check-item-inline-edit-form .task-input { padding-right: 10px; display: table-cell; vertical-align: middle; width: 99%; } #task-check-item-inline-edit-form .task-add-button { display: table-cell; width: 1%; vertical-align: middle; } .task-activity, .model-comments-activity { margin-top: 30px; } .task-activity #CommentsForRelatedModelView, .task-activity #CommentsForRelatedTaskModelView, .model-comments-activity #CommentsForRelatedModelView, .model-comments-activity #CommentsForRelatedTaskModelView { width: 100%; max-width: 100%; margin: 0; padding: 0; } .task-activity #CommentInlineEditForModelView, .task-activity #CommentForTaskInlineEditForModelView, .model-comments-activity #CommentInlineEditForModelView, .model-comments-activity #CommentForTaskInlineEditForModelView { width: 100%; max-width: 100%; margin: 10px 0 0 0; padding: 15px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; } .task-activity #CommentList, .model-comments-activity #CommentList { margin: 0 15px; } .task-activity #comment-inline-edit-form, .task-activity #comment-for-task-inline-edit-form, .model-comments-activity #comment-inline-edit-form, .model-comments-activity #comment-for-task-inline-edit-form { margin: 0; } .task-activity #comment-inline-edit-form .form-toolbar, .task-activity #comment-for-task-inline-edit-form .form-toolbar, .model-comments-activity #comment-inline-edit-form .form-toolbar, .model-comments-activity #comment-for-task-inline-edit-form .form-toolbar { padding-right: 0; } .task-activity .comment, .model-comments-activity .comment { *zoom: 1; margin-top: 10px; } .task-activity .comment:before, .task-activity .comment:after, .model-comments-activity .comment:before, .model-comments-activity .comment:after { content: " "; display: table; } .task-activity .comment:after, .model-comments-activity .comment:after { clear: both; } .task-activity .left-column, .model-comments-activity .left-column { padding-right: 0; } .task-activity .show-file-upload-box, .model-comments-activity .show-file-upload-box { display: none; z-index: 99999; position: relative; } .task-activity #CommentInlineEditForModelView, .task-activity #CommentForTaskInlineEditForModelView { background: rgba(236,240,241,0.25) url("../images/stripes.png") left top repeat; } .model-comments-activity div.wide.form { float: none !important; } .model-comments-activity .form form { bottom: no; border: none; box-shadow: none; } .right-side-details-view-panel { margin-top: 15px; } .right-side-details-view-panel .col-0 { width: 100%; } .right-side-details-view-panel td { padding: 0 0 5px 0; font-weight: normal; } .right-side-details-view-panel td strong { display: block; } .ProjectsActivityFeedPortletView tr:first-child td { border-top: none; } .edit-project-link { color: #2c3e50; font-size: 14px; font-weight: bold; font-style: normal; display: block; text-align: left; margin-bottom: 5px; } .project-extra-info { margin-bottom: 10px; font-style: italic; } .project-stats { padding-right: 5px; width: 20%; float: left; text-align: left; font-size: 12px; } .project-stats strong { font-size: 26px; font-weight: bold; display: block; } a + .project-stats { margin-left: 0; } .percent-complete.percent-green strong { color: #6fa82d; } .percent-complete.percent-yellow strong { color: #ffcc00; } .percent-complete.percent-red strong { color: #a82d31; } #builder .view-toolbar-container { border-top: none; } #builder .right-column .right-side-edit-view-panel { background: none; padding: 0; overflow: hidden; } #builder .form-fields td { padding-left: 0 !important; } .previewing-builder { overflow: hidden !important; height: auto !important; } .previewing-builder .HeaderView { z-index: 0; } #canvas-iframe { border: 1px solid #ededed; min-height: 800px; width: 100%; height: 100%; background: url("../images/psd-light.png") left top repeat; position: relative; min-width: 600px; } #iframe-overlay { display: none; } #iframe-overlay.freeze { display: block; } #preview-iframe-container { position: fixed; width: 100%; height: 100%; left: 0; top: 0; right: 0; bottom: 0; z-index: 999999 !important; overflow: scroll; background: #fff; } #preview-iframe-container-close-link { position: absolute; right: 10px; top: 10px; } #preview-iframe { width: 100%; height: 100%; display: block; } #building-blocks { list-style: none; display: block; } #building-blocks li { float: left; width: 30%; height: 105px; margin: 0 3.33% 15px 0; display: block; cursor: pointer; -webkit-transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); } #building-blocks li:active { cursor: move; } #building-blocks li div { display: block; width: 105px !important; height: 105px !important; border: 3px solid #efefef; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; float: none; margin: 0; z-index: 999999; background: #fff; text-align: center; -webkit-box-shadow: 0 0 1px 1px rgba(153,153,153,0.5); -moz-box-shadow: 0 0 1px 1px rgba(153,153,153,0.5); -ms-box-shadow: 0 0 1px 1px rgba(153,153,153,0.5); -o-box-shadow: 0 0 1px 1px rgba(153,153,153,0.5); box-shadow: 0 0 1px 1px rgba(153,153,153,0.5); width: 100% !important; height: 100% !important; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; position: relative; } #building-blocks li div i { display: block; text-align: center; font-size: 80px; line-height: 1px; margin-top: 30px; color: #ddd; -webkit-transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); } #building-blocks li div span { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 0; background: #efefef; color: #acacac; font-size: 13px; font-weight: bold; } @media all and (max-width: 900px) { #building-blocks li { width: 46%; margin-right: 4%; } #building-blocks i { font-size: 50px; } } .draggable-element-clone { display: block; width: 105px !important; height: 105px !important; border: 3px solid #efefef; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; float: none; margin: 0; z-index: 999999; background: #fff; text-align: center; -webkit-box-shadow: 0 0 1px 1px rgba(153,153,153,0.5); -moz-box-shadow: 0 0 1px 1px rgba(153,153,153,0.5); -ms-box-shadow: 0 0 1px 1px rgba(153,153,153,0.5); -o-box-shadow: 0 0 1px 1px rgba(153,153,153,0.5); box-shadow: 0 0 1px 1px rgba(153,153,153,0.5); } .draggable-element-clone i { display: block; text-align: center; font-size: 80px; line-height: 1px; margin-top: 30px; color: #ddd; -webkit-transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.18s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); } .draggable-element-clone span { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 0; background: #efefef; color: #acacac; font-size: 13px; font-weight: bold; } #element-edit-container { position: absolute; top: 120px; left: 5px; width: 30%; z-index: 999; } #element-edit-container h3 { margin-bottom: 15px; } #element-edit-form-overlay-container { position: relative; padding: 0 10px 10px 10px; } #element-edit-form-overlay-container .panel { width: 100%; } #element-edit-form-overlay-container .panel .tabs-container { width: 100%; } #element-edit-form-overlay-container .element-edit-form, #element-edit-form-overlay-container .wrapper { border: none !important; background: none !important; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; padding: 0 !important; margin: 0 !important; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } #element-edit-form-overlay-container .view-toolbar-container { border-top: 1px solid #cccccc; } .element-edit-form { position: relative; } .element-edit-form th { width: 35%; padding-top: 6px; } .element-edit-form td { width: 65%; } .element-edit-form .redactor_box iframe { min-height: 400px; } .element-edit-form .edit-form-tab-content { z-index: 99999; } .builder-position-checkbox { width: 50%; display: inline-block; } .builder-position-checkbox label.hasCheckBox + label { margin-left: 4px; } .builder-fancy-divider-radio { width: 100%; display: inline-block; } #element-settings { padding: 10px; background: none; border: none; } #element-settings > div { margin-bottom: 10px; clear: left; } #element-settings label { display: block; } div[id^="builderimageelement"] ~ .redactor_box iframe { background: url("../images/psd-light.png") left top repeat; } .image-element-edit-form .element-edit-form-content-tab { padding: 15px; text-align: left; } #SelectBaseTemplateForEmailTemplateWizardView > .left-column { padding: 0 !important; } #SelectBaseTemplateForEmailTemplateWizardView .mini-pillbox { padding: 0 15px; } #chosen-layout { margin: 30px auto; } #chosen-layout i { font-size: 400px; line-height: 60%; float: left; width: 30%; text-align: center; border-right: 1px solid #ccc; margin-right: 30px; } #chosen-layout i:after { position: relative; top: -15px; } #chosen-layout p { font-size: 14px; line-height: 24px; color: #555; font-weight: bold; float: left; width: 65%; } #chosen-layout h3 { padding-top: 30px; font-size: 18px; } #chosen-layout #chooser-overlay { margin-top: 30px; } .template-pager { text-align: center; border-top: 1px solid #fff; } .template-pager div { border-top: 1px solid #fff; padding-top: 10px; } #saved-templates, #templates { display: none; width: 100%; height: 100%; left: 0; top: 0; right: 0; bottom: 0; } #saved-templates .templates-chooser-list > ul > li, #templates .templates-chooser-list > ul > li { margin: 0 0 75px 0; width: 20%; padding: 0 15px; } #saved-templates .z-button, #templates .z-button { margin-top: 10px; float: right; } #saved-templates .secondary-button, #templates .secondary-button { margin-top: 10px; float: left; } #saved-templates .mini-pillbox, #templates .mini-pillbox { margin-bottom: 30px; } #saved-templates .closeme, #templates .closeme { line-height: 24px; float: right; } #saved-templates .closeme i, #templates .closeme i { font-weight: normal !important; font-size: 26px; font-family: "zurmo_gamification_symbly_rRg"; line-height: 1; border: none; margin-right: 5px; outline: none !important; display: inline-block; position: relative; top: 0px; color: #2c3e50; margin-top: 0; } #saved-templates li, #templates li { position: relative; } #saved-templates .template-info, #templates .template-info { position: absolute; right: 18px; top: 0px; } #saved-templates .template-info .button-actions, #templates .template-info .button-actions { width: 225px; } #saved-templates .template-info .button-actions li, #templates .template-info .button-actions li { width: 100%; } #saved-templates .template-info h4, #templates .template-info h4 { text-align: left; margin-top: 5px; margin-bottom: 10px; } #saved-templates .template-info p, #templates .template-info p { white-space: normal; line-height: 1.2; } #saved-templates .template-info .after-form-details-content, #templates .template-info .after-form-details-content { margin-top: 15px; text-align: left; color: #ccc !important; padding-left: 0; } #saved-templates .template-info .button-actions, #templates .template-info .button-actions { top: 30px; } #saved-templates .template-info .icon-trigger:before, #templates .template-info .icon-trigger:before { top: 13px; } #saved-templates .template-info .icon-details, #templates .template-info .icon-details { margin-right: 0; } @media all and (max-width: 1000px) { #templates .templates-chooser-list li { width: 25%; } } @media all and (max-width: 800px) { #templates .templates-chooser-list li { width: 33.33%; } } .templates-chooser-list > h3 { font-weight: normal; color: #777; -webkit-text-shadow: 0 1px 0 #fff; -moz-text-shadow: 0 1px 0 #fff; -ms-text-shadow: 0 1px 0 #fff; -o-text-shadow: 0 1px 0 #fff; text-shadow: 0 1px 0 #fff; display: inline-block; padding: 0 0 10px 0; margin-bottom: 30px !important; } .templates-chooser-list > h3:first-child { color: #2c3e50; border-bottom: 1px solid #2c3e50; margin-right: 30px !important; } .templates-chooser-list label { display: block; width: 100%; height: 100%; border: 3px solid #efefef; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; overflow: hidden; } .templates-chooser-list label h4 { width: 100%; position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 0; background: #efefef; color: #9b9b9a; -webkit-text-shadow: 0 1px 0 #fff; -moz-text-shadow: 0 1px 0 #fff; -ms-text-shadow: 0 1px 0 #fff; -o-text-shadow: 0 1px 0 #fff; text-shadow: 0 1px 0 #fff; font-size: 13px; font-weight: bold; } .templates-chooser-list label i { display: block; text-align: center; font-size: 130px; line-height: 1px; margin-top: 50px; color: #ddd; } .templates-chooser-list img { margin: 5px auto 0 auto; } .base-template-selection { list-style: none; width: 150px; height: 150px; float: left; text-align: center; position: relative; margin: 0 15px 15px 0; cursor: pointer; } .base-template-selection input[type="radio"] { visibility: hidden; display: none; } .base-template-selection input[type="radio"]:checked + label { overflow: hidden; -webkit-box-shadow: 0 0 3px 0px #2c3e50; -moz-box-shadow: 0 0 3px 0px #2c3e50; -ms-box-shadow: 0 0 3px 0px #2c3e50; -o-box-shadow: 0 0 3px 0px #2c3e50; box-shadow: 0 0 3px 0px #2c3e50; } .MergeTagsView { padding-right: 15px; } .MergeTagsView .hasTree { width: 100%; position: relative; } .MergeTagsView .treeview ul { background: none !important; } .MergeTagsView li { cursor: pointer; } .MergeTagsView.wizard-merge-tags { position: absolute; right: -250px; top: 0; padding-right: 0; } .MergeTagsView.wizard-merge-tags:before { content: ""; border: 10px solid #323232; border-top-color: transparent; border-left-color: transparent; border-bottom-color: transparent; position: absolute; left: -20px; top: 100px; } #MergeTagsTreeAreaBuilderElementEditable { width: 250px; height: 450px; background-color: #f5f5f5 ; background-repeat: no-repeat ; background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),color-stop(80%,#f5f5f5),to(#f5f5f5)) ; background-image: -webkit-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -ms-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -o-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -moz-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; border: 5px solid #323232; -webkit-box-shadow: inset 0 0 3px 0 #111, 0 0 3px #111; -moz-box-shadow: inset 0 0 3px 0 #111, 0 0 3px #111; -ms-box-shadow: inset 0 0 3px 0 #111, 0 0 3px #111; -o-box-shadow: inset 0 0 3px 0 #111, 0 0 3px #111; box-shadow: inset 0 0 3px 0 #111, 0 0 3px #111; -webkit-border-radius: 6px; -moz-border-radius: 6px; -ms-border-radius: 6px; -o-border-radius: 6px; border-radius: 6px; } .redactor_toolbar li a.zurmoImage:before { font-weight: normal !important; font-size: 14px; font-family: "zurmo_gamification_symbly_rRg"; content: '\0112'; } .redactor_toolbar li a.re-mergeTags { background-image: url("../images/email-builder/merge-tags.png"); width: 80px !important; } .redactor_toolbar li a.re-mergeTags:hover { background-image: url("../images/email-builder/merge-tags-hover.png"); } #redactor_image_box img { border: 1px solid #dfdfdf; } #ContentForEmailTemplateWizardView .email-template-content, #ContentForEmailTemplateWizardView .tab, #ContentForEmailTemplateWizardView .redactor_box, #ContentForEmailTemplateWizardView .redactor_box iframe, #ContentForEmailTemplateWizardView #BuilderEmailTemplateWizardForm_textContent { height: 100% !important; } #ContentForEmailTemplateWizardView .tab { overflow: hidden; } #ContentForEmailTemplateWizardView .email-template-content { padding-bottom: 0; margin-bottom: 0; } #ContentForEmailTemplateWizardView .email-template-content + .errorMessage { margin-top: 32px; } #ContentForEmailTemplateWizardView .email-template-combined-content { padding-bottom: 0; margin-bottom: 0; min-height: 600px; } .email-template-textContent { line-height: 1.4 !important; font-size: 16px !important; padding: 10px 15px !important; } .email-template-textContent textarea { line-height: 1.4 !important; font-size: 16px !important; min-height: 600px; } .divider-swatch { width: 100%; margin-bottom: 20px; } .divider-swatch input { margin-top: 8px !important; } .divider-swatch label { width: 85%; } .divider-swatch .fancy-divider-label { display: none; } .fancy-divider-1, .fancy-divider-2, .fancy-divider-3, .fancy-divider-4, .fancy-divider-5 { width: 100%; height: 30px; display: block; background-position: 50% 50%; background-repeat: no-repeat; } .fancy-divider-1 { background-image: url("../images/email-builder/fancy-divider-1.png"); } .fancy-divider-2 { background-image: url("../images/email-builder/fancy-divider-2.png"); } .fancy-divider-3 { background-image: url("../images/email-builder/fancy-divider-3.png"); } .fancy-divider-4 { background-image: url("../images/email-builder/fancy-divider-4.png"); } .fancy-divider-5 { background-image: url("../images/email-builder/fancy-divider-5.png"); } #BuilderElementEditableModelForm_content_text { min-height: 400px; } #ContentForEmailTemplateWizardView .redactor_box iframe, #CampaignEditView .redactor_box iframe, #AutoresponderEditAndDetailsView .redactor_box iframe { min-height: 600px !important; } .image-tabs > a { display: block; width: 33.33333333%; float: left; line-height: 24px; font-weight: bold; text-align: center; color: #666; -webkit-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -moz-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -ms-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; -o-text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; text-shadow: 0px -1px 0 rgba(255,255,255,0.75) !important; background-color: #f5f5f5; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#fefefe,#f5f5f5); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fefefe),color-stop(100%,#f5f5f5)); background-image: -webkit-linear-gradient(top,#fefefe,#f5f5f5); background-image: -o-linear-gradient(top,#fefefe,#f5f5f5); background-image: -moz-linear-gradient(top,#fefefe,#f5f5f5); background-image: linear-gradient(top,#fefefe,#f5f5f5); border-left: 1px solid #dfdfdf; } .image-tabs > a:first-child { border-left: none; } .image-tabs .active { color: #fff; -webkit-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; -moz-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; -ms-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; -o-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; background-color: #1a252f; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#2c3e50,#1a252f); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#2c3e50),color-stop(100%,#1a252f)); background-image: -webkit-linear-gradient(top,#2c3e50,#1a252f); background-image: -o-linear-gradient(top,#2c3e50,#1a252f); background-image: -moz-linear-gradient(top,#2c3e50,#1a252f); background-image: linear-gradient(top,#2c3e50,#1a252f); } .image-tabs > a:hover { color: #fff; -webkit-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; -moz-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; -ms-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; -o-text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; text-shadow: 0px -1px 0 rgba(0,0,0,0.2) !important; background-color: #2c3e50; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#1a252f,#2c3e50); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#1a252f),color-stop(100%,#2c3e50)); background-image: -webkit-linear-gradient(top,#1a252f,#2c3e50); background-image: -o-linear-gradient(top,#1a252f,#2c3e50); background-image: -moz-linear-gradient(top,#1a252f,#2c3e50); background-image: linear-gradient(top,#1a252f,#2c3e50); } #ImageFilesUploadView { -webkit-box-shadow: inset 0 0 0 2px #ffffff; -moz-box-shadow: inset 0 0 0 2px #ffffff; -ms-box-shadow: inset 0 0 0 2px #ffffff; -o-box-shadow: inset 0 0 0 2px #ffffff; box-shadow: inset 0 0 0 2px #ffffff; background-color: #f5f5f5 ; background-repeat: no-repeat ; background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),color-stop(80%,#f5f5f5),to(#f5f5f5)) ; background-image: -webkit-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -ms-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -o-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -moz-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; padding: 15px; border-top: 1px solid #DFDFDF; } #ImageFilesUploadView .files { float: none !important; } #ImageFilesUploadView .file-size { vertical-align: baseline; } #ImageFilesUploadView .error { padding: 10px 0 0 0 !important; } #dropzoneImageFilesUploadView { border: 2px dashed #2c3e50; font-size: 18px; font-weight: bold; line-height: 100px; text-align: center; color: #2c3e50; width: 100%; display: block; margin-bottom: 15px; } #fileUploadImageFilesUploadView .fileupload-buttonbar { margin-bottom: 15px; } #fileUploadImageFilesUploadView .fileupload-content { width: 100%; } #fileUploadImageFilesUploadView .insert-link { margin-left: 8px; } #ImagesModalSearchView #search-formmodal { padding-bottom: 0; border-right: none; border-left: none; } #ImagesModalSearchView .filter-portlet-model-bar { float: left; width: 100%; margin-top: 15px; border-bottom: none; border-top: 1px solid #DFDFDF; } #ImagesModalSearchView .filters-bar { padding-top: 13px; position: static; border-bottom: none; } #ImagesModalSearchView .filters-bar label { float: none; line-height: 1 !important; font-size: 11px !important; padding: 3px !important; margin: 0 3px; white-space: nowrap; } #ImagesModalSearchView .filters-bar label.ui-state-active, #ImagesModalSearchView .filters-bar label:hover { color: #fff !important; } .toggle-column .icon-checked, .toggle-column .icon-unchecked { display: block; background: url("../images/checkbox.png") left -21px no-repeat; width: 16px; height: 20px; padding: 0; margin: 0; } .toggle-column .icon-checked:after, .toggle-column .icon-unchecked:after { content: ""; } .toggle-column .icon-unchecked { background: url("../images/checkbox.png") left 4px no-repeat; } #image-import-form { padding: 15px 15px 30px 15px; border: none; border-top: 1px solid #DFDFDF; -webkit-box-shadow: inset 0 0 0 2px #ffffff; -moz-box-shadow: inset 0 0 0 2px #ffffff; -ms-box-shadow: inset 0 0 0 2px #ffffff; -o-box-shadow: inset 0 0 0 2px #ffffff; box-shadow: inset 0 0 0 2px #ffffff; background-color: #f5f5f5 ; background-repeat: no-repeat ; background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),color-stop(80%,#f5f5f5),to(#f5f5f5)) ; background-image: -webkit-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -ms-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -o-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -moz-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; *zoom: 1; } #image-import-form:before, #image-import-form:after { content: " "; display: table; } #image-import-form:after { clear: both; } #image-import-form label { float: left; width: 15%; display: inline-block; } #image-import-form .import-url-field { float: left; width: 65%; margin-right: 15px; } #image-import-form input[type="url"] { width: 100%; } #image-import-form .secondary-button { float: right; } #image-import-form .secondary-button .z-spinner { display: block; left: 6px; } .builder-uploaded-image-thumb { float: left; width: 20%; } .builder-image-details { width: 80%; padding-left: 15px; line-height: 1.5; float: left; } .builder-image-details a { font-weight: bold; } .insert-image { margin-left: 20%; padding: 5px 0 0 15px; clear: left; } .element-edit-form-content-tab .builder-uploaded-image-thumb { padding: 0 15px 15px 0; width: auto; } .element-edit-form-content-tab .image-links { padding-top: 5px; } .element-edit-form-content-tab .builder-image-details { width: 100%; padding: 0 0 15px 0; line-height: 1.5; float: none; clear: left; } .element-edit-form-content-tab .builder-image-details a, .element-edit-form-content-tab .builder-image-details strong { font-weight: bold; } #BuilderElementEditableModelForm_content_image_preview strong { margin: 5px 0; display: block; } .builder-image-element-qtip { max-width: none !important; line-height: 1; } .builder-image-element-qtip .ui-tooltip-content { padding: 9px; line-height: 1; } #ImageEditView .view-toolbar-container { border-top: 1px solid #CCCCCC; } #image-edit-form { border: none; padding: 0 15px 15px 15px; } #image-edit-form .left-column { padding-left: 0; } #image-edit-form .right-column { padding-right: 0; } .image-edit-modal { max-width: 80%; min-width: 1000px; } .image-resize-field { margin-bottom: 15px; } .image-resize-field label { width: 35%; display: block; float: left; } .image-resize-field input[type="number"] { width: 65%; } .image-resize-field input { float: left; } .image-resize-field .errorMessage { margin-left: 20%; } .jrac_viewport { width: 100% !important; } .jrac_viewport .ui-resizable { position: relative; } .jrac_viewport .ui-resizable-handle { position: absolute; font-size: 0.1px; display: block; } .jrac_viewport .ui-resizable-disabled .ui-resizable-handle, .jrac_viewport .ui-resizable-autohide .ui-resizable-handle { display: none; } .jrac_viewport .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } .jrac_viewport .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } .jrac_viewport .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } .jrac_viewport .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } .jrac_viewport .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } .jrac_viewport .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } .jrac_viewport .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } .jrac_viewport .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px; } .jrac_zoom_slider { margin-top: 15px; height: 2px; background: #ccc; -webkit-border-radius: 1px; -moz-border-radius: 1px; -ms-border-radius: 1px; -o-border-radius: 1px; border-radius: 1px; } .ui-slider-handle { position: relative; top: -4px; height: 10px; width: 10px; background: #545454; -webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px; cursor: ew-resize; } .ui-icon-gripsmall-diagonal-se { background: url("../images/icon-resize.png") right top no-repeat; } #redactor_modal.redactor-image-modal { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 12px; color: #545454; } #redactor_modal.redactor-image-modal #redactor_modal_header { color: #2c3e50; padding: 0 !important; margin: 0 !important; font-size: 15px; font-weight: bold; -webkit-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -moz-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -ms-text-shadow: rgba(255,255,255,0.8) 0 1px 0; -o-text-shadow: rgba(255,255,255,0.8) 0 1px 0; text-shadow: rgba(255,255,255,0.8) 0 1px 0; line-height: 40px; background-color: #ededed; background-repeat: repeat-x; background-image: -ms-linear-gradient(top,#f6f6f6,#ededed); background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f6f6f6),color-stop(100%,#ededed)); background-image: -webkit-linear-gradient(top,#f6f6f6,#ededed); background-image: -o-linear-gradient(top,#f6f6f6,#ededed); background-image: -moz-linear-gradient(top,#f6f6f6,#ededed); background-image: linear-gradient(top,#f6f6f6,#ededed); -webkit-box-shadow: inset 0 1px 0 0 #ffffff; -moz-box-shadow: inset 0 1px 0 0 #ffffff; -ms-box-shadow: inset 0 1px 0 0 #ffffff; -o-box-shadow: inset 0 1px 0 0 #ffffff; box-shadow: inset 0 1px 0 0 #ffffff; border-bottom: 1px solid #dfdfdf; text-indent: 15px; width: 100%; height: 100%; display: block; } #redactor_modal.redactor-image-modal #redactor_modal_close { -webkit-transition: all 0.15s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.15s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.15s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.15s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.15s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); position: absolute; right: -15px; top: -15px; width: 30px !important; height: 31px !important; filter: alpha(opacity=100); -khtml-opacity: 1; -moz-opacity: 1; opacity: 1; display: block; z-index: 11000; text-indent: -9999px; background: transparent url("../images/widget-close-btn.png") left top no-repeat; } #redactor_modal.redactor-image-modal #redactor_modal_close:hover { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2); background: transparent url("../images/widget-close-btn.png") left top no-repeat; } #redactor_modal.redactor-image-modal #redactor_modal_close:active { -webkit-transform: scale(.9); -moz-transform: scale(.9); -ms-transform: scale(.9); transform: scale(.9); } #redactor_modal.redactor-image-modal .filters-bar label { width: auto !important; margin: 0 3px !important; display: inline !important; } #redactor_modal.redactor-image-modal #ImagesSearchForm_anyMixedAttributes { -webkit-box-shadow: none !important; -moz-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; box-shadow: none !important; border: 1px solid #d5d4d4; border-left: none !important; } #redactor_modal.redactor-image-modal #image-import-form label { float: left !important; margin: 0 !important; } .image-legacy-message { padding: 10px; -webkit-border-radius: 5px !important; -moz-border-radius: 5px !important; -ms-border-radius: 5px !important; -o-border-radius: 5px !important; border-radius: 5px !important; border: 1px solid #FFCC00; background: #FFFCB5; margin-top: 0 !important; } .merge-view { width: 100% !important; margin: 0 auto !important; float: none; padding: 0; } .details-item-editable { margin-bottom: 0px; padding: 15px; } #CreateModelsToMergeListAndChartView .chosen-entries { width: 100%; } #CreateModelsToMergeListAndChartView .cards { width: 75%; border-right: none; margin-top: 0; } #CreateModelsToMergeListAndChartView .possible-matches { width: 25%; padding-top: 15px; } #CreateModelsToMergeListAndChartView .possible-matches li { font-weight: bold; margin-bottom: 0; border: none !important; } #CreateModelsToMergeListAndChartView .possible-matches li:first-child { border: none !important; padding: 0; } #CreateModelsToMergeListAndChartView .possible-matches span { display: none; } #CreateModelsToMergeListAndChartView .possible-matches a { display: inline-block; border: none !important; padding: 10px 15px; width: 100% !important; } #CreateModelsToMergeListAndChartView .spidergraph { display: none; } #CreateModelsToMergeListAndChartView .chosen-entries .merge-color-1 a:hover, #CreateModelsToMergeListAndChartView .merge-color-1.selected a, #CreateModelsToMergeListAndChartView .chosen-entries .merge-color-2 a:hover, #CreateModelsToMergeListAndChartView .merge-color-2.selected a, #CreateModelsToMergeListAndChartView .chosen-entries .merge-color-3 a:hover, #CreateModelsToMergeListAndChartView .merge-color-3.selected a, #CreateModelsToMergeListAndChartView .chosen-entries .merge-color-4 a:hover, #CreateModelsToMergeListAndChartView .merge-color-4.selected a, #CreateModelsToMergeListAndChartView .chosen-entries .merge-color-5 a:hover, #CreateModelsToMergeListAndChartView .merge-color-5.selected a, #CreateModelsToMergeListAndChartView .chosen-entries .merge-color-6 a:hover, #CreateModelsToMergeListAndChartView .merge-color-6.selected a, #CreateModelsToMergeListAndChartView .chosen-entries .merge-color-7 a:hover, #CreateModelsToMergeListAndChartView .merge-color-7.selected a, #CreateModelsToMergeListAndChartView .chosen-entries .merge-color-8 a:hover, #CreateModelsToMergeListAndChartView .merge-color-8.selected a, #CreateModelsToMergeListAndChartView .chosen-entries .merge-color-9 a:hover, #CreateModelsToMergeListAndChartView .merge-color-9.selected a, #CreateModelsToMergeListAndChartView .chosen-entries .merge-color-10 a:hover, #CreateModelsToMergeListAndChartView .merge-color-10.selected a { background: #2c3e50 !important; } .merge-title-bar { display: table-caption; width: 100%; } .merge-title-bar h3 { margin-bottom: 0 !important; line-height: 1; width: 100%; padding: 15px 15px 10px 15px; border-bottom: 1px solid #dfdfdf; } .merge-title-bar .simple-link { margin-left: 15px; text-decoration: underline; line-height: 1; font-weight: normal !important; } .chosen-entries { top: 0; right: 0; position: relative; margin-bottom: 30px; border-bottom: 1px solid #dfdfdf; min-height: 280px; -webkit-box-shadow: inset 0 0 0 2px #ffffff; -moz-box-shadow: inset 0 0 0 2px #ffffff; -ms-box-shadow: inset 0 0 0 2px #ffffff; -o-box-shadow: inset 0 0 0 2px #ffffff; box-shadow: inset 0 0 0 2px #ffffff; background-color: #f5f5f5 ; background-repeat: no-repeat ; background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),color-stop(80%,#f5f5f5),to(#f5f5f5)) ; background-image: -webkit-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -ms-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -o-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: -moz-linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; background-image: linear-gradient(#ffffff,#f5f5f5 80%,#f5f5f5) ; display: table; } .DetailsView .chosen-entries { -webkit-box-shadow: none !important; -moz-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; box-shadow: none !important; border: none !important; border-bottom: 1px solid #dfdfdf !important; } .chosen-entries label { display: block; padding: 4px 10px; border-radius: 0; margin: 0 0 3px 0; position: relative; left: -15px; } .possible-matches { width: 35%; list-style: none; padding-top: 15px; display: table-cell; vertical-align: top; border-right: 1px solid #dfdfdf; } .possible-matches li { font-weight: bold; margin-bottom: 0; border: none !important; } .possible-matches li:first-child { border-bottom: 1px solid #dfdfdf !important; padding: 0 0 10px 5px; } .possible-matches span { width: 55px; text-align: center; display: inline-block; } .possible-matches a { display: inline-block; border: none !important; border-left: 1px solid #dfdfdf !important; padding: 10px 10px; width: calc(100% - 55px) !important; } .cards { padding: 15px; width: 65%; display: table-cell; vertical-align: top; border-left: 1px solid #fff; border-right: 1px solid #dfdfdf; } .cards > div { height: 100%; position: relative; } .cards h2 { white-space: nowrap; } .cards h2 .simple-link { margin-left: 10px; text-decoration: underline; line-height: 1; font-weight: normal !important; } .spidergraph { padding-left: 10px; width: 100%; height: 100%; text-align: left; border-left: 1px solid #fff; } .spidergraph div { overflow: visible !important; } .merge-color-1 { border: 2px dotted #315AB0; color: #315AB0 !important; } .merge-color-2 { border: 2px dotted #66367b; color: #66367b !important; } .merge-color-3 { border: 2px dotted #2c3e50; color: #2c3e50 !important; } .merge-color-4 { border: 2px dotted #269a55; color: #269a55 !important; } .merge-color-5 { border: 2px dotted #c0392b; color: #c0392b !important; } .merge-color-6 { border: 2px dotted #e67e22; color: #e67e22 !important; } .merge-color-7 { border: 2px dotted #3498db; color: #3498db !important; } .merge-color-8 { border: 2px dotted #501a27; color: #501a27 !important; } .merge-color-9 { border: 2px dotted #0c5b3f; color: #0c5b3f !important; } .merge-color-10 { border: 2px dotted #c05d91; color: #c05d91 !important; } .chosen-entries .merge-color-1 a { color: #315AB0 !important; } .chosen-entries .merge-color-2 a { color: #66367b !important; } .chosen-entries .merge-color-3 a { color: #2c3e50 !important; } .chosen-entries .merge-color-4 a { color: #269a55 !important; } .chosen-entries .merge-color-5 a { color: #c0392b !important; } .chosen-entries .merge-color-6 a { color: #e67e22 !important; } .chosen-entries .merge-color-7 a { color: #3498db !important; } .chosen-entries .merge-color-8 a { color: #501a27 !important; } .chosen-entries .merge-color-9 a { color: #0c5b3f !important; } .chosen-entries .merge-color-10 a { color: #c05d91 !important; } .chosen-entries .merge-color-1 a:hover, .merge-color-1.selected { border: 2px solid #315AB0; background: #315AB0; color: #fff !important; } .chosen-entries .merge-color-2 a:hover, .merge-color-2.selected { border: 2px solid #66367b; background: #66367b; color: #fff !important; } .chosen-entries .merge-color-3 a:hover, .merge-color-3.selected { border: 2px solid #2c3e50; background: #2c3e50; color: #fff !important; } .chosen-entries .merge-color-4 a:hover, .merge-color-4.selected { border: 2px solid #269a55; background: #269a55; color: #fff !important; } .chosen-entries .merge-color-5 a:hover, .merge-color-5.selected { border: 2px solid #c0392b; background: #c0392b; color: #fff !important; } .chosen-entries .merge-color-6 a:hover, .merge-color-6.selected { border: 2px solid #e67e22; background: #e67e22; color: #fff !important; } .chosen-entries .merge-color-7 a:hover, .merge-color-7.selected { border: 2px solid #3498db; background: #3498db; color: #fff !important; } .chosen-entries .merge-color-8 a:hover, .merge-color-8.selected { border: 2px solid #501a27; background: #501a27; color: #fff !important; } .chosen-entries .merge-color-9 a:hover, .merge-color-9.selected { border: 2px solid #0c5b3f; background: #0c5b3f; color: #fff !important; } .chosen-entries .merge-color-10 a:hover, .merge-color-10.selected { border: 2px solid #c05d91; background: #c05d91; color: #fff !important; } .chosen-entries .selected a { color: #fff !important; } .details-item-editable > label { line-height: 1; font-weight: bold !important; } .hasPossibles { display: block; text-indent: 1px; line-height: 1; width: 100%; margin: -3px 0 0 0 !important; } .possible { display: inline-block; line-height: 14px; padding: 0 4px; border-radius: 4px; float: none !important; font-weight: bold !important; text-indent: 0; font-size: 11px !important; background: #fff; cursor: pointer; margin-right: 5px; margin-bottom: 5px; } .details-item-editable div { position: relative; } .hasDropDown .possible { position: relative; top: -24px; left: 2px; } .field-group { margin: 15px 0 15px 15px; border-left: 5px solid #dfdfdf; } .field-group .details-item-editable > label { width: calc(15% - 20px) !important; } .field-group .details-item-editable > div { margin-left: calc(15% - 20px); } .field-group div:last-child { padding-bottom: 0; } .field-group h5 { padding-left: 15px; font-size: 12px; } .entry-stats { border-top: 1px solid #dfdfdf; padding: 10px; position: relative; bottom: -15px; left: 0; width: 100%; } .entry-stats span { margin-right: 25px; display: inline-block; color: #666; } .entry-stats i { margin-right: 3px; } .entry-stats .icon-email:before { font-size: 24px !important; color: #666 !important; } .entry-stats h3 { margin-bottom: 5px !important; } .entry-stats strong { color: #444; } #bubble { display: none; } .bubble-on #bubble { position: absolute; top: -272px; left: -180px; display: block; } #chart { position: absolute; top: 0; right: 0; padding: 5px; width: auto; height: 229px; background: #fff; border-left: 1px solid #dfdfdf; } #dedupe-spinner { display: block; visibility: visible; position: absolute; top: 1px; right: 20px; } #dedupe-spinner .z-spinner { display: block; } #calendar { width: 100%; margin: 0 auto; position: relative; } #calendar td { padding: 0; } #calendar .big-spinner { position: absolute; top: 50%; margin-top: -25px; } #calendar .fc-state-default { border: 1px solid #b7b7b7; border-top-color: #e7e7e7; border-left-color: #d7d7d7; border-right-color: #d7d7d7; background: url("../images/view-toolbar-gradient.png") left bottom repeat-x; color: #656565 !important; text-shadow: 0 1px 0 #fff; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; font-size: 11px; font-weight: 700; } #calendar .fc-state-default:hover { color: #2c3e50 !important; } #calendar .fc-state-active { color: #656565; box-shadow: inset 0 10px 10px 4px rgba(153,153,153,0.4), 0 1px 0 0 #FFF; } #calendar .fc-button { height: auto; padding: 0 6px; line-height: 24px; cursor: pointer; } .fc-header { text-transform: capitalize; } .calendar-view .left-column { width: 25%; } .calendar-view .right-column { width: 75%; } .calendars-list-container { margin-top: 30px; } .calendars-list-container + .calendars-list-container { margin-top: 30px; } .calendars-list { margin: 0; padding: 0; list-style: none; display: block; line-height: 1; } .calendars-list > li { padding: 0; margin-bottom: 5px; } .calendars-list .hasCheckBox { display: inline-block; line-height: 1; } .calendars-list .edit-row-menu { margin-right: 0; } .cal-list-header { margin-bottom: 10px; } .cal-list-header h3 { display: inline-block; } .cal-list-header a { float: right; font-weight: normal !important; font-size: 16px; font-family: "zurmo_gamification_symbly_rRg"; } .cal-list-header .z-label { padding: 0 2px 0 4px; line-height: 16px; } .cal-name { position: relative; top: -3px; } .cal-color { display: inline-block; width: 12px; height: 12px; border-radius: 3px; margin: 0 6px 0 3px; position: relative; top: -2px; } .cal-color.outline { background: none; border: 1px solid salmon; } .task-subscribers { border-top: none; padding: 0 0 0 16px; margin-top: 5px; box-shadow: none; } .quick-insert { padding: 0; margin-top: 30px; } .quick-insert .details-item-editable { padding-left: 0; padding-bottom: 5px; } .quick-insert .simple-link { margin: 5px 0 0 0; display: block; } #smallcalendar .ui-datepicker.ui-datepicker-inline { margin: 0; } #smallcalendar .ui-datepicker-header { background-color: #ededed !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#f6f6f6,#ededed) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#f6f6f6),color-stop(100%,#ededed)) !important; background-image: -webkit-linear-gradient(top,#f6f6f6,#ededed) !important; background-image: -o-linear-gradient(top,#f6f6f6,#ededed) !important; background-image: -moz-linear-gradient(top,#f6f6f6,#ededed) !important; background-image: linear-gradient(top,#f6f6f6,#ededed) !important; -webkit-box-shadow: inset 0 1px 0 0 #ffffff; -moz-box-shadow: inset 0 1px 0 0 #ffffff; -ms-box-shadow: inset 0 1px 0 0 #ffffff; -o-box-shadow: inset 0 1px 0 0 #ffffff; box-shadow: inset 0 1px 0 0 #ffffff; border: 1px solid #ddd !important; } #SavedCalendarFiltersForReportWizardView .dynamic-droppable-area { width: 70%; padding-left: 0; } .calendar-event-tooltip .left-column { padding: 5px; } .calendar-event-tooltip .details-table { border: none !important; background: none !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; box-shadow: none !important; padding: 0 !important; margin: 0 !important; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } .calendar-event-tooltip .ui-tooltip-content { overflow: visible; } .calendar-event-tooltip .ui-tooltip-titlebar { background: none !important; } .calendar-event-tooltip .toolbar-mbmenu { margin: -31px 20px 0 0 !important; } .calendar-event-tooltip .view-toolbar { margin: 0; } .calendar-event-tooltip .options-menu .parent > a { padding: 0; background: none !important; border: none !important; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; } .calendar-event-tooltip .options-menu .parent > a:hover { background: none !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; -ms-box-shadow: none !important; -o-box-shadow: none !important; box-shadow: none !important; } .calendar-event-tooltip .options-menu .parent > a span { display: none; } .calendar-event-tooltip .options-menu .parent > a:before { content: 'n'; font-weight: normal !important; font-size: 26px; font-family: "zurmo_gamification_symbly_rRg"; } .calendar-event-tooltip .options-menu .parent > a:after { margin-left: 2px; position: relative; top: -2px; } .calendar-event-tooltip .options-menu ul { top: 25px; } .calendar-event-tooltip .form-fields { color: #545454; } .calendar-event-tooltip .form-fields ul { list-style: none; } .calendar-event-tooltip .form-fields ul strong { margin-right: 4px; } .calendar-event-tooltip .form-fields li { margin-bottom: 3px; } .calendar-event-tooltip .after-form-details-content { display: none; } .CalendarItemDetailsView .view-toolbar-container { top: auto !important; } body.flat-cement * { box-shadow: none !important; } body.flat-cement .AppContent, body.flat-cement .AppNavigation, body.flat-cement .AppContainer, body.flat-cement #MenuView, body.flat-cement #RecentlyViewedView { background: none !important; border: none !important; } body.flat-cement #RecentlyViewedView li em { background: none; } body.flat-cement .AppNavigation { -webkit-transition: all 0.1s cubic-bezier(0.390,0.575,0.565,1.000); -moz-transition: all 0.1s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transition: all 0.1s cubic-bezier(0.390,0.575,0.565,1.000); -o-transition: all 0.1s cubic-bezier(0.390,0.575,0.565,1.000); transition: all 0.1s cubic-bezier(0.390,0.575,0.565,1.000); -ms-transform: translate(0px,0); -moz-transform: translate(0px,0); -webkit-transform: translate3d(0px,0,0); transform: translate(0px,0); background-color: rgba(227,227,227,0) !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,rgba(220,220,220,0),rgba(227,227,227,0)) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(220,220,220,0)),color-stop(100%,rgba(227,227,227,0))) !important; background-image: -webkit-linear-gradient(top,rgba(220,220,220,0),rgba(227,227,227,0)) !important; background-image: -o-linear-gradient(top,rgba(220,220,220,0),rgba(227,227,227,0)) !important; background-image: -moz-linear-gradient(top,rgba(220,220,220,0),rgba(227,227,227,0)) !important; background-image: linear-gradient(top,rgba(220,220,220,0),rgba(227,227,227,0)) !important; } body.flat-cement .AppNavigation:hover { background-color: #e3e3e3 !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#dcdcdc,#e3e3e3) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#dcdcdc),color-stop(100%,#e3e3e3)) !important; background-image: -webkit-linear-gradient(top,#dcdcdc,#e3e3e3) !important; background-image: -o-linear-gradient(top,#dcdcdc,#e3e3e3) !important; background-image: -moz-linear-gradient(top,#dcdcdc,#e3e3e3) !important; background-image: linear-gradient(top,#dcdcdc,#e3e3e3) !important; } body.flat-cement .AppNavigation:hover .ui-chooser { background-color: #e3e3e3 !important; background-repeat: repeat-x !important; background-image: -ms-linear-gradient(top,#dcdcdc,#e3e3e3) !important; background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#dcdcdc),color-stop(100%,#e3e3e3)) !important; background-image: -webkit-linear-gradient(top,#dcdcdc,#e3e3e3) !important; background-image: -o-linear-gradient(top,#dcdcdc,#e3e3e3) !important; background-image: -moz-linear-gradient(top,#dcdcdc,#e3e3e3) !important; background-image: linear-gradient(top,#dcdcdc,#e3e3e3) !important; } body.flat-cement .ui-chooser { background: none !important; border: none; } body.flat-cement .items { background: #fff; } body.flat-cement .juiportlet-columns .juiportlet-widget .pager { border-top: 1px solid #dfdfdf; } .color-swatch.flat-cement .theme-color-1 { background: #2c3e50; } .color-swatch.flat-cement .theme-color-2 { background: #2c3e50; } .color-swatch.flat-cement .theme-color-3 { background: #95a5a6; } .color-swatch.blue .theme-color-1 { background: #282A76; } .color-swatch.blue .theme-color-2 { background: #7CB830; } .color-swatch.blue .theme-color-3 { background: #464646; } .color-swatch.sunrise .theme-color-1 { background: #34495e; } .color-swatch.sunrise .theme-color-2 { background: #2c3e50; } .color-swatch.sunrise .theme-color-3 { background: #c0392b; } .color-swatch.marble .theme-color-1 { background: #7f8c8d; } .color-swatch.marble .theme-color-2 { background: #333333; } .color-swatch.marble .theme-color-3 { background: #545454; } .color-swatch.purple-haze .theme-color-1 { background: #713b8a; } .color-swatch.purple-haze .theme-color-2 { background: #854f9e; } .color-swatch.purple-haze .theme-color-3 { background: #34495e; } .color-swatch.amazon .theme-color-1 { background: #26354A; } .color-swatch.amazon .theme-color-2 { background: #257282; } .color-swatch.amazon .theme-color-3 { background: #2F9E66; } .color-swatch.sweden .theme-color-1 { background: #034C8C; } .color-swatch.sweden .theme-color-2 { background: #024873; } .color-swatch.sweden .theme-color-3 { background: #f2d632; } .color-swatch.pink .theme-color-1 { background: #323232; } .color-swatch.pink .theme-color-2 { background: #565656; } .color-swatch.pink .theme-color-3 { background: #ff253d; } .color-swatch.brown .theme-color-1 { background: #547980; } .color-swatch.brown .theme-color-2 { background: #B88F30; } .color-swatch.brown .theme-color-3 { background: #594F4F; } .color-swatch.lime .theme-color-1 { background: #2c3e50; } .color-swatch.lime .theme-color-2 { background: #BCC98E; } .color-swatch.lime .theme-color-3 { background: #464646; } .color-swatch.cherry .theme-color-1 { background: #6C8092; } .color-swatch.cherry .theme-color-2 { background: #933140; } .color-swatch.cherry .theme-color-3 { background: #464646; } .color-swatch.turquoise .theme-color-1 { background: #447799; } .color-swatch.turquoise .theme-color-2 { background: #44BBCC; } .color-swatch.turquoise .theme-color-3 { background: #464646; } .color-swatch.violet .theme-color-1 { background: #4A3970; } .color-swatch.violet .theme-color-2 { background: #91A1DC; } .color-swatch.violet .theme-color-3 { background: #464646; } .color-swatch.honey .theme-color-1 { background: #2c3e50; } .color-swatch.honey .theme-color-2 { background: #ABBC42; } .color-swatch.honey .theme-color-3 { background: #7f9293; } .body-texture { background-attachment: fixed; } .body-texture .AppContent { background: none !important; } html.light-noise-diagonal, .texture-swatch.light-noise-diagonal .background-texture-1 { background: url("../images/patterns/light-noise-diagonal/light-noise-diagonal.png") left top repeat !important; background-attachment: fixed; } html.light-noise-diagonal .AppContent, .texture-swatch.light-noise-diagonal .background-texture-1 .AppContent { background: none !important; } html.french-stucco, .texture-swatch.french-stucco .background-texture-1 { background: url("../images/patterns/french-stucco/french-stucco.png") left top repeat !important; background-attachment: fixed; } html.french-stucco .AppContent, .texture-swatch.french-stucco .background-texture-1 .AppContent { background: none !important; } html.exclusive-paper, .texture-swatch.exclusive-paper .background-texture-1 { background: url("../images/patterns/exclusive-paper/exclusive-paper.png") left top repeat !important; background-attachment: fixed; } html.exclusive-paper .AppContent, .texture-swatch.exclusive-paper .background-texture-1 .AppContent { background: none !important; } html.diagonal-noise, .texture-swatch.diagonal-noise .background-texture-1 { background: url("../images/patterns/diagonal-noise/diagonal-noise.png") left top repeat !important; background-attachment: fixed; } html.diagonal-noise .AppContent, .texture-swatch.diagonal-noise .background-texture-1 .AppContent { background: none !important; } html.paper, .texture-swatch.paper .background-texture-1 { background: url("../images/patterns/paper/paper.png") left top repeat !important; background-attachment: fixed; } html.paper .AppContent, .texture-swatch.paper .background-texture-1 .AppContent { background: none !important; } html.light-toast, .texture-swatch.light-toast .background-texture-1 { background: url("../images/patterns/light-toast/light-toast.png") left top repeat !important; background-attachment: fixed; } html.light-toast .AppContent, .texture-swatch.light-toast .background-texture-1 .AppContent { background: none !important; } html.black-linen-2, .texture-swatch.black-linen-2 .background-texture-1 { background: url("../images/patterns/black-linen-v2/black-linen-v2.png") left top repeat !important; background-attachment: fixed; } html.black-linen-2 .AppContent, .texture-swatch.black-linen-2 .background-texture-1 .AppContent { background: none !important; } html.carbon-fibre, .texture-swatch.carbon-fibre .background-texture-1 { background: url("../images/patterns/carbon-fibre/carbon-fibre.png") left top repeat !important; background-attachment: fixed; } html.carbon-fibre .AppContent, .texture-swatch.carbon-fibre .background-texture-1 .AppContent { background: none !important; } html.cartographer, .texture-swatch.cartographer .background-texture-1 { background: url("../images/patterns/cartographer/cartographer.png") left top repeat !important; background-attachment: fixed; } html.cartographer .AppContent, .texture-swatch.cartographer .background-texture-1 .AppContent { background: none !important; } html.circles, .texture-swatch.circles .background-texture-1 { background: url("../images/patterns/circles/circles.png") left top repeat !important; background-attachment: fixed; } html.circles .AppContent, .texture-swatch.circles .background-texture-1 .AppContent { background: none !important; } html.concrete-wall, .texture-swatch.concrete-wall .background-texture-1 { background: url("../images/patterns/concrete-wall/concrete-wall.png") left top repeat !important; background-attachment: fixed; } html.concrete-wall .AppContent, .texture-swatch.concrete-wall .background-texture-1 .AppContent { background: none !important; } html.denim, .texture-swatch.denim .background-texture-1 { background: url("../images/patterns/denim/denim.png") left top repeat !important; background-attachment: fixed; } html.denim .AppContent, .texture-swatch.denim .background-texture-1 .AppContent { background: none !important; } html.low-contrast-linen, .texture-swatch.low-contrast-linen .background-texture-1 { background: url("../images/patterns/low-contrast-linen/low-contrast-linen.png") left top repeat !important; background-attachment: fixed; } html.low-contrast-linen .AppContent, .texture-swatch.low-contrast-linen .background-texture-1 .AppContent { background: none !important; } html.wood, .texture-swatch.wood .background-texture-1 { background: url("../images/patterns/wood-pattern/wood-pattern.png") left top repeat !important; background-attachment: fixed; } html.wood .AppContent, .texture-swatch.wood .background-texture-1 .AppContent { background: none !important; } html.whitey, .texture-swatch.whitey .background-texture-1 { background: url("../images/patterns/whitey/whitey.png") left top repeat !important; background-attachment: fixed; } html.whitey .AppContent, .texture-swatch.whitey .background-texture-1 .AppContent { background: none !important; } html.fabric-plaid, .texture-swatch.fabric-plaid .background-texture-1 { background: url("../images/patterns/fabric-plaid/fabric-plaid.png") left top repeat !important; background-attachment: fixed; } html.fabric-plaid .AppContent, .texture-swatch.fabric-plaid .background-texture-1 .AppContent { background: none !important; } html.cartographer-light, .texture-swatch.cartographer-light .background-texture-1 { background: url("../images/patterns/cartographer-light/cartographer-light.png") left top repeat !important; background-attachment: fixed; } html.cartographer-light .AppContent, .texture-swatch.cartographer-light .background-texture-1 .AppContent { background: none !important; } @media all and (max-width: 900px) { #HeaderView { min-width: 0 !important; } #corp-logo span { display: none; } .juiportlet-column { width: 100%; float: none; } .juiportlet-widget { min-width: auto; margin-right: 0px; } .DetailsAndRelationsView > div { float: none; width: 100% !important; } .breadcrumbs { padding-bottom: 10px; } .details-table { margin-right: 0; } .juiportlet-widget { margin-right: 0 !important; } .right-column, .left-column { width: 100%; } .right-side-edit-view-panel { padding: 0 0 0 0; background: none; } .module-intro-steps > div { width: 100%; float: none; margin: 0 0 15px 0; } #AboutView #rightCol, #AboutView #leftCol { width: 100%; float: none; padding: 15px 15px 0 15px; } #AboutView #rightCol > div, #AboutView #leftCol > div { float: none; } .task-dialog, .product-dialog { min-width: 100%; max-width: 100%; } } @media all and (max-width: 801px) { #LoginPageView { padding-top: 0; } #LoginPageView > div { padding: 10px; display: block; display: flex; flex-flow: column wrap; justify-content: flex-start; width: 100% !important; height: 100% !important; } #LoginPageView #FooterView { flex: 1 0 auto; margin: 10px 10px 5px 10px; } #LoginPageView #credit-link { margin-left: 0; } #LoginView { min-width: 0 !important; margin: 0; padding: 50px 0; background-position: left bottom; height: auto; flex: 1 0 auto; } #login-box { width: 100%; height: auto; float: none; margin: 10px 0 0 0; top: 0; left: 0; } #login-box .form { float: none; width: 100%; margin-bottom: 15px; } #login-box .form form { border: none; padding: 0 10px 10px 10px; } #login-box #LoginLogo { float: none; width: 100%; height: 80px; padding: 0; background-position: 50% 50%; } #login-form { padding: 0 20px !important; } #FooterView { margin-left: 0 !important; } #ShortcutsMenu > li > a:before { content: "Y"; font-weight: normal !important; font-size: 24px; font-family: "zurmo_gamification_symbly_rRg"; } #ShortcutsMenu > li > a > span { display: none; } } @media all and (max-width: 500px) { .logo-and-search { left: 5px; padding-right: 15px; padding-bottom: 3px; } #app-search { margin-left: 0; } #corp-log img { margin-right: 4px; } .global-search-loopa { border-right: 1px solid #d5d4d4; } #globalSearchInput { display: none; } .user-actions { padding-right: 0; } #ShortcutsMenu { display: none; } .AppContent { padding: 65px 10px 0 10px; } .list-view-items-summary-clone, .search-form-tools { display: none; } .view-toolbar-container .pillbox:first-child { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; width: 100%; background-size: auto 100%; } .view-toolbar-container .pillbox:first-child .split-button, .view-toolbar-container .pillbox:first-child .default-button { -webkit-box-flex: 1 1 auto; -moz-box-flex: 1 1 auto; -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; float: none; } .view-toolbar-container .pillbox:first-child .split-button > a, .view-toolbar-container .pillbox:first-child .default-button > a { float: none; width: 100%; text-align: center; line-height: 40px; } .view-toolbar-container .pillbox:first-child .split-button .button-label, .view-toolbar-container .pillbox:first-child .default-button .button-label { padding: 0 3px; width: 100%; overflow: hidden; text-overflow: ellipsis; position: absolute; top: 13px; left: 0; } .view-toolbar-container .pillbox:first-child .split-button i, .view-toolbar-container .pillbox:first-child .default-button i { top: -10px; } .view-toolbar-container .pillbox:first-child .split-button .icon-trigger:before, .view-toolbar-container .pillbox:first-child .default-button .icon-trigger:before { top: 28px; } .view-toolbar-container .pillbox:first-child .split-button .button-action { float: left; width: 80%; } .view-toolbar-container .pillbox:first-child .split-button .button-trigger { float: right; width: 20%; } .view-toolbar-container .pillbox:first-child .split-button .button-trigger i { top: 0; } }
src/frontend/public/admin/events/create_event.html
al3x/ground-control
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta charset="UTF-8"> <meta http-equiv="x-ua-compatible" content="IE8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bernie Sanders for President | Create Event</title> <meta property="og:image" content="https://s.bsd.net/bernie16/main/page/-/website/bsd-fb-share.png"> <link rel="shortcut icon" href="https://s.bsd.net/bernie16/main/page/-/favicon.ico"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:site" content="@BernieSanders"> <meta name="theme-color" content="#147FD7"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <!-- this has to do with fonts --> <script src="../events/static/vga4irg.js"></script> <script>try{Typekit.load();}catch(e){}</script> <link rel="stylesheet/less" type="text/css" href="../events/static/clndr.less" /> <link rel="stylesheet" id="bsd-css" href="../events/static/signup.css" type="text/css" media="all"> <style> .hidden { display:none; } input[type="number"], input[type="tel"], input[type="email"] { display: inline-block; border-radius: 3px; padding-left: 0.5em; width: 100%; height: 44px; font-size: 1.1rem; border: 0; font-family: 'freight-sans-pro'; color: #333333; } input[type="button"], input[type="submit"], input[type="checkbox"], input[type="radio"] { cursor: pointer; } #duration_num, #repeat_duration_num { width: 48%; float: left; } #repeat_interval { margin-right: 0; } #cke_description { border-radius: 3px; overflow: hidden; } input[type=text], textarea { } input[type=text]:focus, textarea:focus { } .edit-event .explain, .step2 .explain { margin-top: 2px; } .in-progress { cursor: default; pointer-events: none; opacity: 0.7; } @media (min-width: 768px){ .event-central.edit-event #SKIN #secondform, .event-central.step2 #SKIN #secondform { width: 100% !important; float: none !important; } } </style> <script src="../events/static/ckeditor/ckeditor.js"></script> <script src="../events/static/less.js"></script> <script src="../events/static/moment.js"></script> <script src="../events/static/underscore-min.js"></script> <script src="../events/static/clndr.js"></script> </head> <body class="event-central step2"> <div class="content" style="visibility: visible;"> <div id="SKIN" class="module_event2 bsd-page bsd-event bsd-event-createdetails"> <div class="basic container"> <form method="post" name="secondform" id="secondform"> <div> <div class="section-wrap"><div class="sectionheader section-what"><h3>What:<span class="bsd-image-replacement"></span></h3></div> <div class="inputgroup"> <div class="label"> <label class="form_label">Event Type:</label> </div> <div class="field"> <div class="select-wrapper" style="float:none;"> <select size="1" name="event_type_id"> <!-- <option value="32">Canvass</option> <option value="36">Debate Watch Party (Nov 14th)</option> <option value="17">Flyering and Tabling</option> <option value="30">Gather ballot access signatures</option> <option value="18">Making Phone Calls</option> --> <option value="31">Phonebank</option> <!-- <option value="22">Registering Voters</option> <option value="24">Volunteer activity or meeting</option> <option value="25">Volunteer meeting to get organized or learn more</option> <option value="1">Test Type 1</option> <option value="2">Test Type 2</option> --> </select> </div> </div> </div> <div class="inputgroup"><div class="label"> <label class="form_label">Event Title: </label><span style="color: red;">*</span> </div><div class="field"> <input size="30" maxlength="128" name="name" type="text" required value="Phone banking for Bernie"></div></div><span class="explain">(This should be descriptive, possibly including the name of your city or area)</span><div class="inputgroup"><div class="label"> <label class="form_label">Event Description: </label><span style="color: red;">*</span> </div><div class="field"> <textarea rows="14" cols="50" wysiwyg="yes" wysiwyg_showbydefault="yes" wysiwyg_mode="user" wysiwyg_showtoggle="no" name="description" wysiwyg_state="on" id="description"></textarea> <script> CKEDITOR.replace( 'description', { //uiColor: '#147FD7' }); CKEDITOR.config.removePlugins = 'about'; CKEDITOR.on('instanceReady', function (e) { $('.cke_top').css('background', '#eee'); CKEDITOR.instances.description.setData('Join other volunteers in your area to make phone calls for Bernie. This is a great opportunity to meet other Bernie supporters, make calls to voters, and help make a big impact in our campaign for President.'); $('#description').val(CKEDITOR.instances.description.getData()); }); </script> <span class="explain">(Say a little more about your event and why people should attend)</span> <div class="inputgroup"> <div class="label"> <label class="form_label">Make this event public?</label> </div> <div class="field"> <div class="select-wrapper" style="float:none;"> <select size="1" name="is_searchable"> <option value="1">Make Public</option> <option value="0">Make Private</option> <option value="-2">Use Event Type Default</option> </select> </div> </div> </div> <div class="checkboxgroup"> <label class="form_label" for="qf_aa7bcc">Receive email when users sign up?</label> <input name="host_receive_rsvp_emails" type="checkbox" value="1" id="qf_aa7bcc" checked="checked"></div> <div class="inputgroup checkboxgroup"><div class="label"> <label class="form_label" for="qf_ce7b35">Ask attendees to volunteer?</label></div><div class="field"> <input onclick="if (this.checked){ $('#avm_block').show(); }else{ $('#avm_block').hide(); }" name="attendee_volunteer_show" type="checkbox" value="1" id="qf_ce7b35"></div></div> <div class="form_hide_table hidden" id="avm_block"> <div class="onelinelabel"> <label class="form_label">Volunteer message:</label>&nbsp;&nbsp;&nbsp;&nbsp;</div> <div class="field"> <textarea rows="10" cols="50" name="attendee_volunteer_message">If you'd like to help with the event, please sign up as a volunteer. Thanks!</textarea> <p>This message, which will appear on the signup page for this event, should describe the types of volunteers needed for this event.</p> </div> </div> </div><div class="inputgroup"><div class="label"> <label class="form_label">Send email reminder to attendees?</label></div><div class="field"> <div class="select-wrapper"><select onchange="if (this.value==1) { $('#rsvp_email_reminder_hours_section').show(); }else{ $('#rsvp_email_reminder_hours_section').hide(); }" name="rsvp_use_reminder_email"> <option value="0">No</option> <option value="1" selected="selected">Yes</option> </select></div></div></div><div class="hideabletable" id="rsvp_email_reminder_hours_section"> <div class="label"> <label class="form_label">Enter # of hours before event to send reminder:</label></div> <div class="field"> <input size="8" id="rsvp_email_reminder_hours" name="rsvp_email_reminder_hours" type="number" value="24" min="0" step="0.5"></div> </div><div class="bsd-when" style="display: block;"> </div><div class="bsd-when"><a href="javascript:void(0)" id="add_another_date">Add Another Date</a></div></div> </div> <div class="section-wrap"><div class="sectionheader section-when"><h3>When:<span class="bsd-image-replacement"></span></h3></div><div class="inputgroup"><div class="label"> <label class="form_label">Event Timezone:</label><span style="color: red;">*</span> </div><div class="field"> <div class="select-wrapper"><select name="start_tz"> <option value="US/Eastern" selected="selected">US/Eastern, EST</option> <option value="US/Michigan">US/Michigan, EST</option> <option value="US/East-Indiana">US/East-Indiana, EST</option> <option value="US/Central">US/Central, CST</option> <option value="US/Indiana-Starke">US/Indiana-Starke, CST</option> <option value="US/Mountain">US/Mountain, MST</option> <option value="US/Arizona">US/Arizona, MST</option> <option value="US/Pacific">US/Pacific, PST</option> <option value="US/Alaska">US/Alaska, AKST</option> <option value="US/Aleutian">US/Aleutian, HAST</option> <option value="US/Hawaii">US/Hawaii, HST</option> <option value=""></option> <option value="Africa/Abidjan">Africa/Abidjan, GMT</option> <option value="Africa/Accra">Africa/Accra, GMT</option> <option value="Africa/Addis_Ababa">Africa/Addis_Ababa, EAT</option> <option value="Africa/Algiers">Africa/Algiers, CET</option> <option value="Africa/Asmara">Africa/Asmara, EAT</option> <option value="Africa/Bamako">Africa/Bamako, GMT</option> <option value="Africa/Bangui">Africa/Bangui, WAT</option> <option value="Africa/Banjul">Africa/Banjul, GMT</option> <option value="Africa/Bissau">Africa/Bissau, GMT</option> <option value="Africa/Blantyre">Africa/Blantyre, CAT</option> <option value="Africa/Brazzaville">Africa/Brazzaville, WAT</option> <option value="Africa/Bujumbura">Africa/Bujumbura, CAT</option> <option value="Africa/Cairo">Africa/Cairo, EET</option> <option value="Africa/Casablanca">Africa/Casablanca, WET</option> <option value="Africa/Ceuta">Africa/Ceuta, CET</option> <option value="Africa/Conakry">Africa/Conakry, GMT</option> <option value="Africa/Dakar">Africa/Dakar, GMT</option> <option value="Africa/Dar_es_Salaam">Africa/Dar_es_Salaam, EAT</option> <option value="Africa/Djibouti">Africa/Djibouti, EAT</option> <option value="Africa/Douala">Africa/Douala, WAT</option> <option value="Africa/El_Aaiun">Africa/El_Aaiun, WET</option> <option value="Africa/Freetown">Africa/Freetown, GMT</option> <option value="Africa/Gaborone">Africa/Gaborone, CAT</option> <option value="Africa/Harare">Africa/Harare, CAT</option> <option value="Africa/Johannesburg">Africa/Johannesburg, SAST</option> <option value="Africa/Juba">Africa/Juba, EAT</option> <option value="Africa/Kampala">Africa/Kampala, EAT</option> <option value="Africa/Khartoum">Africa/Khartoum, EAT</option> <option value="Africa/Kigali">Africa/Kigali, CAT</option> <option value="Africa/Kinshasa">Africa/Kinshasa, WAT</option> <option value="Africa/Lagos">Africa/Lagos, WAT</option> <option value="Africa/Libreville">Africa/Libreville, WAT</option> <option value="Africa/Lome">Africa/Lome, GMT</option> <option value="Africa/Luanda">Africa/Luanda, WAT</option> <option value="Africa/Lubumbashi">Africa/Lubumbashi, CAT</option> <option value="Africa/Lusaka">Africa/Lusaka, CAT</option> <option value="Africa/Malabo">Africa/Malabo, WAT</option> <option value="Africa/Maputo">Africa/Maputo, CAT</option> <option value="Africa/Maseru">Africa/Maseru, SAST</option> <option value="Africa/Mbabane">Africa/Mbabane, SAST</option> <option value="Africa/Mogadishu">Africa/Mogadishu, EAT</option> <option value="Africa/Monrovia">Africa/Monrovia, GMT</option> <option value="Africa/Nairobi">Africa/Nairobi, EAT</option> <option value="Africa/Ndjamena">Africa/Ndjamena, WAT</option> <option value="Africa/Niamey">Africa/Niamey, WAT</option> <option value="Africa/Nouakchott">Africa/Nouakchott, GMT</option> <option value="Africa/Ouagadougou">Africa/Ouagadougou, GMT</option> <option value="Africa/Porto-Novo">Africa/Porto-Novo, WAT</option> <option value="Africa/Sao_Tome">Africa/Sao_Tome, GMT</option> <option value="Africa/Tripoli">Africa/Tripoli, EET</option> <option value="Africa/Tunis">Africa/Tunis, CET</option> <option value="Africa/Windhoek">Africa/Windhoek, WAST</option> <option value="America/Adak">America/Adak, HAST</option> <option value="America/Anchorage">America/Anchorage, AKST</option> <option value="America/Anguilla">America/Anguilla, AST</option> <option value="America/Antigua">America/Antigua, AST</option> <option value="America/Araguaina">America/Araguaina, BRT</option> <option value="America/Argentina/Buenos_Aires">America/Argentina/Buenos_Aires, ART</option> <option value="America/Argentina/Catamarca">America/Argentina/Catamarca, ART</option> <option value="America/Argentina/Cordoba">America/Argentina/Cordoba, ART</option> <option value="America/Argentina/Jujuy">America/Argentina/Jujuy, ART</option> <option value="America/Argentina/La_Rioja">America/Argentina/La_Rioja, ART</option> <option value="America/Argentina/Mendoza">America/Argentina/Mendoza, ART</option> <option value="America/Argentina/Rio_Gallegos">America/Argentina/Rio_Gallegos, ART</option> <option value="America/Argentina/Salta">America/Argentina/Salta, ART</option> <option value="America/Argentina/San_Juan">America/Argentina/San_Juan, ART</option> <option value="America/Argentina/San_Luis">America/Argentina/San_Luis, ART</option> <option value="America/Argentina/Tucuman">America/Argentina/Tucuman, ART</option> <option value="America/Argentina/Ushuaia">America/Argentina/Ushuaia, ART</option> <option value="America/Aruba">America/Aruba, AST</option> <option value="America/Asuncion">America/Asuncion, PYST</option> <option value="America/Atikokan">America/Atikokan, EST</option> <option value="America/Bahia">America/Bahia, BRT</option> <option value="America/Bahia_Banderas">America/Bahia_Banderas, CST</option> <option value="America/Barbados">America/Barbados, AST</option> <option value="America/Belem">America/Belem, BRT</option> <option value="America/Belize">America/Belize, CST</option> <option value="America/Blanc-Sablon">America/Blanc-Sablon, AST</option> <option value="America/Boa_Vista">America/Boa_Vista, AMT</option> <option value="America/Bogota">America/Bogota, COT</option> <option value="America/Boise">America/Boise, MST</option> <option value="America/Cambridge_Bay">America/Cambridge_Bay, MST</option> <option value="America/Campo_Grande">America/Campo_Grande, AMST</option> <option value="America/Cancun">America/Cancun, CST</option> <option value="America/Caracas">America/Caracas, VET</option> <option value="America/Cayenne">America/Cayenne, GFT</option> <option value="America/Cayman">America/Cayman, EST</option> <option value="America/Chicago">America/Chicago, CST</option> <option value="America/Chihuahua">America/Chihuahua, MST</option> <option value="America/Costa_Rica">America/Costa_Rica, CST</option> <option value="America/Creston">America/Creston, MST</option> <option value="America/Cuiaba">America/Cuiaba, AMST</option> <option value="America/Curacao">America/Curacao, AST</option> <option value="America/Danmarkshavn">America/Danmarkshavn, GMT</option> <option value="America/Dawson">America/Dawson, PST</option> <option value="America/Dawson_Creek">America/Dawson_Creek, MST</option> <option value="America/Denver">America/Denver, MST</option> <option value="America/Detroit">America/Detroit, EST</option> <option value="America/Dominica">America/Dominica, AST</option> <option value="America/Edmonton">America/Edmonton, MST</option> <option value="America/Eirunepe">America/Eirunepe, ACT</option> <option value="America/El_Salvador">America/El_Salvador, CST</option> <option value="America/Fortaleza">America/Fortaleza, BRT</option> <option value="America/Glace_Bay">America/Glace_Bay, AST</option> <option value="America/Godthab">America/Godthab, WGT</option> <option value="America/Goose_Bay">America/Goose_Bay, AST</option> <option value="America/Grand_Turk">America/Grand_Turk, AST</option> <option value="America/Grenada">America/Grenada, AST</option> <option value="America/Guadeloupe">America/Guadeloupe, AST</option> <option value="America/Guatemala">America/Guatemala, CST</option> <option value="America/Guayaquil">America/Guayaquil, ECT</option> <option value="America/Guyana">America/Guyana, GYT</option> <option value="America/Halifax">America/Halifax, AST</option> <option value="America/Havana">America/Havana, CST</option> <option value="America/Hermosillo">America/Hermosillo, MST</option> <option value="America/Indiana/Indianapolis">America/Indiana/Indianapolis, EST</option> <option value="America/Indiana/Knox">America/Indiana/Knox, CST</option> <option value="America/Indiana/Marengo">America/Indiana/Marengo, EST</option> <option value="America/Indiana/Petersburg">America/Indiana/Petersburg, EST</option> <option value="America/Indiana/Tell_City">America/Indiana/Tell_City, CST</option> <option value="America/Indiana/Vevay">America/Indiana/Vevay, EST</option> <option value="America/Indiana/Vincennes">America/Indiana/Vincennes, EST</option> <option value="America/Indiana/Winamac">America/Indiana/Winamac, EST</option> <option value="America/Inuvik">America/Inuvik, MST</option> <option value="America/Iqaluit">America/Iqaluit, EST</option> <option value="America/Jamaica">America/Jamaica, EST</option> <option value="America/Juneau">America/Juneau, AKST</option> <option value="America/Kentucky/Louisville">America/Kentucky/Louisville, EST</option> <option value="America/Kentucky/Monticello">America/Kentucky/Monticello, EST</option> <option value="America/Kralendijk">America/Kralendijk, AST</option> <option value="America/La_Paz">America/La_Paz, BOT</option> <option value="America/Lima">America/Lima, PET</option> <option value="America/Los_Angeles">America/Los_Angeles, PST</option> <option value="America/Lower_Princes">America/Lower_Princes, AST</option> <option value="America/Maceio">America/Maceio, BRT</option> <option value="America/Managua">America/Managua, CST</option> <option value="America/Manaus">America/Manaus, AMT</option> <option value="America/Marigot">America/Marigot, AST</option> <option value="America/Martinique">America/Martinique, AST</option> <option value="America/Matamoros">America/Matamoros, CST</option> <option value="America/Mazatlan">America/Mazatlan, MST</option> <option value="America/Menominee">America/Menominee, CST</option> <option value="America/Merida">America/Merida, CST</option> <option value="America/Metlakatla">America/Metlakatla, PST</option> <option value="America/Mexico_City">America/Mexico_City, CST</option> <option value="America/Miquelon">America/Miquelon, PMST</option> <option value="America/Moncton">America/Moncton, AST</option> <option value="America/Monterrey">America/Monterrey, CST</option> <option value="America/Montevideo">America/Montevideo, UYST</option> <option value="America/Montserrat">America/Montserrat, AST</option> <option value="America/Nassau">America/Nassau, EST</option> <option value="America/New_York">America/New_York, EST</option> <option value="America/Nipigon">America/Nipigon, EST</option> <option value="America/Nome">America/Nome, AKST</option> <option value="America/Noronha">America/Noronha, FNT</option> <option value="America/North_Dakota/Beulah">America/North_Dakota/Beulah, CST</option> <option value="America/North_Dakota/Center">America/North_Dakota/Center, CST</option> <option value="America/North_Dakota/New_Salem">America/North_Dakota/New_Salem, CST</option> <option value="America/Ojinaga">America/Ojinaga, MST</option> <option value="America/Panama">America/Panama, EST</option> <option value="America/Pangnirtung">America/Pangnirtung, EST</option> <option value="America/Paramaribo">America/Paramaribo, SRT</option> <option value="America/Phoenix">America/Phoenix, MST</option> <option value="America/Port-au-Prince">America/Port-au-Prince, EST</option> <option value="America/Port_of_Spain">America/Port_of_Spain, AST</option> <option value="America/Porto_Velho">America/Porto_Velho, AMT</option> <option value="America/Puerto_Rico">America/Puerto_Rico, AST</option> <option value="America/Rainy_River">America/Rainy_River, CST</option> <option value="America/Rankin_Inlet">America/Rankin_Inlet, CST</option> <option value="America/Recife">America/Recife, BRT</option> <option value="America/Regina">America/Regina, CST</option> <option value="America/Resolute">America/Resolute, CST</option> <option value="America/Rio_Branco">America/Rio_Branco, ACT</option> <option value="America/Santa_Isabel">America/Santa_Isabel, PST</option> <option value="America/Santarem">America/Santarem, BRT</option> <option value="America/Santiago">America/Santiago, CLST</option> <option value="America/Santo_Domingo">America/Santo_Domingo, AST</option> <option value="America/Sao_Paulo">America/Sao_Paulo, BRST</option> <option value="America/Scoresbysund">America/Scoresbysund, EGT</option> <option value="America/Sitka">America/Sitka, AKST</option> <option value="America/St_Barthelemy">America/St_Barthelemy, AST</option> <option value="America/St_Johns">America/St_Johns, NST</option> <option value="America/St_Kitts">America/St_Kitts, AST</option> <option value="America/St_Lucia">America/St_Lucia, AST</option> <option value="America/St_Thomas">America/St_Thomas, AST</option> <option value="America/St_Vincent">America/St_Vincent, AST</option> <option value="America/Swift_Current">America/Swift_Current, CST</option> <option value="America/Tegucigalpa">America/Tegucigalpa, CST</option> <option value="America/Thule">America/Thule, AST</option> <option value="America/Thunder_Bay">America/Thunder_Bay, EST</option> <option value="America/Tijuana">America/Tijuana, PST</option> <option value="America/Toronto">America/Toronto, EST</option> <option value="America/Tortola">America/Tortola, AST</option> <option value="America/Vancouver">America/Vancouver, PST</option> <option value="America/Whitehorse">America/Whitehorse, PST</option> <option value="America/Winnipeg">America/Winnipeg, CST</option> <option value="America/Yakutat">America/Yakutat, AKST</option> <option value="America/Yellowknife">America/Yellowknife, MST</option> <option value="Antarctica/Casey">Antarctica/Casey, AWST</option> <option value="Antarctica/Davis">Antarctica/Davis, DAVT</option> <option value="Antarctica/DumontDUrville">Antarctica/DumontDUrville, DDUT</option> <option value="Antarctica/Macquarie">Antarctica/Macquarie, MIST</option> <option value="Antarctica/Mawson">Antarctica/Mawson, MAWT</option> <option value="Antarctica/McMurdo">Antarctica/McMurdo, NZDT</option> <option value="Antarctica/Palmer">Antarctica/Palmer, CLST</option> <option value="Antarctica/Rothera">Antarctica/Rothera, ROTT</option> <option value="Antarctica/Syowa">Antarctica/Syowa, SYOT</option> <option value="Antarctica/Troll">Antarctica/Troll, UTC</option> <option value="Antarctica/Vostok">Antarctica/Vostok, VOST</option> <option value="Arctic/Longyearbyen">Arctic/Longyearbyen, CET</option> <option value="Asia/Aden">Asia/Aden, AST</option> <option value="Asia/Almaty">Asia/Almaty, ALMT</option> <option value="Asia/Amman">Asia/Amman, EET</option> <option value="Asia/Anadyr">Asia/Anadyr, ANAT</option> <option value="Asia/Aqtau">Asia/Aqtau, AQTT</option> <option value="Asia/Aqtobe">Asia/Aqtobe, AQTT</option> <option value="Asia/Ashgabat">Asia/Ashgabat, TMT</option> <option value="Asia/Baghdad">Asia/Baghdad, AST</option> <option value="Asia/Bahrain">Asia/Bahrain, AST</option> <option value="Asia/Baku">Asia/Baku, AZT</option> <option value="Asia/Bangkok">Asia/Bangkok, ICT</option> <option value="Asia/Beirut">Asia/Beirut, EET</option> <option value="Asia/Bishkek">Asia/Bishkek, KGT</option> <option value="Asia/Brunei">Asia/Brunei, BNT</option> <option value="Asia/Chita">Asia/Chita, IRKT</option> <option value="Asia/Choibalsan">Asia/Choibalsan, CHOT</option> <option value="Asia/Colombo">Asia/Colombo, IST</option> <option value="Asia/Damascus">Asia/Damascus, EET</option> <option value="Asia/Dhaka">Asia/Dhaka, BDT</option> <option value="Asia/Dili">Asia/Dili, TLT</option> <option value="Asia/Dubai">Asia/Dubai, GST</option> <option value="Asia/Dushanbe">Asia/Dushanbe, TJT</option> <option value="Asia/Gaza">Asia/Gaza, EET</option> <option value="Asia/Hebron">Asia/Hebron, EET</option> <option value="Asia/Ho_Chi_Minh">Asia/Ho_Chi_Minh, ICT</option> <option value="Asia/Hong_Kong">Asia/Hong_Kong, HKT</option> <option value="Asia/Hovd">Asia/Hovd, HOVT</option> <option value="Asia/Irkutsk">Asia/Irkutsk, IRKT</option> <option value="Asia/Jakarta">Asia/Jakarta, WIB</option> <option value="Asia/Jayapura">Asia/Jayapura, WIT</option> <option value="Asia/Jerusalem">Asia/Jerusalem, IST</option> <option value="Asia/Kabul">Asia/Kabul, AFT</option> <option value="Asia/Kamchatka">Asia/Kamchatka, PETT</option> <option value="Asia/Karachi">Asia/Karachi, PKT</option> <option value="Asia/Kathmandu">Asia/Kathmandu, NPT</option> <option value="Asia/Khandyga">Asia/Khandyga, YAKT</option> <option value="Asia/Kolkata">Asia/Kolkata, IST</option> <option value="Asia/Krasnoyarsk">Asia/Krasnoyarsk, KRAT</option> <option value="Asia/Kuala_Lumpur">Asia/Kuala_Lumpur, MYT</option> <option value="Asia/Kuching">Asia/Kuching, MYT</option> <option value="Asia/Kuwait">Asia/Kuwait, AST</option> <option value="Asia/Macau">Asia/Macau, CST</option> <option value="Asia/Magadan">Asia/Magadan, MAGT</option> <option value="Asia/Makassar">Asia/Makassar, WITA</option> <option value="Asia/Manila">Asia/Manila, PHT</option> <option value="Asia/Muscat">Asia/Muscat, GST</option> <option value="Asia/Nicosia">Asia/Nicosia, EET</option> <option value="Asia/Novokuznetsk">Asia/Novokuznetsk, KRAT</option> <option value="Asia/Novosibirsk">Asia/Novosibirsk, NOVT</option> <option value="Asia/Omsk">Asia/Omsk, OMST</option> <option value="Asia/Oral">Asia/Oral, ORAT</option> <option value="Asia/Phnom_Penh">Asia/Phnom_Penh, ICT</option> <option value="Asia/Pontianak">Asia/Pontianak, WIB</option> <option value="Asia/Pyongyang">Asia/Pyongyang, KST</option> <option value="Asia/Qatar">Asia/Qatar, AST</option> <option value="Asia/Qyzylorda">Asia/Qyzylorda, QYZT</option> <option value="Asia/Rangoon">Asia/Rangoon, MMT</option> <option value="Asia/Riyadh">Asia/Riyadh, AST</option> <option value="Asia/Sakhalin">Asia/Sakhalin, SAKT</option> <option value="Asia/Samarkand">Asia/Samarkand, UZT</option> <option value="Asia/Seoul">Asia/Seoul, KST</option> <option value="Asia/Shanghai">Asia/Shanghai, CST</option> <option value="Asia/Singapore">Asia/Singapore, SGT</option> <option value="Asia/Srednekolymsk">Asia/Srednekolymsk, SRET</option> <option value="Asia/Taipei">Asia/Taipei, CST</option> <option value="Asia/Tashkent">Asia/Tashkent, UZT</option> <option value="Asia/Tbilisi">Asia/Tbilisi, GET</option> <option value="Asia/Tehran">Asia/Tehran, IRST</option> <option value="Asia/Thimphu">Asia/Thimphu, BTT</option> <option value="Asia/Tokyo">Asia/Tokyo, JST</option> <option value="Asia/Ulaanbaatar">Asia/Ulaanbaatar, ULAT</option> <option value="Asia/Urumqi">Asia/Urumqi, XJT</option> <option value="Asia/Ust-Nera">Asia/Ust-Nera, VLAT</option> <option value="Asia/Vientiane">Asia/Vientiane, ICT</option> <option value="Asia/Vladivostok">Asia/Vladivostok, VLAT</option> <option value="Asia/Yakutsk">Asia/Yakutsk, YAKT</option> <option value="Asia/Yekaterinburg">Asia/Yekaterinburg, YEKT</option> <option value="Asia/Yerevan">Asia/Yerevan, AMT</option> <option value="Atlantic/Azores">Atlantic/Azores, AZOT</option> <option value="Atlantic/Bermuda">Atlantic/Bermuda, AST</option> <option value="Atlantic/Canary">Atlantic/Canary, WET</option> <option value="Atlantic/Cape_Verde">Atlantic/Cape_Verde, CVT</option> <option value="Atlantic/Faroe">Atlantic/Faroe, WET</option> <option value="Atlantic/Madeira">Atlantic/Madeira, WET</option> <option value="Atlantic/Reykjavik">Atlantic/Reykjavik, GMT</option> <option value="Atlantic/South_Georgia">Atlantic/South_Georgia, GST</option> <option value="Atlantic/St_Helena">Atlantic/St_Helena, GMT</option> <option value="Atlantic/Stanley">Atlantic/Stanley, FKST</option> <option value="Australia/Adelaide">Australia/Adelaide, ACDT</option> <option value="Australia/Brisbane">Australia/Brisbane, AEST</option> <option value="Australia/Broken_Hill">Australia/Broken_Hill, ACDT</option> <option value="Australia/Currie">Australia/Currie, AEDT</option> <option value="Australia/Darwin">Australia/Darwin, ACST</option> <option value="Australia/Eucla">Australia/Eucla, ACWST</option> <option value="Australia/Hobart">Australia/Hobart, AEDT</option> <option value="Australia/Lindeman">Australia/Lindeman, AEST</option> <option value="Australia/Lord_Howe">Australia/Lord_Howe, LHDT</option> <option value="Australia/Melbourne">Australia/Melbourne, AEDT</option> <option value="Australia/Perth">Australia/Perth, AWST</option> <option value="Australia/Sydney">Australia/Sydney, AEDT</option> <option value="Europe/Amsterdam">Europe/Amsterdam, CET</option> <option value="Europe/Andorra">Europe/Andorra, CET</option> <option value="Europe/Athens">Europe/Athens, EET</option> <option value="Europe/Belgrade">Europe/Belgrade, CET</option> <option value="Europe/Berlin">Europe/Berlin, CET</option> <option value="Europe/Bratislava">Europe/Bratislava, CET</option> <option value="Europe/Brussels">Europe/Brussels, CET</option> <option value="Europe/Bucharest">Europe/Bucharest, EET</option> <option value="Europe/Budapest">Europe/Budapest, CET</option> <option value="Europe/Busingen">Europe/Busingen, CET</option> <option value="Europe/Chisinau">Europe/Chisinau, EET</option> <option value="Europe/Copenhagen">Europe/Copenhagen, CET</option> <option value="Europe/Dublin">Europe/Dublin, GMT</option> <option value="Europe/Gibraltar">Europe/Gibraltar, CET</option> <option value="Europe/Guernsey">Europe/Guernsey, GMT</option> <option value="Europe/Helsinki">Europe/Helsinki, EET</option> <option value="Europe/Isle_of_Man">Europe/Isle_of_Man, GMT</option> <option value="Europe/Istanbul">Europe/Istanbul, EET</option> <option value="Europe/Jersey">Europe/Jersey, GMT</option> <option value="Europe/Kaliningrad">Europe/Kaliningrad, EET</option> <option value="Europe/Kiev">Europe/Kiev, EET</option> <option value="Europe/Lisbon">Europe/Lisbon, WET</option> <option value="Europe/Ljubljana">Europe/Ljubljana, CET</option> <option value="Europe/London">Europe/London, GMT</option> <option value="Europe/Luxembourg">Europe/Luxembourg, CET</option> <option value="Europe/Madrid">Europe/Madrid, CET</option> <option value="Europe/Malta">Europe/Malta, CET</option> <option value="Europe/Mariehamn">Europe/Mariehamn, EET</option> <option value="Europe/Minsk">Europe/Minsk, FET</option> <option value="Europe/Monaco">Europe/Monaco, CET</option> <option value="Europe/Moscow">Europe/Moscow, MSK</option> <option value="Europe/Oslo">Europe/Oslo, CET</option> <option value="Europe/Paris">Europe/Paris, CET</option> <option value="Europe/Podgorica">Europe/Podgorica, CET</option> <option value="Europe/Prague">Europe/Prague, CET</option> <option value="Europe/Riga">Europe/Riga, EET</option> <option value="Europe/Rome">Europe/Rome, CET</option> <option value="Europe/Samara">Europe/Samara, SAMT</option> <option value="Europe/San_Marino">Europe/San_Marino, CET</option> <option value="Europe/Sarajevo">Europe/Sarajevo, CET</option> <option value="Europe/Simferopol">Europe/Simferopol, MSK</option> <option value="Europe/Skopje">Europe/Skopje, CET</option> <option value="Europe/Sofia">Europe/Sofia, EET</option> <option value="Europe/Stockholm">Europe/Stockholm, CET</option> <option value="Europe/Tallinn">Europe/Tallinn, EET</option> <option value="Europe/Tirane">Europe/Tirane, CET</option> <option value="Europe/Uzhgorod">Europe/Uzhgorod, EET</option> <option value="Europe/Vaduz">Europe/Vaduz, CET</option> <option value="Europe/Vatican">Europe/Vatican, CET</option> <option value="Europe/Vienna">Europe/Vienna, CET</option> <option value="Europe/Vilnius">Europe/Vilnius, EET</option> <option value="Europe/Volgograd">Europe/Volgograd, MSK</option> <option value="Europe/Warsaw">Europe/Warsaw, CET</option> <option value="Europe/Zagreb">Europe/Zagreb, CET</option> <option value="Europe/Zaporozhye">Europe/Zaporozhye, EET</option> <option value="Europe/Zurich">Europe/Zurich, CET</option> <option value="Indian/Antananarivo">Indian/Antananarivo, EAT</option> <option value="Indian/Chagos">Indian/Chagos, IOT</option> <option value="Indian/Christmas">Indian/Christmas, CXT</option> <option value="Indian/Cocos">Indian/Cocos, CCT</option> <option value="Indian/Comoro">Indian/Comoro, EAT</option> <option value="Indian/Kerguelen">Indian/Kerguelen, TFT</option> <option value="Indian/Mahe">Indian/Mahe, SCT</option> <option value="Indian/Maldives">Indian/Maldives, MVT</option> <option value="Indian/Mauritius">Indian/Mauritius, MUT</option> <option value="Indian/Mayotte">Indian/Mayotte, EAT</option> <option value="Indian/Reunion">Indian/Reunion, RET</option> <option value="Pacific/Apia">Pacific/Apia, WSDT</option> <option value="Pacific/Auckland">Pacific/Auckland, NZDT</option> <option value="Pacific/Chatham">Pacific/Chatham, CHADT</option> <option value="Pacific/Chuuk">Pacific/Chuuk, CHUT</option> <option value="Pacific/Easter">Pacific/Easter, EASST</option> <option value="Pacific/Efate">Pacific/Efate, VUT</option> <option value="Pacific/Enderbury">Pacific/Enderbury, PHOT</option> <option value="Pacific/Fakaofo">Pacific/Fakaofo, TKT</option> <option value="Pacific/Fiji">Pacific/Fiji, FJST</option> <option value="Pacific/Funafuti">Pacific/Funafuti, TVT</option> <option value="Pacific/Galapagos">Pacific/Galapagos, GALT</option> <option value="Pacific/Gambier">Pacific/Gambier, GAMT</option> <option value="Pacific/Guadalcanal">Pacific/Guadalcanal, SBT</option> <option value="Pacific/Guam">Pacific/Guam, ChST</option> <option value="Pacific/Honolulu">Pacific/Honolulu, HST</option> <option value="Pacific/Johnston">Pacific/Johnston, HST</option> <option value="Pacific/Kiritimati">Pacific/Kiritimati, LINT</option> <option value="Pacific/Kosrae">Pacific/Kosrae, KOST</option> <option value="Pacific/Kwajalein">Pacific/Kwajalein, MHT</option> <option value="Pacific/Majuro">Pacific/Majuro, MHT</option> <option value="Pacific/Marquesas">Pacific/Marquesas, MART</option> <option value="Pacific/Midway">Pacific/Midway, SST</option> <option value="Pacific/Nauru">Pacific/Nauru, NRT</option> <option value="Pacific/Niue">Pacific/Niue, NUT</option> <option value="Pacific/Norfolk">Pacific/Norfolk, NFT</option> <option value="Pacific/Noumea">Pacific/Noumea, NCT</option> <option value="Pacific/Pago_Pago">Pacific/Pago_Pago, SST</option> <option value="Pacific/Palau">Pacific/Palau, PWT</option> <option value="Pacific/Pitcairn">Pacific/Pitcairn, PST</option> <option value="Pacific/Pohnpei">Pacific/Pohnpei, PONT</option> <option value="Pacific/Port_Moresby">Pacific/Port_Moresby, PGT</option> <option value="Pacific/Rarotonga">Pacific/Rarotonga, CKT</option> <option value="Pacific/Saipan">Pacific/Saipan, ChST</option> <option value="Pacific/Tahiti">Pacific/Tahiti, TAHT</option> <option value="Pacific/Tarawa">Pacific/Tarawa, GILT</option> <option value="Pacific/Tongatapu">Pacific/Tongatapu, TOT</option> <option value="Pacific/Wake">Pacific/Wake, WAKT</option> <option value="Pacific/Wallis">Pacific/Wallis, WFT</option> <option value="UTC">UTC, UTC</option> </select></div></div></div> <div class="inputgroup"><div class="label"> <label class="form_label">Date(s):</label><span style="color: red;">*</span> </div> <div id="mini-clndr"> <script id="mini-clndr-template" type="text/template"> <div class="controls"> <div class="clndr-previous-button">&lsaquo;</div><div class="month"><%= month %> <%= year %></div><div class="clndr-next-button">&rsaquo;</div> </div> <div class="days-container"> <div class="days"> <div class="headers"> <% _.each(daysOfTheWeek, function(day) { %><div class="day-header"><%= day %></div><% }); %> </div> <% _.each(days, function(day) { %><div class="<%= day.classes %>" id="<%= day.id %>"><%= day.day %></div><% }); %> </div> <div class="events"> <div class="headers"> <div class="x-button">x</div> <div class="event-header">EVENTS</div> </div> <div class="events-list"> <% _.each(eventsThisMonth, function(event) { %> <div class="event"> <a href="<%= event.url %>"><%= moment(event.date).format('MMMM Do') %>: <%= event.title %></a> </div> <% }); %> </div> </div> </div> <div class="controls"> <div class="clndr-previous-button">&lsaquo;</div><div class="clndr-today-button">Today</div><div class="clndr-next-button">&rsaquo;</div> </div> </script> </div> <span class="explain">Pick the date(s) for your event by selecting them on the calendar.</span> </div> <div class="inputgroup"> <div class="label"> <label class="form_label" style="margin-left:0">Repeat this event?</label> </div> <div class="field"> <div class="select-wrapper" style="float:none;"> <select name="event_repeat_type" id="event_repeat_type"> <option value="never" selected="selected">Never</option> <option value="weekly">Weekly</option> <option value="month_by_day">Monthly by day of the week</option> <option value="month_by_date">Monthly by date</option> </select> </div> </div> </div> <div class="inputgroup event-length hidden" id="repeat_duration_inputs"><div class="label"> <label class="form_label">Repeat Duration:</label><span style="color: red;">*</span> </div> <div class="field"> <input size="4" name="repeat_duration_num" id="repeat_duration_num" type="number" value="1" step="1" min="1" max="52">&nbsp; <div class="select-wrapper"> <select name="repeat_duration_unit" id="repeat_duration_unit"> <option value="7">week(s)</option> <option value="30" selected="selected">month(s)</option> </select> </div> </div> <br> </div> <div class="inputgroup"><div class="label"> <label class="form_label">Time:</label><span style="color: red;">*</span> </div><div class="field"> <div class="select-wrapper col-3"><select name="start_time[h]" required> <option selected="selected"></option> <option value="1">01</option> <option value="2">02</option> <option value="3">03</option> <option value="4">04</option> <option value="5">05</option> <option value="6">06</option> <option value="7">07</option> <option value="8">08</option> <option value="9">09</option> <option value="10">10</option> <option value="11">11</option> <option value="00">12</option> </select></div><div class="select-wrapper col-3"><select name="start_time[i]" required> <option selected="selected"></option> <option value="00">00</option> <option value="01">01</option> <option value="02">02</option> <option value="03">03</option> <option value="04">04</option> <option value="05">05</option> <option value="06">06</option> <option value="07">07</option> <option value="08">08</option> <option value="09">09</option> <option value="10">10</option> <option value="11">11</option> <option value="12">12</option> <option value="13">13</option> <option value="14">14</option> <option value="15">15</option> <option value="16">16</option> <option value="17">17</option> <option value="18">18</option> <option value="19">19</option> <option value="20">20</option> <option value="21">21</option> <option value="22">22</option> <option value="23">23</option> <option value="24">24</option> <option value="25">25</option> <option value="26">26</option> <option value="27">27</option> <option value="28">28</option> <option value="29">29</option> <option value="30">30</option> <option value="31">31</option> <option value="32">32</option> <option value="33">33</option> <option value="34">34</option> <option value="35">35</option> <option value="36">36</option> <option value="37">37</option> <option value="38">38</option> <option value="39">39</option> <option value="40">40</option> <option value="41">41</option> <option value="42">42</option> <option value="43">43</option> <option value="44">44</option> <option value="45">45</option> <option value="46">46</option> <option value="47">47</option> <option value="48">48</option> <option value="49">49</option> <option value="50">50</option> <option value="51">51</option> <option value="52">52</option> <option value="53">53</option> <option value="54">54</option> <option value="55">55</option> <option value="56">56</option> <option value="57">57</option> <option value="58">58</option> <option value="59">59</option> </select></div>&nbsp;<div class="select-wrapper col-3 col-3-3"><select name="start_time[a]"> <option value="am">am</option> <option value="pm" selected="selected">pm</option> </select></div></div></div> <div class="inputgroup event-length"><div class="label"> <label class="form_label">Event Length:</label><span style="color: red;">*</span> </div><div class="field"> <input size="4" onclick="document.secondform.duration_allday.checked = false;" name="duration_num" id="duration_num" type="number" value="2" step="0.5" min="0.5">&nbsp;<div class="select-wrapper"><select onclick="document.secondform.duration_allday.checked = false;" name="duration_unit"> <option value="1">minutes</option> <option value="60" selected="selected">hours</option> <option value="1440">days</option> </select></div>&nbsp; or &nbsp;<input onclick="document.secondform.duration_num.value=&#39;&#39;; document.secondform.duration.value=-1;" name="duration_allday" value="-1" type="radio" id="qf_c37f82"><label for="qf_c37f82">all day event</label> </div></div> </div> <div class="section-wrap"><div class="sectionheader section-where"><h3>Where:<span class="bsd-image-replacement"></span></h3></div> <div class="inputgroup"><div class="label"> <label class="form_label">Country:</label></div><div class="field"> <div class="select-wrapper"><select onchange="BSD.event.internationalization(this)" id="country" name="venue_country"> <option value=""></option> <option value="AF">Afghanistan</option> <option value="AL">Albania</option> <option value="DZ">Algeria</option> <option value="AS">American Samoa</option> <option value="AD">Andorra</option> <option value="AO">Angola</option> <option value="AI">Anguilla</option> <option value="AG">Antigua and Barbuda</option> <option value="AR">Argentina</option> <option value="AM">Armenia</option> <option value="AW">Aruba</option> <option value="AU">Australia</option> <option value="AT">Austria</option> <option value="AZ">Azerbaijan</option> <option value="BS">Bahamas</option> <option value="BH">Bahrain</option> <option value="BD">Bangladesh</option> <option value="BB">Barbados</option> <option value="BY">Belarus</option> <option value="BE">Belgium</option> <option value="BZ">Belize</option> <option value="BJ">Benin</option> <option value="BM">Bermuda</option> <option value="BT">Bhutan</option> <option value="BO">Bolivia</option> <option value="BA">Bosnia and Herzegovina</option> <option value="BW">Botswana</option> <option value="BR">Brazil</option> <option value="VG">British Virgin Islands</option> <option value="IO">British Indian Ocean Territory</option> <option value="BN">Brunei</option> <option value="BG">Bulgaria</option> <option value="BF">Burkina Faso</option> <option value="BI">Burundi</option> <option value="KH">Cambodia</option> <option value="CM">Cameroon</option> <option value="CA">Canada</option> <option value="CV">Cape Verde</option> <option value="KY">Cayman Islands</option> <option value="CF">Central African Republic</option> <option value="TD">Chad</option> <option value="CL">Chile</option> <option value="CN">China</option> <option value="CX">Christmas Island</option> <option value="CO">Colombia</option> <option value="KM">Comoros Islands</option> <option value="CD">Congo, Democratic Republic of the</option> <option value="CG">Congo, Republic of the</option> <option value="CK">Cook Islands</option> <option value="CR">Costa Rica</option> <option value="CI">Cote D'ivoire</option> <option value="HR">Croatia</option> <option value="CU">Cuba</option> <option value="CY">Cyprus</option> <option value="CZ">Czech Republic</option> <option value="DK">Denmark</option> <option value="DJ">Djibouti</option> <option value="DM">Dominica</option> <option value="DO">Dominican Republic</option> <option value="TP">East Timor</option> <option value="EC">Ecuador</option> <option value="EG">Egypt</option> <option value="SV">El Salvador</option> <option value="GQ">Equatorial Guinea</option> <option value="ER">Eritrea</option> <option value="EE">Estonia</option> <option value="ET">Ethiopia</option> <option value="FK">Falkland Islands (Malvinas)</option> <option value="FO">Faroe Islands</option> <option value="FJ">Fiji</option> <option value="FI">Finland</option> <option value="FR">France</option> <option value="GF">French Guiana</option> <option value="PF">French Polynesia</option> <option value="TF">French Southern Territories</option> <option value="GA">Gabon</option> <option value="GM">Gambia</option> <option value="GE">Georgia</option> <option value="DE">Germany</option> <option value="GH">Ghana</option> <option value="GI">Gibraltar</option> <option value="GR">Greece</option> <option value="GL">Greenland</option> <option value="GD">Grenada</option> <option value="GP">Guadeloupe</option> <option value="GU">Guam</option> <option value="GT">Guatemala</option> <option value="GN">Guinea</option> <option value="GW">Guinea-Bissau</option> <option value="GY">Guyana</option> <option value="HT">Haiti</option> <option value="VA">Holy See (Vatican City State)</option> <option value="HN">Honduras</option> <option value="HK">Hong Kong</option> <option value="HU">Hungary</option> <option value="IS">Iceland</option> <option value="IN">India</option> <option value="ID">Indonesia</option> <option value="IR">Iran</option> <option value="IQ">Iraq</option> <option value="IE">Republic of Ireland</option> <option value="IL">Israel</option> <option value="IT">Italy</option> <option value="JM">Jamaica</option> <option value="JP">Japan</option> <option value="JO">Jordan</option> <option value="KZ">Kazakhstan</option> <option value="KE">Kenya</option> <option value="KI">Kiribati</option> <option value="KR">South Korea</option> <option value="XK">Kosovo</option> <option value="KW">Kuwait</option> <option value="KG">Kyrgyzstan</option> <option value="LA">Laos</option> <option value="LV">Latvia</option> <option value="LB">Lebanon</option> <option value="LS">Lesotho</option> <option value="LR">Liberia</option> <option value="LY">Libya</option> <option value="LI">Liechtenstein</option> <option value="LT">Lithuania</option> <option value="LU">Luxembourg</option> <option value="MO">Macau</option> <option value="MK">Macedonia</option> <option value="MG">Madagascar</option> <option value="MW">Malawi</option> <option value="MY">Malaysia</option> <option value="MV">Maldives</option> <option value="ML">Mali</option> <option value="MT">Malta</option> <option value="MH">Marshall Islands</option> <option value="MQ">Martinique</option> <option value="MR">Mauritania</option> <option value="MU">Mauritius</option> <option value="YT">Mayotte</option> <option value="MX">Mexico</option> <option value="FM">Micronesia</option> <option value="MD">Moldova, Republic of</option> <option value="MC">Monaco</option> <option value="MN">Mongolia</option> <option value="ME">Montenegro</option> <option value="MS">Montserrat</option> <option value="MA">Morocco</option> <option value="MZ">Mozambique</option> <option value="MM">Myanmar</option> <option value="NA">Namibia</option> <option value="NR">Nauru</option> <option value="NP">Nepal</option> <option value="NL">Netherlands</option> <option value="AN">Netherlands Antilles</option> <option value="NC">New Caledonia</option> <option value="NZ">New Zealand</option> <option value="NI">Nicaragua</option> <option value="NE">Niger</option> <option value="NG">Nigeria</option> <option value="NU">Niue</option> <option value="NF">Norfolk Island</option> <option value="MP">Northern Mariana Islands</option> <option value="NO">Norway</option> <option value="OM">Oman</option> <option value="PK">Pakistan</option> <option value="PW">Palau</option> <option value="PA">Panama</option> <option value="PG">Papua New Guinea</option> <option value="PY">Paraguay</option> <option value="PE">Peru</option> <option value="PH">Philippines</option> <option value="PN">Pitcairn Island</option> <option value="PL">Poland</option> <option value="PT">Portugal</option> <option value="PR">Puerto Rico</option> <option value="QA">Qatar</option> <option value="RE">Reunion</option> <option value="RO">Romania</option> <option value="RU">Russian Federation</option> <option value="RW">Rwanda</option> <option value="KN">Saint Kitts and Nevis</option> <option value="LC">Saint Lucia</option> <option value="VC">Saint Vincent and the Grenadines</option> <option value="WS">Samoa</option> <option value="SM">San Marino</option> <option value="ST">Sao Tome and Principe</option> <option value="SA">Saudi Arabia</option> <option value="SN">Senegal</option> <option value="RS">Serbia</option> <option value="SC">Seychelles</option> <option value="SL">Sierra Leone</option> <option value="SG">Singapore</option> <option value="SK">Slovakia</option> <option value="SI">Slovenia</option> <option value="SB">Solomon Islands</option> <option value="SO">Somalia</option> <option value="ZA">South Africa</option> <option value="SS">South Sudan</option> <option value="ES">Spain</option> <option value="LK">Sri Lanka</option> <option value="SH">St. Helena</option> <option value="PM">St. Pierre and Miquelon</option> <option value="SD">Sudan</option> <option value="SR">Suriname</option> <option value="SY">Syria</option> <option value="SZ">Swaziland</option> <option value="SE">Sweden</option> <option value="CH">Switzerland</option> <option value="TW">Taiwan</option> <option value="TJ">Tajikistan</option> <option value="TZ">Tanzania</option> <option value="TH">Thailand</option> <option value="TG">Togo</option> <option value="TK">Tokelau</option> <option value="TO">Tonga</option> <option value="TT">Trinidad and Tobago</option> <option value="TN">Tunisia</option> <option value="TR">Turkey</option> <option value="TM">Turkmenistan</option> <option value="TC">Turks and Caicos Islands</option> <option value="TV">Tuvalu</option> <option value="UG">Uganda</option> <option value="UA">Ukraine</option> <option value="AE">United Arab Emirates</option> <option value="GB">United Kingdom</option> <option value="US" selected="selected">United States</option> <option value="UY">Uruguay</option> <option value="UZ">Uzbekistan</option> <option value="VU">Vanuatu</option> <option value="VE">Venezuela</option> <option value="VN">Viet Nam</option> <option value="VI">Virgin Islands (U.S.)</option> <option value="WF">Wallis and Futuna Islands</option> <option value="EH">Western Sahara</option> <option value="YE">Yemen</option> <option value="ZM">Zambia</option> <option value="ZW">Zimbabwe</option> </select></div></div></div><div class="inputgroup"><div class="label"> <label class="form_label">Address:</label></div><div class="field"> <input size="30" name="venue_addr1" id="street_number" type="text" value="" placeholder=""></div></div><div class="inputgroup"><div class="field"> <input size="30" name="venue_addr2" id="route" type="text" style="margin-top: 10px;"></div></div><div class="inputgroup col city-col"><div class="label"> <label class="form_label">City:</label><span style="color: red;">*</span> </div><div class="field"> <input size="30" name="venue_city" id="locality" type="text" value="" required></div></div><div class="inputgroup col state-col"><div class="label"> <label class="form_label">State:</label><span style="color: red;">*</span> </div><div class="field"> <div class="select-wrapper"><select size="1" id="administrative_area_level_1" name="venue_state_cd"> <option value=""></option> <option value="AK">AK</option> <option value="AL">AL</option> <option value="AR">AR</option> <option value="AZ">AZ</option> <option value="CA">CA</option> <option value="CO">CO</option> <option value="CT">CT</option> <option value="DC">DC</option> <option value="DE">DE</option> <option value="FL">FL</option> <option value="GA">GA</option> <option value="HI">HI</option> <option value="IA">IA</option> <option value="ID">ID</option> <option value="IL">IL</option> <option value="IN">IN</option> <option value="KS">KS</option> <option value="KY">KY</option> <option value="LA">LA</option> <option value="MA">MA</option> <option value="MD">MD</option> <option value="ME">ME</option> <option value="MI">MI</option> <option value="MN">MN</option> <option value="MO">MO</option> <option value="MS">MS</option> <option value="MT">MT</option> <option value="NC">NC</option> <option value="ND">ND</option> <option value="NE">NE</option> <option value="NH">NH</option> <option value="NJ">NJ</option> <option value="NM">NM</option> <option value="NV">NV</option> <option value="NY">NY</option> <option value="OH">OH</option> <option value="OK">OK</option> <option value="OR">OR</option> <option value="PA">PA</option> <option value="RI">RI</option> <option value="SC">SC</option> <option value="SD">SD</option> <option value="TN">TN</option> <option value="TX">TX</option> <option value="UT">UT</option> <option value="VA">VA</option> <option value="VT">VT</option> <option value="WA">WA</option> <option value="WI">WI</option> <option value="WV">WV</option> <option value="WY">WY</option> <option value="--">---</option> <option value="AA">AA</option> <option value="AE">AE</option> <option value="AP">AP</option> <option value="AS">AS</option> <option value="FM">FM</option> <option value="GU">GU</option> <option value="MH">MH</option> <option value="MP">MP</option> <option value="PR">PR</option> <option value="PW">PW</option> <option value="VI">VI</option> </select></div></div></div><div class="inputgroup col zip-col"><div class="label"> <label class="form_label">ZIP Code:</label><span style="color: red;">*</span> </div><div class="field"> <input size="6" maxlength="12" id="postal_code" name="venue_zip" type="number" value=""></div></div><div class="clear"></div> <div class="inputgroup"><div class="label"> <label class="form_label">Venue Name:</label><span style="color: red;">*</span> </div><div class="field"> <input size="30" name="venue_name" id="venue_name" type="text" placeholder="" required></div></div><div class="inputgroup"><div class="label"> <label class="form_label">Capacity Limit: </label><span style="color: red;">*</span> </div><div class="field"> <input size="4" name="capacity" type="number" value="0" step="1" min="0" required></div></div><span class="explain">(includes guests; zero for no limit)</span> <div class="inputgroup"><div class="label"> <label class="form_label">Directions To Event:</label></div><div class="field"> <textarea rows="4" cols="30" name="venue_directions"></textarea></div></div> <span class="explain">(Optional; only necessary if guests will need additional directions after arriving at address.)</span> </div> <div class="section-wrap"><div class="sectionheader section-where"><h3>Who:<span class="bsd-image-replacement"></span></h3></div> <div class="inputgroup"><div class="label"> <label class="form_label">Contact Phone:</label><span style="color: red;">*</span> </div><div class="field"> <input size="30" name="contact_phone" type="tel" required></div><div class="phone-instruct"><span style="color: red;">*</span><div class="explain"> A contact phone number is required.</div></div></div> <div class="inputgroup"><div class="label"> <label class="form_label">Allow people who view my event to see this phone number:</label></div><div class="field"> <div class="select-wrapper"><select name="public_phone"> <option value="0" selected="selected">No</option> <option value="1">Yes, make this number public</option> </select></div></div></div> <div class="label"> <label class="form_label">Host Email:</label><span style="color: red;">*</span> </div><div class="field"> <input size="30" name="cons_email" type="email" required></div> <div class="phone-instruct"> <span style="color: red;">*</span> <div class="explain"> This email will not be publicly visible.</div> </div> <div class="checkboxgroup"> <label class="form_label" for="flag_approval">Mark this event as incomplete/needs further review</label> <input name="flag_approval" id="flag_approval" type="checkbox" value="1"></div> <input class="ui-state-default" id="submit_button" name="submit_button" value="Create Event" type="submit"><div class="required"><span class="error">*</span> denotes required field</div></div> </div> </form> </div> <script type="text/javascript"> var $; jQuery(document).ready(function() { $ = jQuery; // For some reason jQuery is not assigned to $ var eventform = document.forms["secondform"]; var currentMonth = moment().format('YYYY-MM'); var nextMonth = moment().add(1, 'month').format('YYYY-MM'); var events = []; var user_created_events = []; var current_events = []; var generated_events = []; var events_cal = $('#mini-clndr').clndr({ template: $('#mini-clndr-template').html(), events: events, constraints: { startDate: moment().format('YYYY-MM-DD'), endDate: '2020-12-31' }, clickEvents: { click: function(target) { if(target.events.length) { // An event exists on this day; remove it from the calendar display events_cal.removeEvents(function(event){ return event._clndrStartDateObject.format('YYYY-MM-DD') == target.date.format('YYYY-MM-DD'); }); // Remove events on this date from the given arrays user_created_events = removeEventsOnDate(user_created_events); generated_events = removeEventsOnDate(generated_events); function removeEventsOnDate(array){ array = jQuery.grep(array, function(event) { return event.date != target.date.format('YYYY-MM-DD'); }); return array; } } else if(!$(target.element).hasClass('inactive')) { // Create an event on this date if date is valid (occuring in the future) var new_events = [{ date: target.date.format('YYYY-MM-DD'), auto_generated: false, moment: target.date }]; // Push new event to calendar display and user_created_events array user_created_events = $.merge(new_events, user_created_events); events_cal.addEvents(new_events); console.log(user_created_events); } } }, adjacentDaysChangeMonth: true, forceSixRows: true, trackSelectedDate: false, ignoreInactiveDaysInSelection: true }); $('#event_repeat_type').on('change', propagateEvents); $('#repeat_duration_num').on('change', propagateEvents); $('#repeat_duration_unit').on('change', propagateEvents); function propagateEvents(e){ $('#repeat_duration_inputs').show(); events_cal.removeEvents(function(event){ return event.auto_generated == true; }); var event_title = eventform.elements["name"].value; var event_location = eventform.elements["venue_name"].value; var max_days = eventform.elements["repeat_duration_num"].value * eventform.elements["repeat_duration_unit"].value; current_events = []; generated_events = []; // Determine how to propagate events switch (eventform.elements["event_repeat_type"].value) { case "never": // Event will not repeat. $('#repeat_duration_inputs').hide(); break; case "weekly": // Event will repeat every week. for (var i=0; i<user_created_events.length; i++){ var current_event = user_created_events[i]; for (var days=7; days<=max_days; days+=7){ var next_date = moment(current_event.moment.format('YYYY-MM-DD')); next_date.isoWeekday(next_date.isoWeekday() + days); var new_event = { date: next_date.format('YYYY-MM-DD'), auto_generated: true, moment: next_date }; generated_events.push(new_event); } } break; case "month_by_day": // Event will repeat every month on the same day and week. // This works until your reach a new year... have to figure that out. for (var i=0; i<user_created_events.length; i++){ var current_event = user_created_events[i]; var next_date = moment(current_event.moment.format('YYYY-MM-DD')); week_of_month = Math.ceil(next_date.date() / 7); while (next_date.diff(current_event.moment, 'days') <= max_days){ next_date.month(next_date.month() + 1); next_date.date(1); var match_found = false; while (!match_found){ next_date.date(next_date.date() + 1); if (next_date.day() == current_event.moment.day() && Math.ceil(next_date.date() / 7) == week_of_month){ match_found = true; } } var new_event = { date: next_date.format('YYYY-MM-DD'), auto_generated: true, moment: next_date }; generated_events.push(new_event); } } break; case "month_by_date": // Event will repeat every month on the same date. for (var i=0; i<user_created_events.length; i++){ var current_event = user_created_events[i]; var next_date = moment(current_event.moment.format('YYYY-MM-DD')); while (next_date.diff(current_event.moment, 'days') <= max_days){ next_date.month(next_date.month() + 1); next_date.date(current_event.moment.date()); var new_event = { date: next_date.format('YYYY-MM-DD'), auto_generated: true, moment: next_date }; if (current_event.moment.date() == next_date.date()){ generated_events.push(new_event); } else { next_date.month(next_date.month() - 1); } } } break; default: // $('#repeat_duration_inputs').show(); } // merge event arrays and push all events to calendar display current_events = $.merge( $.merge( [], user_created_events ), generated_events ); events_cal.setEvents(current_events); } $('#secondform').submit(function(e){ e.preventDefault(); current_events = $.merge( $.merge( [], user_created_events ), generated_events ); if (current_events.length < 1){ alert('Please select a date for your event from the calendar.'); return } $('#submit_button').blur().addClass('in-progress'); var formdata = $(this).serializeArray(); formdata.push({ name: "event_dates", value: JSON.stringify(current_events) }); $.ajax({ dataType: "json", url: '/events/create', data: formdata, type: 'POST', success: function(xhr, status){ if (xhr == 'success'){ // temporary success message, to be replaced with a nice UI update in the future alert('Thanks for submitting an event for the Bernie Sanders campaign! You should receive a confirmation email with a link to manage your event in a few minutes.'); window.location.reload(); } else { alert('There was an error processing your submission. Please try again later or contact help@berniesanders.com.'); $('#submit_button').removeClass('in-progress'); } }, error: function(i){ console.log(i); alert('There was an error processing your submission. Please try again later or contact help@berniesanders.com.'); $('#submit_button').removeClass('in-progress'); } }); }); }); </script> <script> // This example displays an address form, using the autocomplete feature // of the Google Places API to help users fill in the information. var placeSearch, autocomplete; var componentForm = { venue_addr1: 'venue_addr1', venue_addr2: 'venue_addr2', venue_city: 'venue_city', venue_state_cd: 'venue_state_cd', venue_country: 'venue_country', venue_zip: 'venue_zip' }; var componentForm = { street_number: 'short_name', route: 'long_name', locality: 'long_name', administrative_area_level_1: 'short_name', country: 'short_name', postal_code: 'short_name' }; window.initAutocomplete = function() { // Create the autocomplete object, restricting the search to geographical // location types. autocomplete = new google.maps.places.Autocomplete( /** @type {!HTMLInputElement} */(document.getElementById('street_number')) ); // When the user selects an address from the dropdown, populate the address // fields in the form. autocomplete.addListener('place_changed', fillInAddress); } // [START region_fillform] function fillInAddress() { // Get the place details from the autocomplete object. var place = autocomplete.getPlace(); for (var component in componentForm) { document.getElementById(component).value = ''; document.getElementById(component).disabled = false; } // Get each component of the address from the place details // and fill the corresponding field on the form. for (var i = 0; i < place.address_components.length; i++) { var addressType = place.address_components[i].types[0]; if (componentForm[addressType]) { var val = place.address_components[i][componentForm[addressType]]; document.getElementById(addressType).value = val; } } document.getElementById('venue_name').placeholder = place.name; document.getElementById('street_number').value += " " + document.getElementById('route').value; document.getElementById('route').value = ""; } // [END region_fillform] // [START region_geolocation] // Bias the autocomplete object to the user's geographical location, // as supplied by the browser's 'navigator.geolocation' object. function geolocate() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(function(position) { var geolocation = { lat: position.coords.latitude, lng: position.coords.longitude }; var circle = new google.maps.Circle({ center: geolocation, radius: position.coords.accuracy }); autocomplete.setBounds(circle.getBounds()); }); } } // [END region_geolocation] </script> <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAzu1FR7mpcDYkQdHctmAe2DZSy05XmYcU&signed_in=true&libraries=places&callback=initAutocomplete" async defer></script> </div></div> </body> </html>
lms/templates/learning_analytics/select_range_problems.html
analyseuc3m/ANALYSE-v1
<%! from django.utils.translation import ugettext as _ %> <%page args="select_id, problem_names,problem_ids"/> % if video_names is not None: <form class="inputtype option-input "> <select name = "problemselect[]" id="${select_id}" multiple="multiple" size="8" style='height: 60%;'> % for problem_name, problem_id in zip(problem_names, problem_ids): <option${_(" value=\"{prob_id}\">{prob}").format(prob=problem_name, prob_id=problem_id)}</option> % endfor </select> </form> <div> <button onclick="rangeproblems()">Draw again</button> <button onclick="reset()">Reset</button> </div> % else: <p> This course contains no videos. </p> % endif <p>Hold down the Ctrl (windows) / Command (Mac) button to select multiple videos.</p> <script> function getSelectedOptions(sel) { var opt; var opts = new Array (); var option; // options in select list for (var i=0, len=sel.options.length; i<len; i++) { opt = sel.options[i].label; option=sel.options[i]; // check if selected if ( option.selected ) { // add to array of option elements opts.push(opt); } } // return array containing selected option elements return opts; } function rangeproblems(){ document.getElementById('${select_id}').multiple=true;//set up of multiple select var selectOptions = document.getElementById('${select_id}');//get all videos labels console.log(selectOptions); var opts=getSelectedOptions(selectOptions);// get only the select videos //read of the localStorage var json1 = JSON.parse(localStorage['dateJSON1']); json1[0][2]={type: 'string', role: 'tooltip'}; var vectorValues = []; var sumvalues =0; for (var i=1;i<json1.length;i++){ vectorValues[i-1]=json1[i][1]; sumvalues=sumvalues+json1[i][1]; } for (var j=1;j<json1.length;j++){ json1[j][1]=(json1[j][1]/sumvalues)*100; json1[j][2]= vectorValues[j-1] + ' min' + '\n' + (json1[j][1].toFixed(2)) +' %'; } var problem_names_sorted=${problem_names_sorted}; var json = []; var cont=1; json [0] = json1[0]; for (var j=0; j<problem_names_sorted.length; j++) { for (var i=1;i<json1.length; i++) { var n = (json1[i][0]).localeCompare(problem_names_sorted[j]); if (n==0){ //Assign the value of the video selected json [cont] = json1[i]; cont= 1 + cont; } } } var chart_number = 7; localStorage.setItem('chart_number',JSON.stringify(chart_number)); var limitproblems=8; // limit of videos to select // if you select a range of videos valid if (opts.length<=limitproblems){ var jsonN = new Array (); var cont=1; // You get the header of graphic jsonN [0] = json[0] for (var i=1, len=json.length; i<len; i++) { for (var j=0, lon=opts.length; j<lon; j++) { //You compare the list of videos with the selected //alert(json[i][0]); var n = (json[i][0]).localeCompare(opts[j]); if (n==0){ //Assign the value of the video selected jsonN [cont] = json[i]; cont= 1 + cont; } } } console.log('jsonN'); console.log(jsonN); reDrawChart(chart_number, jsonN); }else{ alert("The maximum selection of problems is eight"); } } function reset(){ chart_number=JSON.parse(localStorage['chart_number']); if (chart_number==7){ drawChart3(${problem_distrib_json}); }else if(chart_number==1){ drawChart1(${video_prog_json}); }else if(chart_number==8){ drawChart2(${video_distrib_json}); }else if(chart_number==5){ drawChart5(${vid_and_prob_daily_time}); } sessionStorage.removeItem('chart_number'); localStorage.removeItem('chart_number'); } </script>
www/phpsysinfo/templates/cream.css
southskies/osdial
/* $Id */ * { margin: 0; padding: 0; } html { background: url("cream/bg.gif") repeat-x #F8F2E3; color: #444B54; font-size: 100%; height: 100%; } body { font-family: Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif; font-size: .75em; position: relative; margin: 0 auto; min-height: 100%; padding: 20px 20px 0 20px; overflow: auto; width: 940px; _width: 945px; /* ie6 */ } p { padding: 4px 10px 2px 10px; line-height: 1.6; text-align: left; vertical-align: top; } h1 { color: #394047; font-size: 150%; font-weight: normal; line-height: 1.5em; margin: 0 10px; _margin: 0 15px 0 10px; /* ie6 */ padding: 10px 10px; text-align: center; } h2 { background-color: #444B54; color: #fff; font-size: 130%; font-weight: bold; line-height: 1.5em; padding: 3px 10px; text-transform: uppercase; } table { width: 100%; background-color: #fff; } .plugin { float: left; margin: 10px 0 0 10px; _margin: 10px 5px 0 5px; /* ie6 */ padding: 1px; background: #fff; } th, td, h3 { font-size: 100%; padding: 4px 10px 2px 10px; text-align: left; vertical-align: top; } a { text-decoration: none; color: #c03000; } a:hover { text-decoration: underline; } #select { text-align: right; } #select select { width: 100px; } #vitals, #network, #memory, #filesystem, #hardware, #temp, #voltage, #fan, #ups { background-color: #fff; float: left; margin: 10px 0 0 10px; _margin: 10px 5px 0 5px; /* ie6 */ padding: 1px; width: 451px; } #pciTable, #ideTable, #scsiTable, #usbTable { padding: 0px 30px; } #memory, #filesystem { width: 915px; } #filesystemTable thead tr .header { background-image: url("../gfx/bg.gif"); background-position: right center; background-repeat: no-repeat; cursor: pointer; } #filesystemTable thead tr .headerSortUp { background-image: url("../gfx/asc.gif"); color: #c03000; } #filesystemTable thead tr .headerSortDown { background-image: url("../gfx/desc.gif"); color: #c03000; } #footer { clear: both; color: #5C5C5C; margin: 12px; padding: 13px 25px; line-height: 18px; font-size: 80%; text-align: center; } .even { background-color: #FBFBF9; } .bar { background-color: #58626D; } .barwarn { background-color: #9B2F65; } .right { padding-right: 20px; text-align: right; }
web/fb-share/programa/ca/109.html
joker-x/programa-podemos-2015
<!DOCTYPE html> <html lang="ca"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>PODEMOS. Compromís de garantir la sostenibilitat del sistema de pensions amb la introducció progressiva del finançament per via impositiva</title> <meta property="og:title" content="PODEMOS: Compromís de garantir la sostenibilitat del sistema de pensions amb la introducció progressiva del finançament per via impositiva" /> <meta property="og:description" content="Garantirem la sostenibilitat del sistema de pensions amb la introducció progressiva del finançament per via impositiva tant per a les prensions de mort i supervivència (viudetat, orfandat i favor de familiars), que es paguen actualment amb càrrec a la Seguretat Social, com per a l’increment de la despesa derivada de l’augment en l’esperança de vida de les noves cohorts de pensionistes que s’incorporen al sistema en el cas de les pensions contributives." /> <meta property="og:image" content="http://lasonrisadeunpais.es/wp-content/plugins/programa/data/meta-programa.png" /> </head> <body> <script type="text/javascript"> var url_base = '/ca/programa/?medida=109'; window.location = url_base; </script> <h1>Compromís de garantir la sostenibilitat del sistema de pensions amb la introducció progressiva del finançament per via impositiva</h1> <div> <p>Garantirem la sostenibilitat del sistema de pensions amb la introducció progressiva del finançament per via impositiva tant per a les prensions de mort i supervivència (viudetat, orfandat i favor de familiars), que es paguen actualment amb càrrec a la Seguretat Social, com per a l’increment de la despesa derivada de l’augment en l’esperança de vida de les noves cohorts de pensionistes que s’incorporen al sistema en el cas de les pensions contributives.</p> </div> </body> </html>
petateca/templates/tracking/show_tracking.html
alabs/petateca
<div id="episode_list" class="episodes_hidden"> <ul> {% if episodes %} {% for episode in episodes %} {% include "serie/ajax/episode.html" %} {% endfor %} {% else %} <li><a href="/series/">Parece que te has visto todos los episodios de esta serie -- es hora de buscar otra :P</a> {% endif %} </ul> </div>
incidentstransports/templates/base.html
ogirardot/IncidentsTransports
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>[Paris] IncidentsTransports</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="description" content="Information trafic et incidents RATP, SNCF, TER, TGV, Metro, RER, Tramway par les usagers en temps réel "/> <meta name="keywords" content="ratp, metro, rer, tramway, transports, paris, france, trafic, incidents"/> <meta name="robots" content="index,follow"/> <link rel="stylesheet" type="text/css" href="{{ STATIC_URL|default:"/static/" }}css/styles.css" /> <link rel="stylesheet" type="text/css" href="{{ STATIC_URL|default:"/static/" }}css/blue-green.css" media="screen" /> {% block extra_css %}{% endblock %} {% block extra_js %}{% endblock %} <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-7575040-4']); _gaq.push(['_setDomainName', '.incidents-transports.com']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body> <div id="header"> <div id="menu_nav" class="page"> <a href="/home" class="logo">IncidentsTransports</a> <ul> <li><a href="{% url homepage %}">Accueil</a></li> <li><a href="http://blog.incidents-transports.com">Blog</a></li> <li><a href="{% url frontend.views.get_incidents 'hour' %}">Incidents</a></li> <li><a href="{% url add_incident %}">Ajouter un Incident</a></li> <li><a href="{% url contribute %}">Contribuer</a></li> <li><a href="{% url about %}">A propos</a></li> </ul> <div class="clear"></div> </div> </div> {% block content %} {% endblock %} <div id="footer" class="page"> <p>Copyright 2010-2011 Incidents-Transports.com.</p> <ul> <li><a href="{% url homepage %}">Accueil</a></li> <li><a href="http://blog.incidents-transports.com">Blog</a></li> <li><a href="{% url frontend.views.get_incidents 'hour' %}">Incidents</a></li> <li><a href="{% url dev %}">Dev</a></li> <li><a href="{% url contribute %}">Contribuer</a></li> <li><a href="{% url about %}">A propos</a></li> </ul> <div class="clear"></div> </div> </body> </html>
docs/api/org/taranos/mc/trunk/intraprocess/SignalTapPlant.html
taranos/taranoscsf-core
<!DOCTYPE html > <html> <head> <title>SignalTapPlant - org.taranos.mc.trunk.intraprocess.SignalTapPlant</title> <meta name="description" content="SignalTapPlant - org.taranos.mc.trunk.intraprocess.SignalTapPlant" /> <meta name="keywords" content="SignalTapPlant org.taranos.mc.trunk.intraprocess.SignalTapPlant" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <link href="../../../../../lib/template.css" media="screen" type="text/css" rel="stylesheet" /> <link href="../../../../../lib/diagrams.css" media="screen" type="text/css" rel="stylesheet" id="diagrams-css" /> <script type="text/javascript" src="../../../../../lib/jquery.js" id="jquery-js"></script> <script type="text/javascript" src="../../../../../lib/jquery-ui.js"></script> <script type="text/javascript" src="../../../../../lib/template.js"></script> <script type="text/javascript" src="../../../../../lib/tools.tooltip.js"></script> <script type="text/javascript"> if(top === self) { var url = '../../../../../index.html'; var hash = 'org.taranos.mc.trunk.intraprocess.SignalTapPlant'; var anchor = window.location.hash; var anchor_opt = ''; if (anchor.length >= 1) anchor_opt = '@' + anchor.substring(1); window.location.href = url + '#' + hash + anchor_opt; } </script> </head> <body class="type"> <div id="definition"> <img alt="Class" src="../../../../../lib/class_big.png" /> <p id="owner"><a href="../../../../package.html" class="extype" name="org">org</a>.<a href="../../../package.html" class="extype" name="org.taranos">taranos</a>.<a href="../../package.html" class="extype" name="org.taranos.mc">mc</a>.<a href="../package.html" class="extype" name="org.taranos.mc.trunk">trunk</a>.<a href="package.html" class="extype" name="org.taranos.mc.trunk.intraprocess">intraprocess</a></p> <h1>SignalTapPlant</h1><h3><span class="morelinks"><div>Related Doc: <a href="package.html" class="extype" name="org.taranos.mc.trunk.intraprocess">package intraprocess</a> </div></span></h3><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> </div> <h4 id="signature" class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">class</span> </span> <span class="symbol"> <span class="name">SignalTapPlant</span><span class="result"> extends <a href="TrunkElementPlant.html" class="extype" name="org.taranos.mc.trunk.intraprocess.TrunkElementPlant">TrunkElementPlant</a></span> </span> </h4> <div id="comment" class="fullcommenttop"><div class="toggleContainer block"> <span class="toggle">Linear Supertypes</span> <div class="superTypes hiddenContent"><a href="TrunkElementPlant.html" class="extype" name="org.taranos.mc.trunk.intraprocess.TrunkElementPlant">TrunkElementPlant</a>, <a href="TrunkModel$$TrunkModelReporter.html" class="extype" name="org.taranos.mc.trunk.intraprocess.TrunkModel.TrunkModelReporter">TrunkModelReporter</a>, <a href="../../Common$$Reporter.html" class="extype" name="org.taranos.mc.Common.Reporter">Reporter</a>, <a href="../../Common$$Reportable.html" class="extype" name="org.taranos.mc.Common.Reportable">Reportable</a>, <span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div> </div></div> <div id="mbrsel"> <div id="textfilter"><span class="pre"></span><span class="input"><input id="mbrsel-input" type="text" accesskey="/" /></span><span class="post"></span></div> <div id="order"> <span class="filtertype">Ordering</span> <ol> <li class="alpha in"><span>Alphabetic</span></li> <li class="inherit out"><span>By Inheritance</span></li> </ol> </div> <div id="ancestors"> <span class="filtertype">Inherited<br /> </span> <ol id="linearization"> <li class="in" name="org.taranos.mc.trunk.intraprocess.SignalTapPlant"><span>SignalTapPlant</span></li><li class="in" name="org.taranos.mc.trunk.intraprocess.TrunkElementPlant"><span>TrunkElementPlant</span></li><li class="in" name="org.taranos.mc.trunk.intraprocess.TrunkModel.TrunkModelReporter"><span>TrunkModelReporter</span></li><li class="in" name="org.taranos.mc.Common.Reporter"><span>Reporter</span></li><li class="in" name="org.taranos.mc.Common.Reportable"><span>Reportable</span></li><li class="in" name="scala.AnyRef"><span>AnyRef</span></li><li class="in" name="scala.Any"><span>Any</span></li> </ol> </div><div id="ancestors"> <span class="filtertype"></span> <ol> <li class="hideall out"><span>Hide All</span></li> <li class="showall in"><span>Show All</span></li> </ol> </div> <div id="visbl"> <span class="filtertype">Visibility</span> <ol><li class="public in"><span>Public</span></li><li class="all out"><span>All</span></li></ol> </div> </div> <div id="template"> <div id="allMembers"> <div id="constructors" class="members"> <h3>Instance Constructors</h3> <ol><li name="org.taranos.mc.trunk.intraprocess.SignalTapPlant#&lt;init&gt;" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="&lt;init&gt;()(implicit_trunkModel:org.taranos.mc.trunk.intraprocess.TrunkModel):org.taranos.mc.trunk.intraprocess.SignalTapPlant"></a> <a id="&lt;init&gt;:SignalTapPlant"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">new</span> </span> <span class="symbol"> <span class="name">SignalTapPlant</span><span class="params">()</span><span class="params">(<span class="implicit">implicit </span><span name="_trunkModel">_trunkModel: <a href="TrunkModel.html" class="extype" name="org.taranos.mc.trunk.intraprocess.TrunkModel">TrunkModel</a></span>)</span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@&lt;init&gt;()(implicit_trunkModel:org.taranos.mc.trunk.intraprocess.TrunkModel):org.taranos.mc.trunk.intraprocess.SignalTapPlant" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> </li></ol> </div> <div id="values" class="values members"> <h3>Value Members</h3> <ol><li name="scala.AnyRef#!=" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="!=(x$1:Any):Boolean"></a> <a id="!=(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $bang$eq" class="name">!=</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@!=(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef###" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="##():Int"></a> <a id="##():Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $hash$hash" class="name">##</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@##():Int" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#==" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="==(x$1:Any):Boolean"></a> <a id="==(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $eq$eq" class="name">==</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@==(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="org.taranos.mc.trunk.intraprocess.SignalTapPlant#CreateSignalTap" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="CreateSignalTap(trunk:org.taranos.mc.trunk.intraprocess.Trunk,constructor:org.taranos.mc.trunk.intraprocess.SignalTap.Constructor):org.taranos.mc.trunk.intraprocess.SignalTap"></a> <a id="CreateSignalTap(Trunk,Constructor):SignalTap"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">CreateSignalTap</span><span class="params">(<span name="trunk">trunk: <a href="Trunk.html" class="extype" name="org.taranos.mc.trunk.intraprocess.Trunk">Trunk</a></span>, <span name="constructor">constructor: <a href="SignalTap$$Constructor.html" class="extype" name="org.taranos.mc.trunk.intraprocess.SignalTap.Constructor">Constructor</a></span>)</span><span class="result">: <a href="SignalTap.html" class="extype" name="org.taranos.mc.trunk.intraprocess.SignalTap">SignalTap</a></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@CreateSignalTap(trunk:org.taranos.mc.trunk.intraprocess.Trunk,constructor:org.taranos.mc.trunk.intraprocess.SignalTap.Constructor):org.taranos.mc.trunk.intraprocess.SignalTap" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> </li><li name="org.taranos.mc.trunk.intraprocess.SignalTapPlant#DestroyAllSignalTaps" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="DestroyAllSignalTaps(trunk:org.taranos.mc.trunk.intraprocess.Trunk):Unit"></a> <a id="DestroyAllSignalTaps(Trunk):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">DestroyAllSignalTaps</span><span class="params">(<span name="trunk">trunk: <a href="Trunk.html" class="extype" name="org.taranos.mc.trunk.intraprocess.Trunk">Trunk</a></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@DestroyAllSignalTaps(trunk:org.taranos.mc.trunk.intraprocess.Trunk):Unit" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> </li><li name="org.taranos.mc.trunk.intraprocess.SignalTapPlant#DestroySignalTap" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="DestroySignalTap(trunk:org.taranos.mc.trunk.intraprocess.Trunk,destructor:org.taranos.mc.trunk.intraprocess.SignalTap.Destructor):org.taranos.mc.trunk.intraprocess.SignalTap.Key"></a> <a id="DestroySignalTap(Trunk,Destructor):Key"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">DestroySignalTap</span><span class="params">(<span name="trunk">trunk: <a href="Trunk.html" class="extype" name="org.taranos.mc.trunk.intraprocess.Trunk">Trunk</a></span>, <span name="destructor">destructor: <a href="SignalTap$$Destructor.html" class="extype" name="org.taranos.mc.trunk.intraprocess.SignalTap.Destructor">Destructor</a></span>)</span><span class="result">: <a href="SignalTap$$Key.html" class="extype" name="org.taranos.mc.trunk.intraprocess.SignalTap.Key">Key</a></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@DestroySignalTap(trunk:org.taranos.mc.trunk.intraprocess.Trunk,destructor:org.taranos.mc.trunk.intraprocess.SignalTap.Destructor):org.taranos.mc.trunk.intraprocess.SignalTap.Key" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> </li><li name="org.taranos.mc.trunk.intraprocess.SignalTapPlant#GetElementCount" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="GetElementCount(trunkKey:org.taranos.mc.trunk.intraprocess.Trunk.Key):Int"></a> <a id="GetElementCount(Key):Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">GetElementCount</span><span class="params">(<span name="trunkKey">trunkKey: <a href="Trunk$$Key.html" class="extype" name="org.taranos.mc.trunk.intraprocess.Trunk.Key">Key</a></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@GetElementCount(trunkKey:org.taranos.mc.trunk.intraprocess.Trunk.Key):Int" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="" class="extype" name="org.taranos.mc.trunk.intraprocess.SignalTapPlant">SignalTapPlant</a> → <a href="TrunkElementPlant.html" class="extype" name="org.taranos.mc.trunk.intraprocess.TrunkElementPlant">TrunkElementPlant</a></dd></dl></div> </li><li name="org.taranos.mc.trunk.intraprocess.SignalTapPlant#GetSignalTapKeys" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="GetSignalTapKeys(trunk:org.taranos.mc.trunk.intraprocess.Trunk):Vector[org.taranos.mc.trunk.intraprocess.SignalTap.Key]"></a> <a id="GetSignalTapKeys(Trunk):Vector[Key]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">GetSignalTapKeys</span><span class="params">(<span name="trunk">trunk: <a href="Trunk.html" class="extype" name="org.taranos.mc.trunk.intraprocess.Trunk">Trunk</a></span>)</span><span class="result">: <span class="extype" name="scala.Vector">Vector</span>[<a href="SignalTap$$Key.html" class="extype" name="org.taranos.mc.trunk.intraprocess.SignalTap.Key">Key</a>]</span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@GetSignalTapKeys(trunk:org.taranos.mc.trunk.intraprocess.Trunk):Vector[org.taranos.mc.trunk.intraprocess.SignalTap.Key]" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> </li><li name="org.taranos.mc.trunk.intraprocess.SignalTapPlant#GetSignalTapOpt" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="GetSignalTapOpt(trunk:org.taranos.mc.trunk.intraprocess.Trunk,key:org.taranos.mc.trunk.intraprocess.SignalTap.Key,isRequired:Boolean):Option[org.taranos.mc.trunk.intraprocess.SignalTap]"></a> <a id="GetSignalTapOpt(Trunk,Key,Boolean):Option[SignalTap]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">GetSignalTapOpt</span><span class="params">(<span name="trunk">trunk: <a href="Trunk.html" class="extype" name="org.taranos.mc.trunk.intraprocess.Trunk">Trunk</a></span>, <span name="key">key: <a href="SignalTap$$Key.html" class="extype" name="org.taranos.mc.trunk.intraprocess.SignalTap.Key">Key</a></span>, <span name="isRequired">isRequired: <span class="extype" name="scala.Boolean">Boolean</span> = <span class="symbol">true</span></span>)</span><span class="result">: <span class="extype" name="scala.Option">Option</span>[<a href="SignalTap.html" class="extype" name="org.taranos.mc.trunk.intraprocess.SignalTap">SignalTap</a>]</span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@GetSignalTapOpt(trunk:org.taranos.mc.trunk.intraprocess.Trunk,key:org.taranos.mc.trunk.intraprocess.SignalTap.Key,isRequired:Boolean):Option[org.taranos.mc.trunk.intraprocess.SignalTap]" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> </li><li name="org.taranos.mc.trunk.intraprocess.SignalTapPlant#GetSignalTaps" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="GetSignalTaps(trunk:org.taranos.mc.trunk.intraprocess.Trunk):Vector[org.taranos.mc.trunk.intraprocess.SignalTap]"></a> <a id="GetSignalTaps(Trunk):Vector[SignalTap]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">GetSignalTaps</span><span class="params">(<span name="trunk">trunk: <a href="Trunk.html" class="extype" name="org.taranos.mc.trunk.intraprocess.Trunk">Trunk</a></span>)</span><span class="result">: <span class="extype" name="scala.Vector">Vector</span>[<a href="SignalTap.html" class="extype" name="org.taranos.mc.trunk.intraprocess.SignalTap">SignalTap</a>]</span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@GetSignalTaps(trunk:org.taranos.mc.trunk.intraprocess.Trunk):Vector[org.taranos.mc.trunk.intraprocess.SignalTap]" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> </li><li name="org.taranos.mc.trunk.intraprocess.TrunkElementPlant#Report" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="Report(trunkKey:org.taranos.mc.trunk.intraprocess.Trunk.Key,sectionsOpt:Option[String]):play.api.libs.json.JsObject"></a> <a id="Report(Key,Option[String]):JsObject"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">Report</span><span class="params">(<span name="trunkKey">trunkKey: <a href="Trunk$$Key.html" class="extype" name="org.taranos.mc.trunk.intraprocess.Trunk.Key">Key</a></span>, <span name="sectionsOpt">sectionsOpt: <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="scala.Predef.String">String</span>] = <span class="symbol">None</span></span>)</span><span class="result">: <span class="extype" name="play.api.libs.json.JsObject">JsObject</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@Report(trunkKey:org.taranos.mc.trunk.intraprocess.Trunk.Key,sectionsOpt:Option[String]):play.api.libs.json.JsObject" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="TrunkElementPlant.html" class="extype" name="org.taranos.mc.trunk.intraprocess.TrunkElementPlant">TrunkElementPlant</a> → <a href="TrunkModel$$TrunkModelReporter.html" class="extype" name="org.taranos.mc.trunk.intraprocess.TrunkModel.TrunkModelReporter">TrunkModelReporter</a></dd></dl></div> </li><li name="org.taranos.mc.trunk.intraprocess.TrunkModel.TrunkModelReporter#Report" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="Report(sectionsOpt:Option[String]):play.api.libs.json.JsObject"></a> <a id="Report(Option[String]):JsObject"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">Report</span><span class="params">(<span name="sectionsOpt">sectionsOpt: <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="scala.Predef.String">String</span>]</span>)</span><span class="result">: <span class="extype" name="play.api.libs.json.JsObject">JsObject</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@Report(sectionsOpt:Option[String]):play.api.libs.json.JsObject" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="TrunkModel$$TrunkModelReporter.html" class="extype" name="org.taranos.mc.trunk.intraprocess.TrunkModel.TrunkModelReporter">TrunkModelReporter</a> → <a href="../../Common$$Reporter.html" class="extype" name="org.taranos.mc.Common.Reporter">Reporter</a></dd></dl></div> </li><li name="org.taranos.mc.Common.Reportable#Report" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="Report(sections:org.taranos.mc.Common.ReportSectionsParser):play.api.libs.json.JsObject"></a> <a id="Report(ReportSectionsParser):JsObject"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">Report</span><span class="params">(<span name="sections">sections: <a href="../../Common$$ReportSectionsParser.html" class="extype" name="org.taranos.mc.Common.ReportSectionsParser">ReportSectionsParser</a></span>)</span><span class="result">: <span class="extype" name="play.api.libs.json.JsObject">JsObject</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@Report(sections:org.taranos.mc.Common.ReportSectionsParser):play.api.libs.json.JsObject" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../Common$$Reportable.html" class="extype" name="org.taranos.mc.Common.Reportable">Reportable</a></dd></dl></div> </li><li name="org.taranos.mc.trunk.intraprocess.SignalTapPlant#_trunkModel" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="_trunkModel:org.taranos.mc.trunk.intraprocess.TrunkModel"></a> <a id="_trunkModel:TrunkModel"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">implicit </span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">_trunkModel</span><span class="result">: <a href="TrunkModel.html" class="extype" name="org.taranos.mc.trunk.intraprocess.TrunkModel">TrunkModel</a></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@_trunkModel:org.taranos.mc.trunk.intraprocess.TrunkModel" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected </dd><dt>Definition Classes</dt><dd><a href="" class="extype" name="org.taranos.mc.trunk.intraprocess.SignalTapPlant">SignalTapPlant</a> → <a href="TrunkElementPlant.html" class="extype" name="org.taranos.mc.trunk.intraprocess.TrunkElementPlant">TrunkElementPlant</a></dd></dl></div> </li><li name="scala.Any#asInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="asInstanceOf[T0]:T0"></a> <a id="asInstanceOf[T0]:T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">asInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Any.asInstanceOf.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@asInstanceOf[T0]:T0" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#clone" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="clone():Object"></a> <a id="clone():AnyRef"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">clone</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.AnyRef">AnyRef</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@clone():Object" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.CloneNotSupportedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#eq" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="eq(x$1:AnyRef):Boolean"></a> <a id="eq(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">eq</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@eq(x$1:AnyRef):Boolean" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#equals" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="equals(x$1:Any):Boolean"></a> <a id="equals(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">equals</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@equals(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#finalize" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="finalize():Unit"></a> <a id="finalize():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">finalize</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@finalize():Unit" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="symbol">classOf[java.lang.Throwable]</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#getClass" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="getClass():Class[_]"></a> <a id="getClass():Class[_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">getClass</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.Class">Class</span>[_]</span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@getClass():Class[_]" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#hashCode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="hashCode():Int"></a> <a id="hashCode():Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">hashCode</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@hashCode():Int" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.Any#isInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isInstanceOf[T0]:Boolean"></a> <a id="isInstanceOf[T0]:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@isInstanceOf[T0]:Boolean" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#ne" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ne(x$1:AnyRef):Boolean"></a> <a id="ne(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">ne</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@ne(x$1:AnyRef):Boolean" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notify" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notify():Unit"></a> <a id="notify():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notify</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@notify():Unit" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notifyAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notifyAll():Unit"></a> <a id="notifyAll():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notifyAll</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@notifyAll():Unit" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@synchronized[T0](x$1:=&gt;T0):T0" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#toString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toString():String"></a> <a id="toString():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">toString</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@toString():String" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait():Unit"></a> <a id="wait():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@wait():Unit" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long,x$2:Int):Unit"></a> <a id="wait(Long,Int):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>, <span name="arg1">arg1: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@wait(x$1:Long,x$2:Int):Unit" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long):Unit"></a> <a id="wait(Long):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../../index.html#org.taranos.mc.trunk.intraprocess.SignalTapPlant@wait(x$1:Long):Unit" title="Permalink" target="_top"> <img src="../../../../../lib/permalink.png" alt="Permalink" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li></ol> </div> </div> <div id="inheritedMembers"> <div class="parent" name="org.taranos.mc.trunk.intraprocess.TrunkElementPlant"> <h3>Inherited from <a href="TrunkElementPlant.html" class="extype" name="org.taranos.mc.trunk.intraprocess.TrunkElementPlant">TrunkElementPlant</a></h3> </div><div class="parent" name="org.taranos.mc.trunk.intraprocess.TrunkModel.TrunkModelReporter"> <h3>Inherited from <a href="TrunkModel$$TrunkModelReporter.html" class="extype" name="org.taranos.mc.trunk.intraprocess.TrunkModel.TrunkModelReporter">TrunkModelReporter</a></h3> </div><div class="parent" name="org.taranos.mc.Common.Reporter"> <h3>Inherited from <a href="../../Common$$Reporter.html" class="extype" name="org.taranos.mc.Common.Reporter">Reporter</a></h3> </div><div class="parent" name="org.taranos.mc.Common.Reportable"> <h3>Inherited from <a href="../../Common$$Reportable.html" class="extype" name="org.taranos.mc.Common.Reportable">Reportable</a></h3> </div><div class="parent" name="scala.AnyRef"> <h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3> </div><div class="parent" name="scala.Any"> <h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3> </div> </div> <div id="groupedMembers"> <div class="group" name="Ungrouped"> <h3>Ungrouped</h3> </div> </div> </div> <div id="tooltip"></div> <div id="footer"> </div> </body> </html>
cover/skf_api_comment_serializers_py.html
blabla1337/skf-flask
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=emulateIE7" /> <title>Coverage for skf/api/comment/serializers.py: 0%</title> <link rel="stylesheet" href="style.css" type="text/css"> <script type="text/javascript" src="jquery.min.js"></script> <script type="text/javascript" src="jquery.hotkeys.js"></script> <script type="text/javascript" src="jquery.isonscreen.js"></script> <script type="text/javascript" src="coverage_html.js"></script> <script type="text/javascript"> jQuery(document).ready(coverage.pyfile_ready); </script> </head> <body class="pyfile"> <div id="header"> <div class="content"> <h1>Coverage for <b>skf/api/comment/serializers.py</b> : <span class="pc_cov">0%</span> </h1> <img id="keyboard_icon" src="keybd_closed.png" alt="Show keyboard shortcuts" /> <h2 class="stats"> 7 statements &nbsp; <span class="run hide_run shortkey_r button_toggle_run">0 run</span> <span class="mis shortkey_m button_toggle_mis">7 missing</span> <span class="exc shortkey_x button_toggle_exc">0 excluded</span> </h2> </div> </div> <div class="help_panel"> <img id="panel_icon" src="keybd_open.png" alt="Hide keyboard shortcuts" /> <p class="legend">Hot-keys on this page</p> <div> <p class="keyhelp"> <span class="key">r</span> <span class="key">m</span> <span class="key">x</span> <span class="key">p</span> &nbsp; toggle line displays </p> <p class="keyhelp"> <span class="key">j</span> <span class="key">k</span> &nbsp; next/prev highlighted chunk </p> <p class="keyhelp"> <span class="key">0</span> &nbsp; (zero) top of page </p> <p class="keyhelp"> <span class="key">1</span> &nbsp; (one) first highlighted chunk </p> </div> </div> <div id="source"> <table> <tr> <td class="linenos"> <p id="n1" class="stm mis"><a href="#n1">1</a></p> <p id="n2" class="stm mis"><a href="#n2">2</a></p> <p id="n3" class="pln"><a href="#n3">3</a></p> <p id="n4" class="pln"><a href="#n4">4</a></p> <p id="n5" class="stm mis"><a href="#n5">5</a></p> <p id="n6" class="pln"><a href="#n6">6</a></p> <p id="n7" class="pln"><a href="#n7">7</a></p> <p id="n8" class="pln"><a href="#n8">8</a></p> <p id="n9" class="pln"><a href="#n9">9</a></p> <p id="n10" class="pln"><a href="#n10">10</a></p> <p id="n11" class="pln"><a href="#n11">11</a></p> <p id="n12" class="pln"><a href="#n12">12</a></p> <p id="n13" class="pln"><a href="#n13">13</a></p> <p id="n14" class="pln"><a href="#n14">14</a></p> <p id="n15" class="stm mis"><a href="#n15">15</a></p> <p id="n16" class="pln"><a href="#n16">16</a></p> <p id="n17" class="pln"><a href="#n17">17</a></p> <p id="n18" class="pln"><a href="#n18">18</a></p> <p id="n19" class="pln"><a href="#n19">19</a></p> <p id="n20" class="stm mis"><a href="#n20">20</a></p> <p id="n21" class="pln"><a href="#n21">21</a></p> <p id="n22" class="pln"><a href="#n22">22</a></p> <p id="n23" class="pln"><a href="#n23">23</a></p> <p id="n24" class="pln"><a href="#n24">24</a></p> <p id="n25" class="pln"><a href="#n25">25</a></p> <p id="n26" class="pln"><a href="#n26">26</a></p> <p id="n27" class="stm mis"><a href="#n27">27</a></p> <p id="n28" class="pln"><a href="#n28">28</a></p> <p id="n29" class="pln"><a href="#n29">29</a></p> <p id="n30" class="pln"><a href="#n30">30</a></p> <p id="n31" class="stm mis"><a href="#n31">31</a></p> <p id="n32" class="pln"><a href="#n32">32</a></p> <p id="n33" class="pln"><a href="#n33">33</a></p> </td> <td class="text"> <p id="t1" class="stm mis"><span class="key">from</span> <span class="nam">flask_restplus</span> <span class="key">import</span> <span class="nam">fields</span><span class="strut">&nbsp;</span></p> <p id="t2" class="stm mis"><span class="key">from</span> <span class="nam">skf</span><span class="op">.</span><span class="nam">api</span><span class="op">.</span><span class="nam">restplus</span> <span class="key">import</span> <span class="nam">api</span><span class="strut">&nbsp;</span></p> <p id="t3" class="pln"><span class="strut">&nbsp;</span></p> <p id="t4" class="pln"><span class="strut">&nbsp;</span></p> <p id="t5" class="stm mis"><span class="nam">comment</span> <span class="op">=</span> <span class="nam">api</span><span class="op">.</span><span class="nam">model</span><span class="op">(</span><span class="str">'comment'</span><span class="op">,</span> <span class="op">{</span><span class="strut">&nbsp;</span></p> <p id="t6" class="pln"> <span class="str">'sprintID'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">Integer</span><span class="op">(</span><span class="nam">readOnly</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'The unique identifier of a sprint item'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t7" class="pln"> <span class="str">'checklistID'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">String</span><span class="op">(</span><span class="nam">readOnly</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'The unique identifier of a checklist item'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t8" class="pln"> <span class="str">'userID'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">Integer</span><span class="op">(</span><span class="nam">readOnly</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'The unique identifier of a user'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t9" class="pln"> <span class="str">'username'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">String</span><span class="op">(</span><span class="nam">attribute</span><span class="op">=</span><span class="str">'user_items.username'</span><span class="op">,</span> <span class="nam">required</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'Username of comment'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t10" class="pln"> <span class="str">'status'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">Integer</span><span class="op">(</span><span class="nam">readOnly</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'The status of a checklist item: 1, 2, 3'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t11" class="pln"> <span class="str">'comment'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">String</span><span class="op">(</span><span class="nam">required</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'Comment content'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t12" class="pln"> <span class="str">'date'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">String</span><span class="op">(</span><span class="nam">required</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'date of creation comment'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t13" class="pln"><span class="op">}</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t14" class="pln"><span class="strut">&nbsp;</span></p> <p id="t15" class="stm mis"><span class="nam">comment_get</span> <span class="op">=</span> <span class="nam">api</span><span class="op">.</span><span class="nam">model</span><span class="op">(</span><span class="str">'comment_get'</span><span class="op">,</span> <span class="op">{</span><span class="strut">&nbsp;</span></p> <p id="t16" class="pln"> <span class="str">'sprintID'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">Integer</span><span class="op">(</span><span class="nam">readOnly</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'The unique identifier of a sprint item'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t17" class="pln"> <span class="str">'checklistID'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">String</span><span class="op">(</span><span class="nam">readOnly</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'The unique identifier of a checklist item'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t18" class="pln"><span class="op">}</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t19" class="pln"><span class="strut">&nbsp;</span></p> <p id="t20" class="stm mis"><span class="nam">comment_new</span> <span class="op">=</span> <span class="nam">api</span><span class="op">.</span><span class="nam">model</span><span class="op">(</span><span class="str">'comment_new'</span><span class="op">,</span> <span class="op">{</span><span class="strut">&nbsp;</span></p> <p id="t21" class="pln"> <span class="str">'sprintID'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">Integer</span><span class="op">(</span><span class="nam">readOnly</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'The unique identifier of a sprint item'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t22" class="pln"> <span class="str">'checklistID'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">String</span><span class="op">(</span><span class="nam">readOnly</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'The unique identifier of a checklist item'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t23" class="pln"> <span class="str">'status'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">Integer</span><span class="op">(</span><span class="nam">readOnly</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'The status of a checklist item: 1, 2, 3'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t24" class="pln"> <span class="str">'comment'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">String</span><span class="op">(</span><span class="nam">required</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'Comment content'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t25" class="pln"><span class="op">}</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t26" class="pln"><span class="strut">&nbsp;</span></p> <p id="t27" class="stm mis"><span class="nam">comment_items</span> <span class="op">=</span> <span class="nam">api</span><span class="op">.</span><span class="nam">inherit</span><span class="op">(</span><span class="str">'List of comment items'</span><span class="op">,</span> <span class="op">{</span><span class="strut">&nbsp;</span></p> <p id="t28" class="pln"> <span class="str">'items'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">List</span><span class="op">(</span><span class="nam">fields</span><span class="op">.</span><span class="nam">Nested</span><span class="op">(</span><span class="nam">comment</span><span class="op">)</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t29" class="pln"><span class="op">}</span><span class="op">)</span><span class="strut">&nbsp;</span></p> <p id="t30" class="pln"><span class="strut">&nbsp;</span></p> <p id="t31" class="stm mis"><span class="nam">message</span> <span class="op">=</span> <span class="nam">api</span><span class="op">.</span><span class="nam">model</span><span class="op">(</span><span class="str">'Response message'</span><span class="op">,</span> <span class="op">{</span><span class="strut">&nbsp;</span></p> <p id="t32" class="pln"> <span class="str">'message'</span><span class="op">:</span> <span class="nam">fields</span><span class="op">.</span><span class="nam">String</span><span class="op">(</span><span class="nam">required</span><span class="op">=</span><span class="key">True</span><span class="op">,</span> <span class="nam">description</span><span class="op">=</span><span class="str">'Response message'</span><span class="op">)</span><span class="op">,</span><span class="strut">&nbsp;</span></p> <p id="t33" class="pln"><span class="op">}</span><span class="op">)</span><span class="strut">&nbsp;</span></p> </td> </tr> </table> </div> <div id="footer"> <div class="content"> <p> <a class="nav" href="index.html">&#xab; index</a> &nbsp; &nbsp; <a class="nav" href="https://coverage.readthedocs.io">coverage.py v4.5.2</a>, created at 2019-11-08 13:11 </p> </div> </div> </body> </html>
wp-content/themes/founder/rtl.css
hsgr/medialibre
/* Theme Name: Founder Theme URI: https://www.competethemes.com/founder/ Author: Compete Themes Author URI: https://www.competethemes.com/ Description: Founder's minimalist design presents your content in a simple, clean, and professional manner. As a responsive theme, Founder is beautiful on phones, tablets, and laptops, and is optimized to load quickly on each. Built with Google's multilingual font, Noto Sans, it is compatible with hundreds of languages. Lastly, as an accessibility-ready theme, visitors around the world can appreciate your content regardless of disability. Get excited to share your site, and download Founder today. You can view a fully-setup live demo here: https://www.competethemes.com/founder-live-demo/ Version: 1.25 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: gray, silver, white, light, fluid-layout, responsive-layout, one-column, accessibility-ready, custom-menu, featured-images, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready Text Domain: founder Founder WordPress Theme, Copyright 2016 Compete Themes Founder is distributed under the terms of the GNU GPL */ /*===== Variables =====*/ /* Theme Colors */ /* Media Query widths */ /* Social Media Brand Colors */ /*===== Mixins =====*/ /***** Silent Classes *****/ h1, h2, .toggle-navigation, .social-media-icons a, .toggle-sidebar i, .comments-number h3 { font-size: 1.5em; /* 24px / 16px */ line-height: 1.5; /* 36px */ } .wp-caption-text, input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]):not([type="image"]), textarea, input[type="submit"], .tagline, .menu-primary-items a, .menu-unset ul a, .widget, .post-header p, .more-link, .post-comments, .post-tags span, .post-tags li, .further-reading span, .sticky-status span, .archive-header h2, .comment-footer span, .comment-footer a, #cancel-comment-reply-link { font-size: 0.6875em; /* 11px / 16px */ line-height: 1.4545; /* 16px */ } .menu-primary-items a, .menu-unset ul a, .widget-title, .post-header p, .more-link, .post-tags span, .further-reading span, .sticky-status span, .comment-footer span, .comment-footer a { text-transform: uppercase; letter-spacing: 0.07em; } /*===== Basic Styles =====*/ /* apply a natural box layout model to all elements */ *, *:before, *:after { box-sizing: border-box; } body { height: 100%; font-size: 100%; margin: 0; padding: 0; font-family: "Noto Sans", sans-serif; line-height: 1.5; font-weight: 400; color: #666666; background: white; -webkit-font-smoothing: subpixel-antialiased; word-wrap: break-word; -ms-word-wrap: break-word; } .overflow-container { position: relative; overflow: hidden; height: auto; min-height: 100%; } .main { margin: 0 auto; } p { margin: 1.5em 0; } a { text-decoration: none; color: #1A1A1A; border-bottom: solid 1px #1A1A1A; -webkit-transition: color 0.1s ease-in-out, border-color 0.1s ease-in-out; transition: color 0.1s ease-in-out, border-color 0.1s ease-in-out; } a:link { color: #1A1A1A; } a:visited { color: #1A1A1A; border-color: #D4D4D4; } a:hover, a:active, a:focus { color: #1A1A1A; border-color: #E37D39; } h1, h2, h3, h4, h5, h6 { font-family: "Noto Sans", sans-serif; margin: 0; padding: 0; font-weight: 700; color: #1A1A1A; } h3 { font-size: 1.3125em; /* 21px / 16px */ line-height: 1.143; } h4 { font-size: 1em; line-height: 1.5; } ul, ol { font-size: 1em; padding: 0; margin: 1.5em; } ul ul, ul ol, ol ul, ol ol { margin: 0 1.5em; } ul ul, ol ol, ul ol, ol ul, li li { font-size: 1em; } /* Markup styles */ pre { white-space: pre-wrap; /* css-3 */ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ background: #F7F7F7; border: solid 1px #EDEDED; padding: 0.75em 1.5em; } code { background: #EDEDED; padding: 0 0.375em; } blockquote { margin: 1.5em; padding-right: 1.5em; border-right: solid 3px #E37D39; } blockquote cite { display: block; text-align: left; } hr { margin: 0.69em 0; } /* Table styles */ table { border-spacing: 0; border-collapse: collapse; margin: 1.5em 0; } td { padding: 0.5em 0.75em; border: solid 1px black; } th { padding: 0.5em 0.75em; border: solid 1px black; } /* Images */ .alignleft { float: right; margin: 0 0 1.5em 1.5em; } .alignright { float: left; margin: 0 1.5em 1.5em 0; } .aligncenter { text-align: center; margin: 1.5em auto; display: block; } .alignnone { margin: 1.5em; } img, .alignright, .alignleft, .aligncenter, .alignnone, .size-auto, .size-full, .size-large, .size-medium, .size-thumbnail { max-width: 100%; height: auto; } .wp-caption-text { margin: 0 0 1.84502em; } /* Form styles */ input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]):not([type="image"]), textarea { font-family: "Noto Sans", sans-serif; padding: 10px 12px; width: 100%; max-width: 30em; background: #EDEDED; color: #666666; outline: solid 1px #D4D4D4; border: none; border-radius: 0; -webkit-appearance: none; -webkit-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out; } input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]):not([type="image"]):focus, textarea:focus { background: white; } textarea { max-width: 45em; overflow: auto; /* to hide scrollbar in IE */ } input[type="submit"] { font-family: "Noto Sans", sans-serif; padding: 10px 12px; color: white; background: #1A1A1A; min-width: 96px; outline: none; border: none; border-radius: 0; -webkit-appearance: none; -webkit-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out; } input[type="submit"]:hover { cursor: pointer; } input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus { background: #4D4D4D; } input[type="search"] { margin-left: 2px; } ::-webkit-input-placeholder { color: #666666; } :-moz-placeholder { color: #666666; } ::-moz-placeholder { color: #666666; } :-ms-input-placeholder { color: #666666; } a img { border: none; } @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) { html { -webkit-text-size-adjust: none; /* none for no scaling */ } } @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) { html { -webkit-text-size-adjust: none; /* none for no scaling */ } } .screen-reader-text { position: absolute; clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ clip: rect(1px, 1px, 1px, 1px); overflow: hidden; height: 1px; width: 1px; } .skip-content { position: absolute; top: -100%; width: 100%; right: 0; display: block; text-align: center; color: white !important; z-index: 99; padding: 1.5em; background: #1A1A1A; -webkit-transition: top 0.2s ease-in-out; transition: top 0.2s ease-in-out; } .skip-content:focus { top: 0; outline: none; } .admin-bar .skip-content:focus { top: 32px; } .max-width { max-width: 1400px; margin: 0 auto; } #breadcrumbs { text-align: center; } .site-header { position: relative; padding: 1.5em 0; border-bottom: solid 1px #D4D4D4; margin-bottom: 1.5em; } .title-container { display: inline-block; margin-right: 8.334%; max-width: 75%; } .site-title { font-size: 1em; line-height: 1.5; } .site-title a { border: none; -webkit-transition: color 0.1s ease-in-out; transition: color 0.1s ease-in-out; } .site-title a:hover, .site-title a:active, .site-title a:focus { color: #666666; } .tagline { margin: 0; } .toggle-navigation { line-height: 1; float: left; background: none; border: none; margin: 0 0 0 8.334%; padding: 0; color: #1A1A1A; } .toggle-navigation:focus, .toggle-navigation.open { outline: none; color: #E37D39; } .social-media-icons { list-style: none; margin: 1.5em 0 -10px; padding: 0.75em 8.334% 0; float: right; -webkit-transition: opacity 0.1s ease-in-out; transition: opacity 0.1s ease-in-out; } .social-media-icons li { display: inline-block; } .social-media-icons a { border-bottom: none; margin-left: 12px; } .social-media-icons a:focus { outline: none; } .social-media-icons.fade { opacity: 0; } .site-header .search-form-container { position: relative; float: left; text-align: left; margin: 2.25em 0 0 8.334%; } .site-header .search-form-container button { position: relative; z-index: 9; background: none; border: none; margin: 0 0 0 -10px; padding: 6px 10px; font-size: 1em; line-height: 1.5; } .site-header .search-form-container button:focus { outline: none; } .site-header .search-form-container button:focus i { color: #E37D39; } .site-header .search-form-container button.open + form { opacity: 1; } .site-header .search-form-container i { color: #1A1A1A; z-index: -1; } .site-header .search-form-container form { position: absolute; top: 0; left: -12px; right: 0; opacity: 0; -webkit-transition: opacity 0.15s ease-in-out, right 0.15s ease-in-out; transition: opacity 0.15s ease-in-out, right 0.15s ease-in-out; } .site-header .search-form-container .search-field { max-width: none !important; outline: none !important; padding: 9px 12px !important; } .site-header .search-form-container .search-field::-webkit-search-decoration, .site-header .search-form-container .search-field::-webkit-search-cancel-button, .site-header .search-form-container .search-field::-webkit-search-results-button, .site-header .search-form-container .search-field::-webkit-search-results-decoration { -webkit-appearance: none; } .site-header .search-form-container .search-field::-ms-clear { display: none; width: 0; height: 0; } .site-header .search-form-container .search-field::-ms-reveal { display: none; width: 0; height: 0; } .site-header .search-form-container .search-field:focus { background: #EDEDED !important; outline: solid 1px #D4D4D4 !important; } @media all and (min-width: 37.5em) { .site-title { font-size: 1.5em; /* 24px / 16px */ line-height: 1.5; /* 36px */ } .toggle-navigation { line-height: 1.5; } } @media all and (min-width: 56.25em) { .site-header { padding: 1.5em 8.334%; } .title-container { margin-right: 0; margin-left: 3em; max-width: none; } .toggle-navigation { display: none; } .social-media-icons { position: absolute; left: 8.334%; top: 1.5em; margin: 0; margin-left: 1.5em; padding: 0; border: none; } .social-media-icons a { -webkit-transition: color 0.1s ease-in-out; transition: color 0.1s ease-in-out; } .social-media-icons a:hover, .social-media-icons a:active, .social-media-icons a:focus { color: #E37D39; } .site-header .search-form-container { position: absolute; top: 1.5em; left: 8.334%; margin: 0; } .site-header .search-form-container button:hover { cursor: pointer; } .site-header .search-form-container button.open + form { right: -266px; } } @media all and (min-width: 87.5em) { .site-header { border: none; } .site-header:after { content: ''; position: absolute; bottom: 0; right: -999px; left: -999px; height: 1px; background: #D4D4D4; } } .menu-primary-container { display: none; } .menu-primary-container:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } .menu-primary-items, .menu-unset ul { list-style: none; margin: 1.5em 0 0; border-top: solid 1px #D4D4D4; } .menu-primary-items a, .menu-unset ul a { display: inline-block; padding: 12px 8.334% 12px 0; border: none; } .menu-primary-items li, .menu-unset ul li { position: relative; border-bottom: solid 1px #EDEDED; } .menu-primary-items li.current-menu-item:after, .menu-primary-items li.current_page_item:after, .menu-unset ul li.current-menu-item:after, .menu-unset ul li.current_page_item:after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 3px; background: #E37D39; } .menu-primary-items li.open > button, .menu-unset ul li.open > button { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } .menu-primary-items li.open > ul, .menu-unset ul li.open > ul { display: block; } .menu-primary-items > li:last-child, .menu-unset ul > li:last-child { margin-bottom: -1.5em; } .menu-primary-items ul, .menu-unset ul ul { display: none; list-style: none; margin: 0; } .menu-primary-items ul li, .menu-unset ul ul li { border: none; } .menu-primary-items ul li:last-child, .menu-unset ul ul li:last-child { margin-bottom: 0.75em; } .menu-primary-items ul a, .menu-unset ul ul a { margin-right: 24px; } .menu-primary-items ul ul a, .menu-unset ul ul ul a { margin-right: 48px; } .toggle-dropdown { float: left; font-size: 1em; line-height: 1.5; height: 1.5em; width: 1.5em; margin: 7px 0 0 8.334%; padding: 0; color: #1A1A1A; background: none; border: solid 1px #1A1A1A; text-align: center; } .toggle-dropdown:hover, .toggle-dropdown:active, .toggle-dropdown:focus { outline: none; color: #E37D39; border-color: #E37D39; } .toggle-dropdown:after { content: '\f107'; font-family: 'FontAwesome'; display: inline-block; vertical-align: text-bottom; } .menu-primary-container.open { display: block; } @media all and (min-width: 56.25em) { .menu-primary-container { display: inline-block; vertical-align: top; margin-top: 7px; } .menu-primary { display: inline-block; margin-right: 0; vertical-align: text-bottom; } .menu-primary-items, .menu-unset ul { border: none; margin: 0; } .menu-primary-items li, .menu-unset ul li { display: inline-block; border: none; margin-left: 20px; } .menu-primary-items li.current-menu-item > a, .menu-primary-items li.current_page_item > a, .menu-unset ul li.current-menu-item > a, .menu-unset ul li.current_page_item > a { border-color: #E37D39; } .menu-primary-items li.current-menu-item:after, .menu-primary-items li.current_page_item:after, .menu-unset ul li.current-menu-item:after, .menu-unset ul li.current_page_item:after { display: none; } .menu-primary-items li.menu-item-has-children a, .menu-unset ul li.menu-item-has-children a { margin: 0; } .menu-primary-items li.menu-item-has-children a:hover ~ ul, .menu-primary-items li.menu-item-has-children a:active ~ ul, .menu-primary-items li.menu-item-has-children a:focus ~ ul, .menu-unset ul li.menu-item-has-children a:hover ~ ul, .menu-unset ul li.menu-item-has-children a:active ~ ul, .menu-unset ul li.menu-item-has-children a:focus ~ ul { opacity: 1; visibility: visible; top: calc(100% + 18px); } .menu-primary-items li.menu-item-has-children a:hover:before, .menu-primary-items li.menu-item-has-children a:active:before, .menu-unset ul li.menu-item-has-children a:hover:before, .menu-unset ul li.menu-item-has-children a:active:before { content: ''; position: absolute; right: 0; left: 0; top: 16px; height: 48px; } .menu-primary-items li.menu-item-has-children > a, .menu-unset ul li.menu-item-has-children > a { -webkit-backface-visibility: hidden; backface-visibility: hidden; } .menu-primary-items li.menu-item-has-children > a:after, .menu-unset ul li.menu-item-has-children > a:after { content: ' + '; border-bottom: solid 1px white; } .menu-primary-items a, .menu-unset ul a { padding: 0; border-bottom: solid 1px transparent; } .menu-primary-items a:hover, .menu-primary-items a:active, .menu-primary-items a:focus, .menu-unset ul a:hover, .menu-unset ul a:active, .menu-unset ul a:focus { border-color: #1A1A1A; } .menu-primary-items ul, .menu-unset ul ul { display: block; position: absolute; top: 100%; top: calc(100% + 24px); visibility: hidden; overflow: visible; z-index: 29; right: 0; opacity: 0; background: white; padding: 0.375em 0.75em 0.75em; border: solid 1px #D4D4D4; text-align: center; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out; } .menu-primary-items ul:hover, .menu-primary-items ul.focused, .menu-unset ul ul:hover, .menu-unset ul ul.focused { opacity: 1; visibility: visible; top: calc(100% + 18px); } .menu-primary-items ul:after, .menu-unset ul ul:after { content: ''; position: absolute; top: -12px; right: 50%; right: calc( 50% - 12px); border-bottom: solid 12px white; border-right: solid 12px transparent; border-left: solid 12px transparent; } .menu-primary-items ul:before, .menu-unset ul ul:before { content: ''; position: absolute; top: -13px; right: 50%; right: calc( 50% - 13px); border-bottom: solid 13px #D4D4D4; border-right: solid 13px transparent; border-left: solid 13px transparent; } .menu-primary-items ul li, .menu-unset ul ul li { display: block; white-space: nowrap; margin: 12px; line-height: 16px; -webkit-backface-visibility: hidden; backface-visibility: hidden; } .menu-primary-items ul li:last-child, .menu-unset ul ul li:last-child { margin-bottom: 0; } .menu-primary-items ul li:first-child, .menu-unset ul ul li:first-child { margin-top: 6px; } .menu-primary-items ul li.menu-item-has-children a, .menu-unset ul ul li.menu-item-has-children a { position: relative; } .menu-primary-items ul li.menu-item-has-children a:hover:before, .menu-primary-items ul li.menu-item-has-children a:active:before, .menu-unset ul ul li.menu-item-has-children a:hover:before, .menu-unset ul ul li.menu-item-has-children a:active:before { content: ''; position: absolute; top: 0; left: -72px; right: auto; height: 24px; width: 72px; } .menu-primary-items ul a, .menu-unset ul ul a { display: inline-block; } .menu-primary-items ul .menu-item-has-children > a, .menu-unset ul ul .menu-item-has-children > a { margin-left: -8px; } .menu-primary-items ul .menu-item-has-children > a:hover ~ ul, .menu-primary-items ul .menu-item-has-children > a:active ~ ul, .menu-primary-items ul .menu-item-has-children > a:focus ~ ul, .menu-unset ul ul .menu-item-has-children > a:hover ~ ul, .menu-unset ul ul .menu-item-has-children > a:active ~ ul, .menu-unset ul ul .menu-item-has-children > a:focus ~ ul { top: 1px; right: calc(100% + 24px); } .menu-primary-items ul .menu-item-has-children ul, .menu-unset ul ul .menu-item-has-children ul { right: 100%; right: calc(100% + 30px); top: 1px; } .menu-primary-items ul .menu-item-has-children ul:hover, .menu-primary-items ul .menu-item-has-children ul.focused, .menu-unset ul ul .menu-item-has-children ul:hover, .menu-unset ul ul .menu-item-has-children ul.focused { top: 1px; right: calc(100% + 24px); } .menu-primary-items ul .menu-item-has-children ul:after, .menu-unset ul ul .menu-item-has-children ul:after { content: ''; position: absolute; top: 50%; top: calc(50% - 12px); right: -24px; border-left: solid 12px white; border-top: solid 12px transparent; border-bottom: solid 12px transparent; } .menu-primary-items ul .menu-item-has-children ul:before, .menu-unset ul ul .menu-item-has-children ul:before { content: ''; position: absolute; top: 50%; top: calc(50% - 13px); right: -26px; border-left: solid 13px #D4D4D4; border-top: solid 13px transparent; border-bottom: solid 13px transparent; } .toggle-dropdown { display: none; } } /** * 14.2 Galleries */ .gallery { margin: 2.25em auto; } .gallery-item { display: inline-block; padding: 0.75em; text-align: center; vertical-align: top; width: 100%; margin: 0; } .gallery-item img { max-width: 100%; max-height: 100%; } .gallery-item a { border: none; } .gallery-columns-2 .gallery-item { max-width: 50%; } .gallery-columns-3 .gallery-item { max-width: 33.33%; } .gallery-columns-4 .gallery-item { max-width: 25%; } .gallery-columns-5 .gallery-item { max-width: 20%; } .gallery-columns-6 .gallery-item { max-width: 16.66%; } .gallery-columns-7 .gallery-item { max-width: 14.28%; } .gallery-columns-8 .gallery-item { max-width: 12.5%; } .gallery-columns-9 .gallery-item { max-width: 11.11%; } .gallery-icon img { margin: 0 auto; } .gallery-caption { color: #666666; display: block; font-family: "Noto Sans", sans-serif; font-size: 12px; padding: 0.5em 0 0; margin: 0; } .gallery-columns-6 .gallery-caption, .gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption { display: none; } /* Jetpack Galleries */ .tiled-gallery { margin: 2.25em auto !important; } .tiled-gallery .gallery-row { margin: 0 auto; } .toggle-sidebar { position: absolute; top: 100%; font-size: 1em; background: white; border: solid 1px #D4D4D4; border-top: none; margin: 0 8.334% 0 0; padding: 0 0.75em; border-radius: 0 0 12px 12px; } .toggle-sidebar:focus { outline: none; } .toggle-sidebar:focus i { color: #E37D39; } .toggle-sidebar i { color: #A1A1A1; -webkit-transition: color 0.1s ease-in-out; transition: color 0.1s ease-in-out; } .sidebar-primary-content { display: none; } .sidebar-primary-widgets { padding: 1.5em 8.334%; } .sidebar-primary { position: relative; z-index: 9; margin-top: -1.5em; margin-bottom: 4.5em; } .sidebar-primary.open { border-bottom: solid 1px #D4D4D4; } .sidebar-primary.open .toggle-sidebar { border-top: solid 1px #D4D4D4; border-color: #E37D39; border-top-color: #D4D4D4; } .sidebar-primary.open .toggle-sidebar i { color: #E37D39; -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } .sidebar-primary.open .sidebar-primary-content { display: block; } @media all and (min-width: 43.75em) { .sidebar-primary-widgets:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } .sidebar-primary-widgets:not(.active-1) .widget { width: 47%; float: right; } .sidebar-primary-widgets:not(.active-1) .widget:nth-child(odd) { margin-left: 3%; clear: right; } } @media all and (min-width: 56.25em) { .sidebar-primary { margin-bottom: 3em; } .toggle-sidebar { -webkit-transition: border-color 0.1s ease-in-out; transition: border-color 0.1s ease-in-out; } .toggle-sidebar:hover { cursor: pointer; } .toggle-sidebar:hover, .toggle-sidebar:active, .toggle-sidebar:focus { border-color: #E37D39; } .toggle-sidebar:hover i, .toggle-sidebar:active i, .toggle-sidebar:focus i { color: #E37D39; } .sidebar-primary-content { display: block; max-height: 0; overflow: hidden; -webkit-transition: max-height 0.2s ease-in-out; transition: max-height 0.2s ease-in-out; } } @media all and (min-width: 62.5em) { .sidebar-primary-widgets:not(.active-1):not(.active-2) .widget { width: 31%; margin-left: 0; margin-top: 1.5em; } .sidebar-primary-widgets:not(.active-1):not(.active-2) .widget:nth-child(odd) { clear: none; } .sidebar-primary-widgets:not(.active-1):not(.active-2) .widget:nth-child(3n - 2), .sidebar-primary-widgets:not(.active-1):not(.active-2) .widget:nth-child(3n - 1) { margin-left: 3%; } .sidebar-primary-widgets:not(.active-1):not(.active-2) .widget:nth-child(3n + 4) { clear: right; } } @media all and (min-width: 75em) { /* * Applying 3-column CSS to widget are even if only 2 active * At this width, having both widgets 50% looks bad, so defaulting to 31% * wide at most */ .sidebar-primary-widgets:not(.active-1) .widget { width: 31%; margin-left: 0; margin-top: 1.5em; } .sidebar-primary-widgets:not(.active-1) .widget:nth-child(odd) { clear: none; } .sidebar-primary-widgets:not(.active-1) .widget:nth-child(3n - 2), .sidebar-primary-widgets:not(.active-1) .widget:nth-child(3n - 1) { margin-left: 3%; } .sidebar-primary-widgets:not(.active-1) .widget:nth-child(3n + 4) { clear: right; } .sidebar-primary-widgets:not(.active-1):not(.active-2):not(.active-3) .widget { width: 22%; margin-left: 0; margin-top: 1.5em; } .sidebar-primary-widgets:not(.active-1):not(.active-2):not(.active-3) .widget:nth-child(4n - 3), .sidebar-primary-widgets:not(.active-1):not(.active-2):not(.active-3) .widget:nth-child(4n - 2), .sidebar-primary-widgets:not(.active-1):not(.active-2):not(.active-3) .widget:nth-child(4n - 1) { margin-left: 4%; } .sidebar-primary-widgets:not(.active-1):not(.active-2):not(.active-3) .widget:nth-child(3n + 4) { clear: none; } .sidebar-primary-widgets:not(.active-1):not(.active-2):not(.active-3) .widget:nth-child(3n + 5) { clear: right; } } @media all and (min-width: 87.5em) { .sidebar-primary.open { border: none; } .sidebar-primary.open:after { content: ''; position: absolute; bottom: -1px; right: -999px; left: -999px; height: 1px; background: #D4D4D4; } } .widget { margin: 1.5em 0 3em; } .widget ul { list-style: none; margin: 1.5em 0 0; } .widget ul a { border-color: transparent; } .widget ul a:hover, .widget ul a:active, .widget ul a:focus { border-color: #E37D39; } .widget ul li { margin-bottom: 0.75em; } .widget ul ul { margin: 0.75em 1.5em; } .widget-title { font-size: 1em; margin-bottom: 1.5em; } .widget_calendar #calendar_wrap { margin-top: 1.5em; } .widget_calendar caption { margin-bottom: 1.5em; text-align: right; } .widget_calendar #today { background: #1A1A1A; color: white; } .widget_calendar tfoot td { padding: 0; } .widget_calendar tfoot a { display: inline-block; padding: 0.75em 3em; border: none; -webkit-transition: background 0.1s ease-in-out; transition: background 0.1s ease-in-out; } .widget_calendar tfoot a:hover, .widget_calendar tfoot a:active, .widget_calendar tfoot a:focus { background: #EDEDED; } .widget_nav_menu > div { margin-top: 2.636em; } .widget_nav_menu .widget-title + div { margin-top: 0; } .widget_recent_comments ul a { border-bottom: solid 1px #1A1A1A; } .widget_recent_comments ul a:link { color: #1A1A1A; } .widget_recent_comments ul a:visited { color: #1A1A1A; border-color: #D4D4D4; } .widget_recent_comments ul a:hover, .widget_recent_comments ul a:active, .widget_recent_comments ul a:focus { color: #1A1A1A; border-color: #E37D39; } .widget_recent_entries .post-date { margin-right: 4px; } .widget_recent_entries .post-date:before { content: '('; } .widget_recent_entries .post-date:after { content: ')'; } .widget_rss .widget-title a { border-color: transparent; } .widget_rss .widget-title a:hover, .widget_rss .widget-title a:active, .widget_rss .widget-title a:focus { border-color: #E37D39; } .widget_rss .widget-title img { margin-left: 4px; } .widget_rss .rssSummary { margin: 0.75em 1.5em; } .widget_rss .rssSummary + cite { display: block; margin: 0 0.75em 1.5em 0; } .widget_rss .rss-date { font-style: italic; } .widget_rss li { display: block; } .widget_rss cite, .widget_rss span { margin-bottom: 1.5em; display: block; } .widget_rss span + cite { margin-top: -1.5em; } .widget_search .search-form-container { font-size: 1.4545em; line-height: 1.5; margin-top: 2.636em; } .widget_search .widget-title + div { margin-top: 0; } .widget_text .textwidget { margin-top: 2.636em; } .widget_text .widget-title + div { margin-top: 0; } .search-form-container { margin: 1.5em 0; } .search-form-container .search-field { max-width: 300px !important; margin-bottom: 0.75em; } .entry { margin: 4.5em 0; } .entry:first-child { margin-top: 3em; } .post-header { text-align: center; margin-bottom: 3em; } .post-header a { border-color: #D4D4D4; } .post-header a:hover, .post-header a:active, .post-header a:focus { border-color: #E37D39; } .post-header p { margin-top: 0; } .featured-image { position: relative; height: 0; padding-bottom: 60%; right: -10%; width: 120%; overflow: hidden; } .featured-image > a { position: absolute; top: 0; left: 0; bottom: 0; right: 0; font-size: 0; border: none; } .featured-image > img, .featured-image > a > img { position: absolute; right: 0; height: 100%; width: 100%; object-fit: cover; } .featured-image > img.no-object-fit, .featured-image > a > img.no-object-fit { min-width: 0; min-height: 0; max-width: 100%; max-height: 100%; height: auto; width: auto; top: 50%; left: 50%; right: auto; -webkit-transform: translateX(50%) translateY(-50%); -ms-transform: translateX(50%) translateY(-50%); transform: translateX(50%) translateY(-50%); } .post-content iframe { max-width: 100%; } .post-content:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } .more-link { display: inline-block; padding: 1em 1.5em; color: white; background: #1A1A1A; border: none; -webkit-transition: background 0.1s ease-in-out; transition: background 0.1s ease-in-out; } .more-link:link, .more-link:visited { color: white; } .more-link:hover, .more-link:active, .more-link:focus { color: white; background: #4D4D4D; } .post-comments { display: block; margin-top: 1.5em; } .post-comments i { font-size: 1.4545em; color: #1A1A1A; margin-left: 2px; vertical-align: text-top; } .post-comments a { border-color: transparent; } .post-comments a:hover, .post-comments a:active, .post-comments a:focus { border-color: #1A1A1A; } .full-post .post-comments { margin-top: 2.25em; } .blog .post-content, .archive .post-content, .search .post-content { text-align: center; } .blog .post-content ul, .blog .post-content p:not(:last-of-type), .archive .post-content ul, .archive .post-content p:not(:last-of-type), .search .post-content ul, .search .post-content p:not(:last-of-type) { text-align: right; } .blog .post-content p:last-of-type, .archive .post-content p:last-of-type, .search .post-content p:last-of-type { display: inline-block; margin: 0.75em 0 0; } .post-after { position: relative; padding-top: 1.5em; margin-top: 3em; } .post-after:after { content: ''; position: absolute; top: 0; right: 0; width: 4.5em; height: 1px; background: #D4D4D4; } .post-categories { margin: 1.5em 0; } .post-categories span { margin-left: 1.5em; } .post-categories a { display: inline-block; color: #1A1A1A; margin-left: 1.5em; } .post-categories a:link, .post-categories a:visited { color: #1A1A1A; } .post-categories a:hover, .post-categories a:active, .post-categories a:focus { color: #1A1A1A; } .post-tags { margin: 1.5em 0; } .post-tags ul { list-style: none; display: inline-block; margin: 0 1.5em 0 0; } .post-tags li { display: inline-block; margin-left: 12px; } .post-tags a { display: inline-block; background: #F7F7F7; border: solid 1px #EDEDED; padding: 4px 12px; -webkit-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out; } .post-tags a:hover, .post-tags a:active, .post-tags a:focus { background: #EDEDED; border-color: #D4D4D4; } .further-reading { position: relative; margin: 3em 0; padding: 3em 0; } .further-reading:before { content: ''; position: absolute; top: 0; right: -999px; left: -999px; height: 1px; background: #D4D4D4; } .further-reading:after { content: ''; position: absolute; bottom: 0; right: -999px; left: -999px; height: 1px; background: #D4D4D4; } .further-reading span { display: block; margin-bottom: 8px; } .further-reading .previous { margin-bottom: 1.5em; } .further-reading a { border-color: #D4D4D4; } .further-reading a:hover, .further-reading a:active, .further-reading a:focus { border-color: #E37D39; } .sticky-status { margin-bottom: 0.75em; text-align: center; } .sticky-status span { padding: 6px 24px; background: #EDEDED; } @media all and (min-width: 25em) { .more-link { margin: 0 0 0 1.5em; } .post-comments { display: inline-block; margin-top: 0; } .full-post .post-comments { display: block; margin-top: 3em; } } @media all and (min-width: 43.75em) { .entry { margin-bottom: 6em; } .featured-image { padding-bottom: 62.5%; width: 125%; right: -12.5%; } .further-reading div { width: 46%; display: inline-block; vertical-align: top; } .further-reading .previous { margin-left: 4%; margin-bottom: 0; } .further-reading .next { text-align: left; } } @media all and (min-width: 68.75em) { .post-title { font-size: 2.25em; /* 36px / 16px */ line-height: 1.5; /* 54px */ } .post-header { margin: 3.75em 0; } .singular .post-content { margin-top: 3em; } } @media all and (min-width: 75em) { .featured-image { width: 133.5%; right: -16.75%; padding-bottom: 66.75%; } } .main { padding: 0 8.334%; } @media all and (min-width: 43.75em) { .main { padding: 0 16.668%; } } @media all and (min-width: 62.5em) { .main { padding: 0 20.835%; } } @media all and (min-width: 75em) { .main { padding: 0 25.002%; } } .pagination { text-align: center; margin-bottom: 3em; } .pagination a, .pagination span { margin: 0 0.5em; } .pagination .prev { margin-right: 0; } .pagination .next { margin-left: 0; } .infinite-scroll .pagination { display: none; } @media all and (min-width: 25em) { .pagination a, .pagination span { margin: 0 0.75em; } } @media all and (min-width: 31.25em) { .pagination .prev { margin: 0 0 0 1.5em; } .pagination .next { margin: 0 1.5em 0 0; } } .archive-header { text-align: center; margin-bottom: -1.5em; } .archive-header h2 { display: inline-block; } .archive-header i { color: #1A1A1A; vertical-align: text-bottom; } .archive-header span { font-weight: 400; } .comments-number { margin: 3em 0; } .comment-list { list-style: none; margin: 3em 0; } .comment-list li { margin: 3em 0; } .comment-list ul { list-style: none; margin: 0; padding-right: 3em; border-right: solid 1px #D4D4D4; } .comment-content li { margin: 0; } .comment-content ul { list-style: disc; margin: 1.5em 0; padding-right: 0; border: none; } .comment-content ul ul { margin: 0 1.5em 0 0; } .comment-author { margin-bottom: 1.5em; color: #1A1A1A; } .comment-author:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } .comment-author img { float: right; margin-left: 0.75em; height: 36px; width: 36px; } .author-name { font-size: 1em; line-height: 34px; font-weight: 400; } .bypostauthor .comment-author img { outline: solid 4px #EDEDED; } .comment-footer { margin-top: 1.5em; } .comment-reply-link, .comment-edit-link { position: relative; margin-right: 12px; border-color: transparent; } .comment-reply-link:hover, .comment-reply-link:active, .comment-reply-link:focus, .comment-edit-link:hover, .comment-edit-link:active, .comment-edit-link:focus { border-color: #E37D39; } .comment-reply-link:after, .comment-edit-link:after { position: absolute; content: ''; top: 0; right: -10px; height: 100%; width: 1px; background: #D4D4D4; } .comment-pagination { margin: 3em 0; } @media all and (min-width: 31.25em) { .comment-pagination p { display: inline-block; width: 50%; margin-left: -4px; } .comment-pagination .next-comment { text-align: left; } } .comment-respond { margin: 4.5em 0; } .comment-respond label { display: block; margin-bottom: 0.75em; } .comment .comment-respond { margin-top: 3em; } #cancel-comment-reply-link { margin-right: 12px; } .site-footer { text-align: center; padding: 1.5em; border-top: solid 1px #D4D4D4; margin-top: 4.5em; } @media all and (min-width: 87.5em) { .site-footer { position: relative; border: none; } .site-footer:after { content: ''; position: absolute; top: 0px; right: -999px; left: -999px; height: 1px; background: #D4D4D4; } } .error404 .main .search-form-container { text-align: center; margin: 3em 0; } .search-bottom { text-align: center; margin: 4.5em 0; } @media print { .featured-image { -webkit-print-color-adjust: exact; } #menu-primary-container, #toggle-navigation, #sidebar-primary, .more-link, .post-comments, .loop-pagination, .further-reading, .comment-respond { display: none !important; } #title-container { text-align: center; display: block; max-width: 100%; margin: 0 !important; } #main { padding: 0 16.668%; } .entry { margin: 0 auto !important; } .blog .entry, .archive .entry, .search .entry { page-break-inside: avoid; } .post-after { margin-top: 0; } article.comment { page-break-inside: avoid; } } /* ATTENTION: Please do not edit this. Your changes will be overwritten when you update Founder. If you want to make CSS edits, use the "Custom CSS" section in the Customizer instead (Appearance > Customize). If you want more information about customizing Founder with CSS, check out this guide: https://www.competethemes.com/help/custom-css-founder/ */
interface/html5/global/widgets/datepicker/TDatePicker.html
aydancoskun/timetrex-community-edition
<div class="t-date-picker-div"> <input class="t-date-picker" type="text"/> <img id="tDatePickerIcon" class="t-date-picker-icon"/> </div>
doc/html/classSchemaDb.html
devlet/cinisis
<!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>Cinisis Database Reader: SchemaDb Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javaScript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </head> <body onload='searchBox.OnSelectItem(0);'> <!-- Generated by Doxygen 1.7.1 --> <script type="text/javascript"><!-- var searchBox = new SearchBox("searchBox", "search",false,'Search'); --></script> <div class="navigation" id="top"> <div class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li id="searchli"> <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 class="tabs2"> <ul class="tablist"> <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> </div> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="#pub-static-methods">Static Public Member Functions</a> </div> <div class="headertitle"> <h1>SchemaDb Class Reference</h1> </div> </div> <div class="contents"> <!-- doxytag: class="SchemaDb" --> <p><a href="classSchemaDb-members.html">List of all members.</a></p> <table class="memberdecls"> <tr><td colspan="2"><h2><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSchemaDb.html#af5c9271759bed2f9cccc80a05f7c5da8">optional</a> ()</td></tr> <tr><td class="memItemLeft" align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSchemaDb.html#a923a94169459c4dee3f74000b4aa1807">example</a> ()</td></tr> <tr><td colspan="2"><h2><a name="pub-static-methods"></a> Static Public Member Functions</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">static&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSchemaDb.html#a31db21bccb179162b5bb02b14b72d3e3">required</a> ()</td></tr> <tr><td class="memItemLeft" align="right" valign="top">static&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classSchemaDb.html#a42acc85b08a20b121204b1caf3a83e61">check</a> ($schema, $section=NULL)</td></tr> </table> <hr/><a name="_details"></a><h2>Detailed Description</h2> <p><a class="el" href="classSchemaDb.html">SchemaDb</a> class with standard database procedures and configuration. </p> <hr/><h2>Member Function Documentation</h2> <a class="anchor" id="a42acc85b08a20b121204b1caf3a83e61"></a><!-- doxytag: member="SchemaDb::check" ref="a42acc85b08a20b121204b1caf3a83e61" args="($schema, $section=NULL)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">static SchemaDb::check </td> <td>(</td> <td class="paramtype">$&nbsp;</td> <td class="paramname"> <em>schema</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">$&nbsp;</td> <td class="paramname"> <em>section</em> = <code>NULL</code></td><td>&nbsp;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td><td><code> [static]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Recursively check for required fields in a database schema.</p> <dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="interfaceIsisDb.html#af681b8f990b579f1835aa7ba4c83f1b8">IsisDb::check()</a> </dd></dl> </div> </div> <a class="anchor" id="a923a94169459c4dee3f74000b4aa1807"></a><!-- doxytag: member="SchemaDb::example" ref="a923a94169459c4dee3f74000b4aa1807" args="()" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">SchemaDb::example </td> <td>(</td> <td class="paramname"></td> <td>&nbsp;)&nbsp;</td> <td></td> </tr> </table> </div> <div class="memdoc"> <p>Return an example database schema.</p> <dl class="see"><dt><b>See also:</b></dt><dd><a class="el" href="interfaceIsisDb.html#a857c10d90da64067efa17afb2f32edb6">IsisDb::example()</a> </dd></dl> </div> </div> <a class="anchor" id="af5c9271759bed2f9cccc80a05f7c5da8"></a><!-- doxytag: member="SchemaDb::optional" ref="af5c9271759bed2f9cccc80a05f7c5da8" args="()" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">SchemaDb::optional </td> <td>(</td> <td class="paramname"></td> <td>&nbsp;)&nbsp;</td> <td></td> </tr> </table> </div> <div class="memdoc"> <p>Return the optional database config.</p> <dl class="return"><dt><b>Returns:</b></dt><dd>Array with optional config. </dd></dl> </div> </div> <a class="anchor" id="a31db21bccb179162b5bb02b14b72d3e3"></a><!-- doxytag: member="SchemaDb::required" ref="a31db21bccb179162b5bb02b14b72d3e3" args="()" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">static SchemaDb::required </td> <td>(</td> <td class="paramname"></td> <td>&nbsp;)&nbsp;</td> <td><code> [static]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Return the required database config.</p> <dl class="return"><dt><b>Returns:</b></dt><dd>Array with required config. </dd></dl> </div> </div> <hr/>The documentation for this class was generated from the following file:<ul> <li>classes/backends/SchemaDb.php</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">&nbsp;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&nbsp;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&nbsp;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&nbsp;</span>Variables</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <hr class="footer"/><address class="footer"><small>Generated on Wed Feb 23 2011 11:44:10 for Cinisis Database Reader by&nbsp; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.1 </small></address> </body> </html>
templates/web/angus/report/new/category_at_top.html
appstud/fixmystreet
[% PROCESS "report/new/category_wrapper.html" %]
app/templates/pemetaan.html
wm-mrx/sideka-electron
<div id="flex-container" style="height: 100%;"> <nav class="navbar navbar-default" style="height: 73px; min-height: 73px; -webkit-user-select: none;" [hidden]="isFileMenuShown"> <div class="container-fluid" style="-webkit-app-region: no-drag; position: fixed; top: 0; left: 0px; z-index: 506;" [hidden]="isFileMenuShown"> <form class="navbar-form navbar-nav navbar-nav-buttonbar form-inline" style="padding-left: 0px;"> <button type="button" title="Simpan (Ctrl+S)" (click)="openSaveDialog()" class="btn btn-default"><i class="fa fa-save"></i> </button> </form> </div> <div class="container-fluid" style="padding-top: 32px; height: 41px; min-height: 41px;"> <form class="navbar-form navbar-nav navbar-nav-buttonbar form-inline" style="padding-left: 0px;"> <button title="File" class="btn btn-default" (click)="redirectMain()"> <i class="fa fa-home"></i>&nbsp; Beranda </button> <button title="File" class="btn btn-default" (click)="setActiveLayer('OSM')" [style.background]="activeLayer == 'OSM' ? 'white' : '#3097d1'" [style.color]="activeLayer == 'OSM' ? '#3097d1' : 'white'"> <i class="fa fa-map-o"></i>&nbsp; Open Street Map (OSM) </button> <button title="File" class="btn btn-default" (click)="setActiveLayer('Satellite')" [style.background]="activeLayer == 'Satellite' ? 'white' : '#3097d1'" [style.color]="activeLayer == 'Satellite' ? '#3097d1' : 'white'"> <i class="fa fa-photo"></i>&nbsp; Satelit </button> </form> </div> </nav> <div style="width: 100%; height: 100%; display: flex; z-index: 100;" [hidden]="isFileMenuShown"> <map style="flex: 1; overflow: hidden;" [indicator]="indicator" (onLayerSelected)="onLayerSelected($event)"></map> </div> <ul class="nav nav-tabs bottom-tabs"> <li *ngFor="let ind of indicators; let i = index" [ngClass]="{'active': indicator.id == ind.id }"> <a class="btn" (click)="onIndicatorChange(ind)">{{ind.name}}</a> </li> </ul> <div id="page-menu" [style.display]="!isFileMenuShown ? 'none' : 'flex'"> <div class="page-menu-side"> <button class="btn btn-default btn-close" (click)="showFileMenu(false)"> <img src="images/arrow-left.png" /> </button> <ul class="list-group"> <a class="list-group-item" href="app.html" (click)="closeTarget='home'"> Tutup </a> </ul> </div> <div class="page-menu-content"> </div> </div> <div id="modal-save-diff" class="modal fade" tabindex="-1" role="dialog" data-backdrop="static"> <div class="modal-dialog modal-lg" role="document"> <form (submit)="saveContent()" class="form-horizontal" *ngIf="currentDiff"> <div class="modal-content" style="border-radius: 0"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button> <h4 class="modal-title">{{afterSaveAction ? 'Ada yang Belum Tersimpan' : 'Konfirmasi Penyimpanan'}}</h4> </div> <div class="modal-body"> <p> Apakah Anda ingin menyimpan perubahan berikut: </p> <table class="table table-bordered" *ngIf="currentDiff.total < 15"> <tr class="active" *ngIf="currentDiff.added.length > 0"> <td colspan="2"> {{currentDiff.added.length}} Penambahan</td> </tr> <tr *ngFor="let item of currentDiff.added"> <td>{{item.indicator}}</td> <td>{{item.properties.type}}</td> </tr> <tr class="active" *ngIf="currentDiff.deleted.length > 0"> <td colspan="2"> {{currentDiff.deleted.length}} Penghapusan</td> </tr> <tr *ngFor="let item of currentDiff.deleted"> <td>{{item.indicator}}</td> <td>{{item.properties.type}}</td> </tr> <tr class="active" *ngIf="currentDiff.modified.length > 0"> <td colspan="2"> {{currentDiff.modified.length}} Perubahan</td> </tr> <tr *ngFor="let item of currentDiff.modified"> <td>{{item.indicator}}</td> <td>{{item.properties.type}}</td> </tr> </table> <table class="table table-bordered" *ngIf="currentDiff.total >= 15"> <tr class="active"> <td colspan="2"> {{currentDiff.added.length}} Penambahan</td> </tr> <tr class="active"> <td colspan="2"> {{currentDiff.deleted.length}} Penghapusan</td> </tr> <tr class="active"> <td colspan="2"> {{currentDiff.modified.length}} Perubahan</td> </tr> </table> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Batal Keluar</button> <button type="button" class="btn btn-default" *ngIf="afterSaveAction" (click)="forceQuit()">Keluar Tanpa Menyimpan</button> <button type="submit" class="btn btn-primary" data-backdrop="false">Simpan</button> </div> </div><!-- /.modal-content --> </form> </div><!-- /.modal-dialog --> </div><!-- /.modal --> </div>
crislib/libscapi/lib/boost_1_64_0/doc/html/boost/random/laplace_distribution/param_type.html
cris-iisc/mpc-primitives
<!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>Class param_type</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../laplace_distribution.html#idp499470960" title="Description"> <link rel="prev" href="../laplace_distribution.html" title="Class template laplace_distribution"> <link rel="next" href="../linear_congruential_engine.html" title="Class template linear_congruential_engine"> </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="../laplace_distribution.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../laplace_distribution.html#idp499470960"><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="../linear_congruential_engine.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.random.laplace_distribution.param_type"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Class param_type</span></h2> <p>boost::random::laplace_distribution::param_type</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_random/reference.html#header.boost.random.laplace_distribution_hpp" title="Header &lt;boost/random/laplace_distribution.hpp&gt;">boost/random/laplace_distribution.hpp</a>&gt; </span> <span class="keyword">class</span> <a class="link" href="param_type.html" title="Class param_type">param_type</a> <span class="special">{</span> <span class="keyword">public</span><span class="special">:</span> <span class="comment">// types</span> <span class="keyword">typedef</span> <a class="link" href="../laplace_distribution.html" title="Class template laplace_distribution">laplace_distribution</a> <a name="boost.random.laplace_distribution.param_type.distribution_type"></a><span class="identifier">distribution_type</span><span class="special">;</span> <span class="comment">// <a class="link" href="param_type.html#boost.random.laplace_distribution.param_typeconstruct-copy-destruct">construct/copy/destruct</a></span> <span class="keyword">explicit</span> <a class="link" href="param_type.html#idp709842352-bb"><span class="identifier">param_type</span></a><span class="special">(</span><span class="identifier">RealType</span> <span class="special">=</span> <span class="number">0</span><span class="special">.</span><span class="number">0</span><span class="special">,</span> <span class="identifier">RealType</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="comment">// <a class="link" href="param_type.html#idp709838496-bb">public member functions</a></span> <span class="identifier">RealType</span> <a class="link" href="param_type.html#idp709839056-bb"><span class="identifier">mean</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="identifier">RealType</span> <a class="link" href="param_type.html#idp709840624-bb"><span class="identifier">beta</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="comment">// <a class="link" href="param_type.html#idp709846208-bb">friend functions</a></span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> CharT<span class="special">,</span> <span class="keyword">typename</span> Traits<span class="special">&gt;</span> <span class="keyword">friend</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_ostream</span><span class="special">&lt;</span> <span class="identifier">CharT</span><span class="special">,</span> <span class="identifier">Traits</span> <span class="special">&gt;</span> <span class="special">&amp;</span> <a class="link" href="param_type.html#idp709846768-bb"><span class="keyword">operator</span><span class="special">&lt;&lt;</span></a><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_ostream</span><span class="special">&lt;</span> <span class="identifier">CharT</span><span class="special">,</span> <span class="identifier">Traits</span> <span class="special">&gt;</span> <span class="special">&amp;</span><span class="special">,</span> <span class="keyword">const</span> <a class="link" href="param_type.html" title="Class param_type">param_type</a> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> CharT<span class="special">,</span> <span class="keyword">typename</span> Traits<span class="special">&gt;</span> <span class="keyword">friend</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_istream</span><span class="special">&lt;</span> <span class="identifier">CharT</span><span class="special">,</span> <span class="identifier">Traits</span> <span class="special">&gt;</span> <span class="special">&amp;</span> <a class="link" href="param_type.html#idp709852640-bb"><span class="keyword">operator</span><span class="special">&gt;&gt;</span></a><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_istream</span><span class="special">&lt;</span> <span class="identifier">CharT</span><span class="special">,</span> <span class="identifier">Traits</span> <span class="special">&gt;</span> <span class="special">&amp;</span><span class="special">,</span> <span class="keyword">const</span> <a class="link" href="param_type.html" title="Class param_type">param_type</a> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="keyword">friend</span> <span class="keyword">bool</span> <a class="link" href="param_type.html#idp709858512-bb"><span class="keyword">operator</span><span class="special">==</span></a><span class="special">(</span><span class="keyword">const</span> <a class="link" href="param_type.html" title="Class param_type">param_type</a> <span class="special">&amp;</span><span class="special">,</span> <span class="keyword">const</span> <a class="link" href="param_type.html" title="Class param_type">param_type</a> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="keyword">friend</span> <span class="keyword">bool</span> <a class="link" href="param_type.html#idp709862096-bb"><span class="keyword">operator</span><span class="special">!=</span></a><span class="special">(</span><span class="keyword">const</span> <a class="link" href="param_type.html" title="Class param_type">param_type</a> <span class="special">&amp;</span><span class="special">,</span> <span class="keyword">const</span> <a class="link" href="param_type.html" title="Class param_type">param_type</a> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp499739120"></a><h2>Description</h2> <div class="refsect2"> <a name="idp499739536"></a><h3> <a name="boost.random.laplace_distribution.param_typeconstruct-copy-destruct"></a><code class="computeroutput">param_type</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="idp709842352-bb"></a><span class="identifier">param_type</span><span class="special">(</span><span class="identifier">RealType</span> mean <span class="special">=</span> <span class="number">0</span><span class="special">.</span><span class="number">0</span><span class="special">,</span> <span class="identifier">RealType</span> beta <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></pre> <p>Constructs a <code class="computeroutput"><code class="computeroutput"><a class="link" href="param_type.html" title="Class param_type">param_type</a></code></code> from the "mean" and "beta" parameters of the distribution. </p> </li></ol></div> </div> <div class="refsect2"> <a name="idp499754736"></a><h3> <a name="idp709838496-bb"></a><code class="computeroutput">param_type</code> public member functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"> <pre class="literallayout"><span class="identifier">RealType</span> <a name="idp709839056-bb"></a><span class="identifier">mean</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre> <p>Returns the "mean" parameter of the distribtuion. </p> </li> <li class="listitem"> <pre class="literallayout"><span class="identifier">RealType</span> <a name="idp709840624-bb"></a><span class="identifier">beta</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre> <p>Returns the "beta" parameter of the distribution. </p> </li> </ol></div> </div> <div class="refsect2"> <a name="idp499767552"></a><h3> <a name="idp709846208-bb"></a><code class="computeroutput">param_type</code> friend 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> CharT<span class="special">,</span> <span class="keyword">typename</span> Traits<span class="special">&gt;</span> <span class="keyword">friend</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_ostream</span><span class="special">&lt;</span> <span class="identifier">CharT</span><span class="special">,</span> <span class="identifier">Traits</span> <span class="special">&gt;</span> <span class="special">&amp;</span> <a name="idp709846768-bb"></a><span class="keyword">operator</span><span class="special">&lt;&lt;</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_ostream</span><span class="special">&lt;</span> <span class="identifier">CharT</span><span class="special">,</span> <span class="identifier">Traits</span> <span class="special">&gt;</span> <span class="special">&amp;</span> os<span class="special">,</span> <span class="keyword">const</span> <a class="link" href="param_type.html" title="Class param_type">param_type</a> <span class="special">&amp;</span> param<span class="special">)</span><span class="special">;</span></pre> <p>Writes a <code class="computeroutput"><code class="computeroutput"><a class="link" href="param_type.html" title="Class param_type">param_type</a></code></code> to a <code class="computeroutput">std::ostream</code>. </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> CharT<span class="special">,</span> <span class="keyword">typename</span> Traits<span class="special">&gt;</span> <span class="keyword">friend</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_istream</span><span class="special">&lt;</span> <span class="identifier">CharT</span><span class="special">,</span> <span class="identifier">Traits</span> <span class="special">&gt;</span> <span class="special">&amp;</span> <a name="idp709852640-bb"></a><span class="keyword">operator</span><span class="special">&gt;&gt;</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_istream</span><span class="special">&lt;</span> <span class="identifier">CharT</span><span class="special">,</span> <span class="identifier">Traits</span> <span class="special">&gt;</span> <span class="special">&amp;</span> is<span class="special">,</span> <span class="keyword">const</span> <a class="link" href="param_type.html" title="Class param_type">param_type</a> <span class="special">&amp;</span> param<span class="special">)</span><span class="special">;</span></pre> <p>Reads a <code class="computeroutput"><code class="computeroutput"><a class="link" href="param_type.html" title="Class param_type">param_type</a></code></code> from a <code class="computeroutput">std::istream</code>. </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">friend</span> <span class="keyword">bool</span> <a name="idp709858512-bb"></a><span class="keyword">operator</span><span class="special">==</span><span class="special">(</span><span class="keyword">const</span> <a class="link" href="param_type.html" title="Class param_type">param_type</a> <span class="special">&amp;</span> lhs<span class="special">,</span> <span class="keyword">const</span> <a class="link" href="param_type.html" title="Class param_type">param_type</a> <span class="special">&amp;</span> rhs<span class="special">)</span><span class="special">;</span></pre> <p>Returns true if the two sets of parameters are the same. </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">friend</span> <span class="keyword">bool</span> <a name="idp709862096-bb"></a><span class="keyword">operator</span><span class="special">!=</span><span class="special">(</span><span class="keyword">const</span> <a class="link" href="param_type.html" title="Class param_type">param_type</a> <span class="special">&amp;</span> lhs<span class="special">,</span> <span class="keyword">const</span> <a class="link" href="param_type.html" title="Class param_type">param_type</a> <span class="special">&amp;</span> rhs<span class="special">)</span><span class="special">;</span></pre> <p>Returns true if the two sets of parameters are the different. </p> </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; 2000-2005 Jens Maurer<br>Copyright &#169; 2009, 2010 Steven Watanabe<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../laplace_distribution.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../laplace_distribution.html#idp499470960"><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="../linear_congruential_engine.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
templates/post_form.html
4tran/VIB2
<div class="post"> <form class="post_form" action="/post.php" method="POST" enctype="multipart/form-data"> <input type="hidden" name="uri" value="{{ uri }}"/> <input type="hidden" name="op" value="{{ op }}"/> <input type="hidden" name="type" value="{{ type }}"/> <label for="name">Name: </label><input type="text" name="name" id="name"/> {% if (permission == "admin") or (permission == "mod") %} Capcode: <input type="checkbox" name="capcode" value="{{ permission }}"/> {% endif %} <br/> <textarea name="content" id="content" rows="5" cols="40"></textarea><br/> <input type="hidden" name="MAX_FILE_SIZE" value="5000000"/> <input type="file" name="image" id="image"/><br/> <input type="submit" value="Post"/> </form> </div>
src/adhocracy_frontend/adhocracy_frontend/static/js/Packages/User/UserDetailColumn.html
fhartwig/adhocracy3.mercator
<div data-ng-switch="transclusionId"> <div data-ng-switch-when="menu"> <div class="moving-column-tab"> <i class="icon-user-unfilled moving-column-icon"></i> </div> <a class="moving-column-menu-button" href="" data-ng-click="ctrl.toggleOverlay('messaging')" data-ng-if="messageOptions.POST">{{ "TR__MESSAGING" | translate }}</a> <div class="moving-column-menu-nav"> <a class="moving-column-menu-nav-button" data-ng-href="{{ '/principals/users/' | adhResourceUrl }}" title="{{ 'TR__CLOSE' | translate }}"><i class="icon-x moving-column-menu-nav-icon"></i></a> </div> </div> <adh-recompile-on-change data-ng-switch-when="body" data-value="{{userUrl}}"> <adh-user-profile data-path="{{userUrl}}"> </adh-user-profile> </adh-recompile-on-change> <adh-user-message data-ng-switch-when="overlays" data-ng-if="overlay === 'messaging'" data-recipient-url="{{userUrl}}"> </adh-user-message> </div>
templates/serve_ui.html
coddingtonbear/inthe.am
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="referrer" content="always" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Inthe.AM</title> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" /> <link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" href="/static/startup_image_640x1096.png" /> <link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2)" href="/static/startup_image_640x920.png" /> <link rel="apple-touch-startup-image" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1)" href="/static/startup_image_320x460.png" /> <script src="/bundle.js" defer></script> <link rel="stylesheet" href="/assets/fonts/foundation-icons.css" /> <link rel="stylesheet" href="/css/app.css" /> </head> <body> <div id="root"></div> </body> </html>
reader/xref/org/accada/reader/rprm/core/msg/reply/EventTypeListParamType.html
Fosstrak/fosstrak.github.io
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> <title>EventTypeListParamType xref</title> <link type="text/css" rel="stylesheet" href="../../../../../../../stylesheet.css" /> </head> <body> <div id="overview"><a href="../../../../../../../../apidocs/org/accada/reader/rprm/core/msg/reply/EventTypeListParamType.html">View Javadoc</a></div><pre> <a name="1" href="#1">1</a> <em class="jxr_comment">/*</em> <a name="2" href="#2">2</a> <em class="jxr_comment"> * Copyright (C) 2007 ETH Zurich</em> <a name="3" href="#3">3</a> <em class="jxr_comment"> *</em> <a name="4" href="#4">4</a> <em class="jxr_comment"> * This file is part of Accada (www.accada.org).</em> <a name="5" href="#5">5</a> <em class="jxr_comment"> *</em> <a name="6" href="#6">6</a> <em class="jxr_comment"> * Accada is free software; you can redistribute it and/or</em> <a name="7" href="#7">7</a> <em class="jxr_comment"> * modify it under the terms of the GNU Lesser General Public</em> <a name="8" href="#8">8</a> <em class="jxr_comment"> * License version 2.1, as published by the Free Software Foundation.</em> <a name="9" href="#9">9</a> <em class="jxr_comment"> *</em> <a name="10" href="#10">10</a> <em class="jxr_comment"> * Accada is distributed in the hope that it will be useful,</em> <a name="11" href="#11">11</a> <em class="jxr_comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of</em> <a name="12" href="#12">12</a> <em class="jxr_comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</em> <a name="13" href="#13">13</a> <em class="jxr_comment"> * Lesser General Public License for more details.</em> <a name="14" href="#14">14</a> <em class="jxr_comment"> *</em> <a name="15" href="#15">15</a> <em class="jxr_comment"> * You should have received a copy of the GNU Lesser General Public</em> <a name="16" href="#16">16</a> <em class="jxr_comment"> * License along with Accada; if not, write to the Free</em> <a name="17" href="#17">17</a> <em class="jxr_comment"> * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,</em> <a name="18" href="#18">18</a> <em class="jxr_comment"> * Boston, MA 02110-1301 USA</em> <a name="19" href="#19">19</a> <em class="jxr_comment"> */</em> <a name="20" href="#20">20</a> <a name="21" href="#21">21</a> <em class="jxr_comment">//</em> <a name="22" href="#22">22</a> <em class="jxr_comment">// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3 </em> <a name="23" href="#23">23</a> <em class="jxr_comment">// See &lt;a href="http://java.sun.com/xml/jaxb"&gt;http://java.sun.com/xml/jaxb&lt;/a&gt; </em> <a name="24" href="#24">24</a> <em class="jxr_comment">// Any modifications to this file will be lost upon recompilation of the source schema. </em> <a name="25" href="#25">25</a> <em class="jxr_comment">// Generated on: 2006.07.05 at 05:26:35 PM CEST </em> <a name="26" href="#26">26</a> <em class="jxr_comment">//</em> <a name="27" href="#27">27</a> <a name="28" href="#28">28</a> <a name="29" href="#29">29</a> <strong class="jxr_keyword">package</strong> org.accada.reader.rprm.core.msg.reply; <a name="30" href="#30">30</a> <a name="31" href="#31">31</a> <strong class="jxr_keyword">import</strong> java.util.ArrayList; <a name="32" href="#32">32</a> <strong class="jxr_keyword">import</strong> javax.xml.bind.annotation.XmlAccessType; <a name="33" href="#33">33</a> <strong class="jxr_keyword">import</strong> javax.xml.bind.annotation.XmlAccessorType; <a name="34" href="#34">34</a> <strong class="jxr_keyword">import</strong> javax.xml.bind.annotation.XmlType; <a name="35" href="#35">35</a> <a name="36" href="#36">36</a> <strong class="jxr_keyword">import</strong> org.accada.reader.rprm.core.msg.reply.EventTypeListParamType; <a name="37" href="#37">37</a> <a name="38" href="#38">38</a> <a name="39" href="#39">39</a> <em class="jxr_javadoccomment">/**</em> <a name="40" href="#40">40</a> <em class="jxr_javadoccomment"> * A list of event types, i.e. their names</em> <a name="41" href="#41">41</a> <em class="jxr_javadoccomment"> * </em> <a name="42" href="#42">42</a> <em class="jxr_javadoccomment"> * &lt;p&gt;Java class for EventTypeListParamType complex type.</em> <a name="43" href="#43">43</a> <em class="jxr_javadoccomment"> * </em> <a name="44" href="#44">44</a> <em class="jxr_javadoccomment"> * &lt;p&gt;The following schema fragment specifies the expected content contained within this class.</em> <a name="45" href="#45">45</a> <em class="jxr_javadoccomment"> * </em> <a name="46" href="#46">46</a> <em class="jxr_javadoccomment"> * &lt;pre&gt;</em> <a name="47" href="#47">47</a> <em class="jxr_javadoccomment"> * &amp;lt;complexType name="EventTypeListParamType"&gt;</em> <a name="48" href="#48">48</a> <em class="jxr_javadoccomment"> * &amp;lt;complexContent&gt;</em> <a name="49" href="#49">49</a> <em class="jxr_javadoccomment"> * &amp;lt;restriction base="{<a href="http://www.w3.org/2001/XMLSchema" target="alexandria_uri">http://www.w3.org/2001/XMLSchema</a>}anyType"&gt;</em> <a name="50" href="#50">50</a> <em class="jxr_javadoccomment"> * &amp;lt;sequence&gt;</em> <a name="51" href="#51">51</a> <em class="jxr_javadoccomment"> * &amp;lt;element name="list"&gt;</em> <a name="52" href="#52">52</a> <em class="jxr_javadoccomment"> * &amp;lt;complexType&gt;</em> <a name="53" href="#53">53</a> <em class="jxr_javadoccomment"> * &amp;lt;complexContent&gt;</em> <a name="54" href="#54">54</a> <em class="jxr_javadoccomment"> * &amp;lt;restriction base="{<a href="http://www.w3.org/2001/XMLSchema" target="alexandria_uri">http://www.w3.org/2001/XMLSchema</a>}anyType"&gt;</em> <a name="55" href="#55">55</a> <em class="jxr_javadoccomment"> * &amp;lt;sequence&gt;</em> <a name="56" href="#56">56</a> <em class="jxr_javadoccomment"> * &amp;lt;element name="value" type="{urn:epcglobal:rp:xsd:1}EventTypeParamType" maxOccurs="unbounded"/&gt;</em> <a name="57" href="#57">57</a> <em class="jxr_javadoccomment"> * &amp;lt;/sequence&gt;</em> <a name="58" href="#58">58</a> <em class="jxr_javadoccomment"> * &amp;lt;/restriction&gt;</em> <a name="59" href="#59">59</a> <em class="jxr_javadoccomment"> * &amp;lt;/complexContent&gt;</em> <a name="60" href="#60">60</a> <em class="jxr_javadoccomment"> * &amp;lt;/complexType&gt;</em> <a name="61" href="#61">61</a> <em class="jxr_javadoccomment"> * &amp;lt;/element&gt;</em> <a name="62" href="#62">62</a> <em class="jxr_javadoccomment"> * &amp;lt;/sequence&gt;</em> <a name="63" href="#63">63</a> <em class="jxr_javadoccomment"> * &amp;lt;/restriction&gt;</em> <a name="64" href="#64">64</a> <em class="jxr_javadoccomment"> * &amp;lt;/complexContent&gt;</em> <a name="65" href="#65">65</a> <em class="jxr_javadoccomment"> * &amp;lt;/complexType&gt;</em> <a name="66" href="#66">66</a> <em class="jxr_javadoccomment"> * &lt;/pre&gt;</em> <a name="67" href="#67">67</a> <em class="jxr_javadoccomment"> * </em> <a name="68" href="#68">68</a> <em class="jxr_javadoccomment"> * </em> <a name="69" href="#69">69</a> <em class="jxr_javadoccomment"> */</em> <a name="70" href="#70">70</a> @XmlAccessorType(XmlAccessType.FIELD) <a name="71" href="#71">71</a> @XmlType(name = <span class="jxr_string">"EventTypeListParamType"</span>, propOrder = { <a name="72" href="#72">72</a> <span class="jxr_string">"list"</span> <a name="73" href="#73">73</a> }) <a name="74" href="#74">74</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../../org/accada/reader/rprm/core/msg/reply/EventTypeListParamType.html">EventTypeListParamType</a> { <a name="75" href="#75">75</a> <a name="76" href="#76">76</a> <strong class="jxr_keyword">protected</strong> org.accada.reader.rprm.core.msg.reply.EventTypeListParamType.List list; <a name="77" href="#77">77</a> <a name="78" href="#78">78</a> <em class="jxr_javadoccomment">/**</em> <a name="79" href="#79">79</a> <em class="jxr_javadoccomment"> * Gets the value of the list property.</em> <a name="80" href="#80">80</a> <em class="jxr_javadoccomment"> * </em> <a name="81" href="#81">81</a> <em class="jxr_javadoccomment"> * @return</em> <a name="82" href="#82">82</a> <em class="jxr_javadoccomment"> * possible object is</em> <a name="83" href="#83">83</a> <em class="jxr_javadoccomment"> * {@link org.accada.reader.rprm.core.msg.reply.EventTypeListParamType.List }</em> <a name="84" href="#84">84</a> <em class="jxr_javadoccomment"> * </em> <a name="85" href="#85">85</a> <em class="jxr_javadoccomment"> */</em> <a name="86" href="#86">86</a> <strong class="jxr_keyword">public</strong> org.accada.reader.rprm.core.msg.reply.EventTypeListParamType.List getList() { <a name="87" href="#87">87</a> <strong class="jxr_keyword">return</strong> list; <a name="88" href="#88">88</a> } <a name="89" href="#89">89</a> <a name="90" href="#90">90</a> <em class="jxr_javadoccomment">/**</em> <a name="91" href="#91">91</a> <em class="jxr_javadoccomment"> * Sets the value of the list property.</em> <a name="92" href="#92">92</a> <em class="jxr_javadoccomment"> * </em> <a name="93" href="#93">93</a> <em class="jxr_javadoccomment"> * @param value</em> <a name="94" href="#94">94</a> <em class="jxr_javadoccomment"> * allowed object is</em> <a name="95" href="#95">95</a> <em class="jxr_javadoccomment"> * {@link org.accada.reader.rprm.core.msg.reply.EventTypeListParamType.List }</em> <a name="96" href="#96">96</a> <em class="jxr_javadoccomment"> * </em> <a name="97" href="#97">97</a> <em class="jxr_javadoccomment"> */</em> <a name="98" href="#98">98</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setList(org.accada.reader.rprm.core.msg.reply.EventTypeListParamType.List value) { <a name="99" href="#99">99</a> <strong class="jxr_keyword">this</strong>.list = value; <a name="100" href="#100">100</a> } <a name="101" href="#101">101</a> <a name="102" href="#102">102</a> <a name="103" href="#103">103</a> <em class="jxr_javadoccomment">/**</em> <a name="104" href="#104">104</a> <em class="jxr_javadoccomment"> * &lt;p&gt;Java class for anonymous complex type.</em> <a name="105" href="#105">105</a> <em class="jxr_javadoccomment"> * </em> <a name="106" href="#106">106</a> <em class="jxr_javadoccomment"> * &lt;p&gt;The following schema fragment specifies the expected content contained within this class.</em> <a name="107" href="#107">107</a> <em class="jxr_javadoccomment"> * </em> <a name="108" href="#108">108</a> <em class="jxr_javadoccomment"> * &lt;pre&gt;</em> <a name="109" href="#109">109</a> <em class="jxr_javadoccomment"> * &amp;lt;complexType&gt;</em> <a name="110" href="#110">110</a> <em class="jxr_javadoccomment"> * &amp;lt;complexContent&gt;</em> <a name="111" href="#111">111</a> <em class="jxr_javadoccomment"> * &amp;lt;restriction base="{<a href="http://www.w3.org/2001/XMLSchema" target="alexandria_uri">http://www.w3.org/2001/XMLSchema</a>}anyType"&gt;</em> <a name="112" href="#112">112</a> <em class="jxr_javadoccomment"> * &amp;lt;sequence&gt;</em> <a name="113" href="#113">113</a> <em class="jxr_javadoccomment"> * &amp;lt;element name="value" type="{urn:epcglobal:rp:xsd:1}EventTypeParamType" maxOccurs="unbounded"/&gt;</em> <a name="114" href="#114">114</a> <em class="jxr_javadoccomment"> * &amp;lt;/sequence&gt;</em> <a name="115" href="#115">115</a> <em class="jxr_javadoccomment"> * &amp;lt;/restriction&gt;</em> <a name="116" href="#116">116</a> <em class="jxr_javadoccomment"> * &amp;lt;/complexContent&gt;</em> <a name="117" href="#117">117</a> <em class="jxr_javadoccomment"> * &amp;lt;/complexType&gt;</em> <a name="118" href="#118">118</a> <em class="jxr_javadoccomment"> * &lt;/pre&gt;</em> <a name="119" href="#119">119</a> <em class="jxr_javadoccomment"> * </em> <a name="120" href="#120">120</a> <em class="jxr_javadoccomment"> * </em> <a name="121" href="#121">121</a> <em class="jxr_javadoccomment"> */</em> <a name="122" href="#122">122</a> @XmlAccessorType(XmlAccessType.FIELD) <a name="123" href="#123">123</a> @XmlType(name = <span class="jxr_string">""</span>, propOrder = { <a name="124" href="#124">124</a> <span class="jxr_string">"value"</span> <a name="125" href="#125">125</a> }) <a name="126" href="#126">126</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../../org/accada/reader/rprm/core/msg/reply/TriggerTypeListReturnType.html">List</a> { <a name="127" href="#127">127</a> <a name="128" href="#128">128</a> <strong class="jxr_keyword">protected</strong> java.util.List&lt;String&gt; value; <a name="129" href="#129">129</a> <a name="130" href="#130">130</a> <em class="jxr_javadoccomment">/**</em> <a name="131" href="#131">131</a> <em class="jxr_javadoccomment"> * Gets the value of the value property.</em> <a name="132" href="#132">132</a> <em class="jxr_javadoccomment"> * </em> <a name="133" href="#133">133</a> <em class="jxr_javadoccomment"> * &lt;p&gt;</em> <a name="134" href="#134">134</a> <em class="jxr_javadoccomment"> * This accessor method returns a reference to the live list,</em> <a name="135" href="#135">135</a> <em class="jxr_javadoccomment"> * not a snapshot. Therefore any modification you make to the</em> <a name="136" href="#136">136</a> <em class="jxr_javadoccomment"> * returned list will be present inside the JAXB object.</em> <a name="137" href="#137">137</a> <em class="jxr_javadoccomment"> * This is why there is not a &lt;CODE&gt;set&lt;/CODE&gt; method for the value property.</em> <a name="138" href="#138">138</a> <em class="jxr_javadoccomment"> * </em> <a name="139" href="#139">139</a> <em class="jxr_javadoccomment"> * &lt;p&gt;</em> <a name="140" href="#140">140</a> <em class="jxr_javadoccomment"> * For example, to add a new item, do as follows:</em> <a name="141" href="#141">141</a> <em class="jxr_javadoccomment"> * &lt;pre&gt;</em> <a name="142" href="#142">142</a> <em class="jxr_javadoccomment"> * getValue().add(newItem);</em> <a name="143" href="#143">143</a> <em class="jxr_javadoccomment"> * &lt;/pre&gt;</em> <a name="144" href="#144">144</a> <em class="jxr_javadoccomment"> * </em> <a name="145" href="#145">145</a> <em class="jxr_javadoccomment"> * </em> <a name="146" href="#146">146</a> <em class="jxr_javadoccomment"> * &lt;p&gt;</em> <a name="147" href="#147">147</a> <em class="jxr_javadoccomment"> * Objects of the following type(s) are allowed in the list</em> <a name="148" href="#148">148</a> <em class="jxr_javadoccomment"> * {@link String }</em> <a name="149" href="#149">149</a> <em class="jxr_javadoccomment"> * </em> <a name="150" href="#150">150</a> <em class="jxr_javadoccomment"> * </em> <a name="151" href="#151">151</a> <em class="jxr_javadoccomment"> */</em> <a name="152" href="#152">152</a> <strong class="jxr_keyword">public</strong> java.util.List&lt;String&gt; getValue() { <a name="153" href="#153">153</a> <strong class="jxr_keyword">if</strong> (value == <strong class="jxr_keyword">null</strong>) { <a name="154" href="#154">154</a> value = <strong class="jxr_keyword">new</strong> ArrayList&lt;String&gt;(); <a name="155" href="#155">155</a> } <a name="156" href="#156">156</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">this</strong>.value; <a name="157" href="#157">157</a> } <a name="158" href="#158">158</a> <a name="159" href="#159">159</a> } <a name="160" href="#160">160</a> <a name="161" href="#161">161</a> } </pre> <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body> </html>
doc/html/qscriptcontextinfo-qt3.html
kobolabs/qt-everywhere-4.8.0
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- qscriptcontextinfo.cpp --> <title>Qt 4.8: Qt 3 Support Members for QScriptContextInfo</title> <link rel="stylesheet" type="text/css" href="style/offline.css" /> </head> <body> <div class="header" id="qtdocheader"> <div class="content"> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> </div> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Breadcrumbs go here --> <li><a href="modules.html">Modules</a></li> <li><a href="qtscript.html">QtScript</a></li> <li>QScriptContextInfo</li> </ul> </div> </div> <div class="content mainContent"> <h1 class="title">Qt 3 Support Members for QScriptContextInfo</h1> <p><b>The following class members are part of the <a href="qt3support.html">Qt 3 support layer</a>.</b> They are provided to help you port old code to Qt 4. We advise against using them in new code.</p> <p><ul><li><a href="qscriptcontextinfo.html">QScriptContextInfo class reference</a></li></ul></p> <h2>Public Functions</h2> <table class="alignedsummary"> <tr><td class="memItemLeft topAlign rightAlign"> int </td><td class="memItemRight bottomAlign"><b><a href="qscriptcontextinfo-qt3.html#columnNumber">columnNumber</a></b> () const</td></tr> </table> <h2>Member Function Documentation</h2> <!-- $$$columnNumber[overload1]$$$columnNumber --> <h3 class="fn"><a name="columnNumber"></a><span class="type">int</span> QScriptContextInfo::<span class="name">columnNumber</span> () const</h3> <!-- @@@columnNumber --> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> <br /> <p> Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p> <p> Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> </div> </body> </html>
doc/html/qorganizermanagerengine.html
robclark/qtmobility-1.1.0
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- qorganizermanagerengine.cpp --> <title>Qt Mobility 1.1: QOrganizerManagerEngine Class Reference</title> <link rel="stylesheet" type="text/css" href="style/style.css" /> <!--[if IE]> <meta name="MSSmartTagsPreventParsing" content="true"> <meta http-equiv="imagetoolbar" content="no"> <![endif]--> <!--[if lt IE 7]> <link rel="stylesheet" type="text/css" href="style/style_ie6.css"> <![endif]--> <!--[if IE 7]> <link rel="stylesheet" type="text/css" href="style/style_ie7.css"> <![endif]--> <!--[if IE 8]> <link rel="stylesheet" type="text/css" href="style/style_ie8.css"> <![endif]--> <script src="scripts/jquery.js" type="text/javascript"></script> <script src="scripts/functions.js" type="text/javascript"></script> <script src="./scripts/superfish.js" type="text/javascript"></script> <script src="./scripts/narrow.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="style/superfish.css" /> <link rel="stylesheet" type="text/css" href="style/narrow.css" /></head> <body class="" onload="CheckEmptyAndLoadList();"> <div class="header" id="qtdocheader"> <div class="content"> <div id="nav-logo"> <a href="index.html">Home</a></div> <a href="index.html" class="qtref"><span>Qt Mobility Reference Documentation</span></a> <div id="narrowsearch"><form onsubmit="return false;" action="" id="qtdocsearchTop"> <fieldset> <input type="text" value="" id="pageType2" name="searchstring"/> </fieldset> </form></div> <div id="nav-topright"> <ul> <li class="nav-topright-home"><a href="http://qt.nokia.com/">Qt HOME</a></li> <li class="nav-topright-dev"><a href="http://developer.qt.nokia.com/">DEV</a></li> <li class="nav-topright-labs"><a href="http://labs.qt.nokia.com/blogs/">LABS</a></li> <li class="nav-topright-doc nav-topright-doc-active"><a href="http://doc.qt.nokia.com/"> DOC</a></li> <li class="nav-topright-blog"><a href="http://blog.qt.nokia.com/">BLOG</a></li> </ul> </div> <div id="shortCut"> <ul> <li class="shortCut-topleft-inactive"><span><a href="index.html">Mobility 1.1</a></span></li> <li class="shortCut-topleft-active"><a href="http://doc.qt.nokia.com">ALL VERSIONS </a></li> </ul> </div> <ul class="sf-menu sf-js-enabled sf-shadow" id="narrowmenu"> <li><a href="#">API Lookup</a> <ul id="topmenuLook"> <li><a href="classes.html">Class index</a></li> <li><a href="functions.html">Function index</a></li> <li><a href="modules.html">Modules</a></li> </ul> </li> <li><a href="#">Examples</a> <ul id="topmenuexample"> <li><a href="all-examples.html">Examples</a></li> </ul> </li> </ul> </div> </div> <div class="wrapper"> <div class="hd"> <span></span> </div> <div class="bd group"> <div class="sidebar"> <div class="searchlabel"> Search index:</div> <div class="search"> <form id="qtdocsearch" action="" onsubmit="return false;"> <fieldset> <input type="text" name="searchstring" id="pageType" value="" /> </fieldset> </form> </div> <div class="box first bottombar" id="lookup"> <h2 title="API Lookup"><span></span> API Lookup</h2> <div id="list001" class="list"> <ul id="ul001" > <li class="defaultLink"><a href="classes.html">Class index</a></li> <li class="defaultLink"><a href="functions.html">Function index</a></li> <li class="defaultLink"><a href="modules.html">Modules</a></li> <li class="defaultLink"><a href="index.html#platform-compatibility">Platform Compatibility</a></li> <li class="defaultLink"><a href="qml-plugins.html">QML Plugins</a></li> </ul> </div> </div> <div class="box bottombar" id="topics"> <h2 title="Qt Topics"><span></span> Qt Topics</h2> <div id="list002" class="list"> <ul id="ul002" > <li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/">Qt 4.7</a></li> <li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/qt-basic-concepts.html">Basic Qt architecture</a></li> <li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/declarativeui.html">Device UI's &amp; Qt Quick</a></li> <li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/qt-gui-concepts.html">Desktop UI components</a></li> <li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/platform-specific.html">Platform-specific info</a></li> </ul> </div> </div> <div class="box" id="examples"> <h2 title="Examples"><span></span> Examples</h2> <div id="list003" class="list"> <ul id="ul003"> <li class="defaultLink"><a href="all-examples.html">Examples</a></li> </ul> </div> </div> </div> <div class="wrap"> <div class="toolbar"> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Bread crumbs goes here --> <li><a href="modules.html">Modules</a></li> <li><a href="qtorganizer.html">QtOrganizer</a></li> <li>QOrganizerManagerEngine</li> </ul> </div> <div class="toolbuttons toolblock"> <ul> <li id="smallA" class="t_button">A</li> <li id="medA" class="t_button active">A</li> <li id="bigA" class="t_button">A</li> <li id="print" class="t_button"><a href="javascript:this.print();"> <span>Print</span></a></li> </ul> </div> </div> <div class="content"> <div class="toc"> <h3>Contents</h3> <ul> <li class="level1"><a href="#public-functions">Public Functions</a></li> <li class="level1"><a href="#signals">Signals</a></li> <li class="level1"><a href="#static-public-members">Static Public Members</a></li> <li class="level1"><a href="#details">Detailed Description</a></li> </ul> </div> <h1 class="title">QOrganizerManagerEngine Class Reference</h1> <p>The QOrganizerManagerEngine class provides the interface for all implementations of the organizer item manager backend functionality. <a href="#details">More...</a></p> <pre class="highlightedCode brush: cpp"> #include &lt;QOrganizerManagerEngine&gt;</pre><p>Inherits <a href="http://qt.nokia.com/doc/4.6/qobject.html">QObject</a>.</p> <p>Inherited by <a href="qorganizeriteminvalidengine.html">QOrganizerItemInvalidEngine</a>.</p> <ul> <li><a href="qorganizermanagerengine-members.html">List of all members, including inherited members</a></li> </ul> <hr /> <a name="public-functions"></a> <h2>Public Functions</h2> <table class="alignedsummary"> <tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#QOrganizerManagerEngine">QOrganizerManagerEngine</a></b> ()</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#cancelRequest">cancelRequest</a></b> ( QOrganizerAbstractRequest * <i>req</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QOrganizerCollection </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#collection">collection</a></b> ( const QOrganizerCollectionId &amp; <i>collectionId</i>, QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QList&lt;QOrganizerCollection&gt; </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#collections">collections</a></b> ( QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QOrganizerCollection </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#compatibleCollection">compatibleCollection</a></b> ( const QOrganizerCollection &amp; <i>original</i>, QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QOrganizerItem </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#compatibleItem">compatibleItem</a></b> ( const QOrganizerItem &amp; <i>original</i>, QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QOrganizerCollection </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#defaultCollection">defaultCollection</a></b> ( QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QOrganizerItemDetailDefinition </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#detailDefinition">detailDefinition</a></b> ( const QString &amp; <i>definitionName</i>, const QString &amp; <i>organizeritemType</i>, QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QMap&lt;QString, QOrganizerItemDetailDefinition&gt; </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#detailDefinitions">detailDefinitions</a></b> ( const QString &amp; <i>organizeritemType</i>, QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#hasFeature">hasFeature</a></b> ( QOrganizerManager::ManagerFeature <i>feature</i>, const QString &amp; <i>organizeritemType</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#isFilterSupported">isFilterSupported</a></b> ( const QOrganizerItemFilter &amp; <i>filter</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QOrganizerItem </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#item">item</a></b> ( const QOrganizerItemId &amp; <i>organizeritemId</i>, const QOrganizerItemFetchHint &amp; <i>fetchHint</i>, QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QList&lt;QOrganizerItemId&gt; </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#itemIds">itemIds</a></b> ( const QDateTime &amp; <i>startDate</i>, const QDateTime &amp; <i>endDate</i>, const QOrganizerItemFilter &amp; <i>filter</i>, const QList&lt;QOrganizerItemSortOrder&gt; &amp; <i>sortOrders</i>, QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QList&lt;QOrganizerItem&gt; </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#itemOccurrences">itemOccurrences</a></b> ( const QOrganizerItem &amp; <i>parentItem</i>, const QDateTime &amp; <i>periodStart</i>, const QDateTime &amp; <i>periodEnd</i>, int <i>maxCount</i>, const QOrganizerItemFetchHint &amp; <i>fetchHint</i>, QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QList&lt;QOrganizerItem&gt; </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#items">items</a></b> ( const QDateTime &amp; <i>startDate</i>, const QDateTime &amp; <i>endDate</i>, const QOrganizerItemFilter &amp; <i>filter</i>, const QList&lt;QOrganizerItemSortOrder&gt; &amp; <i>sortOrders</i>, const QOrganizerItemFetchHint &amp; <i>fetchHint</i>, QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QList&lt;QOrganizerItem&gt; </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#itemsForExport">itemsForExport</a></b> ( const QDateTime &amp; <i>startDate</i>, const QDateTime &amp; <i>endDate</i>, const QOrganizerItemFilter &amp; <i>filter</i>, const QList&lt;QOrganizerItemSortOrder&gt; &amp; <i>sortOrders</i>, const QOrganizerItemFetchHint &amp; <i>fetchHint</i>, QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QString </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#managerName">managerName</a></b> () const = 0</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QMap&lt;QString, QString&gt; </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#managerParameters">managerParameters</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> QString </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#managerUri">managerUri</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual int </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#managerVersion">managerVersion</a></b> () const = 0</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#removeCollection">removeCollection</a></b> ( const QOrganizerCollectionId &amp; <i>collectionId</i>, QOrganizerManager::Error * <i>error</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#removeDetailDefinition">removeDetailDefinition</a></b> ( const QString &amp; <i>definitionName</i>, const QString &amp; <i>organizeritemType</i>, QOrganizerManager::Error * <i>error</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#removeItem">removeItem</a></b> ( const QOrganizerItemId &amp; <i>organizeritemId</i>, QOrganizerManager::Error * <i>error</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#removeItems">removeItems</a></b> ( const QList&lt;QOrganizerItemId&gt; &amp; <i>organizeritemIds</i>, QMap&lt;int, QOrganizerManager::Error&gt; * <i>errorMap</i>, QOrganizerManager::Error * <i>error</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#requestDestroyed">requestDestroyed</a></b> ( QOrganizerAbstractRequest * <i>req</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#saveCollection">saveCollection</a></b> ( QOrganizerCollection * <i>collection</i>, QOrganizerManager::Error * <i>error</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#saveDetailDefinition">saveDetailDefinition</a></b> ( const QOrganizerItemDetailDefinition &amp; <i>def</i>, const QString &amp; <i>organizeritemType</i>, QOrganizerManager::Error * <i>error</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#saveItem">saveItem</a></b> ( QOrganizerItem * <i>organizeritem</i>, QOrganizerManager::Error * <i>error</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#saveItems">saveItems</a></b> ( QList&lt;QOrganizerItem&gt; * <i>organizeritems</i>, QMap&lt;int, QOrganizerManager::Error&gt; * <i>errorMap</i>, QOrganizerManager::Error * <i>error</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#startRequest">startRequest</a></b> ( QOrganizerAbstractRequest * <i>req</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual QStringList </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#supportedItemTypes">supportedItemTypes</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#validateCollection">validateCollection</a></b> ( const QOrganizerCollection &amp; <i>collection</i>, QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#validateDefinition">validateDefinition</a></b> ( const QOrganizerItemDetailDefinition &amp; <i>definition</i>, QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#validateItem">validateItem</a></b> ( const QOrganizerItem &amp; <i>organizeritem</i>, QOrganizerManager::Error * <i>error</i> ) const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> virtual bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#waitForRequestFinished">waitForRequestFinished</a></b> ( QOrganizerAbstractRequest * <i>req</i>, int <i>msecs</i> )</td></tr> </table> <ul> <li class="fn">29 public functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-functions">QObject</a></li> </ul> <hr /> <a name="signals"></a> <h2>Signals</h2> <table class="alignedsummary"> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#collectionsAdded">collectionsAdded</a></b> ( const QList&lt;QOrganizerCollectionId&gt; &amp; <i>collectionIds</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#collectionsChanged">collectionsChanged</a></b> ( const QList&lt;QOrganizerCollectionId&gt; &amp; <i>collectionIds</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#collectionsRemoved">collectionsRemoved</a></b> ( const QList&lt;QOrganizerCollectionId&gt; &amp; <i>collectionIds</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#dataChanged">dataChanged</a></b> ()</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#itemsAdded">itemsAdded</a></b> ( const QList&lt;QOrganizerItemId&gt; &amp; <i>organizeritemIds</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#itemsChanged">itemsChanged</a></b> ( const QList&lt;QOrganizerItemId&gt; &amp; <i>organizeritemIds</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#itemsRemoved">itemsRemoved</a></b> ( const QList&lt;QOrganizerItemId&gt; &amp; <i>organizeritemIds</i> )</td></tr> </table> <ul> <li class="fn">1 signal inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#signals">QObject</a></li> </ul> <hr /> <a name="static-public-members"></a> <h2>Static Public Members</h2> <table class="alignedsummary"> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#addSorted">addSorted</a></b> ( QList&lt;QOrganizerItem&gt; * <i>sorted</i>, const QOrganizerItem &amp; <i>toAdd</i>, const QList&lt;QOrganizerItemSortOrder&gt; &amp; <i>sortOrders</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> QOrganizerItemFilter </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#canonicalizedFilter">canonicalizedFilter</a></b> ( const QOrganizerItemFilter &amp; <i>filter</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> int </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#compareItem">compareItem</a></b> ( const QOrganizerItem &amp; <i>a</i>, const QOrganizerItem &amp; <i>b</i>, const QList&lt;QOrganizerItemSortOrder&gt; &amp; <i>sortOrders</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> int </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#compareVariant">compareVariant</a></b> ( const QVariant &amp; <i>first</i>, const QVariant &amp; <i>second</i>, Qt::CaseSensitivity <i>sensitivity</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const QOrganizerCollectionEngineId * </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#engineCollectionId">engineCollectionId</a></b> ( const QOrganizerCollectionId &amp; <i>id</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> const QOrganizerItemEngineId * </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#engineItemId">engineItemId</a></b> ( const QOrganizerItemId &amp; <i>id</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#isItemBetweenDates">isItemBetweenDates</a></b> ( const QOrganizerItem &amp; <i>item</i>, const QDateTime &amp; <i>startPeriod</i>, const QDateTime &amp; <i>endPeriod</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> QMap&lt;QString, QMap&lt;QString, QOrganizerItemDetailDefinition&gt; &gt; </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#schemaDefinitions">schemaDefinitions</a></b> ( int <i>version</i> = 1 )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#setDetailAccessConstraints">setDetailAccessConstraints</a></b> ( QOrganizerItemDetail * <i>detail</i>, QOrganizerItemDetail::AccessConstraints <i>constraints</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#testFilter">testFilter</a></b> ( const QOrganizerItemFilter &amp; <i>filter</i>, const QOrganizerItem &amp; <i>organizeritem</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#updateCollectionFetchRequest">updateCollectionFetchRequest</a></b> ( QOrganizerCollectionFetchRequest * <i>req</i>, const QList&lt;QOrganizerCollection&gt; &amp; <i>result</i>, QOrganizerManager::Error <i>error</i>, QOrganizerAbstractRequest::State <i>newState</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#updateCollectionRemoveRequest">updateCollectionRemoveRequest</a></b> ( QOrganizerCollectionRemoveRequest * <i>req</i>, QOrganizerManager::Error <i>error</i>, const QMap&lt;int, QOrganizerManager::Error&gt; &amp; <i>errorMap</i>, QOrganizerAbstractRequest::State <i>newState</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#updateCollectionSaveRequest">updateCollectionSaveRequest</a></b> ( QOrganizerCollectionSaveRequest * <i>req</i>, const QList&lt;QOrganizerCollection&gt; &amp; <i>result</i>, QOrganizerManager::Error <i>error</i>, const QMap&lt;int, QOrganizerManager::Error&gt; &amp; <i>errorMap</i>, QOrganizerAbstractRequest::State <i>newState</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#updateDefinitionFetchRequest">updateDefinitionFetchRequest</a></b> ( QOrganizerItemDetailDefinitionFetchRequest * <i>req</i>, const QMap&lt;QString, QOrganizerItemDetailDefinition&gt; &amp; <i>result</i>, QOrganizerManager::Error <i>error</i>, const QMap&lt;int, QOrganizerManager::Error&gt; &amp; <i>errorMap</i>, QOrganizerAbstractRequest::State <i>newState</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#updateDefinitionRemoveRequest">updateDefinitionRemoveRequest</a></b> ( QOrganizerItemDetailDefinitionRemoveRequest * <i>req</i>, QOrganizerManager::Error <i>error</i>, const QMap&lt;int, QOrganizerManager::Error&gt; &amp; <i>errorMap</i>, QOrganizerAbstractRequest::State <i>newState</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#updateDefinitionSaveRequest">updateDefinitionSaveRequest</a></b> ( QOrganizerItemDetailDefinitionSaveRequest * <i>req</i>, const QList&lt;QOrganizerItemDetailDefinition&gt; &amp; <i>result</i>, QOrganizerManager::Error <i>error</i>, const QMap&lt;int, QOrganizerManager::Error&gt; &amp; <i>errorMap</i>, QOrganizerAbstractRequest::State <i>newState</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#updateItemFetchForExportRequest">updateItemFetchForExportRequest</a></b> ( QOrganizerItemFetchForExportRequest * <i>req</i>, const QList&lt;QOrganizerItem&gt; &amp; <i>result</i>, QOrganizerManager::Error <i>error</i>, QOrganizerAbstractRequest::State <i>newState</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#updateItemFetchRequest">updateItemFetchRequest</a></b> ( QOrganizerItemFetchRequest * <i>req</i>, const QList&lt;QOrganizerItem&gt; &amp; <i>result</i>, QOrganizerManager::Error <i>error</i>, QOrganizerAbstractRequest::State <i>newState</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#updateItemIdFetchRequest">updateItemIdFetchRequest</a></b> ( QOrganizerItemIdFetchRequest * <i>req</i>, const QList&lt;QOrganizerItemId&gt; &amp; <i>result</i>, QOrganizerManager::Error <i>error</i>, QOrganizerAbstractRequest::State <i>newState</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#updateItemOccurrenceFetchRequest">updateItemOccurrenceFetchRequest</a></b> ( QOrganizerItemOccurrenceFetchRequest * <i>req</i>, const QList&lt;QOrganizerItem&gt; &amp; <i>result</i>, QOrganizerManager::Error <i>error</i>, QOrganizerAbstractRequest::State <i>newState</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#updateItemRemoveRequest">updateItemRemoveRequest</a></b> ( QOrganizerItemRemoveRequest * <i>req</i>, QOrganizerManager::Error <i>error</i>, const QMap&lt;int, QOrganizerManager::Error&gt; &amp; <i>errorMap</i>, QOrganizerAbstractRequest::State <i>newState</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#updateItemSaveRequest">updateItemSaveRequest</a></b> ( QOrganizerItemSaveRequest * <i>req</i>, const QList&lt;QOrganizerItem&gt; &amp; <i>result</i>, QOrganizerManager::Error <i>error</i>, const QMap&lt;int, QOrganizerManager::Error&gt; &amp; <i>errorMap</i>, QOrganizerAbstractRequest::State <i>newState</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qorganizermanagerengine.html#updateRequestState">updateRequestState</a></b> ( QOrganizerAbstractRequest * <i>req</i>, QOrganizerAbstractRequest::State <i>state</i> )</td></tr> </table> <ul> <li class="fn">4 static public members inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#static-public-members">QObject</a></li> </ul> <h3>Additional Inherited Members</h3> <ul> <li class="fn">1 property inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#properties">QObject</a></li> <li class="fn">1 public slot inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-slots">QObject</a></li> <li class="fn">1 public variable inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#public-variables">QObject</a></li> <li class="fn">7 protected functions inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-functions">QObject</a></li> <li class="fn">2 protected variables inherited from <a href="http://qt.nokia.com/doc/4.6/qobject.html#protected-variables">QObject</a></li> </ul> <a name="details"></a> <hr /> <div class="descr"/> <h2>Detailed Description</h2> <p>The QOrganizerManagerEngine class provides the interface for all implementations of the organizer item manager backend functionality.</p> <p>Instances of this class are usually provided by a <a href="qorganizermanagerenginefactory.html">QOrganizerManagerEngineFactory</a>, which is loaded from a plugin.</p> <p>The default implementation of this interface provides a basic level of functionality for some functions so that specific engines can simply implement the functionality that is supported by the specific organizer items engine that is being adapted.</p> <p>More information on writing a organizer items engine plugin is available in the <a href="organizerengines.html">Qt Organizer Manager Engines</a> documentation.</p> </div> <p>See also <a href="qorganizermanager.html">QOrganizerManager</a> and <a href="qorganizermanagerenginefactory.html">QOrganizerManagerEngineFactory</a>.</p> <hr /> <div class="func"/> <h2>Member Function Documentation</h2> <h3 class="fn"><a name="QOrganizerManagerEngine"></a>QOrganizerManagerEngine::QOrganizerManagerEngine ()</h3> <p>A default, empty constructor.</p> <h3 class="fn"><a name="addSorted"></a>void QOrganizerManagerEngine::addSorted ( <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritem.html">QOrganizerItem</a>&gt; * <i>sorted</i>, const <a href="qorganizeritem.html">QOrganizerItem</a> &amp; <i>toAdd</i>, const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritemsortorder.html">QOrganizerItemSortOrder</a>&gt; &amp; <i>sortOrders</i> )<tt> [static]</tt></h3> <p>Performs insertion sort of the item <i>toAdd</i> into the <i>sorted</i> list, according to the provided <i>sortOrders</i> list. The first <a href="qorganizeritemsortorder.html">QOrganizerItemSortOrder</a> in the list has the highest priority; if the item <i>toAdd</i> is deemed equal to another in the <i>sorted</i> list, the second <a href="qorganizeritemsortorder.html">QOrganizerItemSortOrder</a> in the list is used (and so on until either the item is inserted or there are no more sort order objects in the list).</p> <h3 class="fn"><a name="cancelRequest"></a>bool QOrganizerManagerEngine::cancelRequest ( <a href="qorganizerabstractrequest.html">QOrganizerAbstractRequest</a> * <i>req</i> )<tt> [virtual]</tt></h3> <p>Asks the manager engine to cancel the given request <i>req</i> which was previously started and is currently in a cancellable state. Returns true if cancellation of the request was started successfully, otherwise returns false.</p> <p>See also <a href="qorganizermanagerengine.html#startRequest">startRequest</a>() and <a href="qorganizerabstractrequest.html#cancel">QOrganizerAbstractRequest::cancel</a>().</p> <h3 class="fn"><a name="canonicalizedFilter"></a><a href="qorganizeritemfilter.html">QOrganizerItemFilter</a> QOrganizerManagerEngine::canonicalizedFilter ( const <a href="qorganizeritemfilter.html">QOrganizerItemFilter</a> &amp; <i>filter</i> )<tt> [static]</tt></h3> <p>Given an input <i>filter</i>, returns the canonical version of the filter.</p> <p>Some of the following transformations may be applied:</p> <ul> <li>Any QOrganizerItemInvalidFilters contained in a union filter will be removed</li> <li>Any default QOrganizerItemFilters contained in an intersection filter will be removed</li> <li>Any QOrganizerItemIntersectionFilters with a <a href="qorganizeriteminvalidfilter.html">QOrganizerItemInvalidFilter</a> contained will be replaced with a <a href="qorganizeriteminvalidfilter.html">QOrganizerItemInvalidFilter</a></li> <li>Any QOrganizerItemUnionFilters with a default <a href="qorganizeritemfilter.html">QOrganizerItemFilter</a> contained will be replaced with a default <a href="qorganizeritemfilter.html">QOrganizerItemFilter</a></li> <li>An empty <a href="qorganizeritemintersectionfilter.html">QOrganizerItemIntersectionFilter</a> will be replaced with a QOrganizerItemDefaultFilter</li> <li>An empty <a href="qorganizeritemunionfilter.html">QOrganizerItemUnionFilter</a> will be replaced with a <a href="qorganizeriteminvalidfilter.html">QOrganizerItemInvalidFilter</a></li> <li>An empty <a href="qorganizeritemidfilter.html">QOrganizerItemIdFilter</a> will be replaced with a <a href="qorganizeriteminvalidfilter.html">QOrganizerItemInvalidFilter</a></li> <li>An intersection or union filter with a single entry will be replaced by that entry</li> <li>A <a href="qorganizeritemdetailfilter.html">QOrganizerItemDetailFilter</a> or <a href="qorganizeritemdetailrangefilter.html">QOrganizerItemDetailRangeFilter</a> with no definition name will be replaced with a <a href="qorganizeriteminvalidfilter.html">QOrganizerItemInvalidFilter</a></li> <li>A <a href="qorganizeritemdetailrangefilter.html">QOrganizerItemDetailRangeFilter</a> with no range specified will be converted to a <a href="qorganizeritemdetailfilter.html">QOrganizerItemDetailFilter</a></li> </ul> <h3 class="fn"><a name="collection"></a><a href="qorganizercollection.html">QOrganizerCollection</a> QOrganizerManagerEngine::collection ( const <a href="qorganizercollectionid.html">QOrganizerCollectionId</a> &amp; <i>collectionId</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Returns the collection identified by the given <i>collectionId</i> in the manager. Any errors encountered during this operation should be stored to <i>error</i>. If the given <i>collectionId</i> does not specify a valid collection, <i>error</i> will be set to <tt>QOrganizerManager::DoesNotExistError</tt>.</p> <h3 class="fn"><a name="collections"></a><a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizercollection.html">QOrganizerCollection</a>&gt; QOrganizerManagerEngine::collections ( <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Returns the list of all of the collections managed by this manager. Any errors encountered during this operation should be stored to <i>error</i>.</p> <h3 class="fn"><a name="collectionsAdded"></a>void QOrganizerManagerEngine::collectionsAdded ( const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizercollectionid.html">QOrganizerCollectionId</a>&gt; &amp; <i>collectionIds</i> )<tt> [signal]</tt></h3> <p>This signal should be emitted at some point once the collections identified by <i>collectionIds</i> have been added to a datastore managed by this engine. This signal must not be emitted if the <a href="qorganizermanagerengine.html#dataChanged">dataChanged</a>() signal was previously emitted for these changes.</p> <h3 class="fn"><a name="collectionsChanged"></a>void QOrganizerManagerEngine::collectionsChanged ( const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizercollectionid.html">QOrganizerCollectionId</a>&gt; &amp; <i>collectionIds</i> )<tt> [signal]</tt></h3> <p>This signal should be emitted at some point once the metadata for the collections identified by <i>collectionIds</i> have been modified in a datastore managed by this engine. This signal is not emitted if one of the items in this collection has changed - <a href="qorganizermanagerengine.html#itemsChanged">itemsChanged</a>() will be emitted instead. This signal must not be emitted if the <a href="qorganizermanagerengine.html#dataChanged">dataChanged</a>() signal was previously emitted for these changes.</p> <h3 class="fn"><a name="collectionsRemoved"></a>void QOrganizerManagerEngine::collectionsRemoved ( const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizercollectionid.html">QOrganizerCollectionId</a>&gt; &amp; <i>collectionIds</i> )<tt> [signal]</tt></h3> <p>This signal should be emitted at some point once the collections identified by <i>collectionIds</i> have been removed from a datastore managed by this engine. This signal must not be emitted if the <a href="qorganizermanagerengine.html#dataChanged">dataChanged</a>() signal was previously emitted for these changes.</p> <h3 class="fn"><a name="compareItem"></a>int QOrganizerManagerEngine::compareItem ( const <a href="qorganizeritem.html">QOrganizerItem</a> &amp; <i>a</i>, const <a href="qorganizeritem.html">QOrganizerItem</a> &amp; <i>b</i>, const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritemsortorder.html">QOrganizerItemSortOrder</a>&gt; &amp; <i>sortOrders</i> )<tt> [static]</tt></h3> <p>Compares two organizer items (<i>a</i> and <i>b</i>) using the given list of <i>sortOrders</i>. Returns a negative number if <i>a</i> should appear before <i>b</i> according to the sort order, a positive number if <i>a</i> should appear after <i>b</i> according to the sort order, and zero if the two are unable to be sorted.</p> <h3 class="fn"><a name="compareVariant"></a>int QOrganizerManagerEngine::compareVariant ( const <a href="http://qt.nokia.com/doc/4.6/qvariant.html">QVariant</a> &amp; <i>first</i>, const <a href="http://qt.nokia.com/doc/4.6/qvariant.html">QVariant</a> &amp; <i>second</i>, <a href="http://qt.nokia.com/doc/4.6/qt.html#CaseSensitivity-enum">Qt::CaseSensitivity</a> <i>sensitivity</i> )<tt> [static]</tt></h3> <p>Compares <i>first</i> against <i>second</i>. If the types are strings (<a href="http://qt.nokia.com/doc/4.6/qvariant.html#Type-enum">QVariant::String</a>), the <i>sensitivity</i> argument controls case sensitivity when comparing.</p> <p>Returns: &lt;0 if <i>first</i> is less than <i>second</i> 0 if <i>first</i> is equal to <i>second</i> &gt;0 if <i>first</i> is greater than <i>second</i>.</p> <p>The results are undefined if the variants are different types, or cannot be compared.</p> <h3 class="fn"><a name="compatibleCollection"></a><a href="qorganizercollection.html">QOrganizerCollection</a> QOrganizerManagerEngine::compatibleCollection ( const <a href="qorganizercollection.html">QOrganizerCollection</a> &amp; <i>original</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Returns a pruned or modified version of the <i>original</i> collection which is valid and can be saved in the manager. The returned item might have meta data removed or arbitrarily changed. Any error which occurs will be saved to <i>error</i>. By default, modifiable collections are not supported, and so this function always returns false. Any engine which supports mutable collections should reimplement this function.</p> <h3 class="fn"><a name="compatibleItem"></a><a href="qorganizeritem.html">QOrganizerItem</a> QOrganizerManagerEngine::compatibleItem ( const <a href="qorganizeritem.html">QOrganizerItem</a> &amp; <i>original</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Returns a pruned or modified version of the <i>original</i> item which is valid and can be saved in the manager. The returned item might have details removed or arbitrarily changed. The cache of relationships in the item are ignored entirely when considering compatibility with the backend, as they are saved and validated separately. Any error which occurs will be saved to <i>error</i>.</p> <h3 class="fn"><a name="dataChanged"></a>void QOrganizerManagerEngine::dataChanged ()<tt> [signal]</tt></h3> <p>This signal is emitted some time after changes occur to the data managed by this engine, and the engine is unable to determine which changes occurred, or if the engine considers the changes to be radical enough to require clients to reload all data.</p> <p>If this signal is emitted, no other signals may be emitted for the associated changes.</p> <p>As it is possible that other processes (or other devices) may have caused the changes, the timing can not be determined.</p> <p>See also <a href="qorganizermanagerengine.html#itemsAdded">itemsAdded</a>(), <a href="qorganizermanagerengine.html#itemsChanged">itemsChanged</a>(), and <a href="qorganizermanagerengine.html#itemsRemoved">itemsRemoved</a>().</p> <h3 class="fn"><a name="defaultCollection"></a><a href="qorganizercollection.html">QOrganizerCollection</a> QOrganizerManagerEngine::defaultCollection ( <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Returns the default collection of the manager. Any errors encountered during this operation should be stored to <i>error</i>.</p> <h3 class="fn"><a name="detailDefinition"></a><a href="qorganizeritemdetaildefinition.html">QOrganizerItemDetailDefinition</a> QOrganizerManagerEngine::detailDefinition ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>definitionName</i>, const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>organizeritemType</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Returns the definition identified by the given <i>definitionName</i> that is valid for organizer items whose type is of the given <i>organizeritemType</i> in this store, or a default-constructed <a href="qorganizeritemdetaildefinition.html">QOrganizerItemDetailDefinition</a> if no such definition exists</p> <p>Any errors encountered during this operation should be stored to <i>error</i>.</p> <h3 class="fn"><a name="detailDefinitions"></a><a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;<a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a>, <a href="qorganizeritemdetaildefinition.html">QOrganizerItemDetailDefinition</a>&gt; QOrganizerManagerEngine::detailDefinitions ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>organizeritemType</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Returns the registered detail definitions which are valid for organizer items whose type is of the given <i>organizeritemType</i> in this engine.</p> <p>Any errors encountered during this operation should be stored to <i>error</i>.</p> <h3 class="fn"><a name="engineCollectionId"></a>const <a href="qorganizercollectionid.html">QOrganizerCollectionEngineId</a> * QOrganizerManagerEngine::engineCollectionId ( const <a href="qorganizercollectionid.html">QOrganizerCollectionId</a> &amp; <i>id</i> )<tt> [static]</tt></h3> <p>Returns the engine id from the given <i>id</i>. The caller does not take ownership of the pointer, and should not delete returned id or undefined behavior may occur.</p> <h3 class="fn"><a name="engineItemId"></a>const <a href="qorganizeritemid.html">QOrganizerItemEngineId</a> * QOrganizerManagerEngine::engineItemId ( const <a href="qorganizeritemid.html">QOrganizerItemId</a> &amp; <i>id</i> )<tt> [static]</tt></h3> <p>Returns the engine id from the given <i>id</i>. The caller does not take ownership of the pointer, and should not delete returned id or undefined behavior may occur.</p> <h3 class="fn"><a name="hasFeature"></a>bool QOrganizerManagerEngine::hasFeature ( <a href="qorganizermanager.html#ManagerFeature-enum">QOrganizerManager::ManagerFeature</a> <i>feature</i>, const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>organizeritemType</i> ) const<tt> [virtual]</tt></h3> <p>Returns true if the given <i>feature</i> is supported by this engine for organizer items of the given <i>organizeritemType</i></p> <h3 class="fn"><a name="isFilterSupported"></a>bool QOrganizerManagerEngine::isFilterSupported ( const <a href="qorganizeritemfilter.html">QOrganizerItemFilter</a> &amp; <i>filter</i> ) const<tt> [virtual]</tt></h3> <p>Returns a whether the supplied <i>filter</i> can be implemented natively by this engine. If not, the base class implementation will emulate the functionality.</p> <h3 class="fn"><a name="isItemBetweenDates"></a>bool QOrganizerManagerEngine::isItemBetweenDates ( const <a href="qorganizeritem.html">QOrganizerItem</a> &amp; <i>item</i>, const <a href="http://qt.nokia.com/doc/4.6/qdatetime.html">QDateTime</a> &amp; <i>startPeriod</i>, const <a href="http://qt.nokia.com/doc/4.6/qdatetime.html">QDateTime</a> &amp; <i>endPeriod</i> )<tt> [static]</tt></h3> <p>Returns true if the given <i>item</i> (or an occurrence of the item) occurs within the range specified by the <i>startPeriod</i> and the <i>endPeriod</i>. A default-constructed <i>startPeriod</i> signifies that the lower bound of the range is infinitely small (i.e&#x2e;, will match anything up to the <i>endPeriod</i>) and a default-constructed <i>endPeriod</i> signifies that the upper bound of the range is infinitely large (i.e&#x2e;, will match anything which occurs after the <i>startPeriod</i>).</p> <h3 class="fn"><a name="item"></a><a href="qorganizeritem.html">QOrganizerItem</a> QOrganizerManagerEngine::item ( const <a href="qorganizeritemid.html">QOrganizerItemId</a> &amp; <i>organizeritemId</i>, const <a href="qorganizeritemfetchhint.html">QOrganizerItemFetchHint</a> &amp; <i>fetchHint</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Returns the organizer item in the database identified by <i>organizeritemId</i>.</p> <p>If the item does not exist, an empty, default constructed <a href="qorganizeritem.html">QOrganizerItem</a> will be returned, and the <i>error</i> will be set to <tt>QOrganizerManager::DoesNotExistError</tt>.</p> <p>Any operation error which occurs will be saved in <i>error</i>.</p> <p>The <i>fetchHint</i> parameter describes the optimization hints that a manager may take. If the <i>fetchHint</i> is the default constructed hint, all existing details and relationships in the matching item will be returned. A client should not make changes to an item which has been retrieved using a fetch hint other than the default fetch hint. Doing so will result in information loss when saving the item back to the manager (as the &quot;new&quot; restricted item will replace the previously saved item in the backend).</p> <p>See also <a href="qorganizeritemfetchhint.html">QOrganizerItemFetchHint</a>.</p> <h3 class="fn"><a name="itemIds"></a><a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritemid.html">QOrganizerItemId</a>&gt; QOrganizerManagerEngine::itemIds ( const <a href="http://qt.nokia.com/doc/4.6/qdatetime.html">QDateTime</a> &amp; <i>startDate</i>, const <a href="http://qt.nokia.com/doc/4.6/qdatetime.html">QDateTime</a> &amp; <i>endDate</i>, const <a href="qorganizeritemfilter.html">QOrganizerItemFilter</a> &amp; <i>filter</i>, const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritemsortorder.html">QOrganizerItemSortOrder</a>&gt; &amp; <i>sortOrders</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Returns a list of organizer item ids that match the given <i>filter</i>, sorted according to the given list of <i>sortOrders</i>, for any item which occurs (or has an occurrence which occurs) in the range specified by the given <i>startDate</i> and <i>endDate</i>. A default-constructed (invalid) <i>startDate</i> specifies an open start date (matches anything which occurs up until the <i>endDate</i>), and a default-constructed (invalid) <i>endDate</i> specifies an open end date (matches anything which occurs after the <i>startDate</i>). If both the <i>startDate</i> and <i>endDate</i> are invalid, this function will return the ids of all items which match the <i>filter</i> criteria.</p> <p>Depending on the backend, this filtering operation may involve retrieving all the organizer items. Any error which occurs will be saved in <i>error</i>.</p> <h3 class="fn"><a name="itemOccurrences"></a><a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritem.html">QOrganizerItem</a>&gt; QOrganizerManagerEngine::itemOccurrences ( const <a href="qorganizeritem.html">QOrganizerItem</a> &amp; <i>parentItem</i>, const <a href="http://qt.nokia.com/doc/4.6/qdatetime.html">QDateTime</a> &amp; <i>periodStart</i>, const <a href="http://qt.nokia.com/doc/4.6/qdatetime.html">QDateTime</a> &amp; <i>periodEnd</i>, int <i>maxCount</i>, const <a href="qorganizeritemfetchhint.html">QOrganizerItemFetchHint</a> &amp; <i>fetchHint</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Return the list of a maximum of <i>maxCount</i> organizer item instances which are occurrences of the given <i>parentItem</i> recurring item, which occur between the given <i>periodStart</i> date and the given <i>periodEnd</i> date.</p> <p>If <i>periodStart</i> is after <i>periodEnd</i>, the operation will fail, and <i>error</i> will be set to <tt>QOrganizerManager::BadArgumentError</tt>. If <i>maxCount</i> is negative, it is backend specific as to how many occurrences will be returned. Some backends may return no instances, others may return some limited number of occurrences.</p> <p>If the <i>parentItem</i> is an item of type <a href="qorganizeritemtype.html#TypeEvent-var">QOrganizerItemType::TypeEvent</a>, a list of items of type <a href="qorganizeritemtype.html#TypeEventOccurrence-var">QOrganizerItemType::TypeEventOccurrence</a> will be returned, representing the expansion of the parent item according to its <a href="qorganizeritemrecurrence.html">QOrganizerItemRecurrence</a> detail. Similarly, a <i>parentItem</i> of type <a href="qorganizeritemtype.html#TypeTodo-var">QOrganizerItemType::TypeTodo</a> will result in a list of <a href="qorganizeritemtype.html#TypeTodoOccurrence-var">QOrganizerItemType::TypeTodoOccurrence</a> items. If the <i>parentItem</i> is of any other type, it is returned by itself from the backend.</p> <p>The occurrence-typed items returned should have a <a href="qorganizeritemparent.html">QOrganizerItemParent</a> detail that refers to the parent item and the original instance that the event would have occurred on (if it is an exception). No returned item should contain a <a href="qorganizeritemrecurrence.html">QOrganizerItemRecurrence</a> detail.</p> <p>If the <i>parentItem</i> does not exist in the backend, or if there are no instances matching the criteria, an empty list should be returned.</p> <p>The <i>fetchHint</i> parameter is a hint to the manager about which details the client is interested in. It allows the manager to optimize retrieval of occurrences. The manager may ignore the <i>fetchHint</i>, but if it does so each item occurrence it returns must include all of the details associated with it in the database.</p> <h3 class="fn"><a name="items"></a><a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritem.html">QOrganizerItem</a>&gt; QOrganizerManagerEngine::items ( const <a href="http://qt.nokia.com/doc/4.6/qdatetime.html">QDateTime</a> &amp; <i>startDate</i>, const <a href="http://qt.nokia.com/doc/4.6/qdatetime.html">QDateTime</a> &amp; <i>endDate</i>, const <a href="qorganizeritemfilter.html">QOrganizerItemFilter</a> &amp; <i>filter</i>, const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritemsortorder.html">QOrganizerItemSortOrder</a>&gt; &amp; <i>sortOrders</i>, const <a href="qorganizeritemfetchhint.html">QOrganizerItemFetchHint</a> &amp; <i>fetchHint</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Returns the list of organizer items which match the given <i>filter</i> stored in the manager sorted according to the given list of <i>sortOrders</i>, for any item or item occurrence which occurs in the range specified by the given <i>startDate</i> and <i>endDate</i>. A default-constructed (invalid) <i>startDate</i> specifies an open start date (matches anything which occurs up until the <i>endDate</i>), and a default-constructed (invalid) <i>endDate</i> specifies an open end date (matches anything which occurs after the <i>startDate</i>). If both the <i>startDate</i> and <i>endDate</i> are invalid, this function will return all items which match the <i>filter</i> criteria.</p> <p>Any operation error which occurs will be saved in <i>error</i>.</p> <p>The <i>fetchHint</i> parameter describes the optimization hints that a manager may take. If the <i>fetchHint</i> is the default constructed hint, all existing details and relationships in the matching organizer items will be returned. A client should not make changes to an item which has been retrieved using a fetch hint other than the default fetch hint. Doing so will result in information loss when saving the item back to the manager (as the &quot;new&quot; restricted item will replace the previously saved item in the backend).</p> <p>All items returned should have a non-zero ID.</p> <p>See also <a href="qorganizeritemfetchhint.html">QOrganizerItemFetchHint</a>.</p> <h3 class="fn"><a name="itemsAdded"></a>void QOrganizerManagerEngine::itemsAdded ( const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritemid.html">QOrganizerItemId</a>&gt; &amp; <i>organizeritemIds</i> )<tt> [signal]</tt></h3> <p>This signal is emitted some time after a set of organizer items has been added to this engine where the <a href="qorganizermanagerengine.html#dataChanged">dataChanged</a>() signal was not emitted for those changes. As it is possible that other processes (or other devices) may have added the organizer items, the timing cannot be determined.</p> <p>The list of ids of organizer items added is given by <i>organizeritemIds</i>. There may be one or more ids in the list.</p> <p>See also <a href="qorganizermanagerengine.html#dataChanged">dataChanged</a>().</p> <h3 class="fn"><a name="itemsChanged"></a>void QOrganizerManagerEngine::itemsChanged ( const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritemid.html">QOrganizerItemId</a>&gt; &amp; <i>organizeritemIds</i> )<tt> [signal]</tt></h3> <p>This signal is emitted some time after a set of organizer items has been modified in this engine where the <a href="qorganizermanagerengine.html#dataChanged">dataChanged</a>() signal was not emitted for those changes. As it is possible that other processes (or other devices) may have modified the organizer items, the timing cannot be determined.</p> <p>The list of ids of changed organizer items is given by <i>organizeritemIds</i>. There may be one or more ids in the list.</p> <p>See also <a href="qorganizermanagerengine.html#dataChanged">dataChanged</a>().</p> <h3 class="fn"><a name="itemsForExport"></a><a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritem.html">QOrganizerItem</a>&gt; QOrganizerManagerEngine::itemsForExport ( const <a href="http://qt.nokia.com/doc/4.6/qdatetime.html">QDateTime</a> &amp; <i>startDate</i>, const <a href="http://qt.nokia.com/doc/4.6/qdatetime.html">QDateTime</a> &amp; <i>endDate</i>, const <a href="qorganizeritemfilter.html">QOrganizerItemFilter</a> &amp; <i>filter</i>, const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritemsortorder.html">QOrganizerItemSortOrder</a>&gt; &amp; <i>sortOrders</i>, const <a href="qorganizeritemfetchhint.html">QOrganizerItemFetchHint</a> &amp; <i>fetchHint</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Returns the list of organizer items which match the given <i>filter</i> stored in the manager sorted according to the given list of <i>sortOrders</i>, for any persisted item which occurs (or has an occurrence which occurs) in the range specified by the given <i>startDate</i> and <i>endDate</i>. A default-constructed (invalid) <i>startDate</i> specifies an open start date (matches anything which occurs up until the <i>endDate</i>), and a default-constructed (invalid) <i>endDate</i> specifies an open end date (matches anything which occurs after the <i>startDate</i>). If both the <i>startDate</i> and <i>endDate</i> are invalid, this function will return all items which match the <i>filter</i> criteria.</p> <p>Any operation error which occurs will be saved in <i>error</i>.</p> <p>The <i>fetchHint</i> parameter describes the optimization hints that a manager may take. If the <i>fetchHint</i> is the default constructed hint, all existing details and relationships in the matching organizer items will be returned. A client should not make changes to an item which has been retrieved using a fetch hint other than the default fetch hint. Doing so will result in information loss when saving the item back to the manager (as the &quot;new&quot; restricted item will replace the previously saved item in the backend).</p> <p>Items of type <a href="qml-eventoccurrence.html">EventOccurrence</a> and <a href="qml-todooccurrence.html">TodoOccurrence</a> should only be returned when they represent an exceptional occurrence; ie. if the client has specifically saved the item occurrence in the manager. Occurrence-typed items that are generated purely from a recurrence specification of another detail should not be returned in this list.</p> <p>All items returned should have a non-zero ID.</p> <p>See also <a href="qorganizeritemfetchhint.html">QOrganizerItemFetchHint</a>.</p> <h3 class="fn"><a name="itemsRemoved"></a>void QOrganizerManagerEngine::itemsRemoved ( const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritemid.html">QOrganizerItemId</a>&gt; &amp; <i>organizeritemIds</i> )<tt> [signal]</tt></h3> <p>This signal is emitted some time after a set of organizer items has been removed from this engine where the <a href="qorganizermanagerengine.html#dataChanged">dataChanged</a>() signal was not emitted for those changes. As it is possible that other processes (or other devices) may have removed the organizer items, the timing cannot be determined.</p> <p>The list of ids of removed organizer items is given by <i>organizeritemIds</i>. There may be one or more ids in the list.</p> <p>See also <a href="qorganizermanagerengine.html#dataChanged">dataChanged</a>().</p> <h3 class="fn"><a name="managerName"></a><a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> QOrganizerManagerEngine::managerName () const<tt> [pure virtual]</tt></h3> <p>Returns the manager name for this <a href="qorganizermanagerengine.html">QOrganizerManagerEngine</a></p> <h3 class="fn"><a name="managerParameters"></a><a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;<a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a>, <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a>&gt; QOrganizerManagerEngine::managerParameters () const<tt> [virtual]</tt></h3> <p>Returns the parameters with which this engine was constructed. Note that the engine may have discarded unused or invalid parameters at the time of construction, and these will not be returned.</p> <h3 class="fn"><a name="managerUri"></a><a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> QOrganizerManagerEngine::managerUri () const</h3> <p>Returns the unique URI of this manager, which is built from the manager name and the parameters used to construct it.</p> <h3 class="fn"><a name="managerVersion"></a>int QOrganizerManagerEngine::managerVersion () const<tt> [pure virtual]</tt></h3> <p>Returns the engine backend implementation version number</p> <h3 class="fn"><a name="removeCollection"></a>bool QOrganizerManagerEngine::removeCollection ( const <a href="qorganizercollectionid.html">QOrganizerCollectionId</a> &amp; <i>collectionId</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> )<tt> [virtual]</tt></h3> <p>Returns true if the removing of the <i>collectionId</i> was successfull otherwise false. Any errors encountered during this operation should be stored to <i>error</i>.</p> <h3 class="fn"><a name="removeDetailDefinition"></a>bool QOrganizerManagerEngine::removeDetailDefinition ( const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>definitionName</i>, const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>organizeritemType</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> )<tt> [virtual]</tt></h3> <p>Removes the definition identified by the given <i>definitionName</i> from the database, where it was valid for organizer items whose type was the given <i>organizeritemType</i>.</p> <p>Returns true if the definition was removed successfully, otherwise returns false.</p> <p>The backend must emit the appropriate signals to inform clients of changes to the database resulting from this operation.</p> <p>Any errors encountered during this operation should be stored to <i>error</i>.</p> <h3 class="fn"><a name="removeItem"></a>bool QOrganizerManagerEngine::removeItem ( const <a href="qorganizeritemid.html">QOrganizerItemId</a> &amp; <i>organizeritemId</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> )<tt> [virtual]</tt></h3> <p>Remove the item identified by <i>organizeritemId</i> from the database, and also removes any relationships in which the item was involved. Returns true if the item was removed successfully, otherwise returns false.</p> <p>Any error which occurs will be saved in <i>error</i>.</p> <p>The default implementation will convert this into a call to removeItems.</p> <h3 class="fn"><a name="removeItems"></a>bool QOrganizerManagerEngine::removeItems ( const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritemid.html">QOrganizerItemId</a>&gt; &amp; <i>organizeritemIds</i>, <a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;int, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a>&gt; * <i>errorMap</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> )<tt> [virtual]</tt></h3> <p>Remove every item whose id is contained in the list of organizer items ids <i>organizeritemIds</i>. Returns true if all organizer items were removed successfully, otherwise false.</p> <p>Any item that was removed successfully will have the relationships in which it was involved removed also.</p> <p>The manager might populate <i>errorMap</i> (the map of indices of the <i>organizeritemIds</i> list to the error which occurred when saving the item at that index) for every index for which the item could not be removed, if it is able. The <a href="qorganizermanager.html#error">QOrganizerManager::error</a>() function will only return <tt>QOrganizerManager::NoError</tt> if all organizer items were removed successfully.</p> <p>If the list contains ids which do not identify a valid item in the manager, the function will remove any organizer items which are identified by ids in the <i>organizeritemIds</i> list, insert <tt>QOrganizerManager::DoesNotExist</tt> entries into the <i>errorMap</i> for the indices of invalid ids in the <i>organizeritemIds</i> list, return false, and set the overall operation error to <tt>QOrganizerManager::DoesNotExistError</tt>.</p> <p>Any errors encountered during this operation should be stored to <i>error</i>.</p> <p>See also <a href="qorganizermanager.html#removeItem">QOrganizerManager::removeItem</a>().</p> <h3 class="fn"><a name="requestDestroyed"></a>void QOrganizerManagerEngine::requestDestroyed ( <a href="qorganizerabstractrequest.html">QOrganizerAbstractRequest</a> * <i>req</i> )<tt> [virtual]</tt></h3> <p>Notifies the manager engine that the given request <i>req</i> has been destroyed.</p> <p>This notifies the engine that:</p> <ul> <li>the client doesn't care about the request any more. The engine can still complete it, but completion is not required.</li> <li>it can't reliably access any properties of the request pointer any more. The pointer will be invalid once this function returns.</li> </ul> <p>This means that if there is a worker thread, the engine needs to let that thread know that the request object is not valid and block until that thread acknowledges it. One way to do this is to have a <a href="http://qt.nokia.com/doc/4.6/qset.html">QSet</a>&lt;<a href="qorganizerabstractrequest.html">QOrganizerAbstractRequest</a>*&gt; (or <a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;<a href="qorganizerabstractrequest.html">QOrganizerAbstractRequest</a>, MyCustomRequestState&gt;) that tracks active requests, and insert into that set in startRequest, and remove in requestDestroyed (or when it finishes or is cancelled). Protect that set/map with a mutex, and make sure you take the mutex in the worker thread before calling any of the QOrganizerAbstractRequest::updateXXXXXXRequest functions. And be careful of lock ordering problems :D</p> <h3 class="fn"><a name="saveCollection"></a>bool QOrganizerManagerEngine::saveCollection ( <a href="qorganizercollection.html">QOrganizerCollection</a> * <i>collection</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> )<tt> [virtual]</tt></h3> <p>Returns true if the saving of the <i>collection</i> was successfull otherwise false. Any errors encountered during this operation should be stored to <i>error</i>.</p> <h3 class="fn"><a name="saveDetailDefinition"></a>bool QOrganizerManagerEngine::saveDetailDefinition ( const <a href="qorganizeritemdetaildefinition.html">QOrganizerItemDetailDefinition</a> &amp; <i>def</i>, const <a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a> &amp; <i>organizeritemType</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> )<tt> [virtual]</tt></h3> <p>Persists the given definition <i>def</i> in the database, which is valid for organizer items whose type is the given <i>organizeritemType</i>.</p> <p>Returns true if the definition was saved successfully, and otherwise returns false.</p> <p>The backend must emit the appropriate signals to inform clients of changes to the database resulting from this operation.</p> <p>Any errors encountered during this operation should be stored to <i>error</i>.</p> <h3 class="fn"><a name="saveItem"></a>bool QOrganizerManagerEngine::saveItem ( <a href="qorganizeritem.html">QOrganizerItem</a> * <i>organizeritem</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> )<tt> [virtual]</tt></h3> <p>Adds the given <i>organizeritem</i> to the database if <i>organizeritem</i> has a default-constructed id, or an id with the manager URI set to the URI of this manager and a id of zero, otherwise updates the organizer item in the database which has the same id to be the given <i>organizeritem</i>. If the id is non-zero but does not identify any item stored in the manager, the function will return false and <i>error</i> will be set to <tt>QOrganizerManager::DoesNotExistError</tt>.</p> <p>The <i>organizeritem</i> will be added to the collection identified by the collectionId specified in the item (accessible via item-&gt;organizerId()) if it exists, and the item conforms to the schema supported for that collection. If the collection exists but the item does not conform to the schema supported for that collection, the function will return false, and the <i>error</i> will be set to <a href="qorganizermanager.html#Error-enum">QOrganizerManager::InvalidDetailError</a>.</p> <p>If the collectionId is not the default (zero) id, but does not identify a valid collection, the function will return false, and <i>error</i> will be set to <a href="qorganizermanager.html#Error-enum">QOrganizerManager::InvalidCollectionError</a>. If the collectionId is the default (zero) id, the item should be saved in the collection in which it is already saved (if it is already saved in this manager), or in the default collection (if it is a new item in this manager).</p> <p>Returns true if the save operation completed successfully, otherwise returns false. Any error which occurs will be saved in <i>error</i>.</p> <p>The default implementation will convert this into a call to saveItems.</p> <p>See also <a href="qorganizermanagerengine.html#managerUri">managerUri</a>().</p> <h3 class="fn"><a name="saveItems"></a>bool QOrganizerManagerEngine::saveItems ( <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritem.html">QOrganizerItem</a>&gt; * <i>organizeritems</i>, <a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;int, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a>&gt; * <i>errorMap</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> )<tt> [virtual]</tt></h3> <p>Adds the list of organizer items given by <i>organizeritems</i> list to the database. Returns true if the organizer items were saved successfully, otherwise false.</p> <p>The engine might populate <i>errorMap</i> (the map of indices of the <i>organizeritems</i> list to the error which occurred when saving the item at that index) for every index for which the item could not be saved, if it is able. The <a href="qorganizermanager.html#error">QOrganizerManager::error</a>() function will only return <tt>QOrganizerManager::NoError</tt> if all organizer items were saved successfully.</p> <p>For each newly saved item that was successful, the id of the item in the <i>organizeritems</i> list will be updated with the new value. If a failure occurs when saving a new item, the id will be cleared.</p> <p>Each item in the given list <i>organizeritems</i> will be added to the collection identified in the item (accessible via item-&gt;collectionId()) if it exists, and if the item conform to the schema supported for that collection. If the collection exists but the item does not conform to the schema supported for that collection, the function will return false, and the error in the <i>errorMap</i> for the item at that index will be set to <a href="qorganizermanager.html#Error-enum">QOrganizerManager::InvalidDetailError</a>.</p> <p>If the collectionId is not the default (zero) id, but does not identify a valid collection, the function will return false, and <i>error</i> will be set to <a href="qorganizermanager.html#Error-enum">QOrganizerManager::InvalidCollectionError</a>. If the collectionId is the default (zero) id, the item should be saved in the collection in which it is already saved (if they are already saved in this manager), or in the default collection (if they are new items in this manager).</p> <p>Any errors encountered during this operation should be stored to <i>error</i>.</p> <p>See also <a href="qorganizermanager.html#saveItem">QOrganizerManager::saveItem</a>().</p> <h3 class="fn"><a name="schemaDefinitions"></a><a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;<a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a>, <a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;<a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a>, <a href="qorganizeritemdetaildefinition.html">QOrganizerItemDetailDefinition</a>&gt; &gt; QOrganizerManagerEngine::schemaDefinitions ( int <i>version</i> = 1 )<tt> [static]</tt></h3> <p>Returns the default schema definitions for the given <i>version</i> of the schema. Version 1 of the schema corresponds to version 1.1 of the Qt Mobility APIs.</p> <h3 class="fn"><a name="setDetailAccessConstraints"></a>void QOrganizerManagerEngine::setDetailAccessConstraints ( <a href="qorganizeritemdetail.html">QOrganizerItemDetail</a> * <i>detail</i>, <a href="qorganizeritemdetail.html#AccessConstraint-enum">QOrganizerItemDetail::AccessConstraints</a> <i>constraints</i> )<tt> [static]</tt></h3> <p>Sets the access constraints of <i>detail</i> to the supplied <i>constraints</i>.</p> <p>This function is provided to allow engine implementations to report the access constraints of retrieved details, without generally allowing the access constraints to be modified after retrieval.</p> <p>Application code should not call this function, since validation of the detail will happen in the engine in any case.</p> <h3 class="fn"><a name="startRequest"></a>bool QOrganizerManagerEngine::startRequest ( <a href="qorganizerabstractrequest.html">QOrganizerAbstractRequest</a> * <i>req</i> )<tt> [virtual]</tt></h3> <p>Asks the manager engine to begin the given request <i>req</i> which is currently in a (re)startable state. Returns true if the request was started successfully, else returns false.</p> <p>Generally, the engine queues the request and processes it at some later time (probably in another thread).</p> <p>Once a request is started, the engine should call the updateRequestState and/or the specific updateXXXXXRequest functions to mark it in the active state.</p> <p>If the engine is particularly fast, or the operation involves only in memory data, the request can be processed and completed without queueing it.</p> <p>Note that when the client is threaded, and the request might live on a different thread, the engine needs to be careful with locking. In particular, the request might be deleted while the engine is still working on it. In this case, the requestDestroyed function will be called while the request is still valid, and that function should block until the worker thread (etc.) has been notified not to touch that request any more.</p> <p>See also <a href="qorganizerabstractrequest.html#start">QOrganizerAbstractRequest::start</a>().</p> <h3 class="fn"><a name="supportedItemTypes"></a><a href="http://qt.nokia.com/doc/4.6/qstringlist.html">QStringList</a> QOrganizerManagerEngine::supportedItemTypes () const<tt> [virtual]</tt></h3> <p>Returns the list of item types which are supported by this engine. This is a convenience function, equivalent to retrieving the allowable values for the <tt>QOrganizerItemType::FieldType</tt> field of the <a href="qorganizeritemtype.html">QOrganizerItemType</a> definition which is valid in this engine.</p> <h3 class="fn"><a name="testFilter"></a>bool QOrganizerManagerEngine::testFilter ( const <a href="qorganizeritemfilter.html">QOrganizerItemFilter</a> &amp; <i>filter</i>, const <a href="qorganizeritem.html">QOrganizerItem</a> &amp; <i>organizeritem</i> )<tt> [static]</tt></h3> <p>Returns true if the supplied item <i>organizeritem</i> matches the supplied filter <i>filter</i>.</p> <p>This function will test each condition in the filter, possibly recursing.</p> <h3 class="fn"><a name="updateCollectionFetchRequest"></a>void QOrganizerManagerEngine::updateCollectionFetchRequest ( <a href="qorganizercollectionfetchrequest.html">QOrganizerCollectionFetchRequest</a> * <i>req</i>, const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizercollection.html">QOrganizerCollection</a>&gt; &amp; <i>result</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> <i>error</i>, <a href="qorganizerabstractrequest.html#State-enum">QOrganizerAbstractRequest::State</a> <i>newState</i> )<tt> [static]</tt></h3> <p>Updates the given <a href="qorganizercollectionfetchrequest.html">QOrganizerCollectionFetchRequest</a> <i>req</i> with the latest results <i>result</i>, and operation error <i>error</i>. In addition, the state of the request will be changed to <i>newState</i>.</p> <p>It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress. If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.</p> <h3 class="fn"><a name="updateCollectionRemoveRequest"></a>void QOrganizerManagerEngine::updateCollectionRemoveRequest ( <a href="qorganizercollectionremoverequest.html">QOrganizerCollectionRemoveRequest</a> * <i>req</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> <i>error</i>, const <a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;int, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a>&gt; &amp; <i>errorMap</i>, <a href="qorganizerabstractrequest.html#State-enum">QOrganizerAbstractRequest::State</a> <i>newState</i> )<tt> [static]</tt></h3> <p>Updates the given <a href="qorganizercollectionremoverequest.html">QOrganizerCollectionRemoveRequest</a> <i>req</i> with the operation error <i>error</i>, and map of input index to individual error <i>errorMap</i>. In addition, the state of the request will be changed to <i>newState</i>.</p> <p>It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress. If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.</p> <h3 class="fn"><a name="updateCollectionSaveRequest"></a>void QOrganizerManagerEngine::updateCollectionSaveRequest ( <a href="qorganizercollectionsaverequest.html">QOrganizerCollectionSaveRequest</a> * <i>req</i>, const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizercollection.html">QOrganizerCollection</a>&gt; &amp; <i>result</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> <i>error</i>, const <a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;int, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a>&gt; &amp; <i>errorMap</i>, <a href="qorganizerabstractrequest.html#State-enum">QOrganizerAbstractRequest::State</a> <i>newState</i> )<tt> [static]</tt></h3> <p>Updates the given <a href="qorganizercollectionsaverequest.html">QOrganizerCollectionSaveRequest</a> <i>req</i> with the latest results <i>result</i>, operation error <i>error</i>, and map of input index to individual error <i>errorMap</i>. In addition, the state of the request will be changed to <i>newState</i>.</p> <p>It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress. If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.</p> <h3 class="fn"><a name="updateDefinitionFetchRequest"></a>void QOrganizerManagerEngine::updateDefinitionFetchRequest ( <a href="qorganizeritemdetaildefinitionfetchrequest.html">QOrganizerItemDetailDefinitionFetchRequest</a> * <i>req</i>, const <a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;<a href="http://qt.nokia.com/doc/4.6/qstring.html">QString</a>, <a href="qorganizeritemdetaildefinition.html">QOrganizerItemDetailDefinition</a>&gt; &amp; <i>result</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> <i>error</i>, const <a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;int, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a>&gt; &amp; <i>errorMap</i>, <a href="qorganizerabstractrequest.html#State-enum">QOrganizerAbstractRequest::State</a> <i>newState</i> )<tt> [static]</tt></h3> <p>Updates the given <a href="qorganizeritemdetaildefinitionfetchrequest.html">QOrganizerItemDetailDefinitionFetchRequest</a> <i>req</i> with the latest results <i>result</i>, operation error <i>error</i>, and map of input index to individual error <i>errorMap</i>. In addition, the state of the request will be changed to <i>newState</i>.</p> <p>It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.</p> <p>If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.</p> <h3 class="fn"><a name="updateDefinitionRemoveRequest"></a>void QOrganizerManagerEngine::updateDefinitionRemoveRequest ( <a href="qorganizeritemdetaildefinitionremoverequest.html">QOrganizerItemDetailDefinitionRemoveRequest</a> * <i>req</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> <i>error</i>, const <a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;int, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a>&gt; &amp; <i>errorMap</i>, <a href="qorganizerabstractrequest.html#State-enum">QOrganizerAbstractRequest::State</a> <i>newState</i> )<tt> [static]</tt></h3> <p>Updates the given <a href="qorganizeritemdetaildefinitionremoverequest.html">QOrganizerItemDetailDefinitionRemoveRequest</a> <i>req</i> with the operation error <i>error</i>, and map of input index to individual error <i>errorMap</i>. In addition, the state of the request will be changed to <i>newState</i>.</p> <p>It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.</p> <p>If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.</p> <h3 class="fn"><a name="updateDefinitionSaveRequest"></a>void QOrganizerManagerEngine::updateDefinitionSaveRequest ( <a href="qorganizeritemdetaildefinitionsaverequest.html">QOrganizerItemDetailDefinitionSaveRequest</a> * <i>req</i>, const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritemdetaildefinition.html">QOrganizerItemDetailDefinition</a>&gt; &amp; <i>result</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> <i>error</i>, const <a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;int, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a>&gt; &amp; <i>errorMap</i>, <a href="qorganizerabstractrequest.html#State-enum">QOrganizerAbstractRequest::State</a> <i>newState</i> )<tt> [static]</tt></h3> <p>Updates the given <a href="qorganizeritemdetaildefinitionsaverequest.html">QOrganizerItemDetailDefinitionSaveRequest</a> <i>req</i> with the latest results <i>result</i>, operation error <i>error</i>, and map of input index to individual error <i>errorMap</i>. In addition, the state of the request will be changed to <i>newState</i>.</p> <p>It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.</p> <p>If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.</p> <h3 class="fn"><a name="updateItemFetchForExportRequest"></a>void QOrganizerManagerEngine::updateItemFetchForExportRequest ( <a href="qorganizeritemfetchforexportrequest.html">QOrganizerItemFetchForExportRequest</a> * <i>req</i>, const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritem.html">QOrganizerItem</a>&gt; &amp; <i>result</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> <i>error</i>, <a href="qorganizerabstractrequest.html#State-enum">QOrganizerAbstractRequest::State</a> <i>newState</i> )<tt> [static]</tt></h3> <p>Updates the given <a href="qorganizeritemfetchforexportrequest.html">QOrganizerItemFetchForExportRequest</a> <i>req</i> with the latest results <i>result</i>, and operation error <i>error</i>. In addition, the state of the request will be changed to <i>newState</i>.</p> <p>It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.</p> <p>If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.</p> <h3 class="fn"><a name="updateItemFetchRequest"></a>void QOrganizerManagerEngine::updateItemFetchRequest ( <a href="qorganizeritemfetchrequest.html">QOrganizerItemFetchRequest</a> * <i>req</i>, const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritem.html">QOrganizerItem</a>&gt; &amp; <i>result</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> <i>error</i>, <a href="qorganizerabstractrequest.html#State-enum">QOrganizerAbstractRequest::State</a> <i>newState</i> )<tt> [static]</tt></h3> <p>Updates the given <a href="qorganizeritemfetchrequest.html">QOrganizerItemFetchRequest</a> <i>req</i> with the latest results <i>result</i>, and operation error <i>error</i>. In addition, the state of the request will be changed to <i>newState</i>.</p> <p>It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.</p> <p>If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.</p> <h3 class="fn"><a name="updateItemIdFetchRequest"></a>void QOrganizerManagerEngine::updateItemIdFetchRequest ( <a href="qorganizeritemidfetchrequest.html">QOrganizerItemIdFetchRequest</a> * <i>req</i>, const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritemid.html">QOrganizerItemId</a>&gt; &amp; <i>result</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> <i>error</i>, <a href="qorganizerabstractrequest.html#State-enum">QOrganizerAbstractRequest::State</a> <i>newState</i> )<tt> [static]</tt></h3> <p>Updates the given <a href="qorganizeritemidfetchrequest.html">QOrganizerItemIdFetchRequest</a> <i>req</i> with the latest results <i>result</i>, and operation error <i>error</i>. In addition, the state of the request will be changed to <i>newState</i>.</p> <p>It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.</p> <p>If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.</p> <h3 class="fn"><a name="updateItemOccurrenceFetchRequest"></a>void QOrganizerManagerEngine::updateItemOccurrenceFetchRequest ( <a href="qorganizeritemoccurrencefetchrequest.html">QOrganizerItemOccurrenceFetchRequest</a> * <i>req</i>, const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritem.html">QOrganizerItem</a>&gt; &amp; <i>result</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> <i>error</i>, <a href="qorganizerabstractrequest.html#State-enum">QOrganizerAbstractRequest::State</a> <i>newState</i> )<tt> [static]</tt></h3> <p>Updates the given <a href="qorganizeritemoccurrencefetchrequest.html">QOrganizerItemOccurrenceFetchRequest</a> <i>req</i> with the latest results <i>result</i>, and operation error <i>error</i>. In addition, the state of the request will be changed to <i>newState</i>.</p> <p>It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.</p> <p>If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.</p> <h3 class="fn"><a name="updateItemRemoveRequest"></a>void QOrganizerManagerEngine::updateItemRemoveRequest ( <a href="qorganizeritemremoverequest.html">QOrganizerItemRemoveRequest</a> * <i>req</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> <i>error</i>, const <a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;int, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a>&gt; &amp; <i>errorMap</i>, <a href="qorganizerabstractrequest.html#State-enum">QOrganizerAbstractRequest::State</a> <i>newState</i> )<tt> [static]</tt></h3> <p>Updates the given <a href="qorganizeritemremoverequest.html">QOrganizerItemRemoveRequest</a> <i>req</i> with the operation error <i>error</i>, and map of input index to individual error <i>errorMap</i>. In addition, the state of the request will be changed to <i>newState</i>.</p> <p>It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.</p> <p>If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.</p> <h3 class="fn"><a name="updateItemSaveRequest"></a>void QOrganizerManagerEngine::updateItemSaveRequest ( <a href="qorganizeritemsaverequest.html">QOrganizerItemSaveRequest</a> * <i>req</i>, const <a href="http://qt.nokia.com/doc/4.6/qlist.html">QList</a>&lt;<a href="qorganizeritem.html">QOrganizerItem</a>&gt; &amp; <i>result</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> <i>error</i>, const <a href="http://qt.nokia.com/doc/4.6/qmap.html">QMap</a>&lt;int, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a>&gt; &amp; <i>errorMap</i>, <a href="qorganizerabstractrequest.html#State-enum">QOrganizerAbstractRequest::State</a> <i>newState</i> )<tt> [static]</tt></h3> <p>Updates the given <a href="qorganizeritemsaverequest.html">QOrganizerItemSaveRequest</a> <i>req</i> with the latest results <i>result</i>, operation error <i>error</i>, and map of input index to individual error <i>errorMap</i>. In addition, the state of the request will be changed to <i>newState</i>.</p> <p>It then causes the request to emit its resultsAvailable() signal to notify clients of the request progress.</p> <p>If the new request state is different from the previous state, the stateChanged() signal will also be emitted from the request.</p> <h3 class="fn"><a name="updateRequestState"></a>void QOrganizerManagerEngine::updateRequestState ( <a href="qorganizerabstractrequest.html">QOrganizerAbstractRequest</a> * <i>req</i>, <a href="qorganizerabstractrequest.html#State-enum">QOrganizerAbstractRequest::State</a> <i>state</i> )<tt> [static]</tt></h3> <p>Updates the given asynchronous request <i>req</i> by setting the new <i>state</i> of the request. If the new state is different, the stateChanged() signal will be emitted by the request.</p> <h3 class="fn"><a name="validateCollection"></a>bool QOrganizerManagerEngine::validateCollection ( const <a href="qorganizercollection.html">QOrganizerCollection</a> &amp; <i>collection</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Returns true if the <i>collection</i> is valid and can be saved in the engine. By default, modifiable collections are not supported, so this function returns false, and <i>error</i> is set to <a href="qorganizermanager.html#Error-enum">QOrganizerManager::NotSupportedError</a>. Engines which do implement mutable collections should reimplement this function.</p> <h3 class="fn"><a name="validateDefinition"></a>bool QOrganizerManagerEngine::validateDefinition ( const <a href="qorganizeritemdetaildefinition.html">QOrganizerItemDetailDefinition</a> &amp; <i>definition</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Checks that the given detail definition <i>definition</i> seems valid, with a correct id, defined fields, and any specified value types are supported by this engine. This function is called before trying to save a definition.</p> <p>Returns true if the <i>definition</i> seems valid, otherwise returns false.</p> <p>Any errors encountered during this operation should be stored to <i>error</i>.</p> <h3 class="fn"><a name="validateItem"></a>bool QOrganizerManagerEngine::validateItem ( const <a href="qorganizeritem.html">QOrganizerItem</a> &amp; <i>organizeritem</i>, <a href="qorganizermanager.html#Error-enum">QOrganizerManager::Error</a> * <i>error</i> ) const<tt> [virtual]</tt></h3> <p>Checks that the given item <i>organizeritem</i> does not have details which don't conform to a valid definition, violate uniqueness constraints, or contain values for nonexistent fields, and that the values contained are of the correct type for each field, and are allowable values for that field.</p> <p>Note that this function is unable to ensure that the access constraints (such as CreateOnly and ReadOnly) are observed; backend specific code must be written if you wish to enforce these constraints.</p> <p>Returns true if the <i>organizeritem</i> is valid according to the definitions for its details, otherwise returns false.</p> <p>Any errors encountered during this operation should be stored to <i>error</i>.</p> <h3 class="fn"><a name="waitForRequestFinished"></a>bool QOrganizerManagerEngine::waitForRequestFinished ( <a href="qorganizerabstractrequest.html">QOrganizerAbstractRequest</a> * <i>req</i>, int <i>msecs</i> )<tt> [virtual]</tt></h3> <p>Blocks until the manager engine has completed the given request <i>req</i> which was previously started, or until <i>msecs</i> milliseconds have passed. Returns true if the request was completed, and false if the request was not in the <tt>QOrganizerAbstractRequest::Active</tt> state or no progress could be reported.</p> <p>It is important that this function is implemented by the engine, at least merely as a delay, since clients may call it in a loop.</p> <p>See also <a href="qorganizermanagerengine.html#startRequest">startRequest</a>().</p> </div> <!-- /div --> <div class="feedback t_button"> [+] Documentation Feedback</div> </div> </div> <div class="ft"> <span></span> </div> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2010 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> </div> <div id="feedbackBox"> <div id="feedcloseX" class="feedclose t_button">X</div> <form id="feedform" action="http://doc.qt.nokia.com/docFeedbck/feedback.php" method="get"> <p id="noteHead">Thank you for giving your feedback.</p> <div class="note"><p>Make sure it is related to this specific page. For more general bugs and requests, please use the <a href="http://bugreports.qt.nokia.com/secure/Dashboard.jspa">Qt Bug Tracker</a>.</p></div> <p><textarea id="feedbox" name="feedText" rows="5" cols="40"></textarea></p> <p><input id="feedsubmit" class="feedclose" type="submit" name="feedback" /></p> </form> </div> <div id="blurpage"> </div> </div> <script src="scripts/functions.js" type="text/javascript"></script> </body> </html>
Documentacion/_vti_cnf/dx_GFX_class.SURF_GetPixel.html
VisualStudioEX3/dx_lib32
vti_encoding:SR|utf8-nl vti_timelastmodified:TR|02 Jan 2009 17:15:27 -0000 vti_extenderversion:SR|6.0.2.8161 vti_author:SR|EX3\\José Miguel Sánchez vti_modifiedby:SR|VPCXNAGS20\\EX3 vti_timecreated:TR|24 Jan 2006 03:59:18 -0000 vti_title:SR|dx_GFX_class: SURF_GetPixel vti_backlinkinfo:VX|dx_GFX_class.html dx_GFX_class.SURF_GetPixelData.html REF_Surfaces.html dx_GFX_class.SURF_GetInfo.html vti_nexttolasttimemodified:TR|02 Jan 2009 17:12:46 -0000 vti_cacheddtm:TX|02 Jan 2009 17:15:27 -0000 vti_filesize:IR|2723 vti_cachedtitle:SR|dx_GFX_class: SURF_GetPixel vti_cachedbodystyle:SR|<BODY TOPMARGIN="0"> vti_cachedlinkinfo:VX|S|linkcss.js S|langref.js H|REF_Surfaces.html H|REF_ARGB.html H|dx_lib32.html H|dx_GFX_class.html K|dx_GFX_class.html K|dx_GFX_class.html H|dx_GFX_class.SURF_GetInfo.html H|dx_GFX_class.SURF_GetPixelData.html H|http://vbdox.sourceforge.net/ vti_cachedsvcrellinks:VX|FSUS|linkcss.js FSUS|langref.js FHUS|REF_Surfaces.html FHUS|REF_ARGB.html FHUS|dx_lib32.html FHUS|dx_GFX_class.html FHUS|dx_GFX_class.html FHUS|dx_GFX_class.html FHUS|dx_GFX_class.SURF_GetInfo.html FHUS|dx_GFX_class.SURF_GetPixelData.html NHHS|http://vbdox.sourceforge.net/ vti_cachedneedsrewrite:BR|false vti_cachedhasbots:BR|false vti_cachedhastheme:BR|false vti_cachedhasborder:BR|false vti_metatags:VR|HTTP-EQUIV=Content-Type Text/html;\\ charset=iso-8859-1 Author misho GENERATOR VBDOX\\ [1.0.24] vti_charset:SR|iso-8859-1 vti_generator:SR|VBDOX [1.0.24]
www/ui-form-adv.html
farcrycore/plugin-material
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta content="IE=edge" http-equiv="X-UA-Compatible"> <meta content="initial-scale=1.0, width=device-width" name="viewport"> <title>Materialised Form Elements - Material</title> <!-- css --> <link href="css/base.min.css" rel="stylesheet"> <!-- css for this project --> <link href="css/project.min.css" rel="stylesheet"> <!-- favicon --> <!-- ... --> <!-- ie --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body class="avoid-fout page-brand"> <div class="avoid-fout-indicator avoid-fout-indicator-fixed"> <div class="progress-circular progress-circular-center"> <div class="progress-circular-wrapper"> <div class="progress-circular-inner"> <div class="progress-circular-left"> <div class="progress-circular-spinner"></div> </div> <div class="progress-circular-gap"></div> <div class="progress-circular-right"> <div class="progress-circular-spinner"></div> </div> </div> </div> </div> </div> <header class="header header-transparent header-waterfall"> <ul class="nav nav-list pull-left"> <li> <a data-toggle="menu" href="#menu"> <span class="icon icon-lg">menu</span> </a> </li> </ul> <div class="header-affix-hide pull-left" data-offset-top="108" data-spy="affix"> <a class="header-logo margin-left-no" href="index.html">Material</a> </div> <div class="header-affix pull-left" data-offset-top="108" data-spy="affix"> <span class="header-logo margin-left-no">Form</span> <span class="header-text margin-left-no"> <i class="icon margin-right">chevron_right</i>Materialised </span> </div> <ul class="nav nav-list pull-right"> <li> <a data-toggle="menu" href="#profile"> <span class="access-hide">John Smith</span> <span class="avatar"><img alt="alt text for John Smith avatar" src="images/users/avatar-001.jpg"></span> </a> </li> </ul> </header> <nav aria-hidden="true" class="menu" id="menu" tabindex="-1"> <div class="menu-scroll"> <div class="menu-content"> <a class="menu-logo" href="index.html">Material</a> <ul class="nav"> <li> <a class="waves-attach" href="ui-card.html">Cards</a> </li> <li> <a class="waves-attach" href="ui-collapse.html">Collapsible Regions</a> </li> <li> <a class="waves-attach" href="ui-dropdown.html">Dropdowns</a> </li> <li> <a class="waves-attach" href="ui-modal.html">Modals &amp; Toasts</a> </li> <li> <a class="waves-attach" href="ui-nav.html">Navs</a> </li> <li> <a class="waves-attach" href="ui-progress.html">Progress Bars</a> </li> <li> <a class="waves-attach" href="ui-tab.html">Tabs</a> </li> <li> <a class="waves-attach" href="ui-tile.html">Tiles</a> </li> </ul> <hr> <ul class="nav"> <li> <a class="waves-attach" href="ui-button.html">Buttons</a> </li> <li> <a class="waves-attach" href="ui-form.html">Form Elements</a> <span class="menu-collapse-toggle waves-attach" data-target="#form-elements" data-toggle="collapse"><i class="icon menu-collapse-toggle-close">close</i><i class="icon menu-collapse-toggle-default">add</i></span> <ul class="menu-collapse collapse in" id="form-elements"> <li class="active"> <a class="waves-attach" href="ui-form-adv.html">Form Elements <small>(materialised)</small></a> </li> </ul> <li> <a class="waves-attach" href="ui-icon.html">Icons</a> </li> <li> <a class="waves-attach" href="ui-table.html">Tables</a> </li> </ul> <hr> <ul class="nav"> <li> <a class="waves-attach" href="page-palette.html">Page Palettes</a> <span class="menu-collapse-toggle collapsed waves-attach" data-target="#page-palettes" data-toggle="collapse"><i class="icon menu-collapse-toggle-close">close</i><i class="icon menu-collapse-toggle-default">add</i></span> <ul class="menu-collapse collapse" id="page-palettes"> <li> <a class="waves-attach" href="page-palette-brand.html">Brand Palette</a> </li> <li> <a class="waves-attach" href="page-palette-brand-accent.html">Accent Palette</a> </li> <li> <a class="waves-attach" href="page-palette-amber.html">Amber Palette</a> </li> <li> <a class="waves-attach" href="page-palette-green.html">Green Palette</a> </li> <li> <a class="waves-attach" href="page-palette-red.html">Red Palette</a> </li> </ul> </li> </ul> </div> </div> </nav> <nav aria-hidden="true" class="menu menu-right" id="profile" tabindex="-1"> <div class="menu-scroll"> <div class="menu-top"> <div class="menu-top-img"> <img alt="John Smith" src="images/samples/landscape.jpg"> </div> <div class="menu-top-info"> <a class="menu-top-user" href="javascript:void(0)"><span class="avatar pull-left"><img alt="alt text for John Smith avatar" src="images/users/avatar-001.jpg"></span>John Smith</a> </div> <div class="menu-top-info-sub"> <small>Some additional information about John Smith</small> </div> </div> <div class="menu-content"> <ul class="nav"> <li> <a class="waves-attach" href="javascript:void(0)"><span class="icon icon-lg">account_box</span>Profile Settings</a> </li> <li> <a class="waves-attach" href="javascript:void(0)"><span class="icon icon-lg">add_to_photos</span>Upload Photo</a> </li> <li> <a class="waves-attach" href="page-login.html"><span class="icon icon-lg">exit_to_app</span>Logout</a> </li> </ul> </div> </div> </nav> <div class="content"> <div class="content-heading"> <div class="container"> <h1 class="heading">Materialised Form Elements</h1> </div> </div> <div class="container"> <section class="content-inner"> <form class="form"> <fieldset> <legend>Floating Labels</legend> <div class="form-group form-group-label"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-text">Input Field</label> <input class="form-control" id="float-text" type="text"> </div> </div> </div> <div class="form-group form-group-label"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-text-value">Input Field with Value</label> <input class="form-control" id="float-text-value" type="text" value="something has already been written down"> </div> </div> </div> <div class="form-group form-group-label"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-select">Select</label> <select class="form-control" id="float-select"> <option value="">&nbsp;</option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> </div> </div> </div> <div class="form-group form-group-label"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-textarea">Textarea</label> <textarea class="form-control" id="float-textarea" rows="5"></textarea> </div> </div> </div> <div class="form-group form-group-label"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-textarea-autosize">Auto Expanding Textarea</label> <textarea class="form-control textarea-autosize" id="float-textarea-autosize" rows="1"></textarea> </div> </div> </div> </fieldset> <fieldset> <legend>Floating Labels (Cont'd)</legend> <div class="form-group form-group-label"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-text-disabled">Disabled Input Field</label> <input class="form-control" id="float-text-disabled" type="text" disabled> </div> </div> </div> <div class="form-group form-group-label"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-text-value-disabled">Disabled Input Field with Value</label> <input class="form-control" id="float-text-value-disabled" type="text" value="something has already been written down" disabled> </div> </div> </div> <div class="form-group form-group-label"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-select-disabled">Disabled Select</label> <select class="form-control" id="float-select-disabled" disabled> <option value="">&nbsp;</option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> </div> </div> </div> <div class="form-group form-group-label"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-textarea-disabled">Disabled Textarea</label> <textarea class="form-control" id="float-textarea-disabled" rows="5" disabled></textarea> </div> </div> </div> <div class="form-group form-group-label form-group-brand"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-text-brand">Brand Input Field</label> <input class="form-control" id="float-text-brand" type="text"> </div> </div> </div> <div class="form-group form-group-label form-group-brand-accent"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-text-brand-accent">Accent Input Field</label> <input class="form-control" id="float-text-brand-accent" type="text"> </div> </div> </div> <div class="form-group form-group-label form-group-amber"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-text-amber">Amber Input Field</label> <input class="form-control" id="float-text-amber" type="text"> </div> </div> </div> <div class="form-group form-group-label form-group-green"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-text-green">Green Input Field</label> <input class="form-control" id="float-text-green" type="text"> </div> </div> </div> <div class="form-group form-group-label form-group-red"> <div class="row"> <div class="col-lg-6 col-sm-8"> <label class="floating-label" for="float-text-red">Red Input Field</label> <input class="form-control" id="float-text-red" type="text"> </div> </div> </div> </fieldset> <fieldset> <legend>Form Controls with Icons</legend> <div class="form-group"> <div class="row"> <div class="col-lg-6 col-sm-8"> <div class="media"> <div class="media-object pull-left"> <label class="form-icon-label" for="input-address"><span class="icon">home</span></label> </div> <div class="media-inner"> <input class="form-control" id="input-address" placeholder="Address" type="text"> </div> </div> </div> </div> </div> <div class="form-group"> <div class="row"> <div class="col-lg-6 col-sm-8"> <div class="media"> <div class="media-object pull-left"> <label class="form-icon-label" for="input-phone"><span class="icon">phone</span></label> </div> <div class="media-inner"> <select class="form-control" id="input-phone"> <option>Phone</option> <option>1</option> <option>2</option> <option>3</option> </select> </div> </div> </div> </div> </div> <div class="form-group"> <div class="row"> <div class="col-lg-6 col-sm-8"> <div class="media"> <div class="media-object pull-left"> <label class="form-icon-label" for="input-comment"><span class="icon">comment</span></label> </div> <div class="media-inner"> <textarea class="form-control textarea-autosize" id="input-comment" placeholder="Comments" rows="1"></textarea> </div> </div> </div> </div> </div> </fieldset> <fieldset> <legend>Material Checkboxes &amp; Radio Buttons</legend> <div class="form-group"> <div class="checkbox checkbox-adv"> <label for="input-checkbox-1"> <input class="access-hide" id="input-checkbox-1" name="input-checkbox" type="checkbox">Option 1 <span class="circle"></span><span class="circle-check"></span><span class="circle-icon icon">done</span> </label> </div> <div class="checkbox checkbox-adv"> <label for="input-checkbox-2"> <input class="access-hide" id="input-checkbox-2" name="input-checkbox" type="checkbox">Option 2 <span class="circle"></span><span class="circle-check"></span><span class="circle-icon icon">done</span> </label> </div> <div class="checkbox checkbox-adv"> <label for="input-checkbox-3"> <input class="access-hide" id="input-checkbox-3" name="input-checkbox" type="checkbox">Option 3 <span class="circle"></span><span class="circle-check"></span><span class="circle-icon icon">done</span> </label> </div> </div> <div class="form-group"> <div class="checkbox checkbox-adv disabled"> <label for="input-checkbox-1-disabled"> <input class="access-hide" id="input-checkbox-1-disabled" name="input-checkbox-disabled" type="checkbox" disabled>Disabled Option 1 <span class="circle"></span><span class="circle-check"></span><span class="circle-icon icon">done</span> </label> </div> <div class="checkbox checkbox-adv disabled"> <label for="input-checkbox-2-disabled"> <input class="access-hide" id="input-checkbox-2-disabled" name="input-checkbox-disabled" type="checkbox" checked disabled>Disabled Option 2 <span class="circle"></span><span class="circle-check"></span><span class="circle-icon icon">done</span> </label> </div> <div class="checkbox checkbox-adv disabled"> <label for="input-checkbox-3-disabled"> <input class="access-hide" id="input-checkbox-3-disabled" name="input-checkbox-disabled" type="checkbox" disabled>Disabled Option 3 <span class="circle"></span><span class="circle-check"></span><span class="circle-icon icon">done</span> </label> </div> </div> <div class="form-group"> <div class="checkbox checkbox-adv checkbox-inline"> <label for="input-checkbox-inline-1"> <input class="access-hide" id="input-checkbox-inline-1" name="input-checkbox-inline" type="checkbox">Inline Option 1 <span class="circle"></span><span class="circle-check"></span><span class="circle-icon icon">done</span> </label> </div> <div class="checkbox checkbox-adv checkbox-inline"> <label for="input-checkbox-inline-2"> <input class="access-hide" id="input-checkbox-inline-2" name="input-checkbox-inline" type="checkbox">Inline Option 2 <span class="circle"></span><span class="circle-check"></span><span class="circle-icon icon">done</span> </label> </div> <div class="checkbox checkbox-adv checkbox-inline"> <label for="input-checkbox-inline-3"> <input class="access-hide" id="input-checkbox-inline-3" name="input-checkbox-inline" type="checkbox">Inline Option 3 <span class="circle"></span><span class="circle-check"></span><span class="circle-icon icon">done</span> </label> </div> </div> <div class="form-group"> <div class="radio radio-adv"> <label for="input-radio-1"> <input class="access-hide" id="input-radio-1" name="input-radio" type="radio">Option 1 <span class="circle"></span><span class="circle-check"></span> </label> </div> <div class="radio radio-adv"> <label for="input-radio-2"> <input class="access-hide" id="input-radio-2" name="input-radio" type="radio">Option 2 <span class="circle"></span><span class="circle-check"></span> </label> </div> <div class="radio radio-adv"> <label for="input-radio-3"> <input class="access-hide" id="input-radio-3" name="input-radio" type="radio">Option 3 <span class="circle"></span><span class="circle-check"></span> </label> </div> </div> <div class="form-group"> <div class="radio radio-adv disabled"> <label for="input-radio-1-disabled"> <input class="access-hide" id="input-radio-1-disabled" name="input-radio-disabled" type="radio" disabled>Disabled Option 1 <span class="circle"></span><span class="circle-check"></span> </label> </div> <div class="radio radio-adv disabled"> <label for="input-radio-2-disabled"> <input class="access-hide" id="input-radio-2-disabled" name="input-radio-disabled" type="radio" checked disabled>Disabled Option 2 <span class="circle"></span><span class="circle-check"></span> </label> </div> <div class="radio radio-adv disabled"> <label for="input-radio-3-disabled"> <input class="access-hide" id="input-radio-3-disabled" name="input-radio-disabled" type="radio" disabled>Disabled Option 3 <span class="circle"></span><span class="circle-check"></span> </label> </div> </div> <div class="form-group"> <div class="radio radio-adv radio-inline"> <label for="input-radio-inline-1"> <input class="access-hide" id="input-radio-inline-1" name="input-radio-inline" type="radio">Inline Option 1 <span class="circle"></span><span class="circle-check"></span> </label> </div> <div class="radio radio-adv radio-inline"> <label for="input-radio-inline-2"> <input class="access-hide" id="input-radio-inline-2" name="input-radio-inline" type="radio">Inline Option 2 <span class="circle"></span><span class="circle-check"></span> </label> </div> <div class="radio radio-adv radio-inline"> <label for="input-radio-inline-3"> <input class="access-hide" id="input-radio-inline-3" name="input-radio-inline" type="radio">Inline Option 3 <span class="circle"></span><span class="circle-check"></span> </label> </div> </div> </fieldset> <fieldset> <legend>Material Datepicker</legend> <div class="form-group"> <div class="row"> <div class="col-lg-2 col-md-3 col-sm-4"> <label class="form-label" for="datepicker-adv-1">Material Datepicker</label> </div> <div class="col-lg-4 col-md-6 col-sm-8"> <input class="datepicker-adv datepicker-adv-doc-1 form-control" id="datepicker-adv-1" type="text"> <div class="card"> <div class="card-main"> <div class="card-header"> <div class="card-inner"> <span class="icon">info_outline</span>&nbsp;<span>Usage</span> </div> </div> <div class="card-inner"> <p>Use <code>.datepicker-adv</code> to apply material datepicker styles and activate the datepicker via simple javascript, for example: <code>$('.datepicker-adv').datepicker();</code></p> </div> </div> </div> </div> </div> </div> <div class="form-group"> <div class="row"> <div class="col-lg-2 col-md-3 col-sm-4"> <label class="form-label" for="datepicker-adv-2">Material Datepicker with Pre-Set Date</label> </div> <div class="col-lg-4 col-md-6 col-sm-8"> <input class="datepicker-adv datepicker-adv-doc-2 form-control" id="datepicker-adv-2" type="text" value="01-Jan-2010"> <div class="card"> <div class="card-main"> <div class="card-header"> <div class="card-inner"> <span class="icon">info_outline</span>&nbsp;<span>Options</span> </div> </div> <div class="card-inner"> <p>Alternatively, options can be passed to override some default material datepicker behaviours:</p> <ul> <li><code>format</code> to change date format</li> <li><code>selectMonths</code> and <code>selectYears</code> to hide/show dropdown menus for picking month and year. The number of years to be shown in the dropdown can also be specified using an even integer.</li> </ul> </div> </div> </div> </div> </div> </div> </fieldset> <fieldset> <legend>Switch</legend> <div class="form-group"> <div class="checkbox switch"> <label for="input-switch-1"> <input class="access-hide" id="input-switch-1" name="input-switch" type="checkbox"><span class="switch-toggle"></span>Default switch inherits accent colour </label> </div> </div> <div class="form-group"> <div class="checkbox switch"> <label for="input-switch-2"> <input class="access-hide" id="input-switch-2" name="input-switch" type="checkbox"><span class="switch-toggle switch-toggle-brand"></span>Brand switch </label> </div> </div> <div class="form-group"> <div class="checkbox switch"> <label for="input-switch-3"> <input class="access-hide" id="input-switch-3" name="input-switch" type="checkbox"><span class="switch-toggle switch-toggle-amber"></span>Amber switch </label> </div> </div> <div class="form-group"> <div class="checkbox switch"> <label for="input-switch-4"> <input class="access-hide" id="input-switch-4" name="input-switch" type="checkbox"><span class="switch-toggle switch-toggle-green"></span>Green switch </label> </div> </div> <div class="form-group"> <div class="checkbox switch"> <label for="input-switch-6"> <input class="access-hide" id="input-switch-6" name="input-switch" type="checkbox"><span class="switch-toggle switch-toggle-red"></span>Red switch </label> </div> </div> </fieldset> <div class="form-group-btn"> <button class="btn btn-brand-accent waves-attach waves-button waves-light" type="submit">Submit Button</button><button class="btn waves-attach waves-button" type="button">Cancel Button</button> </div> </form> </section> </div> </div> <footer class="footer"> <div class="container"> <p>Material</p> </div> </footer> <div class="fbtn-container"> <div class="fbtn-inner"> <a class="fbtn fbtn-brand-accent fbtn-lg" data-toggle="dropdown"><span class="fbtn-text">Links</span><span class="fbtn-ori icon">add</span><span class="fbtn-sub icon">close</span></a> <div class="fbtn-dropdown"> <a class="fbtn" href="https://github.com/Daemonite/material" target="_blank"><span class="fbtn-text">Fork me on GitHub</span><span class="fa fa-github"></span></a> <a class="fbtn fbtn-blue" href="https://twitter.com/daemonites" target="_blank"><span class="fbtn-text">Follow Daemon on Twitter</span><span class="fa fa-twitter"></span></a> <a class="fbtn fbtn-alt" href="http://www.daemon.com.au/" target="_blank"><span class="fbtn-text">Visit Daemon Website</span><span class="icon">link</span></a> </div> </div> </div> <!-- js --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="js/base.min.js"></script> <!-- js for this project --> <script src="js/project.min.js"></script> </body> </html>
3rdparty/spring-framework-2.5.1/docs/api/org/springframework/core/class-use/MethodParameter.html
cacheonix/cacheonix-core
<!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_03) on Wed Jan 09 13:25:29 CET 2008 --> <TITLE> Uses of Class org.springframework.core.MethodParameter (Spring Framework API 2.5) </TITLE> <META NAME="date" CONTENT="2008-01-09"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.springframework.core.MethodParameter (Spring Framework API 2.5)"; } } </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/springframework/core/MethodParameter.html" title="class in org.springframework.core"><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> <a href="http://www.springframework.org/" target="_top">The Spring Framework</a></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/springframework/core/\class-useMethodParameter.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MethodParameter.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.springframework.core.MethodParameter</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/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.springframework.beans"><B>org.springframework.beans</B></A></TD> <TD>This package contains interfaces and classes for manipulating Java beans.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.springframework.beans.factory.config"><B>org.springframework.beans.factory.config</B></A></TD> <TD>SPI interfaces and configuration-related convenience classes for bean factories.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.springframework.core"><B>org.springframework.core</B></A></TD> <TD>Provides basic classes for exception handling and version detection, and other core helpers that are not specific to any part of the framework.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.springframework.validation"><B>org.springframework.validation</B></A></TD> <TD>Provides data binding and validation functionality, for usage in business and/or UI layers.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.springframework.beans"><!-- --></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/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A> in <A HREF="../../../../org/springframework/beans/package-summary.html">org.springframework.beans</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="../../../../org/springframework/beans/package-summary.html">org.springframework.beans</A> with parameters of type <A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<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></CODE></FONT></TD> <TD><CODE><B>DirectFieldAccessor.</B><B><A HREF="../../../../org/springframework/beans/DirectFieldAccessor.html#convertIfNecessary(java.lang.Object, java.lang.Class, org.springframework.core.MethodParameter)">convertIfNecessary</A></B>(<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>&nbsp;value, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&nbsp;requiredType, <A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A>&nbsp;methodParam)</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;<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></CODE></FONT></TD> <TD><CODE><B>BeanWrapperImpl.</B><B><A HREF="../../../../org/springframework/beans/BeanWrapperImpl.html#convertIfNecessary(java.lang.Object, java.lang.Class, org.springframework.core.MethodParameter)">convertIfNecessary</A></B>(<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>&nbsp;value, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&nbsp;requiredType, <A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A>&nbsp;methodParam)</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;<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></CODE></FONT></TD> <TD><CODE><B>TypeConverter.</B><B><A HREF="../../../../org/springframework/beans/TypeConverter.html#convertIfNecessary(java.lang.Object, java.lang.Class, org.springframework.core.MethodParameter)">convertIfNecessary</A></B>(<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>&nbsp;value, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&nbsp;requiredType, <A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A>&nbsp;methodParam)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Convert the value to the required type (if necessary from a String).</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<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></CODE></FONT></TD> <TD><CODE><B>SimpleTypeConverter.</B><B><A HREF="../../../../org/springframework/beans/SimpleTypeConverter.html#convertIfNecessary(java.lang.Object, java.lang.Class, org.springframework.core.MethodParameter)">convertIfNecessary</A></B>(<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>&nbsp;value, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&nbsp;requiredType, <A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A>&nbsp;methodParam)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.springframework.beans.factory.config"><!-- --></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/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A> in <A HREF="../../../../org/springframework/beans/factory/config/package-summary.html">org.springframework.beans.factory.config</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="../../../../org/springframework/beans/factory/config/package-summary.html">org.springframework.beans.factory.config</A> that return <A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A></CODE></FONT></TD> <TD><CODE><B>DependencyDescriptor.</B><B><A HREF="../../../../org/springframework/beans/factory/config/DependencyDescriptor.html#getMethodParameter()">getMethodParameter</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Return the wrapped MethodParameter, if any.</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">Constructors in <A HREF="../../../../org/springframework/beans/factory/config/package-summary.html">org.springframework.beans.factory.config</A> with parameters of type <A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../org/springframework/beans/factory/config/DependencyDescriptor.html#DependencyDescriptor(org.springframework.core.MethodParameter, boolean)">DependencyDescriptor</A></B>(<A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A>&nbsp;methodParameter, boolean&nbsp;required)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a new descriptor for a method or constructor parameter.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.springframework.core"><!-- --></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/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A> in <A HREF="../../../../org/springframework/core/package-summary.html">org.springframework.core</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="../../../../org/springframework/core/package-summary.html">org.springframework.core</A> that return <A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A></CODE></FONT></TD> <TD><CODE><B>MethodParameter.</B><B><A HREF="../../../../org/springframework/core/MethodParameter.html#forMethodOrConstructor(java.lang.Object, int)">forMethodOrConstructor</A></B>(<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>&nbsp;methodOrConstructor, int&nbsp;parameterIndex)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a new MethodParameter for the given method or constructor.</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/springframework/core/package-summary.html">org.springframework.core</A> with parameters of type <A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A></CODE></FONT></TD> <TD><CODE><B>GenericCollectionTypeResolver.</B><B><A HREF="../../../../org/springframework/core/GenericCollectionTypeResolver.html#getCollectionParameterType(org.springframework.core.MethodParameter)">getCollectionParameterType</A></B>(<A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A>&nbsp;methodParam)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Determine the generic element type of the given Collection parameter.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A></CODE></FONT></TD> <TD><CODE><B>GenericCollectionTypeResolver.</B><B><A HREF="../../../../org/springframework/core/GenericCollectionTypeResolver.html#getMapKeyParameterType(org.springframework.core.MethodParameter)">getMapKeyParameterType</A></B>(<A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A>&nbsp;methodParam)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Determine the generic key type of the given Map parameter.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A></CODE></FONT></TD> <TD><CODE><B>GenericCollectionTypeResolver.</B><B><A HREF="../../../../org/springframework/core/GenericCollectionTypeResolver.html#getMapValueParameterType(org.springframework.core.MethodParameter)">getMapValueParameterType</A></B>(<A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A>&nbsp;methodParam)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Determine the generic value type of the given Map parameter.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<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></CODE></FONT></TD> <TD><CODE><B>Conventions.</B><B><A HREF="../../../../org/springframework/core/Conventions.html#getVariableNameForParameter(org.springframework.core.MethodParameter)">getVariableNameForParameter</A></B>(<A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A>&nbsp;parameter)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Determine the conventional variable name for the supplied parameter, taking the generic collection type (if any) into account.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.springframework.validation"><!-- --></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/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A> in <A HREF="../../../../org/springframework/validation/package-summary.html">org.springframework.validation</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="../../../../org/springframework/validation/package-summary.html">org.springframework.validation</A> with parameters of type <A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<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></CODE></FONT></TD> <TD><CODE><B>DataBinder.</B><B><A HREF="../../../../org/springframework/validation/DataBinder.html#convertIfNecessary(java.lang.Object, java.lang.Class, org.springframework.core.MethodParameter)">convertIfNecessary</A></B>(<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>&nbsp;value, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&nbsp;requiredType, <A HREF="../../../../org/springframework/core/MethodParameter.html" title="class in org.springframework.core">MethodParameter</A>&nbsp;methodParam)</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/springframework/core/MethodParameter.html" title="class in org.springframework.core"><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> <a href="http://www.springframework.org/" target="_top">The Spring Framework</a></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/springframework/core/\class-useMethodParameter.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MethodParameter.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 &copy; 2002-2007 <a href=http://www.springframework.org/ target=_top>The Spring Framework</a>.</i> </BODY> </HTML>
doc/html/a00118.html
dudochkin-victor/telepathy-qt4-yell
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>TelepathyQt4Yell: Member List</title> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <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="classes.html"> <font color="#004faf">All Classes</font></a>&nbsp;&middot; <a href="namespaces.html"> <font color="#004faf">All Namespaces</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>&nbsp;&middot; <a href="files.html"> <font color="#004faf">Files</font></a> </td> </tr> </table> </body> </html> <!-- Generated by Doxygen 1.6.2 --> <div class="contents"> <h1>Tpy::ContactSendingStateMap Member List</h1>This is the complete list of members for <a class="el" href="a00023.html">Tpy::ContactSendingStateMap</a>, including all inherited members.<table> <tr class="memlist"><td><a class="el" href="a00023.html#ab3d97a0ed29ac7a1d4cd9f0bd8a039b3">ContactSendingStateMap</a>()</td><td><a class="el" href="a00023.html">Tpy::ContactSendingStateMap</a></td><td><code> [inline]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00023.html#a5b913386b8ae5d443f1f194949df75e7">ContactSendingStateMap</a>(const QMap&lt; uint, uint &gt; &amp;a)</td><td><a class="el" href="a00023.html">Tpy::ContactSendingStateMap</a></td><td><code> [inline]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00023.html#af26b8e57dd0178ea30e76b4ad26a0ae0">operator=</a>(const QMap&lt; uint, uint &gt; &amp;a)</td><td><a class="el" href="a00023.html">Tpy::ContactSendingStateMap</a></td><td><code> [inline]</code></td></tr> </table></div> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td width="30%">Copyright &copy; 2008-2010 Collabora Ltd. and Nokia Corporation</td> <td width="30%" align="right"><div align="right">Telepathy-Qt4-Yell 0.1.4</div></td> </tr></table></div></address> </body> </html>
doc/html/qorganizeriteminvalidfilter-members.html
robclark/qtmobility-1.1.0
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- qorganizeriteminvalidfilter.cpp --> <title>Qt Mobility 1.1: List of All Members for QOrganizerItemInvalidFilter</title> <link rel="stylesheet" type="text/css" href="style/style.css" /> <!--[if IE]> <meta name="MSSmartTagsPreventParsing" content="true"> <meta http-equiv="imagetoolbar" content="no"> <![endif]--> <!--[if lt IE 7]> <link rel="stylesheet" type="text/css" href="style/style_ie6.css"> <![endif]--> <!--[if IE 7]> <link rel="stylesheet" type="text/css" href="style/style_ie7.css"> <![endif]--> <!--[if IE 8]> <link rel="stylesheet" type="text/css" href="style/style_ie8.css"> <![endif]--> <script src="scripts/jquery.js" type="text/javascript"></script> <script src="scripts/functions.js" type="text/javascript"></script> <script src="./scripts/superfish.js" type="text/javascript"></script> <script src="./scripts/narrow.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="style/superfish.css" /> <link rel="stylesheet" type="text/css" href="style/narrow.css" /></head> <body class="" onload="CheckEmptyAndLoadList();"> <div class="header" id="qtdocheader"> <div class="content"> <div id="nav-logo"> <a href="index.html">Home</a></div> <a href="index.html" class="qtref"><span>Qt Mobility Reference Documentation</span></a> <div id="narrowsearch"><form onsubmit="return false;" action="" id="qtdocsearchTop"> <fieldset> <input type="text" value="" id="pageType2" name="searchstring"/> </fieldset> </form></div> <div id="nav-topright"> <ul> <li class="nav-topright-home"><a href="http://qt.nokia.com/">Qt HOME</a></li> <li class="nav-topright-dev"><a href="http://developer.qt.nokia.com/">DEV</a></li> <li class="nav-topright-labs"><a href="http://labs.qt.nokia.com/blogs/">LABS</a></li> <li class="nav-topright-doc nav-topright-doc-active"><a href="http://doc.qt.nokia.com/"> DOC</a></li> <li class="nav-topright-blog"><a href="http://blog.qt.nokia.com/">BLOG</a></li> </ul> </div> <div id="shortCut"> <ul> <li class="shortCut-topleft-inactive"><span><a href="index.html">Mobility 1.1</a></span></li> <li class="shortCut-topleft-active"><a href="http://doc.qt.nokia.com">ALL VERSIONS </a></li> </ul> </div> <ul class="sf-menu sf-js-enabled sf-shadow" id="narrowmenu"> <li><a href="#">API Lookup</a> <ul id="topmenuLook"> <li><a href="classes.html">Class index</a></li> <li><a href="functions.html">Function index</a></li> <li><a href="modules.html">Modules</a></li> </ul> </li> <li><a href="#">Examples</a> <ul id="topmenuexample"> <li><a href="all-examples.html">Examples</a></li> </ul> </li> </ul> </div> </div> <div class="wrapper"> <div class="hd"> <span></span> </div> <div class="bd group"> <div class="sidebar"> <div class="searchlabel"> Search index:</div> <div class="search"> <form id="qtdocsearch" action="" onsubmit="return false;"> <fieldset> <input type="text" name="searchstring" id="pageType" value="" /> </fieldset> </form> </div> <div class="box first bottombar" id="lookup"> <h2 title="API Lookup"><span></span> API Lookup</h2> <div id="list001" class="list"> <ul id="ul001" > <li class="defaultLink"><a href="classes.html">Class index</a></li> <li class="defaultLink"><a href="functions.html">Function index</a></li> <li class="defaultLink"><a href="modules.html">Modules</a></li> <li class="defaultLink"><a href="index.html#platform-compatibility">Platform Compatibility</a></li> <li class="defaultLink"><a href="qml-plugins.html">QML Plugins</a></li> </ul> </div> </div> <div class="box bottombar" id="topics"> <h2 title="Qt Topics"><span></span> Qt Topics</h2> <div id="list002" class="list"> <ul id="ul002" > <li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/">Qt 4.7</a></li> <li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/qt-basic-concepts.html">Basic Qt architecture</a></li> <li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/declarativeui.html">Device UI's &amp; Qt Quick</a></li> <li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/qt-gui-concepts.html">Desktop UI components</a></li> <li class="defaultLink"><a href="http://doc.qt.nokia.com/4.7-snapshot/platform-specific.html">Platform-specific info</a></li> </ul> </div> </div> <div class="box" id="examples"> <h2 title="Examples"><span></span> Examples</h2> <div id="list003" class="list"> <ul id="ul003"> <li class="defaultLink"><a href="all-examples.html">Examples</a></li> </ul> </div> </div> </div> <div class="wrap"> <div class="toolbar"> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Bread crumbs goes here --> <li><a href="modules.html">Modules</a></li> <li><a href="qtorganizer.html">QtOrganizer</a></li> <li>QOrganizerItemInvalidFilter</li> </ul> </div> <div class="toolbuttons toolblock"> <ul> <li id="smallA" class="t_button">A</li> <li id="medA" class="t_button active">A</li> <li id="bigA" class="t_button">A</li> <li id="print" class="t_button"><a href="javascript:this.print();"> <span>Print</span></a></li> </ul> </div> </div> <div class="content"> <h1 class="title">List of All Members for QOrganizerItemInvalidFilter</h1> <p>This is the complete list of members for <a href="qorganizeriteminvalidfilter.html">QOrganizerItemInvalidFilter</a>, including inherited members.</p> <ul> <li class="fn">enum <b><a href="qorganizeritemfilter.html#FilterType-enum">FilterType</a></b></li> <li class="fn">enum <b><a href="qorganizeritemfilter.html#MatchFlag-enum">MatchFlag</a></b></li> <li class="fn">flags <b><a href="qorganizeritemfilter.html#MatchFlag-enum">MatchFlags</a></b></li> <li class="fn"><b><a href="qorganizeriteminvalidfilter.html#QOrganizerItemInvalidFilter">QOrganizerItemInvalidFilter</a></b> ()</li> <li class="fn"><b><a href="qorganizeriteminvalidfilter.html#QOrganizerItemInvalidFilter-2">QOrganizerItemInvalidFilter</a></b> ( const QOrganizerItemFilter &amp; )</li> <li class="fn"><b><a href="qorganizeritemfilter.html#d_ptr-var">d_ptr</a></b> : QSharedDataPointer&lt;QOrganizerItemFilterPrivate&gt;</li> <li class="fn"><b><a href="qorganizeritemfilter.html#type">type</a></b> () const : FilterType</li> <li class="fn"><b><a href="qorganizeritemfilter.html#operator-not-eq">operator!=</a></b> ( const QOrganizerItemFilter &amp; ) const : bool</li> <li class="fn"><b><a href="qorganizeritemfilter.html#operator-eq">operator=</a></b> ( const QOrganizerItemFilter &amp; ) : QOrganizerItemFilter &amp;</li> <li class="fn"><b><a href="qorganizeritemfilter.html#operator-eq-eq">operator==</a></b> ( const QOrganizerItemFilter &amp; ) const : bool</li> </ul> <!-- /div --> <div class="feedback t_button"> [+] Documentation Feedback</div> </div> </div> <div class="ft"> <span></span> </div> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2010 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> </div> <div id="feedbackBox"> <div id="feedcloseX" class="feedclose t_button">X</div> <form id="feedform" action="http://doc.qt.nokia.com/docFeedbck/feedback.php" method="get"> <p id="noteHead">Thank you for giving your feedback.</p> <div class="note"><p>Make sure it is related to this specific page. For more general bugs and requests, please use the <a href="http://bugreports.qt.nokia.com/secure/Dashboard.jspa">Qt Bug Tracker</a>.</p></div> <p><textarea id="feedbox" name="feedText" rows="5" cols="40"></textarea></p> <p><input id="feedsubmit" class="feedclose" type="submit" name="feedback" /></p> </form> </div> <div id="blurpage"> </div> </div> <script src="scripts/functions.js" type="text/javascript"></script> </body> </html>
doc/html/a00744.html
Telekinesis/Telepathy-qt4-0.8.0
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Member List</title> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <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="classes.html"> <font color="#004faf">All Classes</font></a>&nbsp;&middot; <a href="namespaces.html"> <font color="#004faf">All Namespaces</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>&nbsp;&middot; <a href="files.html"> <font color="#004faf">Files</font></a> </td> </tr> </table> <!-- Generated by Doxygen 1.7.5 --> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="a00655.html">Tp</a> </li> <li class="navelem"><a class="el" href="a00175.html">Contact</a> </li> </ul> </div> </div> <div class="header"> <div class="headertitle"> <div class="title">Tp::Contact Member List</div> </div> </div> <div class="contents"> This is the complete list of members for <a class="el" href="a00175.html">Tp::Contact</a>, including all inherited members.<table> <tr class="memlist"><td><a class="el" href="a00175.html#a8705afdb5019e74ac92eec8dc9e5d94c">actualFeatures</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ab3289edf063657b66b6fc754185cc22a">addedToGroup</a>(const QString &amp;group)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a37e3eccee021ba28b567b3256b4c592b">addToGroup</a>(const QString &amp;group)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ad8348105833f362b812aa8aa8bfe698a">alias</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ace8b4e7779bda7a773b983114d549215">aliasChanged</a>(const QString &amp;alias)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a8bf74ad84d6ea767c4d3edd6af7e7624">augment</a>(const Features &amp;requestedFeatures, const QVariantMap &amp;attributes)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [protected, virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a4f83e036d937ca58e82b25f72efebdb1">authorizePresencePublication</a>(const QString &amp;message=QString())</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ab9ac335a30dcba596f7c98cd811a782a">avatarData</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a612ee28bc1240ed7cc242c1d8ceb2c63">avatarDataChanged</a>(const Tp::AvatarData &amp;avatarData)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a3605f3bef239b197e8dc9705f05de5e4">avatarToken</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a113976de58b07cf9da5e867aac61e61c">avatarTokenChanged</a>(const QString &amp;avatarToken)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a470971d276973ddee425ddb17988dc33">block</a>(bool value)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a32b183df90e0c037177b4335c1243b31">block</a>()</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a719edcff5e9353e6f1c72cb7cfbc31d6">blockAndReportAbuse</a>()</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#blockSignals">blockSignals</a>(bool block)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a1db42abddc2803fcbd1597366251b9c7">blockStatusChanged</a>(bool blocked)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a4692d333c4f3aa5de8152b6b8b21cb7a">blockStatusChanged</a>(bool blocked, const Tp::Channel::GroupMemberChangeDetails &amp;details)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a1afdb35ac692840aadf8091a9694b4df">capabilities</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a0e3355749ebda1585ac55b379ad128fd">capabilitiesChanged</a>(const Tp::ContactCapabilities &amp;caps)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject-qt3.html#checkConnectArgs">checkConnectArgs</a>(const char *signal, const QObject *object, const char *method)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [protected]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject-qt3.html#child">child</a>(const char *objName, const char *inheritsClass, bool recursiveSearch) const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#childEvent">childEvent</a>(QChildEvent *event)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [protected, virtual]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#children">children</a>() const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject-qt3.html#className">className</a>() const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#connect">connect</a>(const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#connect-2">connect</a>(const QObject *sender, const QMetaMethod &amp;signal, const QObject *receiver, const QMetaMethod &amp;method, Qt::ConnectionType type)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#connect-3">connect</a>(const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type) const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a1e5c2949d8c39b9cd2a0f27d0157b9b0">connectNotify</a>(const char *)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [protected, virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a8017eddef01ed158ac60957b213c1f09">Contact</a>(ContactManager *manager, const ReferencedHandles &amp;handle, const Features &amp;requestedFeatures, const QVariantMap &amp;attributes)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [protected]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#customEvent">customEvent</a>(QEvent *event)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [protected, virtual]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#deleteLater">deleteLater</a>()</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00336.html#ab76182f103a5b026d92e01b22a63c84a">deref</a>() const </td><td><a class="el" href="a00336.html">Tp::RefCounted</a></td><td><code> [inline]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#destroyed">destroyed</a>(QObject *obj)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#disconnect">disconnect</a>(const QObject *sender, const char *signal, const QObject *receiver, const char *method)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#disconnect-2">disconnect</a>(const QObject *sender, const QMetaMethod &amp;signal, const QObject *receiver, const QMetaMethod &amp;method)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#disconnect-3">disconnect</a>(const char *signal, const QObject *receiver, const char *method)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#disconnect-4">disconnect</a>(const QObject *receiver, const char *method)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#disconnectNotify">disconnectNotify</a>(const char *signal)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [protected, virtual]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#dumpObjectInfo">dumpObjectInfo</a>()</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#dumpObjectTree">dumpObjectTree</a>()</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#dynamicPropertyNames">dynamicPropertyNames</a>() const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#event">event</a>(QEvent *e)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#eventFilter">eventFilter</a>(QObject *watched, QEvent *event)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a536e766810218cd7d6de0d201dd03ebe">FeatureAlias</a></td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a6f66e39ad96bf52b25126f39459c47dc">FeatureAvatarData</a></td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#af9b6a80e2453f27272859b57cd47f80f">FeatureAvatarToken</a></td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a06e83ec4d31a506b6812a8afda6a8af5">FeatureCapabilities</a></td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a949fd098a4d13311dc4d81c2a1706553">FeatureInfo</a></td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a3e80342afc76406c7c069d96e0cdbac8">FeatureLocation</a></td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#af9098f3f176bfce4fa2628f97d4c9ae3">FeatureSimplePresence</a></td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#findChild">findChild</a>(const QString &amp;name) const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#findChildren">findChildren</a>(const QString &amp;name) const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#findChildren-2">findChildren</a>(const QRegExp &amp;regExp) const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a0914911fa54d112aea94dc43d0fb124f">groups</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ab64dc31bd4fbfc9791da9c60fe9f8173">handle</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#aca45e993fea6618783ad2187d09d45b5">id</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ad2cc0129e906e9bc27b7a86b81dd8816">infoFields</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#af6169b8950a3e67cc96b4832cf336e73">infoFieldsChanged</a>(const Tp::Contact::InfoFields &amp;infoFields)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#inherits">inherits</a>(const char *className) const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject-qt3.html#insertChild">insertChild</a>(QObject *object)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#installEventFilter">installEventFilter</a>(QObject *filterObj)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject-qt3.html#isA">isA</a>(const char *className) const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a6f7bfd8bfb8d0ad2ed11661ca052a7f3">isAvatarTokenKnown</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a0c6a8d9c0fc3a99bb62d9246907192f5">isBlocked</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#abc6f53dd1b25f60c3271397be64dfab3">isContactInfoKnown</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a044078488356a3c4b1b6c82061f66152">isPublishCancelled</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a3494aaab888db05620292cf2f32069dd">isPublishStateKnown</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#aa5b01df3d2cb99d663fbb34dbe2baa43">isSubscriptionRejected</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ad14f250055a72a36b6ffde1943ce5201">isSubscriptionStateKnown</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#isWidgetType">isWidgetType</a>() const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#killTimer">killTimer</a>(int id)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ad475fa80abd48fa447adf61d14bd2011">location</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#acae80bba6988ba2355626852c773e416">locationUpdated</a>(const Tp::LocationInfo &amp;location)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#aea6e33b03faf8c68d4577bcb4161dc42">manager</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#metaObject">metaObject</a>() const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#moveToThread">moveToThread</a>(QThread *targetThread)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject-qt3.html#name">name</a>() const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject-qt3.html#name-2">name</a>(const char *defaultName) const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject-qt3.html#normalizeSignalSlot">normalizeSignalSlot</a>(const char *signalSlot)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [protected, static]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00274.html#ab082554e5af7e3271aa1486f86d74db7">notify</a>(const char *propertyName)</td><td><a class="el" href="a00274.html">Tp::Object</a></td><td><code> [protected]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00274.html#acd48c94dd2130fcd4ab80c44e3079b0c">Object</a>()</td><td><a class="el" href="a00274.html">Tp::Object</a></td><td><code> [protected]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#objectName-prop">objectName</a></td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#objectName-prop">objectName</a>() const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#parent">parent</a>() const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a27db3cfb69c113bbf39b9697bd013fe6">presence</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a034354d4568e525569cad825070caae7">presenceChanged</a>(const Tp::Presence &amp;presence)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ab758b1908d04f9870c8091456f3ddc5b">PresenceState</a> enum name</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ab758b1908d04f9870c8091456f3ddc5ba9c5f79349a1de47e9734bf77042f0728">PresenceStateAsk</a> enum value</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ab758b1908d04f9870c8091456f3ddc5baf7076e1e97f86d1c4ebc4ebe290e3c61">PresenceStateNo</a> enum value</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ab758b1908d04f9870c8091456f3ddc5ba7eabc92c3f6ae76802f5bdfac658ebdc">PresenceStateYes</a> enum value</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#property">property</a>(const char *name) const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00274.html#a83a87f712a0c20755745880983977b7a">propertyChanged</a>(const QString &amp;propertyName)</td><td><a class="el" href="a00274.html">Tp::Object</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#aff2a3b67a62428cf4d06c90f69ef4688">publishState</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#afb7b962372cfb9d9eed5ec1e9c5fd36a">publishStateChanged</a>(Tp::Contact::PresenceState state, const QString &amp;message)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#aba0869726da621e41db76cf8e113e209">publishStateChanged</a>(Tp::Contact::PresenceState state, const Tp::Channel::GroupMemberChangeDetails &amp;details)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a9d9baf0be1c527c35e14d8fccadf2c28">publishStateMessage</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#QObject">QObject</a>(QObject *parent)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject-qt3.html#QObject-3">QObject</a>(QObject *parent, const char *name)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#receivers">receivers</a>(const char *signal) const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [protected]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00336.html#a9aba496ce91d68a147c9a7c6d29c2095">ref</a>() const </td><td><a class="el" href="a00336.html">Tp::RefCounted</a></td><td><code> [inline]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00336.html#ace03ea74806fd9a180b8863ae23c838c">RefCounted</a>()</td><td><a class="el" href="a00336.html">Tp::RefCounted</a></td><td><code> [inline]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#afbcc3d1622dae475b56caa8b43af5938">refreshInfo</a>()</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject-qt3.html#removeChild">removeChild</a>(QObject *object)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a9814b8af1fa29dad5bb1626b455c20a7">removedFromGroup</a>(const QString &amp;group)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#removeEventFilter">removeEventFilter</a>(QObject *obj)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a5df622e88d066440fac3a079b148afec">removeFromGroup</a>(const QString &amp;group)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ab4b51e36e7efe1a921c2fb2d7bc391fb">removePresencePublication</a>(const QString &amp;message=QString())</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ab907f90204744c50836abd5a54d674fa">removePresenceSubscription</a>(const QString &amp;message=QString())</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#aa92553f42d6de4ba1c285bff1233c014">requestAvatarData</a>()</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ae2dde6b88239722647494fca5e2c2b65">requestedFeatures</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#aa80d9b8a16b17856ad7abc5c63431fee">requestInfo</a>()</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#af30104295906e16cb1c98afb14acdd73">requestPresenceSubscription</a>(const QString &amp;message=QString())</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#sender">sender</a>() const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [protected]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#senderSignalIndex">senderSignalIndex</a>() const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [protected]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject-qt3.html#setName">setName</a>(const char *name)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#objectName-prop">setObjectName</a>(const QString &amp;name)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#setParent">setParent</a>(QObject *parent)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#setProperty">setProperty</a>(const char *name, const QVariant &amp;value)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#signalsBlocked">signalsBlocked</a>() const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#startTimer">startTimer</a>(int interval)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00336.html#a76c6988cd2e89252a44e0b89893eb416">strongref</a></td><td><a class="el" href="a00336.html">Tp::RefCounted</a></td><td><code> [mutable]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a650f9b833ebb36f28e7b8ac004e0e765">subscriptionState</a>() const </td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#af83e6bc67e66198c2090a27f868f4bd2">subscriptionStateChanged</a>(Tp::Contact::PresenceState state)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a809f79575e1d9aa787ca386f17a26d20">subscriptionStateChanged</a>(Tp::Contact::PresenceState state, const Tp::Channel::GroupMemberChangeDetails &amp;details)</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td><code> [signal]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#thread">thread</a>() const</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#timerEvent">timerEvent</a>(QTimerEvent *event)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [protected, virtual]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#tr">tr</a>(const char *sourceText, const char *disambiguation, int n)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#trUtf8">trUtf8</a>(const char *sourceText, const char *disambiguation, int n)</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [static]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#a45c18438210c49f7dc08fa514d7e58a5">unblock</a>()</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00175.html#ae778594b7fd91499112861b2b3d7772f">~Contact</a>()</td><td><a class="el" href="a00175.html">Tp::Contact</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="a00274.html#a6f7137bb1763779fdb6babc91f2462c3">~Object</a>()</td><td><a class="el" href="a00274.html">Tp::Object</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html#dtor.QObject">~QObject</a>()</td><td><a class="elRef" doxygen="qt.tags:/you/forgot/to/run/installdox" href="/you/forgot/to/run/installdox/qobject.html">QObject</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="a00336.html#a56b3618d2e02f6999c77da00d4e1bfd4">~RefCounted</a>()</td><td><a class="el" href="a00336.html">Tp::RefCounted</a></td><td><code> [inline, virtual]</code></td></tr> </table></div> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td width="30%">Copyright &copy; 2008-2011 Collabora Ltd. and Nokia Corporation</td> <td width="30%" align="right"><div align="right">Telepathy-Qt4 0.8.0</div></td> </tr></table></div></address> </body> </html>
doc/api/jade/content/onto/package-tree.html
microcosmx/jade
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="it"> <head> <!-- Generated by javadoc (version 1.7.0_03) on Tue Dec 09 10:56:12 CET 2014 --> <title>jade.content.onto Class Hierarchy (JADE v4.3.3 API)</title> <meta name="date" content="2014-12-09"> <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="jade.content.onto Class Hierarchy (JADE v4.3.3 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../jade/content/lang/sl/package-tree.html">Prev</a></li> <li><a href="../../../jade/content/onto/annotations/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?jade/content/onto/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 class="title">Hierarchy For Package jade.content.onto</h1> <span class="strong">Package Hierarchies:</span> <ul class="horizontal"> <li><a href="../../../overview-tree.html">All Packages</a></li> </ul> </div> <div class="contentContainer"> <h2 title="Class Hierarchy">Class Hierarchy</h2> <ul> <li type="circle">java.lang.Object <ul> <li type="circle">jade.content.abs.<a href="../../../jade/content/abs/AbsObjectImpl.html" title="class in jade.content.abs"><span class="strong">AbsObjectImpl</span></a> (implements jade.content.abs.<a href="../../../jade/content/abs/AbsObject.html" title="interface in jade.content.abs">AbsObject</a>) <ul> <li type="circle">jade.content.abs.<a href="../../../jade/content/abs/AbsPrimitiveSlotsHolder.html" title="class in jade.content.abs"><span class="strong">AbsPrimitiveSlotsHolder</span></a> <ul> <li type="circle">jade.content.abs.<a href="../../../jade/content/abs/AbsConcept.html" title="class in jade.content.abs"><span class="strong">AbsConcept</span></a> (implements jade.content.abs.<a href="../../../jade/content/abs/AbsTerm.html" title="interface in jade.content.abs">AbsTerm</a>, jade.content.<a href="../../../jade/content/Concept.html" title="interface in jade.content">Concept</a>) <ul> <li type="circle">jade.content.abs.<a href="../../../jade/content/abs/AbsConceptSlotFunction.html" title="class in jade.content.abs"><span class="strong">AbsConceptSlotFunction</span></a> <ul> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/ConceptSlotFunction.html" title="class in jade.content.onto"><span class="strong">ConceptSlotFunction</span></a></li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/Ontology.html" title="class in jade.content.onto"><span class="strong">Ontology</span></a> (implements jade.util.leap.<a href="../../../jade/util/leap/Serializable.html" title="interface in jade.util.leap">Serializable</a>) <ul> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/BasicOntology.html" title="class in jade.content.onto"><span class="strong">BasicOntology</span></a> (implements jade.content.lang.sl.<a href="../../../jade/content/lang/sl/SL0Vocabulary.html" title="interface in jade.content.lang.sl">SL0Vocabulary</a>)</li> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/BeanOntology.html" title="class in jade.content.onto"><span class="strong">BeanOntology</span></a></li> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/JavaCollectionOntology.html" title="class in jade.content.onto"><span class="strong">JavaCollectionOntology</span></a></li> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/SerializableOntology.html" title="class in jade.content.onto"><span class="strong">SerializableOntology</span></a></li> </ul> </li> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/ReflectiveIntrospector.html" title="class in jade.content.onto"><span class="strong">ReflectiveIntrospector</span></a> (implements jade.content.onto.<a href="../../../jade/content/onto/Introspector.html" title="interface in jade.content.onto">Introspector</a>) <ul> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/BCReflectiveIntrospector.html" title="class in jade.content.onto"><span class="strong">BCReflectiveIntrospector</span></a></li> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/CFReflectiveIntrospector.html" title="class in jade.content.onto"><span class="strong">CFReflectiveIntrospector</span></a></li> </ul> </li> <li type="circle">java.lang.Throwable (implements java.io.Serializable) <ul> <li type="circle">java.lang.Exception <ul> <li type="circle">jade.util.<a href="../../../jade/util/WrapperException.html" title="class in jade.util"><span class="strong">WrapperException</span></a> <ul> <li type="circle">jade.content.<a href="../../../jade/content/ContentException.html" title="class in jade.content"><span class="strong">ContentException</span></a> <ul> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/OntologyException.html" title="class in jade.content.onto"><span class="strong">OntologyException</span></a> <ul> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/BeanOntologyException.html" title="class in jade.content.onto"><span class="strong">BeanOntologyException</span></a></li> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/UngroundedException.html" title="class in jade.content.onto"><span class="strong">UngroundedException</span></a></li> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/UnknownSchemaException.html" title="class in jade.content.onto"><span class="strong">UnknownSchemaException</span></a></li> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/UnknownSlotException.html" title="class in jade.content.onto"><span class="strong">UnknownSlotException</span></a></li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> </ul> <h2 title="Interface Hierarchy">Interface Hierarchy</h2> <ul> <li type="circle">java.io.Serializable <ul> <li type="circle">jade.util.leap.<a href="../../../jade/util/leap/Serializable.html" title="interface in jade.util.leap"><span class="strong">Serializable</span></a> <ul> <li type="circle">jade.content.onto.<a href="../../../jade/content/onto/Introspector.html" title="interface in jade.content.onto"><span class="strong">Introspector</span></a></li> </ul> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../jade/content/lang/sl/package-tree.html">Prev</a></li> <li><a href="../../../jade/content/onto/annotations/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?jade/content/onto/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small><center>These are the official <i><a href=http://jade.tilab.com target=top>JADE</a></i> API. For these API backward compatibility is guaranteed accross JADE versions</center></small></p> </body> </html>
doc/html/qmake-project-files.html
kobolabs/qt-everywhere-opensource-src-4.6.2
<?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"> <!-- qmake-manual.qdoc --> <head> <title>Qt 4.6: qmake Project Files</title> <link rel="prev" href="qmake-using.html" /> <link rel="contents" href="qmake-manual.html" /> <link rel="next" href="qmake-running.html" /> <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://qt.nokia.com/"><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="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">All&nbsp;Functions</font></a>&nbsp;&middot; <a href="overviews.html"><font color="#004faf">Overviews</font></a></td></tr></table><p> [Previous: <a href="qmake-using.html">Using qmake</a>] [<a href="qmake-manual.html">Contents</a>] [Next: <a href="qmake-running.html">Running qmake</a>] </p> <h1 class="title">qmake Project Files<br /><span class="subtitle"></span> </h1> <p>Project files contain all the information required by <tt>qmake</tt> to build your application, library, or plugin. The resources used by your project are generally specified using a series of declarations, but support for simple programming constructs allow you to describe different build processes for different platforms and environments.</p> <ul><li><a href="#project-file-elements">Project File Elements</a></li> <ul><li><a href="#variables">Variables</a></li> <ul><li><a href="#whitespace">Whitespace</a></li> </ul> <li><a href="#comments">Comments</a></li> <li><a href="#built-in-functions-and-control-flow">Built-in Functions and Control Flow</a></li> </ul> <li><a href="#project-templates">Project Templates</a></li> <li><a href="#general-configuration">General Configuration</a></li> <li><a href="#declaring-qt-libraries">Declaring Qt Libraries</a></li> <li><a href="#configuration-features">Configuration Features</a></li> <li><a href="#declaring-other-libraries">Declaring Other Libraries</a></li> </ul> <a name="project-file-elements"></a> <h2>Project File Elements</h2> <p>The project file format used by <tt>qmake</tt> can be used to support both simple and fairly complex build systems. Simple project files will use a straightforward declarative style, defining standard variables to indicate the source and header files that are used in the project. Complex projects may use the control flow structures to fine-tune the build process.</p> <p>The following sections describe the different types of elements used in project files.</p> <a name="variables"></a> <h3>Variables</h3> <p>In a project file, variables are used to hold lists of strings. In the simplest projects, these variables inform <tt>qmake</tt> about the configuration options to use, or supply filenames and paths to use in the build process.</p> <p><tt>qmake</tt> looks for certain variables in each project file, and it uses the contents of these to determine what it should write to a Makefile. For example, the list of values in the <tt>HEADERS</tt> and <tt>SOURCES</tt> variables are used to tell <tt>qmake</tt> about header and source files in the same directory as the project file.</p> <p>Variables can also be used internally to store temporary lists of values, and existing lists of values can be overwritten or extended with new values.</p> <p>The following lines show how lists of values are assigned to variables:</p> <pre> HEADERS = mainwindow.h paintwidget.h</pre> <p>Note that the first assignment only includes values that are specified on the same line as the <tt>SOURCES</tt> variable. The second assignment splits the items across lines by using the <tt>\\</tt> character.</p> <p>The list of values in a variable is extended in the following way:</p> <pre> SOURCES = main.cpp mainwindow.cpp \ paintwidget.cpp CONFIG += qt</pre> <p>The <tt>CONFIG</tt> variable is another special variable that <tt>qmake</tt> uses when generating a Makefile. It is discussed in the section on <a href="#generalconfiguration">general configuration</a> later in this chapter. In the above line, <tt>qt</tt> is added to the list of existing values contained in <tt>CONFIG</tt>.</p> <p>The following table lists the variables that <tt>qmake</tt> recognizes, and describes what they should contain.</p> <p><table class="generic" align="center" cellpadding="2" cellspacing="1" border="0"> <thead><tr valign="top" class="qt-style"><th>Variable</th><th>Contents</th></tr></thead> <tr valign="top" class="odd"><td>CONFIG</td><td>General project configuration options.</td></tr> <tr valign="top" class="even"><td>DESTDIR</td><td>The directory in which the executable or binary file will be placed.</td></tr> <tr valign="top" class="odd"><td>FORMS</td><td>A list of UI files to be processed by <tt>uic</tt>.</td></tr> <tr valign="top" class="even"><td>HEADERS</td><td>A list of filenames of header (.h) files used when building the project.</td></tr> <tr valign="top" class="odd"><td>QT</td><td>Qt-specific configuration options.</td></tr> <tr valign="top" class="even"><td>RESOURCES</td><td>A list of resource (.rc) files to be included in the final project. See the <a href="resources.html">The Qt Resource System</a> for more information about these files.</td></tr> <tr valign="top" class="odd"><td>SOURCES</td><td>A list of source code files to be used when building the project.</td></tr> <tr valign="top" class="even"><td>TEMPLATE</td><td>The template to use for the project. This determines whether the output of the build process will be an application, a library, or a plugin.</td></tr> </table></p> <p>The contents of a variable can be read by prepending the variable name with <tt>$$</tt>. This can be used to assign the contents of one variable to another:</p> <pre> TEMP_SOURCES = $$SOURCES</pre> <p>The <tt>$$</tt> operator is used extensively with built-in functions that operate on strings and lists of values. These are described in the chapter on <a href="qmake-advanced-usage.html">qmake Advanced Usage</a>.</p> <a name="whitespace"></a> <h4>Whitespace</h4> <p>Normally, variables are used to contain whitespace-separated lists of values. However, it is sometimes necessary to specify values containing spaces. These must be quoted by using the <a href="qmake-function-reference.html#quote-string">quote()</a> function in the following way:</p> <pre> DEST = &quot;Program Files&quot;</pre> <p>The quoted text is treated as a single item in the list of values held by the variable. A similar approach is used to deal with paths that contain spaces, particularly when defining the <a href="qmake-variable-reference.html#includepath">INCLUDEPATH</a> and <a href="qmake-variable-reference.html#libs">LIBS</a> variables for the Windows platform. In cases like these, the <a href="qmake-function-reference.html#quote-string">quote()</a> function can be used in the following way:</p> <pre> win32:INCLUDEPATH += $$quote(C:/mylibs/extra headers) unix:INCLUDEPATH += $$quote(/home/user/extra headers)</pre> <a name="comments"></a> <h3>Comments</h3> <p>You can add comments to project files. Comments begin with the <tt>#</tt> character and continue to the end of the same line. For example:</p> <pre> # Comments usually start at the beginning of a line, but they # can also follow other content on the same line.</pre> <p>To include the <tt>#</tt> character in variable assignments, it is necessary to use the contents of the built-in <tt>LITERAL_HASH</tt> variable. See the <a href="qmake-variable-reference.html#literal-hash">variable reference</a> for more information.</p> <a name="built-in-functions-and-control-flow"></a> <h3>Built-in Functions and Control Flow</h3> <p><tt>qmake</tt> provides a number of built-in functions to allow the contents of variables to be processed. The most commonly used function in simple project files is the <tt>include</tt> function which takes a filename as an argument. The contents of the given file are included in the project file at the place where the <tt>include</tt> function is used. The <tt>include</tt> function is most commonly used to include other project files:</p> <pre> include(other.pro)</pre> <p>Support for conditional structures is made available via <a href="qmake-advanced-usage.html#scopes">scopes</a> that behave like <tt>if</tt> statements in programming languages:</p> <pre> win32 { SOURCES += paintwidget_win.cpp }</pre> <p>The assignments inside the braces are only made if the condition is true. In this case, the special <tt>win32</tt> variable must be set; this happens automatically on Windows, but this can also be specified on other platforms by running <tt>qmake</tt> with the <tt>-win32</tt> command line option (see <a href="qmake-running.html">Running qmake</a> for more information). The opening brace must stand on the same line as the condition.</p> <p>Simple loops are constructed by iterating over lists of values using the built-in <tt>for</tt> function. The following code adds directories to the <a href="qmake-variable-reference.html#subdirs">SUBDIRS</a> variable, but only if they exist:</p> <pre> EXTRAS = handlers tests docs for(dir, EXTRAS) { exists($$dir) { SUBDIRS += $$dir } }</pre> <p>More complex operations on variables that would usually require loops are provided by built-in functions such as <tt>find</tt>, <tt>unique</tt>, and <tt>count</tt>. These functions, and many others are provided to manipulate strings and paths, support user input, and call external tools. A list of the functions available can be found in the <a href="qmake-advanced-usage.html">qmake Advanced Usage</a> chapter of this manual.</p> <a name="project-templates"></a> <h2>Project Templates</h2> <p>The <tt>TEMPLATE</tt> variable is used to define the type of project that will be built. If this is not declared in the project file, <tt>qmake</tt> assumes that an application should be built, and will generate an appropriate Makefile (or equivalent file) for the purpose.</p> <p>The types of project available are listed in the following table with information about the files that <tt>qmake</tt> will generate for each of them:</p> <p><table class="generic" align="center" cellpadding="2" cellspacing="1" border="0"> <thead><tr valign="top" class="qt-style"><th>Template</th><th>Description of <tt>qmake</tt> output</th></tr></thead> <tr valign="top" class="odd"><td>app (default)</td><td>Creates a Makefile to build an application.</td></tr> <tr valign="top" class="even"><td>lib</td><td>Creates a Makefile to build a library.</td></tr> <tr valign="top" class="odd"><td>subdirs</td><td>Creates a Makefile containing rules for the subdirectories specified using the <a href="qmake-variable-reference.html#subdirs">SUBDIRS</a> variable. Each subdirectory must contain its own project file.</td></tr> <tr valign="top" class="even"><td>vcapp</td><td>Creates a Visual Studio Project file to build an application.</td></tr> <tr valign="top" class="odd"><td>vclib</td><td>Creates a Visual Studio Project file to build a library.</td></tr> </table></p> <p>See the <a href="qmake-tutorial.html">qmake Tutorial</a> for advice on writing project files for projects that use the <tt>app</tt> and <tt>lib</tt> templates.</p> <p>When the <tt>subdirs</tt> template is used, <tt>qmake</tt> generates a Makefile to examine each specified subdirectory, process any project file it finds there, and run the platform's <tt>make</tt> tool on the newly-created Makefile. The <a href="qmake-variable-reference.html#subdirs">SUBDIRS</a> variable is used to contain a list of all the subdirectories to be processed.</p> <a name="generalconfiguration"></a><a name="general-configuration"></a> <h2>General Configuration</h2> <p>The <a href="qmake-variable-reference.html#config">CONFIG variable</a> specifies the options and features that the compiler should use and the libraries that should be linked against. Anything can be added to the <tt>CONFIG</tt> variable, but the options covered below are recognized by <tt>qmake</tt> internally.</p> <p>The following options control the compiler flags that are used to build the project:</p> <p><table class="generic" align="center" cellpadding="2" cellspacing="1" border="0"> <thead><tr valign="top" class="qt-style"><th>Option</th><th>Description</th></tr></thead> <tr valign="top" class="odd"><td>release</td><td>The project is to be built in release mode. This is ignored if <tt>debug</tt> is also specified.</td></tr> <tr valign="top" class="even"><td>debug</td><td>The project is to be built in debug mode.</td></tr> <tr valign="top" class="odd"><td>debug_and_release</td><td>The project is built in <i>both</i> debug and release modes.</td></tr> <tr valign="top" class="even"><td>debug_and_release_target</td><td>The project is built in <i>both</i> debug and release modes. TARGET is built into <i>both</i> the debug and release directories.</td></tr> <tr valign="top" class="odd"><td>build_all</td><td>If <tt>debug_and_release</tt> is specified, the project is built in both debug and release modes by default.</td></tr> <tr valign="top" class="even"><td>autogen_precompile_source</td><td>Automatically generates a <tt>.cpp</tt> file that includes the precompiled header file specified in the .pro file.</td></tr> <tr valign="top" class="odd"><td>ordered</td><td>When using the <tt>subdirs</tt> template, this option specifies that the directories listed should be processed in the order in which they are given.</td></tr> <tr valign="top" class="even"><td>warn_on</td><td>The compiler should output as many warnings as possible. This is ignored if <tt>warn_off</tt> is specified.</td></tr> <tr valign="top" class="odd"><td>warn_off</td><td>The compiler should output as few warnings as possible.</td></tr> <tr valign="top" class="even"><td>copy_dir_files</td><td>Enables the install rule to also copy directories, not just files.</td></tr> </table></p> <p>The <tt>debug_and_release</tt> option is special in that it enables <i>both</i> debug and release versions of a project to be built. In such a case, the Makefile that <tt>qmake</tt> generates includes a rule that builds both versions, and this can be invoked in the following way:</p> <pre> make all</pre> <p>Adding the <tt>build_all</tt> option to the <tt>CONFIG</tt> variable makes this rule the default when building the project, and installation targets will be created for both debug and release builds.</p> <p>Note that each of the options specified in the <tt>CONFIG</tt> variable can also be used as a scope condition. You can test for the presence of certain configuration options by using the built-in <a href="qmake-function-reference.html#config-config">CONFIG()</a> function. For example, the following lines show the function as the condition in a scope to test whether only the <tt>opengl</tt> option is in use:</p> <pre> CONFIG(opengl) { message(Building with OpenGL support.) } else { message(OpenGL support is not available.) }</pre> <p>This enables different configurations to be defined for <tt>release</tt> and <tt>debug</tt> builds, and is described in more detail in the <a href="qmake-advanced-usage.html#scopes">Scopes</a> section of the <a href="qmake-advanced-usage.html">Advanced Usage</a> chapter of this manual.</p> <p>The following options define the type of project to be built. Note that some of these options only take effect when used on the relevant platform. On other platforms, they have no effect.</p> <p><table class="generic" align="center" cellpadding="2" cellspacing="1" border="0"> <thead><tr valign="top" class="qt-style"><th>Option</th><th>Description</th></tr></thead> <tr valign="top" class="odd"><td>qt</td><td>The project is a Qt application and should link against the Qt library. You can use the <tt>QT</tt> variable to control any additional Qt modules that are required by your application.</td></tr> <tr valign="top" class="even"><td>thread</td><td>The project is a multi-threaded application.</td></tr> <tr valign="top" class="odd"><td>x11</td><td>The project is an X11 application or library.</td></tr> </table></p> <p>When using <a href="qmake-variable-reference.html#template">application or library project templates</a>, more specialized configuration options can be used to fine tune the build process. These are explained in details in the <a href="qmake-common-projects.html">Common Projects</a> chapter of this manual.</p> <p>For example, if your application uses the Qt library and you want to build it as a multi-threaded application in <tt>debug</tt> mode, your project file will contain the following line:</p> <pre> CONFIG += qt thread debug</pre> <p>Note, that you must use &quot;+=&quot;, not &quot;=&quot;, or <tt>qmake</tt> will not be able to use Qt's configuration to determine the settings needed for your project.</p> <a name="declaring-qt-libraries"></a> <h2>Declaring Qt Libraries</h2> <p>If the <tt>CONFIG</tt> variable contains the <tt>qt</tt> value, qmake's support for Qt applications is enabled. This makes it possible to fine-tune which of the Qt modules are used by your application. This is achieved with the <tt>QT</tt> variable which can be used to declare the required extension modules. For example, we can enable the XML and network modules in the following way:</p> <pre> CONFIG += qt QT += network xml</pre> <p>Note that <tt>QT</tt> includes the <tt>core</tt> and <tt>gui</tt> modules by default, so the above declaration <i>adds</i> the network and XML modules to this default list. The following assignment <i>omits</i> the default modules, and will lead to errors when the application's source code is being compiled:</p> <pre> QT = network xml # This will omit the core and gui modules.</pre> <p>If you want to build a project <i>without</i> the <tt>gui</tt> module, you need to exclude it with the &quot;-=&quot; operator. By default, <tt>QT</tt> contains both <tt>core</tt> and <tt>gui</tt>, so the following line will result in a minimal Qt project being built:</p> <pre> QT -= gui # Only the core module is used.</pre> <p>The table below shows the options that can be used with the <tt>QT</tt> variable and the features that are associated with each of them:</p> <p><table class="generic" align="center" cellpadding="2" cellspacing="1" border="0"> <thead><tr valign="top" class="qt-style"><th>Option</th><th>Features</th></tr></thead> <tr valign="top" class="odd"><td>core (included by default)</td><td><a href="qtcore.html">QtCore</a> module</td></tr> <tr valign="top" class="even"><td>gui (included by default)</td><td><a href="qtgui.html">QtGui</a> module</td></tr> <tr valign="top" class="odd"><td>network</td><td><a href="qtnetwork.html">QtNetwork</a> module</td></tr> <tr valign="top" class="even"><td>opengl</td><td><a href="qtopengl.html">QtOpenGL</a> module</td></tr> <tr valign="top" class="odd"><td>sql</td><td><a href="qtsql.html">QtSql</a> module</td></tr> <tr valign="top" class="even"><td>svg</td><td><a href="qtsvg.html">QtSvg</a> module</td></tr> <tr valign="top" class="odd"><td>xml</td><td><a href="qtxml.html">QtXml</a> module</td></tr> <tr valign="top" class="even"><td>xmlpatterns</td><td><a href="qtxmlpatterns.html">QtXmlPatterns</a> module</td></tr> <tr valign="top" class="odd"><td>qt3support</td><td><a href="qt3support.html">Qt3Support</a> module</td></tr> </table></p> <p>Note that adding the <tt>opengl</tt> option to the <tt>QT</tt> variable automatically causes the equivalent option to be added to the <tt>CONFIG</tt> variable. Therefore, for Qt applications, it is not necessary to add the <tt>opengl</tt> option to both <tt>CONFIG</tt> and <tt>QT</tt>.</p> <a name="configuration-features"></a> <h2>Configuration Features</h2> <p><tt>qmake</tt> can be set up with extra configuration features that are specified in feature (.prf) files. These extra features often provide support for custom tools that are used during the build process. To add a feature to the build process, append the feature name (the stem of the feature filename) to the <tt>CONFIG</tt> variable.</p> <p>For example, <tt>qmake</tt> can configure the build process to take advantage of external libraries that are supported by <a href="http://www.freedesktop.org/wiki/Software_2fpkgconfig">pkg-config</a>, such as the D-Bus and ogg libraries, with the following lines:</p> <pre> CONFIG += link_pkgconfig PKGCONFIG += ogg dbus-1</pre> <p>More information about features can be found in the <a href="qmake-advanced-usage.html#adding-new-configuration-features">Adding New Configuration Features</a> section of the <a href="qmake-advanced-usage.html">qmake Advanced Usage</a> chapter.</p> <a name="declaring-other-libraries"></a> <h2>Declaring Other Libraries</h2> <p>If you are using other libraries in your project in addition to those supplied with Qt, you need to specify them in your project file.</p> <p>The paths that <tt>qmake</tt> searches for libraries and the specific libraries to link against can be added to the list of values in the <a href="qmake-variable-reference.html#libs">LIBS</a> variable. The paths to the libraries themselves can be given, or the familiar Unix-style notation for specifying libraries and paths can be used if preferred.</p> <p>For example, the following lines show how a library can be specified:</p> <pre> LIBS += -L/usr/local/lib -lmath</pre> <p>The paths containing header files can also be specified in a similar way using the <a href="qmake-variable-reference.html#includepath">INCLUDEPATH</a> variable.</p> <p>For example, it is possible to add several paths to be searched for header files:</p> <pre> INCLUDEPATH = c:/msdev/include d:/stl/include</pre> <p> [Previous: <a href="qmake-using.html">Using qmake</a>] [<a href="qmake-manual.html">Contents</a>] [Next: <a href="qmake-running.html">Running qmake</a>] </p> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td width="40%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td> <td width="20%" align="center"><a href="trademarks.html">Trademarks</a></td> <td width="40%" align="right"><div align="right">Qt 4.6.2</div></td> </tr></table></div></address></body> </html>
html-docs/contents/e7c2455552849e52150947e22d85863f.html
jiangbo212/netty-init
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>length</title> <!-- <script src="http://use.edgefonts.net/source-sans-pro;source-code-pro.js"></script> --> <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic|Source+Code+Pro:300,400,700' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="../assets/css/bootstrap.css"> <link rel="stylesheet" href="../assets/css/jquery.bonsai.css"> <link rel="stylesheet" href="../assets/css/main.css"> <link rel="stylesheet" href="../assets/css/icons.css"> <script type="text/javascript" src="../assets/js/jquery-2.1.0.min.js"></script> <script type="text/javascript" src="../assets/js/bootstrap.js"></script> <script type="text/javascript" src="../assets/js/jquery.bonsai.js"></script> <!-- <script type="text/javascript" src="../assets/js/main.js"></script> --> </head> <body> <div> <!-- Name Title --> <h1>length</h1> <!-- Type and Stereotype --> <section style="margin-top: .5em;"> <span class="alert alert-info"> <span class="node-icon _icon-UMLParameter"></span> UMLParameter </span> </section> <!-- Path --> <section style="margin-top: 10px"> <span class="label label-info"><a href='cf9c8b720f3815adeccaf3ef6e48c6c4.html'><span class='node-icon _icon-Project'></span>Untitled</a></span> <span>::</span> <span class="label label-info"><a href='6550300e57d7fc770bd2e9afbcdb3ecb.html'><span class='node-icon _icon-UMLModel'></span>JavaReverse</a></span> <span>::</span> <span class="label label-info"><a href='7ff2d96ca3eb7f62f48c1a30b3c7c990.html'><span class='node-icon _icon-UMLPackage'></span>net</a></span> <span>::</span> <span class="label label-info"><a href='7adc4be4f2e4859086f068fc27512d85.html'><span class='node-icon _icon-UMLPackage'></span>gleamynode</a></span> <span>::</span> <span class="label label-info"><a href='bb15307bdbbaf31bfef4f71be74150ae.html'><span class='node-icon _icon-UMLPackage'></span>netty</a></span> <span>::</span> <span class="label label-info"><a href='13ebeea6c90c35d72f303d2d478d584e.html'><span class='node-icon _icon-UMLPackage'></span>buffer</a></span> <span>::</span> <span class="label label-info"><a href='4464ce985e4b9d0e4012ffa39864027e.html'><span class='node-icon _icon-UMLInterface'></span>ChannelBuffer</a></span> <span>::</span> <span class="label label-info"><a href='7148142fcf92341d324cf7892ef7e2a4.html'><span class='node-icon _icon-UMLOperation'></span>writeBytes</a></span> <span>::</span> <span class="label label-info"><a href='e7c2455552849e52150947e22d85863f.html'><span class='node-icon _icon-UMLParameter'></span>length</a></span> </section> <!-- Diagram --> <!-- Description --> <section> <h3>Description</h3> <div> <span class="label label-info">none</span> </div> </section> <!-- Specification --> <!-- Directed Relationship --> <!-- Undirected Relationship --> <!-- Classifier --> <!-- Interface --> <!-- Component --> <!-- Node --> <!-- Actor --> <!-- Use Case --> <!-- Template Parameters --> <!-- Literals --> <!-- Attributes --> <!-- Operations --> <!-- Receptions --> <!-- Extension Points --> <!-- Parameters --> <!-- Diagrams --> <!-- Behavior --> <!-- Action --> <!-- Interaction --> <!-- CombinedFragment --> <!-- Activity --> <!-- State Machine --> <!-- State Machine --> <!-- State --> <!-- Vertex --> <!-- Transition --> <!-- Properties --> <section> <h3>Properties</h3> <table class="table table-striped table-bordered"> <tr> <th width="50%">Name</th> <th width="50%">Value</th> </tr> <tr> <td>name</td> <td>length</td> </tr> <tr> <td>stereotype</td> <td><span class='label label-info'>null</span></td> </tr> <tr> <td>visibility</td> <td>public</td> </tr> <tr> <td>isStatic</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>isLeaf</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>type</td> <td>int</td> </tr> <tr> <td>multiplicity</td> <td></td> </tr> <tr> <td>isReadOnly</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>isOrdered</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>isUnique</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>defaultValue</td> <td></td> </tr> <tr> <td>direction</td> <td>in</td> </tr> </table> </section> <!-- Tags --> <!-- Constraints, Dependencies, Dependants --> <!-- Relationships --> <!-- Owned Elements --> </div> </body> </html>
epcis/xref/org/fosstrak/epcis/repository/capture/package-frame.html
Fosstrak/fosstrak.github.io
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> <title>epcis 0.4.3-SNAPSHOT Reference Package org.fosstrak.epcis.repository.capture</title> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="style" /> </head> <body> <h3> <a href="package-summary.html" target="classFrame">org.fosstrak.epcis.repository.capture</a> </h3> <h3>Classes</h3> <ul> <li> <a href="CaptureOperationsBackend.html" target="classFrame">CaptureOperationsBackend</a> </li> <li> <a href="CaptureOperationsBackendSQL.html" target="classFrame">CaptureOperationsBackendSQL</a> </li> <li> <a href="CaptureOperationsModule.html" target="classFrame">CaptureOperationsModule</a> </li> <li> <a href="CaptureOperationsServlet.html" target="classFrame">CaptureOperationsServlet</a> </li> <li> <a href="CaptureOperationsSession.html" target="classFrame">CaptureOperationsSession</a> </li> </ul> </body> </html>
reader/apidocs/org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html
Fosstrak/fosstrak.github.io
<!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_05) on Tue Mar 25 10:45:04 CET 2008 --> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <TITLE> SnmpTable (reader 0.4.1-SNAPSHOT API) </TITLE> <META NAME="date" CONTENT="2008-03-25"> <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="SnmpTable (reader 0.4.1-SNAPSHOT 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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/SnmpTable.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/accada/reader/rprm/core/mgmt/agent/snmp/table/RowObjectContainer.html" title="class in org.accada.reader.rprm.core.mgmt.agent.snmp.table"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.TableTypeEnum.html" title="enum in org.accada.reader.rprm.core.mgmt.agent.snmp.table"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../../../index.html?org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="SnmpTable.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;<A HREF="#nested_class_summary">NESTED</A>&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_org.snmp4j.agent.mo.DefaultMOTable">FIELD</A>&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.accada.reader.rprm.core.mgmt.agent.snmp.table</FONT> <BR> Class SnmpTable</H2> <PRE> java.lang.Object <IMG SRC="../../../../../../../../../resources/inherit.gif" ALT="extended by ">org.snmp4j.agent.mo.DefaultMOTable <IMG SRC="../../../../../../../../../resources/inherit.gif" ALT="extended by "><B>org.accada.reader.rprm.core.mgmt.agent.snmp.table.SnmpTable</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD>org.snmp4j.agent.ManagedObject, org.snmp4j.agent.mo.MOTable, org.snmp4j.agent.MOScope, org.snmp4j.agent.SerializableManagedObject</DD> </DL> <HR> <DL> <DT><PRE>public class <B>SnmpTable</B><DT>extends org.snmp4j.agent.mo.DefaultMOTable</DL> </PRE> <P> Forms a SNMP table used in the reader management implementation. <P> <P> <HR> <P> <!-- ======== NESTED CLASS SUMMARY ======== --> <A NAME="nested_class_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>Nested Class Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.TableTypeEnum.html" title="enum in org.accada.reader.rprm.core.mgmt.agent.snmp.table">SnmpTable.TableTypeEnum</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Denotes the table types.</TD> </TR> </TABLE> &nbsp;<A NAME="nested_classes_inherited_from_class_org.snmp4j.agent.mo.DefaultMOTable"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Nested classes/interfaces inherited from class org.snmp4j.agent.mo.DefaultMOTable</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>org.snmp4j.agent.mo.DefaultMOTable.ChangeSet</CODE></TD> </TR> </TABLE> &nbsp; <!-- =========== FIELD SUMMARY =========== --> <A NAME="field_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>Field Summary</B></FONT></TH> </TR> </TABLE> &nbsp;<A NAME="fields_inherited_from_class_org.snmp4j.agent.mo.DefaultMOTable"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Fields inherited from class org.snmp4j.agent.mo.DefaultMOTable</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>newRows, pendingChanges</CODE></TD> </TR> </TABLE> &nbsp; <!-- ======== 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/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html#SnmpTable(org.accada.reader.rprm.core.mgmt.agent.snmp.table.SnmpTable.TableTypeEnum, org.snmp4j.smi.OID, org.snmp4j.agent.mo.MOTableIndex, org.snmp4j.agent.mo.MOColumn[])">SnmpTable</A></B>(<A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.TableTypeEnum.html" title="enum in org.accada.reader.rprm.core.mgmt.agent.snmp.table">SnmpTable.TableTypeEnum</A>&nbsp;type, org.snmp4j.smi.OID&nbsp;oid, org.snmp4j.agent.mo.MOTableIndex&nbsp;indexDef, org.snmp4j.agent.mo.MOColumn[]&nbsp;columns)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructor.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html#SnmpTable(org.accada.reader.rprm.core.mgmt.agent.snmp.table.SnmpTable.TableTypeEnum, org.snmp4j.smi.OID, org.snmp4j.agent.mo.MOTableIndex, org.snmp4j.agent.mo.MOColumn[], org.snmp4j.agent.mo.MOTableModel)">SnmpTable</A></B>(<A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.TableTypeEnum.html" title="enum in org.accada.reader.rprm.core.mgmt.agent.snmp.table">SnmpTable.TableTypeEnum</A>&nbsp;type, org.snmp4j.smi.OID&nbsp;oid, org.snmp4j.agent.mo.MOTableIndex&nbsp;indexDef, org.snmp4j.agent.mo.MOColumn[]&nbsp;columns, org.snmp4j.agent.mo.MOTableModel&nbsp;model)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructor.</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;org.snmp4j.smi.OID</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html#find(org.snmp4j.agent.MOScope)">find</A></B>(org.snmp4j.agent.MOScope&nbsp;range)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Finds the first object ID (<code>OID</code>) in the specified search range.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/RowObjectContainer.html" title="class in org.accada.reader.rprm.core.mgmt.agent.snmp.table">RowObjectContainer</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html#getRowObjContOfRow(org.snmp4j.smi.OID)">getRowObjContOfRow</A></B>(org.snmp4j.smi.OID&nbsp;index)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets the <code>RowObjectContainer</code> of the specified row.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.util.Vector&lt;org.snmp4j.smi.OID&gt;</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html#getSortedIndices()">getSortedIndices</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets the indices of all rows contained in this table as a sorted <code>Vector</code>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;org.snmp4j.smi.OID</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html#getTableRowIndexByValue(org.snmp4j.smi.Variable, int)">getTableRowIndexByValue</A></B>(org.snmp4j.smi.Variable&nbsp;value, int&nbsp;column)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets the index of the first row whose value at the specified column matches a given value.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.TableTypeEnum.html" title="enum in org.accada.reader.rprm.core.mgmt.agent.snmp.table">SnmpTable.TableTypeEnum</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html#getType()">getType</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets the table type.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;org.snmp4j.smi.Variable</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html#getValue(org.snmp4j.smi.OID)">getValue</A></B>(org.snmp4j.smi.OID&nbsp;cellOID)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets the value of the cell instance with the specified instance OID.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;org.snmp4j.smi.Variable</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html#getValue(org.snmp4j.smi.OID, int)">getValue</A></B>(org.snmp4j.smi.OID&nbsp;index, int&nbsp;col)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets the value of the cell instance in the specified column and row.</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="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html#update()">update</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Updates the table.</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="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html#updateStoredRows(java.util.Vector)">updateStoredRows</A></B>(java.util.Vector&lt;<A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/RowObjectContainer.html" title="class in org.accada.reader.rprm.core.mgmt.agent.snmp.table">RowObjectContainer</A>&gt;&nbsp;conts)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Updates the table in a way that there exists for every given <code>RowObjectContainer</code> object one table row.</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_org.snmp4j.agent.mo.DefaultMOTable"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class org.snmp4j.agent.mo.DefaultMOTable</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>addMOChangeListener, addMOTableRowListener, addPendingChanges, addRow, cleanup, commit, covers, createRow, createRow, findCell, fireAfterMOChange, fireAfterPrepareMOChange, fireBeforeMOChange, fireBeforePrepareMOChange, fireRowChanged, get, getCellInfo, getCellOID, getChangesFromRequest, getColumn, getColumnCount, getColumnIndex, getColumns, getDefaultValues, getID, getIndexDef, getIndexPart, getLowerBound, getModel, getNewRows, getOID, getPendingChangeSet, getScope, getUpperBound, hasNewRows, isChangeSetComplete, isCovered, isLowerIncluded, isOverlapping, isUpperIncluded, isVolatile, load, next, prepare, removeAll, removeMOChangeListener, removeMOTableRowListener, removeRow, save, setModel, setVolatile, toString, undo</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>clone, equals, finalize, getClass, hashCode, notify, notifyAll, 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="SnmpTable(org.accada.reader.rprm.core.mgmt.agent.snmp.table.SnmpTable.TableTypeEnum, org.snmp4j.smi.OID, org.snmp4j.agent.mo.MOTableIndex, org.snmp4j.agent.mo.MOColumn[])"><!-- --></A><H3> SnmpTable</H3> <PRE> public <B>SnmpTable</B>(<A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.TableTypeEnum.html" title="enum in org.accada.reader.rprm.core.mgmt.agent.snmp.table">SnmpTable.TableTypeEnum</A>&nbsp;type, org.snmp4j.smi.OID&nbsp;oid, org.snmp4j.agent.mo.MOTableIndex&nbsp;indexDef, org.snmp4j.agent.mo.MOColumn[]&nbsp;columns)</PRE> <DL> <DD>Constructor. <P> <DL> <DT><B>Parameters:</B><DD><CODE>type</CODE> - Table type<DD><CODE>oid</CODE> - OID<DD><CODE>indexDef</CODE> - Index definition<DD><CODE>columns</CODE> - Columns</DL> </DL> <HR> <A NAME="SnmpTable(org.accada.reader.rprm.core.mgmt.agent.snmp.table.SnmpTable.TableTypeEnum, org.snmp4j.smi.OID, org.snmp4j.agent.mo.MOTableIndex, org.snmp4j.agent.mo.MOColumn[], org.snmp4j.agent.mo.MOTableModel)"><!-- --></A><H3> SnmpTable</H3> <PRE> public <B>SnmpTable</B>(<A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.TableTypeEnum.html" title="enum in org.accada.reader.rprm.core.mgmt.agent.snmp.table">SnmpTable.TableTypeEnum</A>&nbsp;type, org.snmp4j.smi.OID&nbsp;oid, org.snmp4j.agent.mo.MOTableIndex&nbsp;indexDef, org.snmp4j.agent.mo.MOColumn[]&nbsp;columns, org.snmp4j.agent.mo.MOTableModel&nbsp;model)</PRE> <DL> <DD>Constructor. <P> <DL> <DT><B>Parameters:</B><DD><CODE>type</CODE> - Table type<DD><CODE>oid</CODE> - OID<DD><CODE>indexDef</CODE> - Index definition<DD><CODE>columns</CODE> - Columns<DD><CODE>model</CODE> - Table model</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="getValue(org.snmp4j.smi.OID, int)"><!-- --></A><H3> getValue</H3> <PRE> public org.snmp4j.smi.Variable <B>getValue</B>(org.snmp4j.smi.OID&nbsp;index, int&nbsp;col)</PRE> <DL> <DD>Gets the value of the cell instance in the specified column and row. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE>getValue</CODE> in interface <CODE>org.snmp4j.agent.mo.MOTable</CODE><DT><B>Overrides:</B><DD><CODE>getValue</CODE> in class <CODE>org.snmp4j.agent.mo.DefaultMOTable</CODE></DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>index</CODE> - the row index of the cell.<DD><CODE>col</CODE> - the column index of the cell. <DT><B>Returns:</B><DD>the value of the cell or <code>null</code> if such a cell does not exist.</DL> </DD> </DL> <HR> <A NAME="getValue(org.snmp4j.smi.OID)"><!-- --></A><H3> getValue</H3> <PRE> public org.snmp4j.smi.Variable <B>getValue</B>(org.snmp4j.smi.OID&nbsp;cellOID)</PRE> <DL> <DD>Gets the value of the cell instance with the specified instance OID. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE>getValue</CODE> in interface <CODE>org.snmp4j.agent.mo.MOTable</CODE><DT><B>Overrides:</B><DD><CODE>getValue</CODE> in class <CODE>org.snmp4j.agent.mo.DefaultMOTable</CODE></DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>cellOID</CODE> - the instance OID of the requested cell. <DT><B>Returns:</B><DD>the value of the cell or <code>null</code> if such a cell does not exist.</DL> </DD> </DL> <HR> <A NAME="getSortedIndices()"><!-- --></A><H3> getSortedIndices</H3> <PRE> public java.util.Vector&lt;org.snmp4j.smi.OID&gt; <B>getSortedIndices</B>()</PRE> <DL> <DD>Gets the indices of all rows contained in this table as a sorted <code>Vector</code>. <P> <DD><DL> <DT><B>Returns:</B><DD>Sorted indices</DL> </DD> </DL> <HR> <A NAME="getType()"><!-- --></A><H3> getType</H3> <PRE> public <A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.TableTypeEnum.html" title="enum in org.accada.reader.rprm.core.mgmt.agent.snmp.table">SnmpTable.TableTypeEnum</A> <B>getType</B>()</PRE> <DL> <DD>Gets the table type. <P> <DD><DL> <DT><B>Returns:</B><DD>Table type</DL> </DD> </DL> <HR> <A NAME="find(org.snmp4j.agent.MOScope)"><!-- --></A><H3> find</H3> <PRE> public org.snmp4j.smi.OID <B>find</B>(org.snmp4j.agent.MOScope&nbsp;range)</PRE> <DL> <DD>Finds the first object ID (<code>OID</code>) in the specified search range. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE>find</CODE> in interface <CODE>org.snmp4j.agent.ManagedObject</CODE><DT><B>Specified by:</B><DD><CODE>find</CODE> in interface <CODE>org.snmp4j.agent.mo.MOTable</CODE><DT><B>Overrides:</B><DD><CODE>find</CODE> in class <CODE>org.snmp4j.agent.mo.DefaultMOTable</CODE></DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>range</CODE> - The <code>MOScope</code> for the search <DT><B>Returns:</B><DD>The <code>OID</code> that is included in the search range and <code>null</code> if no such instances could be found</DL> </DD> </DL> <HR> <A NAME="update()"><!-- --></A><H3> update</H3> <PRE> public void <B>update</B>()</PRE> <DL> <DD>Updates the table. <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="updateStoredRows(java.util.Vector)"><!-- --></A><H3> updateStoredRows</H3> <PRE> public void <B>updateStoredRows</B>(java.util.Vector&lt;<A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/RowObjectContainer.html" title="class in org.accada.reader.rprm.core.mgmt.agent.snmp.table">RowObjectContainer</A>&gt;&nbsp;conts)</PRE> <DL> <DD>Updates the table in a way that there exists for every given <code>RowObjectContainer</code> object one table row. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>conts</CODE> - <code>RowObjectContainer</code> objects</DL> </DD> </DL> <HR> <A NAME="getTableRowIndexByValue(org.snmp4j.smi.Variable, int)"><!-- --></A><H3> getTableRowIndexByValue</H3> <PRE> public org.snmp4j.smi.OID <B>getTableRowIndexByValue</B>(org.snmp4j.smi.Variable&nbsp;value, int&nbsp;column)</PRE> <DL> <DD>Gets the index of the first row whose value at the specified column matches a given value. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>value</CODE> - The value that has to match<DD><CODE>column</CODE> - The column <DT><B>Returns:</B><DD>The index of the first row whose value at the specified column matches the given value</DL> </DD> </DL> <HR> <A NAME="getRowObjContOfRow(org.snmp4j.smi.OID)"><!-- --></A><H3> getRowObjContOfRow</H3> <PRE> public <A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/RowObjectContainer.html" title="class in org.accada.reader.rprm.core.mgmt.agent.snmp.table">RowObjectContainer</A> <B>getRowObjContOfRow</B>(org.snmp4j.smi.OID&nbsp;index)</PRE> <DL> <DD>Gets the <code>RowObjectContainer</code> of the specified row. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>index</CODE> - The row index <DT><B>Returns:</B><DD>The <code>RowObjectContainer</code> of the specified row</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/SnmpTable.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/accada/reader/rprm/core/mgmt/agent/snmp/table/RowObjectContainer.html" title="class in org.accada.reader.rprm.core.mgmt.agent.snmp.table"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../../../../../org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.TableTypeEnum.html" title="enum in org.accada.reader.rprm.core.mgmt.agent.snmp.table"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../../../index.html?org/accada/reader/rprm/core/mgmt/agent/snmp/table/SnmpTable.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="SnmpTable.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;<A HREF="#nested_class_summary">NESTED</A>&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_org.snmp4j.agent.mo.DefaultMOTable">FIELD</A>&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> Copyright &#169; 2008. All Rights Reserved. </BODY> </HTML>
data/HTMLBasedInterface/html_de/tutorial/wiki_tutorial07.html
tkemmer/ball
<!DOCTYPE html> <html lang="de"> <head> <title>Tutorial-Dialog</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="../../css/presentaball.css"> <script src="qrc:///qtwebchannel/qwebchannel.js"></script> <script>var current_step = 8;</script> <script src="../../scripts/connectVIEW.js"></script> </head> <body> <div class="navigation" id="breadcrumb"> <a href="../index.html?action=clearAll&amp;module=common_functions">Startseite</a> > Wiki-Tutorial VI </div> <div id="text-content"> <h1>Einführungstutorial</h1> <span>Für Lehrer und Schüler (in 10 Schritten)</span> <h3>6. Atome auswählen und markieren</h3> <p>Damit einzelne oder auch mehrere Atome bearbeitet werden können, müssen diese zunächst markiert werden. Hierzu kann man entweder im <strong>Editiermodus</strong> mit einem Rechtsklick auf ein einzelnes Atom in der Szene klicken und dann im erscheinenden Dialogfenster eine Aktion (z.B. Lösche Atom) auswählen. Oder man markiert die einzelnen Atome im <strong>Strukturen-Fenster</strong>. Hierbei muss man zwischen der Markierung mittels Häkchen und blauem Balken unterscheiden. Bei der Häkchenmarkierung werden die entsprechenden Atome farblich im 3D-Fenster markiert und können später im Schiebemodus (nächster Schritt) verschoben werden. Möchte man jedoch mehrere Atome löschen so müssen diese mittels Strg- oder Shift-Taste + linke Maustaste "blau" markiert bzw. ausgewählt werden.</p> <p>Anschließend kann man mit rechter Maustaste auf die blaue Markierung klicken und eine gewünschte Aktion für die getroffene Auswahl durchführen. BALLView bietet allerdings auch einen eigenen <strong>Auswahlmodus</strong> <img src="../../../graphics/icons/22x22/actions/select-rectangular.png">, in dem die Atome im 3D-Fenster direkt markiert werden können. Hierzu klickt man entweder mit der linken Maustaste auf ein einzelnes Atom oder man hält die linke Maustaste gedrückt und zieht eine Markierungsfläche über eine ganze Gruppe von Atomen. Zeitgleich werden im Strukturenfenster bei den entsprechenden Atomen Häkchen gesetzt. Mit einem Rechtsklick auf das entsprechende Atom kann die Markierung wieder aufgehoben werden.</p> <p>Markieren Sie das Molekül oder dessen Teile im Struktur-Fenster, um fortzufahren.</p> <ul class="buttons"> <li><button id="button1" disabled onClick="location.href='wiki_tutorial08.html';">weiter</button></li> </ul> </div> </body> </html>
doc/html/class_qwt_column_rect-members.html
caicaiking/MyQwt
<!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>Qwt User&#39;s Guide: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </head> <body> <!-- Generated by Doxygen 1.7.3 --> <div id="top"> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">Qwt User's Guide&#160;<span id="projectnumber">6.0.0</span></div> </td> </tr> </tbody> </table> </div> <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><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> </div> <div class="header"> <div class="headertitle"> <h1>QwtColumnRect Member List</h1> </div> </div> <div class="contents"> This is the complete list of members for <a class="el" href="class_qwt_column_rect.html">QwtColumnRect</a>, including all inherited members.<table> <tr class="memlist"><td><a class="el" href="class_qwt_column_rect.html#a70bb2c6f1f8dabe3bc00793740e0908baa5f0a56f1bd041136476d4ad40ae56f0">BottomToTop</a> enum value</td><td><a class="el" href="class_qwt_column_rect.html">QwtColumnRect</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="class_qwt_column_rect.html#aa630854df28955f2ee91c94524b079d7">direction</a></td><td><a class="el" href="class_qwt_column_rect.html">QwtColumnRect</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="class_qwt_column_rect.html#a70bb2c6f1f8dabe3bc00793740e0908b">Direction</a> enum name</td><td><a class="el" href="class_qwt_column_rect.html">QwtColumnRect</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="class_qwt_column_rect.html#a16a24ece2aa70fc763d08e220608d63a">hInterval</a></td><td><a class="el" href="class_qwt_column_rect.html">QwtColumnRect</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="class_qwt_column_rect.html#a70bb2c6f1f8dabe3bc00793740e0908ba3cde7a99f22f5d897ed4b963731256a6">LeftToRight</a> enum value</td><td><a class="el" href="class_qwt_column_rect.html">QwtColumnRect</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="class_qwt_column_rect.html#a8bb5221efc769ef7f474e1f1795de4b6">orientation</a>() const </td><td><a class="el" href="class_qwt_column_rect.html">QwtColumnRect</a></td><td><code> [inline]</code></td></tr> <tr class="memlist"><td><a class="el" href="class_qwt_column_rect.html#ad3eeebc150334ee9393d7aff4f33c873">QwtColumnRect</a>()</td><td><a class="el" href="class_qwt_column_rect.html">QwtColumnRect</a></td><td><code> [inline]</code></td></tr> <tr class="memlist"><td><a class="el" href="class_qwt_column_rect.html#a70bb2c6f1f8dabe3bc00793740e0908bac08f1153f84950e62d369cc7b7011b5e">RightToLeft</a> enum value</td><td><a class="el" href="class_qwt_column_rect.html">QwtColumnRect</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="class_qwt_column_rect.html#a70bb2c6f1f8dabe3bc00793740e0908ba82a13d6063cc299b78ebe1a90a1f39da">TopToBottom</a> enum value</td><td><a class="el" href="class_qwt_column_rect.html">QwtColumnRect</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="class_qwt_column_rect.html#a0169ba0be3e683ce5c87aacfd172095e">toRect</a>() const </td><td><a class="el" href="class_qwt_column_rect.html">QwtColumnRect</a></td><td><code> [inline]</code></td></tr> <tr class="memlist"><td><a class="el" href="class_qwt_column_rect.html#a0dcd7826655c73da74a8f9ad87f3d62a">vInterval</a></td><td><a class="el" href="class_qwt_column_rect.html">QwtColumnRect</a></td><td></td></tr> </table></div> <hr class="footer"/><address class="footer"><small>Generated by&#160; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address> </body> </html>
docs/dist/ImageNumber.js.html
davidshimjs/jaguarjs
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="google-translate-customization" content="5417d948061b56ad-a958f0a86e9ce3fc-gb8a4f09ff822561e-1e"></meta> <title>Source: extension/ImageNumber.js</title> <meta name="description" content="Jaguar.js is a Javascript library that helps to create highly optimized animations and games using HTML 5. Collie runs on both PC and mobile using HTML 5 canvas and CSS 3D. Try out Jaguar.js for fast and easy development, tuned for best performance in various PC and mobile devices." /> <meta name="keywords" content="javascript,animation library,HTML5,Canvas,CSS,Mobile,Javascript Game,Web Game,Performance,game engine" /> <meta name="keyword" content="javascript,animation library,HTML5,Canvas,CSS,Mobile,Javascript Game,Web Game,Performance,game engine" /> <meta property="og:title" content="Jaguar.js - High Performance Animation Library for Javascript"/> <meta property="og:type" content="website"/> <meta property="og:image" content="http://jindo.dev.naver.com/collie/img/logo/logo_200x200.png"/> <meta property="og:site_name" content="Jaguar.js"/> <meta property="og:url" content="http://jindo.dev.naver.com/collie"/> <script src="scripts/prettify/prettify.js"> </script> <script src="scripts/prettify/lang-css.js"> </script> <script src="scripts/jquery.min.js"> </script> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css"> <link type="text/css" rel="stylesheet" href="styles/bootstrap.min.css"> <link type="text/css" rel="stylesheet" href="styles/jaguar.css"> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-34154461-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body> <div id="wrap" class="clearfix"> <div class="navigation"> <h3 class="applicationName"><a href="index.html">Jaguar.js</a></h3> <div class="search"> <input id="search" type="text" class="form-control input-sm" placeholder="Search Documentations"> </div> <ul class="list"> <li class="item" data-name="collie"> <span class="title"> <a href="collie.html">collie</a> <span class="static">static</span> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.version"><a href="collie.html#version">version</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie#Class"><a href="collie.html#Class">Class</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.Effect"> <span class="title"> <a href="collie.Effect.html">collie.Effect</a> <span class="static">static</span> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.Effect.bounce"><a href="collie.Effect.html#bounce">bounce</a></li> <li data-name="collie.Effect.cubicEase"><a href="collie.Effect.html#cubicEase">cubicEase</a></li> <li data-name="collie.Effect.cubicEaseIn"><a href="collie.Effect.html#cubicEaseIn">cubicEaseIn</a></li> <li data-name="collie.Effect.cubicEaseInOut"><a href="collie.Effect.html#cubicEaseInOut">cubicEaseInOut</a></li> <li data-name="collie.Effect.cubicEaseOut"><a href="collie.Effect.html#cubicEaseOut">cubicEaseOut</a></li> <li data-name="collie.Effect.cubicEaseOutIn"><a href="collie.Effect.html#cubicEaseOutIn">cubicEaseOutIn</a></li> <li data-name="collie.Effect.easeIn"><a href="collie.Effect.html#easeIn">easeIn</a></li> <li data-name="collie.Effect.easeInBack"><a href="collie.Effect.html#easeInBack">easeInBack</a></li> <li data-name="collie.Effect.easeInBounce"><a href="collie.Effect.html#easeInBounce">easeInBounce</a></li> <li data-name="collie.Effect.easeInCircle"><a href="collie.Effect.html#easeInCircle">easeInCircle</a></li> <li data-name="collie.Effect.easeInCubic"><a href="collie.Effect.html#easeInCubic">easeInCubic</a></li> <li data-name="collie.Effect.easeInElastic"><a href="collie.Effect.html#easeInElastic">easeInElastic</a></li> <li data-name="collie.Effect.easeInExpo"><a href="collie.Effect.html#easeInExpo">easeInExpo</a></li> <li data-name="collie.Effect.easeInOut"><a href="collie.Effect.html#easeInOut">easeInOut</a></li> <li data-name="collie.Effect.easeInOutBack"><a href="collie.Effect.html#easeInOutBack">easeInOutBack</a></li> <li data-name="collie.Effect.easeInOutBounce"><a href="collie.Effect.html#easeInOutBounce">easeInOutBounce</a></li> <li data-name="collie.Effect.easeInOutCircle"><a href="collie.Effect.html#easeInOutCircle">easeInOutCircle</a></li> <li data-name="collie.Effect.easeInOutCubic"><a href="collie.Effect.html#easeInOutCubic">easeInOutCubic</a></li> <li data-name="collie.Effect.easeInOutElastic"><a href="collie.Effect.html#easeInOutElastic">easeInOutElastic</a></li> <li data-name="collie.Effect.easeInOutExpo"><a href="collie.Effect.html#easeInOutExpo">easeInOutExpo</a></li> <li data-name="collie.Effect.easeInOutQuad"><a href="collie.Effect.html#easeInOutQuad">easeInOutQuad</a></li> <li data-name="collie.Effect.easeInOutQuart"><a href="collie.Effect.html#easeInOutQuart">easeInOutQuart</a></li> <li data-name="collie.Effect.easeInOutQuint"><a href="collie.Effect.html#easeInOutQuint">easeInOutQuint</a></li> <li data-name="collie.Effect.easeInOutSine"><a href="collie.Effect.html#easeInOutSine">easeInOutSine</a></li> <li data-name="collie.Effect.easeInQuad"><a href="collie.Effect.html#easeInQuad">easeInQuad</a></li> <li data-name="collie.Effect.easeInQuart"><a href="collie.Effect.html#easeInQuart">easeInQuart</a></li> <li data-name="collie.Effect.easeInQuint"><a href="collie.Effect.html#easeInQuint">easeInQuint</a></li> <li data-name="collie.Effect.easeInSine"><a href="collie.Effect.html#easeInSine">easeInSine</a></li> <li data-name="collie.Effect.easeOut"><a href="collie.Effect.html#easeOut">easeOut</a></li> <li data-name="collie.Effect.easeOutBack"><a href="collie.Effect.html#easeOutBack">easeOutBack</a></li> <li data-name="collie.Effect.easeOutBounce"><a href="collie.Effect.html#easeOutBounce">easeOutBounce</a></li> <li data-name="collie.Effect.easeOutCircle"><a href="collie.Effect.html#easeOutCircle">easeOutCircle</a></li> <li data-name="collie.Effect.easeOutCubic"><a href="collie.Effect.html#easeOutCubic">easeOutCubic</a></li> <li data-name="collie.Effect.easeOutElastic"><a href="collie.Effect.html#easeOutElastic">easeOutElastic</a></li> <li data-name="collie.Effect.easeOutExpo"><a href="collie.Effect.html#easeOutExpo">easeOutExpo</a></li> <li data-name="collie.Effect.easeOutIn"><a href="collie.Effect.html#easeOutIn">easeOutIn</a></li> <li data-name="collie.Effect.easeOutInCircle"><a href="collie.Effect.html#easeOutInCircle">easeOutInCircle</a></li> <li data-name="collie.Effect.easeOutInCubic"><a href="collie.Effect.html#easeOutInCubic">easeOutInCubic</a></li> <li data-name="collie.Effect.easeOutInExpo"><a href="collie.Effect.html#easeOutInExpo">easeOutInExpo</a></li> <li data-name="collie.Effect.easeOutInQuad"><a href="collie.Effect.html#easeOutInQuad">easeOutInQuad</a></li> <li data-name="collie.Effect.easeOutInQuart"><a href="collie.Effect.html#easeOutInQuart">easeOutInQuart</a></li> <li data-name="collie.Effect.easeOutInQuint"><a href="collie.Effect.html#easeOutInQuint">easeOutInQuint</a></li> <li data-name="collie.Effect.easeOutInSine"><a href="collie.Effect.html#easeOutInSine">easeOutInSine</a></li> <li data-name="collie.Effect.easeOutQuad"><a href="collie.Effect.html#easeOutQuad">easeOutQuad</a></li> <li data-name="collie.Effect.easeOutQuart"><a href="collie.Effect.html#easeOutQuart">easeOutQuart</a></li> <li data-name="collie.Effect.easeOutQuint"><a href="collie.Effect.html#easeOutQuint">easeOutQuint</a></li> <li data-name="collie.Effect.easeOutSine"><a href="collie.Effect.html#easeOutSine">easeOutSine</a></li> <li data-name="collie.Effect.elastic"><a href="collie.Effect.html#elastic">elastic</a></li> <li data-name="collie.Effect.linear"><a href="collie.Effect.html#linear">linear</a></li> <li data-name="collie.Effect.mirror"><a href="collie.Effect.html#mirror">mirror</a></li> <li data-name="collie.Effect.overphase"><a href="collie.Effect.html#overphase">overphase</a></li> <li data-name="collie.Effect.sinusoidal"><a href="collie.Effect.html#sinusoidal">sinusoidal</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Effect.cubicBezier"><a href="collie.Effect.html#cubicBezier">cubicBezier</a></li> <li data-name="collie.Effect.pulse"><a href="collie.Effect.html#pulse">pulse</a></li> <li data-name="collie.Effect.wave"><a href="collie.Effect.html#wave">wave</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.ImageManager"> <span class="title"> <a href="collie.ImageManager.html">collie.ImageManager</a> <span class="static">static</span> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.ImageManager.load"><a href="collie.ImageManager.html#load">load</a></li> <li data-name="collie.ImageManager.mark"><a href="collie.ImageManager.html#mark">mark</a></li> <li data-name="collie.ImageManager.RETRY_COUNT"><a href="collie.ImageManager.html#RETRY_COUNT">RETRY_COUNT</a></li> <li data-name="collie.ImageManager.RETRY_DELAY"><a href="collie.ImageManager.html#RETRY_DELAY">RETRY_DELAY</a></li> <li data-name="collie.ImageManager.USE_PRERENDERING_DOM"><a href="collie.ImageManager.html#USE_PRERENDERING_DOM">USE_PRERENDERING_DOM</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.ImageManager.abort"><a href="collie.ImageManager.html#abort">abort</a></li> <li data-name="collie.ImageManager.add"><a href="collie.ImageManager.html#add">add</a></li> <li data-name="collie.ImageManager.addImage"><a href="collie.ImageManager.html#addImage">addImage</a></li> <li data-name="collie.ImageManager.addImages"><a href="collie.ImageManager.html#addImages">addImages</a></li> <li data-name="collie.ImageManager.addSprite"><a href="collie.ImageManager.html#addSprite">addSprite</a></li> <li data-name="collie.ImageManager.getImage"><a href="collie.ImageManager.html#getImage">getImage</a></li> <li data-name="collie.ImageManager.remove"><a href="collie.ImageManager.html#remove">remove</a></li> <li data-name="collie.ImageManager.removeImage"><a href="collie.ImageManager.html#removeImage">removeImage</a></li> <li data-name="collie.ImageManager.removeSprite"><a href="collie.ImageManager.html#removeSprite">removeSprite</a></li> <li data-name="collie.ImageManager.reset"><a href="collie.ImageManager.html#reset">reset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.ImageManager#event:complete"><a href="collie.ImageManager.html#event:complete">complete</a></li> <li data-name="collie.ImageManager#event:error"><a href="collie.ImageManager.html#event:error">error</a></li> <li data-name="collie.ImageManager#event:process"><a href="collie.ImageManager.html#event:process">process</a></li> <li data-name="collie.ImageManager#event:retry"><a href="collie.ImageManager.html#event:retry">retry</a></li> </ul> </li> <li class="item" data-name="collie.Matrix"> <span class="title"> <a href="collie.Matrix.html">collie.Matrix</a> <span class="static">static</span> </span> <ul class="members itemMembers"> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Matrix.multiple"><a href="collie.Matrix.html#multiple">multiple</a></li> <li data-name="collie.Matrix.rotate"><a href="collie.Matrix.html#rotate">rotate</a></li> <li data-name="collie.Matrix.scale"><a href="collie.Matrix.html#scale">scale</a></li> <li data-name="collie.Matrix.transform"><a href="collie.Matrix.html#transform">transform</a></li> <li data-name="collie.Matrix.translate"><a href="collie.Matrix.html#translate">translate</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.Profiling"> <span class="title"> <a href="collie.Profiling.html">collie.Profiling</a> <span class="static">static</span> </span> <ul class="members itemMembers"> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Profiling.getResults"><a href="collie.Profiling.html#getResults">getResults</a></li> <li data-name="collie.Profiling.load"><a href="collie.Profiling.html#load">load</a></li> <li data-name="collie.Profiling.setConsole"><a href="collie.Profiling.html#setConsole">setConsole</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.Renderer"> <span class="title"> <a href="collie.Renderer.html">collie.Renderer</a> <span class="static">static</span> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.Renderer.DEBUG_MAX_DELAY"><a href="collie.Renderer.html#DEBUG_MAX_DELAY">DEBUG_MAX_DELAY</a></li> <li data-name="collie.Renderer.DEBUG_RENDERING_MODE"><a href="collie.Renderer.html#DEBUG_RENDERING_MODE">DEBUG_RENDERING_MODE</a></li> <li data-name="collie.Renderer.DEBUG_USE_DELAY"><a href="collie.Renderer.html#DEBUG_USE_DELAY">DEBUG_USE_DELAY</a></li> <li data-name="collie.Renderer.DEFAULT_FPS"><a href="collie.Renderer.html#DEFAULT_FPS">DEFAULT_FPS</a></li> <li data-name="collie.Renderer.DELAY_LIMIT"><a href="collie.Renderer.html#DELAY_LIMIT">DELAY_LIMIT</a></li> <li data-name="collie.Renderer.RETINA_DISPLAY"><a href="collie.Renderer.html#RETINA_DISPLAY">RETINA_DISPLAY</a></li> <li data-name="collie.Renderer.USE_AUTO_PAUSE"><a href="collie.Renderer.html#USE_AUTO_PAUSE">USE_AUTO_PAUSE</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Renderer.addLayer"><a href="collie.Renderer.html#addLayer">addLayer</a></li> <li data-name="collie.Renderer.draw"><a href="collie.Renderer.html#draw">draw</a></li> <li data-name="collie.Renderer.getDuration"><a href="collie.Renderer.html#getDuration">getDuration</a></li> <li data-name="collie.Renderer.getElement"><a href="collie.Renderer.html#getElement">getElement</a></li> <li data-name="collie.Renderer.getInfo"><a href="collie.Renderer.html#getInfo">getInfo</a></li> <li data-name="collie.Renderer.getLayers"><a href="collie.Renderer.html#getLayers">getLayers</a></li> <li data-name="collie.Renderer.getRenderingMode"><a href="collie.Renderer.html#getRenderingMode">getRenderingMode</a></li> <li data-name="collie.Renderer.isPlaying"><a href="collie.Renderer.html#isPlaying">isPlaying</a></li> <li data-name="collie.Renderer.isPreventDefault"><a href="collie.Renderer.html#isPreventDefault">isPreventDefault</a></li> <li data-name="collie.Renderer.isRetinaDisplay"><a href="collie.Renderer.html#isRetinaDisplay">isRetinaDisplay</a></li> <li data-name="collie.Renderer.load"><a href="collie.Renderer.html#load">load</a></li> <li data-name="collie.Renderer.pause"><a href="collie.Renderer.html#pause">pause</a></li> <li data-name="collie.Renderer.refresh"><a href="collie.Renderer.html#refresh">refresh</a></li> <li data-name="collie.Renderer.removeAllLayer"><a href="collie.Renderer.html#removeAllLayer">removeAllLayer</a></li> <li data-name="collie.Renderer.removeLayer"><a href="collie.Renderer.html#removeLayer">removeLayer</a></li> <li data-name="collie.Renderer.resize"><a href="collie.Renderer.html#resize">resize</a></li> <li data-name="collie.Renderer.resume"><a href="collie.Renderer.html#resume">resume</a></li> <li data-name="collie.Renderer.setPreventDefault"><a href="collie.Renderer.html#setPreventDefault">setPreventDefault</a></li> <li data-name="collie.Renderer.setRenderingMode"><a href="collie.Renderer.html#setRenderingMode">setRenderingMode</a></li> <li data-name="collie.Renderer.setRetinaDisplay"><a href="collie.Renderer.html#setRetinaDisplay">setRetinaDisplay</a></li> <li data-name="collie.Renderer.start"><a href="collie.Renderer.html#start">start</a></li> <li data-name="collie.Renderer.stop"><a href="collie.Renderer.html#stop">stop</a></li> <li data-name="collie.Renderer.unload"><a href="collie.Renderer.html#unload">unload</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.Renderer#event:pause"><a href="collie.Renderer.html#event:pause">pause</a></li> <li data-name="collie.Renderer#event:process"><a href="collie.Renderer.html#event:process">process</a></li> <li data-name="collie.Renderer#event:resume"><a href="collie.Renderer.html#event:resume">resume</a></li> <li data-name="collie.Renderer#event:start"><a href="collie.Renderer.html#event:start">start</a></li> <li data-name="collie.Renderer#event:stop"><a href="collie.Renderer.html#event:stop">stop</a></li> </ul> </li> <li class="item" data-name="collie.Timer"> <span class="title"> <a href="collie.Timer.html">collie.Timer</a> <span class="static">static</span> </span> <ul class="members itemMembers"> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Timer.cycle"><a href="collie.Timer.html#cycle">cycle</a></li> <li data-name="collie.Timer.delay"><a href="collie.Timer.html#delay">delay</a></li> <li data-name="collie.Timer.queue"><a href="collie.Timer.html#queue">queue</a></li> <li data-name="collie.Timer.removeAll"><a href="collie.Timer.html#removeAll">removeAll</a></li> <li data-name="collie.Timer.repeat"><a href="collie.Timer.html#repeat">repeat</a></li> <li data-name="collie.Timer.run"><a href="collie.Timer.html#run">run</a></li> <li data-name="collie.Timer.stopAll"><a href="collie.Timer.html#stopAll">stopAll</a></li> <li data-name="collie.Timer.timeline"><a href="collie.Timer.html#timeline">timeline</a></li> <li data-name="collie.Timer.transition"><a href="collie.Timer.html#transition">transition</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.Transform"> <span class="title"> <a href="collie.Transform.html">collie.Transform</a> <span class="static">static</span> </span> <ul class="members itemMembers"> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Transform.getBoundary"><a href="collie.Transform.html#getBoundary">getBoundary</a></li> <li data-name="collie.Transform.getMatrix"><a href="collie.Transform.html#getMatrix">getMatrix</a></li> <li data-name="collie.Transform.getMatrixRecusively"><a href="collie.Transform.html#getMatrixRecusively">getMatrixRecusively</a></li> <li data-name="collie.Transform.isUseTransform"><a href="collie.Transform.html#isUseTransform">isUseTransform</a></li> <li data-name="collie.Transform.points"><a href="collie.Transform.html#points">points</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.util"> <span class="title"> <a href="collie.util.html">collie.util</a> <span class="static">static</span> </span> <ul class="members itemMembers"> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.util.addEventListener"><a href="collie.util.html#addEventListener">addEventListener</a></li> <li data-name="collie.util.approximateValue"><a href="collie.util.html#approximateValue">approximateValue</a></li> <li data-name="collie.util.cloneObject"><a href="collie.util.html#cloneObject">cloneObject</a></li> <li data-name="collie.util.fixAngle"><a href="collie.util.html#fixAngle">fixAngle</a></li> <li data-name="collie.util.getBoundary"><a href="collie.util.html#getBoundary">getBoundary</a></li> <li data-name="collie.util.getBoundaryToPoints"><a href="collie.util.html#getBoundaryToPoints">getBoundaryToPoints</a></li> <li data-name="collie.util.getCSSPrefix"><a href="collie.util.html#getCSSPrefix">getCSSPrefix</a></li> <li data-name="collie.util.getDeviceInfo"><a href="collie.util.html#getDeviceInfo">getDeviceInfo</a></li> <li data-name="collie.util.getDisplayObjectById"><a href="collie.util.html#getDisplayObjectById">getDisplayObjectById</a></li> <li data-name="collie.util.getDisplayObjectByName"><a href="collie.util.html#getDisplayObjectByName">getDisplayObjectByName</a></li> <li data-name="collie.util.getDistance"><a href="collie.util.html#getDistance">getDistance</a></li> <li data-name="collie.util.getPosition"><a href="collie.util.html#getPosition">getPosition</a></li> <li data-name="collie.util.getSupportCSS3"><a href="collie.util.html#getSupportCSS3">getSupportCSS3</a></li> <li data-name="collie.util.getSupportCSS3d"><a href="collie.util.html#getSupportCSS3d">getSupportCSS3d</a></li> <li data-name="collie.util.queryString"><a href="collie.util.html#queryString">queryString</a></li> <li data-name="collie.util.removeEventListener"><a href="collie.util.html#removeEventListener">removeEventListener</a></li> <li data-name="collie.util.stopEventDefault"><a href="collie.util.html#stopEventDefault">stopEventDefault</a></li> <li data-name="collie.util.toDeg"><a href="collie.util.html#toDeg">toDeg</a></li> <li data-name="collie.util.toRad"><a href="collie.util.html#toRad">toRad</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.Animation"> <span class="title"> <a href="collie.Animation.html">collie.Animation</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.Animation#remove"><a href="collie.Animation.html#remove">remove</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Animation#attach"><a href="collie.Animation.html#attach">attach</a></li> <li data-name="collie.Animation#complete"><a href="collie.Animation.html#complete">complete</a></li> <li data-name="collie.Animation#detach"><a href="collie.Animation.html#detach">detach</a></li> <li data-name="collie.Animation#detachAll"><a href="collie.Animation.html#detachAll">detachAll</a></li> <li data-name="collie.Animation#fireEvent"><a href="collie.Animation.html#fireEvent">fireEvent</a></li> <li data-name="collie.Animation#get"><a href="collie.Animation.html#get">get</a></li> <li data-name="collie.Animation#getDuration"><a href="collie.Animation.html#getDuration">getDuration</a></li> <li data-name="collie.Animation#isPlaying"><a href="collie.Animation.html#isPlaying">isPlaying</a></li> <li data-name="collie.Animation#option"><a href="collie.Animation.html#option">option</a></li> <li data-name="collie.Animation#optionSetter"><a href="collie.Animation.html#optionSetter">optionSetter</a></li> <li data-name="collie.Animation#pause"><a href="collie.Animation.html#pause">pause</a></li> <li data-name="collie.Animation#reset"><a href="collie.Animation.html#reset">reset</a></li> <li data-name="collie.Animation#run"><a href="collie.Animation.html#run">run</a></li> <li data-name="collie.Animation#set"><a href="collie.Animation.html#set">set</a></li> <li data-name="collie.Animation#setDuration"><a href="collie.Animation.html#setDuration">setDuration</a></li> <li data-name="collie.Animation#start"><a href="collie.Animation.html#start">start</a></li> <li data-name="collie.Animation#stop"><a href="collie.Animation.html#stop">stop</a></li> <li data-name="collie.Animation#unset"><a href="collie.Animation.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.Animation#event:complete"><a href="collie.Animation.html#event:complete">complete</a></li> <li data-name="collie.Animation#event:pause"><a href="collie.Animation.html#event:pause">pause</a></li> <li data-name="collie.Animation#event:start"><a href="collie.Animation.html#event:start">start</a></li> <li data-name="collie.Animation#event:stop"><a href="collie.Animation.html#event:stop">stop</a></li> </ul> </li> <li class="item" data-name="collie.AnimationCycle"> <span class="title"> <a href="collie.AnimationCycle.html">collie.AnimationCycle</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.AnimationCycle#remove"><a href="collie.AnimationCycle.html#remove">remove</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.AnimationCycle#attach"><a href="collie.AnimationCycle.html#attach">attach</a></li> <li data-name="collie.AnimationCycle#complete"><a href="collie.AnimationCycle.html#complete">complete</a></li> <li data-name="collie.AnimationCycle#detach"><a href="collie.AnimationCycle.html#detach">detach</a></li> <li data-name="collie.AnimationCycle#detachAll"><a href="collie.AnimationCycle.html#detachAll">detachAll</a></li> <li data-name="collie.AnimationCycle#fireEvent"><a href="collie.AnimationCycle.html#fireEvent">fireEvent</a></li> <li data-name="collie.AnimationCycle#get"><a href="collie.AnimationCycle.html#get">get</a></li> <li data-name="collie.AnimationCycle#getDuration"><a href="collie.AnimationCycle.html#getDuration">getDuration</a></li> <li data-name="collie.AnimationCycle#getValue"><a href="collie.AnimationCycle.html#getValue">getValue</a></li> <li data-name="collie.AnimationCycle#isPlaying"><a href="collie.AnimationCycle.html#isPlaying">isPlaying</a></li> <li data-name="collie.AnimationCycle#option"><a href="collie.AnimationCycle.html#option">option</a></li> <li data-name="collie.AnimationCycle#optionSetter"><a href="collie.AnimationCycle.html#optionSetter">optionSetter</a></li> <li data-name="collie.AnimationCycle#pause"><a href="collie.AnimationCycle.html#pause">pause</a></li> <li data-name="collie.AnimationCycle#reset"><a href="collie.AnimationCycle.html#reset">reset</a></li> <li data-name="collie.AnimationCycle#run"><a href="collie.AnimationCycle.html#run">run</a></li> <li data-name="collie.AnimationCycle#set"><a href="collie.AnimationCycle.html#set">set</a></li> <li data-name="collie.AnimationCycle#setValue"><a href="collie.AnimationCycle.html#setValue">setValue</a></li> <li data-name="collie.AnimationCycle#start"><a href="collie.AnimationCycle.html#start">start</a></li> <li data-name="collie.AnimationCycle#stop"><a href="collie.AnimationCycle.html#stop">stop</a></li> <li data-name="collie.AnimationCycle#unset"><a href="collie.AnimationCycle.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.AnimationCycle#event:complete"><a href="collie.AnimationCycle.html#event:complete">complete</a></li> <li data-name="collie.AnimationCycle#event:end"><a href="collie.AnimationCycle.html#event:end">end</a></li> <li data-name="collie.AnimationCycle#event:pause"><a href="collie.AnimationCycle.html#event:pause">pause</a></li> <li data-name="collie.AnimationCycle#event:start"><a href="collie.AnimationCycle.html#event:start">start</a></li> <li data-name="collie.AnimationCycle#event:stop"><a href="collie.AnimationCycle.html#event:stop">stop</a></li> </ul> </li> <li class="item" data-name="collie.AnimationDelay"> <span class="title"> <a href="collie.AnimationDelay.html">collie.AnimationDelay</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.AnimationDelay#remove"><a href="collie.AnimationDelay.html#remove">remove</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.AnimationDelay#attach"><a href="collie.AnimationDelay.html#attach">attach</a></li> <li data-name="collie.AnimationDelay#complete"><a href="collie.AnimationDelay.html#complete">complete</a></li> <li data-name="collie.AnimationDelay#detach"><a href="collie.AnimationDelay.html#detach">detach</a></li> <li data-name="collie.AnimationDelay#detachAll"><a href="collie.AnimationDelay.html#detachAll">detachAll</a></li> <li data-name="collie.AnimationDelay#fireEvent"><a href="collie.AnimationDelay.html#fireEvent">fireEvent</a></li> <li data-name="collie.AnimationDelay#get"><a href="collie.AnimationDelay.html#get">get</a></li> <li data-name="collie.AnimationDelay#getDuration"><a href="collie.AnimationDelay.html#getDuration">getDuration</a></li> <li data-name="collie.AnimationDelay#isPlaying"><a href="collie.AnimationDelay.html#isPlaying">isPlaying</a></li> <li data-name="collie.AnimationDelay#option"><a href="collie.AnimationDelay.html#option">option</a></li> <li data-name="collie.AnimationDelay#optionSetter"><a href="collie.AnimationDelay.html#optionSetter">optionSetter</a></li> <li data-name="collie.AnimationDelay#pause"><a href="collie.AnimationDelay.html#pause">pause</a></li> <li data-name="collie.AnimationDelay#reset"><a href="collie.AnimationDelay.html#reset">reset</a></li> <li data-name="collie.AnimationDelay#run"><a href="collie.AnimationDelay.html#run">run</a></li> <li data-name="collie.AnimationDelay#set"><a href="collie.AnimationDelay.html#set">set</a></li> <li data-name="collie.AnimationDelay#setDuration"><a href="collie.AnimationDelay.html#setDuration">setDuration</a></li> <li data-name="collie.AnimationDelay#start"><a href="collie.AnimationDelay.html#start">start</a></li> <li data-name="collie.AnimationDelay#stop"><a href="collie.AnimationDelay.html#stop">stop</a></li> <li data-name="collie.AnimationDelay#unset"><a href="collie.AnimationDelay.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.AnimationDelay#event:complete"><a href="collie.AnimationDelay.html#event:complete">complete</a></li> <li data-name="collie.AnimationDelay#event:pause"><a href="collie.AnimationDelay.html#event:pause">pause</a></li> <li data-name="collie.AnimationDelay#event:start"><a href="collie.AnimationDelay.html#event:start">start</a></li> <li data-name="collie.AnimationDelay#event:stop"><a href="collie.AnimationDelay.html#event:stop">stop</a></li> </ul> </li> <li class="item" data-name="collie.AnimationQueue"> <span class="title"> <a href="collie.AnimationQueue.html">collie.AnimationQueue</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.AnimationQueue#remove"><a href="collie.AnimationQueue.html#remove">remove</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.AnimationQueue#attach"><a href="collie.AnimationQueue.html#attach">attach</a></li> <li data-name="collie.AnimationQueue#complete"><a href="collie.AnimationQueue.html#complete">complete</a></li> <li data-name="collie.AnimationQueue#cycle"><a href="collie.AnimationQueue.html#cycle">cycle</a></li> <li data-name="collie.AnimationQueue#delay"><a href="collie.AnimationQueue.html#delay">delay</a></li> <li data-name="collie.AnimationQueue#detach"><a href="collie.AnimationQueue.html#detach">detach</a></li> <li data-name="collie.AnimationQueue#detachAll"><a href="collie.AnimationQueue.html#detachAll">detachAll</a></li> <li data-name="collie.AnimationQueue#fireEvent"><a href="collie.AnimationQueue.html#fireEvent">fireEvent</a></li> <li data-name="collie.AnimationQueue#get"><a href="collie.AnimationQueue.html#get">get</a></li> <li data-name="collie.AnimationQueue#getAnimation"><a href="collie.AnimationQueue.html#getAnimation">getAnimation</a></li> <li data-name="collie.AnimationQueue#getDuration"><a href="collie.AnimationQueue.html#getDuration">getDuration</a></li> <li data-name="collie.AnimationQueue#isPlaying"><a href="collie.AnimationQueue.html#isPlaying">isPlaying</a></li> <li data-name="collie.AnimationQueue#next"><a href="collie.AnimationQueue.html#next">next</a></li> <li data-name="collie.AnimationQueue#option"><a href="collie.AnimationQueue.html#option">option</a></li> <li data-name="collie.AnimationQueue#optionSetter"><a href="collie.AnimationQueue.html#optionSetter">optionSetter</a></li> <li data-name="collie.AnimationQueue#pause"><a href="collie.AnimationQueue.html#pause">pause</a></li> <li data-name="collie.AnimationQueue#removeAfter"><a href="collie.AnimationQueue.html#removeAfter">removeAfter</a></li> <li data-name="collie.AnimationQueue#removeAll"><a href="collie.AnimationQueue.html#removeAll">removeAll</a></li> <li data-name="collie.AnimationQueue#repeat"><a href="collie.AnimationQueue.html#repeat">repeat</a></li> <li data-name="collie.AnimationQueue#reset"><a href="collie.AnimationQueue.html#reset">reset</a></li> <li data-name="collie.AnimationQueue#run"><a href="collie.AnimationQueue.html#run">run</a></li> <li data-name="collie.AnimationQueue#set"><a href="collie.AnimationQueue.html#set">set</a></li> <li data-name="collie.AnimationQueue#setDuration"><a href="collie.AnimationQueue.html#setDuration">setDuration</a></li> <li data-name="collie.AnimationQueue#start"><a href="collie.AnimationQueue.html#start">start</a></li> <li data-name="collie.AnimationQueue#stop"><a href="collie.AnimationQueue.html#stop">stop</a></li> <li data-name="collie.AnimationQueue#transition"><a href="collie.AnimationQueue.html#transition">transition</a></li> <li data-name="collie.AnimationQueue#unset"><a href="collie.AnimationQueue.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.AnimationQueue#event:complete"><a href="collie.AnimationQueue.html#event:complete">complete</a></li> <li data-name="collie.AnimationQueue#event:end"><a href="collie.AnimationQueue.html#event:end">end</a></li> <li data-name="collie.AnimationQueue#event:pause"><a href="collie.AnimationQueue.html#event:pause">pause</a></li> <li data-name="collie.AnimationQueue#event:start"><a href="collie.AnimationQueue.html#event:start">start</a></li> <li data-name="collie.AnimationQueue#event:stop"><a href="collie.AnimationQueue.html#event:stop">stop</a></li> </ul> </li> <li class="item" data-name="collie.AnimationRepeat"> <span class="title"> <a href="collie.AnimationRepeat.html">collie.AnimationRepeat</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.AnimationRepeat#remove"><a href="collie.AnimationRepeat.html#remove">remove</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.AnimationRepeat#attach"><a href="collie.AnimationRepeat.html#attach">attach</a></li> <li data-name="collie.AnimationRepeat#complete"><a href="collie.AnimationRepeat.html#complete">complete</a></li> <li data-name="collie.AnimationRepeat#detach"><a href="collie.AnimationRepeat.html#detach">detach</a></li> <li data-name="collie.AnimationRepeat#detachAll"><a href="collie.AnimationRepeat.html#detachAll">detachAll</a></li> <li data-name="collie.AnimationRepeat#fireEvent"><a href="collie.AnimationRepeat.html#fireEvent">fireEvent</a></li> <li data-name="collie.AnimationRepeat#get"><a href="collie.AnimationRepeat.html#get">get</a></li> <li data-name="collie.AnimationRepeat#getDuration"><a href="collie.AnimationRepeat.html#getDuration">getDuration</a></li> <li data-name="collie.AnimationRepeat#isPlaying"><a href="collie.AnimationRepeat.html#isPlaying">isPlaying</a></li> <li data-name="collie.AnimationRepeat#option"><a href="collie.AnimationRepeat.html#option">option</a></li> <li data-name="collie.AnimationRepeat#optionSetter"><a href="collie.AnimationRepeat.html#optionSetter">optionSetter</a></li> <li data-name="collie.AnimationRepeat#pause"><a href="collie.AnimationRepeat.html#pause">pause</a></li> <li data-name="collie.AnimationRepeat#reset"><a href="collie.AnimationRepeat.html#reset">reset</a></li> <li data-name="collie.AnimationRepeat#run"><a href="collie.AnimationRepeat.html#run">run</a></li> <li data-name="collie.AnimationRepeat#set"><a href="collie.AnimationRepeat.html#set">set</a></li> <li data-name="collie.AnimationRepeat#setDuration"><a href="collie.AnimationRepeat.html#setDuration">setDuration</a></li> <li data-name="collie.AnimationRepeat#start"><a href="collie.AnimationRepeat.html#start">start</a></li> <li data-name="collie.AnimationRepeat#stop"><a href="collie.AnimationRepeat.html#stop">stop</a></li> <li data-name="collie.AnimationRepeat#unset"><a href="collie.AnimationRepeat.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.AnimationRepeat#event:complete"><a href="collie.AnimationRepeat.html#event:complete">complete</a></li> <li data-name="collie.AnimationRepeat#event:pause"><a href="collie.AnimationRepeat.html#event:pause">pause</a></li> <li data-name="collie.AnimationRepeat#event:start"><a href="collie.AnimationRepeat.html#event:start">start</a></li> <li data-name="collie.AnimationRepeat#event:stop"><a href="collie.AnimationRepeat.html#event:stop">stop</a></li> </ul> </li> <li class="item" data-name="collie.AnimationTimeline"> <span class="title"> <a href="collie.AnimationTimeline.html">collie.AnimationTimeline</a> </span> <ul class="members itemMembers"> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.AnimationTimeline#add"><a href="collie.AnimationTimeline.html#add">add</a></li> <li data-name="collie.AnimationTimeline#attach"><a href="collie.AnimationTimeline.html#attach">attach</a></li> <li data-name="collie.AnimationTimeline#complete"><a href="collie.AnimationTimeline.html#complete">complete</a></li> <li data-name="collie.AnimationTimeline#detach"><a href="collie.AnimationTimeline.html#detach">detach</a></li> <li data-name="collie.AnimationTimeline#detachAll"><a href="collie.AnimationTimeline.html#detachAll">detachAll</a></li> <li data-name="collie.AnimationTimeline#fireEvent"><a href="collie.AnimationTimeline.html#fireEvent">fireEvent</a></li> <li data-name="collie.AnimationTimeline#get"><a href="collie.AnimationTimeline.html#get">get</a></li> <li data-name="collie.AnimationTimeline#getAnimation"><a href="collie.AnimationTimeline.html#getAnimation">getAnimation</a></li> <li data-name="collie.AnimationTimeline#getCycle"><a href="collie.AnimationTimeline.html#getCycle">getCycle</a></li> <li data-name="collie.AnimationTimeline#getDuration"><a href="collie.AnimationTimeline.html#getDuration">getDuration</a></li> <li data-name="collie.AnimationTimeline#getRunningTime"><a href="collie.AnimationTimeline.html#getRunningTime">getRunningTime</a></li> <li data-name="collie.AnimationTimeline#isPlaying"><a href="collie.AnimationTimeline.html#isPlaying">isPlaying</a></li> <li data-name="collie.AnimationTimeline#option"><a href="collie.AnimationTimeline.html#option">option</a></li> <li data-name="collie.AnimationTimeline#optionSetter"><a href="collie.AnimationTimeline.html#optionSetter">optionSetter</a></li> <li data-name="collie.AnimationTimeline#pause"><a href="collie.AnimationTimeline.html#pause">pause</a></li> <li data-name="collie.AnimationTimeline#remove"><a href="collie.AnimationTimeline.html#remove">remove</a></li> <li data-name="collie.AnimationTimeline#reset"><a href="collie.AnimationTimeline.html#reset">reset</a></li> <li data-name="collie.AnimationTimeline#run"><a href="collie.AnimationTimeline.html#run">run</a></li> <li data-name="collie.AnimationTimeline#set"><a href="collie.AnimationTimeline.html#set">set</a></li> <li data-name="collie.AnimationTimeline#setDuration"><a href="collie.AnimationTimeline.html#setDuration">setDuration</a></li> <li data-name="collie.AnimationTimeline#start"><a href="collie.AnimationTimeline.html#start">start</a></li> <li data-name="collie.AnimationTimeline#stop"><a href="collie.AnimationTimeline.html#stop">stop</a></li> <li data-name="collie.AnimationTimeline#unset"><a href="collie.AnimationTimeline.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.AnimationTimeline#event:complete"><a href="collie.AnimationTimeline.html#event:complete">complete</a></li> <li data-name="collie.AnimationTimeline#event:end"><a href="collie.AnimationTimeline.html#event:end">end</a></li> <li data-name="collie.AnimationTimeline#event:pause"><a href="collie.AnimationTimeline.html#event:pause">pause</a></li> <li data-name="collie.AnimationTimeline#event:start"><a href="collie.AnimationTimeline.html#event:start">start</a></li> <li data-name="collie.AnimationTimeline#event:stop"><a href="collie.AnimationTimeline.html#event:stop">stop</a></li> </ul> </li> <li class="item" data-name="collie.AnimationTransition"> <span class="title"> <a href="collie.AnimationTransition.html">collie.AnimationTransition</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.AnimationTransition#remove"><a href="collie.AnimationTransition.html#remove">remove</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.AnimationTransition#attach"><a href="collie.AnimationTransition.html#attach">attach</a></li> <li data-name="collie.AnimationTransition#complete"><a href="collie.AnimationTransition.html#complete">complete</a></li> <li data-name="collie.AnimationTransition#detach"><a href="collie.AnimationTransition.html#detach">detach</a></li> <li data-name="collie.AnimationTransition#detachAll"><a href="collie.AnimationTransition.html#detachAll">detachAll</a></li> <li data-name="collie.AnimationTransition#fireEvent"><a href="collie.AnimationTransition.html#fireEvent">fireEvent</a></li> <li data-name="collie.AnimationTransition#get"><a href="collie.AnimationTransition.html#get">get</a></li> <li data-name="collie.AnimationTransition#getDuration"><a href="collie.AnimationTransition.html#getDuration">getDuration</a></li> <li data-name="collie.AnimationTransition#getValue"><a href="collie.AnimationTransition.html#getValue">getValue</a></li> <li data-name="collie.AnimationTransition#isPlaying"><a href="collie.AnimationTransition.html#isPlaying">isPlaying</a></li> <li data-name="collie.AnimationTransition#option"><a href="collie.AnimationTransition.html#option">option</a></li> <li data-name="collie.AnimationTransition#optionSetter"><a href="collie.AnimationTransition.html#optionSetter">optionSetter</a></li> <li data-name="collie.AnimationTransition#pause"><a href="collie.AnimationTransition.html#pause">pause</a></li> <li data-name="collie.AnimationTransition#reset"><a href="collie.AnimationTransition.html#reset">reset</a></li> <li data-name="collie.AnimationTransition#run"><a href="collie.AnimationTransition.html#run">run</a></li> <li data-name="collie.AnimationTransition#set"><a href="collie.AnimationTransition.html#set">set</a></li> <li data-name="collie.AnimationTransition#setDuration"><a href="collie.AnimationTransition.html#setDuration">setDuration</a></li> <li data-name="collie.AnimationTransition#setValue"><a href="collie.AnimationTransition.html#setValue">setValue</a></li> <li data-name="collie.AnimationTransition#start"><a href="collie.AnimationTransition.html#start">start</a></li> <li data-name="collie.AnimationTransition#stop"><a href="collie.AnimationTransition.html#stop">stop</a></li> <li data-name="collie.AnimationTransition#unset"><a href="collie.AnimationTransition.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.AnimationTransition#event:complete"><a href="collie.AnimationTransition.html#event:complete">complete</a></li> <li data-name="collie.AnimationTransition#event:end"><a href="collie.AnimationTransition.html#event:end">end</a></li> <li data-name="collie.AnimationTransition#event:pause"><a href="collie.AnimationTransition.html#event:pause">pause</a></li> <li data-name="collie.AnimationTransition#event:start"><a href="collie.AnimationTransition.html#event:start">start</a></li> <li data-name="collie.AnimationTransition#event:stop"><a href="collie.AnimationTransition.html#event:stop">stop</a></li> </ul> </li> <li class="item" data-name="collie.Box2d"> <span class="title"> <a href="collie.Box2d.html">collie.Box2d</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.Box2d.BODY_TYPE"><a href="collie.Box2d.html#BODY_TYPE">BODY_TYPE</a></li> <li data-name="collie.Box2d.SCALE"><a href="collie.Box2d.html#SCALE">SCALE</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Box2d.hasUserData"><a href="collie.Box2d.html#hasUserData">hasUserData</a></li> <li data-name="collie.Box2d.vec2"><a href="collie.Box2d.html#vec2">vec2</a></li> <li data-name="collie.Box2d#_update"><a href="collie.Box2d.html#_update">_update</a></li> <li data-name="collie.Box2d#addFixture"><a href="collie.Box2d.html#addFixture">addFixture</a></li> <li data-name="collie.Box2d#createBody"><a href="collie.Box2d.html#createBody">createBody</a></li> <li data-name="collie.Box2d#createContact"><a href="collie.Box2d.html#createContact">createContact</a></li> <li data-name="collie.Box2d#createDistanceJoint"><a href="collie.Box2d.html#createDistanceJoint">createDistanceJoint</a></li> <li data-name="collie.Box2d#createFixture"><a href="collie.Box2d.html#createFixture">createFixture</a></li> <li data-name="collie.Box2d#createFrictionJoint"><a href="collie.Box2d.html#createFrictionJoint">createFrictionJoint</a></li> <li data-name="collie.Box2d#createGearJoint"><a href="collie.Box2d.html#createGearJoint">createGearJoint</a></li> <li data-name="collie.Box2d#createLineJoint"><a href="collie.Box2d.html#createLineJoint">createLineJoint</a></li> <li data-name="collie.Box2d#createMouseJoint"><a href="collie.Box2d.html#createMouseJoint">createMouseJoint</a></li> <li data-name="collie.Box2d#createObject"><a href="collie.Box2d.html#createObject">createObject</a></li> <li data-name="collie.Box2d#createPrismaticJoint"><a href="collie.Box2d.html#createPrismaticJoint">createPrismaticJoint</a></li> <li data-name="collie.Box2d#createPulleyJoint"><a href="collie.Box2d.html#createPulleyJoint">createPulleyJoint</a></li> <li data-name="collie.Box2d#createRevoluteJoint"><a href="collie.Box2d.html#createRevoluteJoint">createRevoluteJoint</a></li> <li data-name="collie.Box2d#createStaticObject"><a href="collie.Box2d.html#createStaticObject">createStaticObject</a></li> <li data-name="collie.Box2d#createWall"><a href="collie.Box2d.html#createWall">createWall</a></li> <li data-name="collie.Box2d#createWeldJoint"><a href="collie.Box2d.html#createWeldJoint">createWeldJoint</a></li> <li data-name="collie.Box2d#createWorld"><a href="collie.Box2d.html#createWorld">createWorld</a></li> <li data-name="collie.Box2d#getBody"><a href="collie.Box2d.html#getBody">getBody</a></li> <li data-name="collie.Box2d#getDisplayObjectByBody"><a href="collie.Box2d.html#getDisplayObjectByBody">getDisplayObjectByBody</a></li> <li data-name="collie.Box2d#getFixture"><a href="collie.Box2d.html#getFixture">getFixture</a></li> <li data-name="collie.Box2d#getWorld"><a href="collie.Box2d.html#getWorld">getWorld</a></li> <li data-name="collie.Box2d#load"><a href="collie.Box2d.html#load">load</a></li> <li data-name="collie.Box2d#removeFixture"><a href="collie.Box2d.html#removeFixture">removeFixture</a></li> <li data-name="collie.Box2d#removeJoint"><a href="collie.Box2d.html#removeJoint">removeJoint</a></li> <li data-name="collie.Box2d#removeObject"><a href="collie.Box2d.html#removeObject">removeObject</a></li> <li data-name="collie.Box2d#resize"><a href="collie.Box2d.html#resize">resize</a></li> <li data-name="collie.Box2d#unload"><a href="collie.Box2d.html#unload">unload</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.Circle"> <span class="title"> <a href="collie.Circle.html">collie.Circle</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.Circle#type"><a href="collie.Circle.html#type">type</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Circle#addChild"><a href="collie.Circle.html#addChild">addChild</a></li> <li data-name="collie.Circle#addMatrix"><a href="collie.Circle.html#addMatrix">addMatrix</a></li> <li data-name="collie.Circle#addTo"><a href="collie.Circle.html#addTo">addTo</a></li> <li data-name="collie.Circle#align"><a href="collie.Circle.html#align">align</a></li> <li data-name="collie.Circle#attach"><a href="collie.Circle.html#attach">attach</a></li> <li data-name="collie.Circle#bottom"><a href="collie.Circle.html#bottom">bottom</a></li> <li data-name="collie.Circle#center"><a href="collie.Circle.html#center">center</a></li> <li data-name="collie.Circle#changeMatrix"><a href="collie.Circle.html#changeMatrix">changeMatrix</a></li> <li data-name="collie.Circle#clone"><a href="collie.Circle.html#clone">clone</a></li> <li data-name="collie.Circle#detach"><a href="collie.Circle.html#detach">detach</a></li> <li data-name="collie.Circle#detachAll"><a href="collie.Circle.html#detachAll">detachAll</a></li> <li data-name="collie.Circle#fireEvent"><a href="collie.Circle.html#fireEvent">fireEvent</a></li> <li data-name="collie.Circle#get"><a href="collie.Circle.html#get">get</a></li> <li data-name="collie.Circle#getBoundary"><a href="collie.Circle.html#getBoundary">getBoundary</a></li> <li data-name="collie.Circle#getChildren"><a href="collie.Circle.html#getChildren">getChildren</a></li> <li data-name="collie.Circle#getDirty"><a href="collie.Circle.html#getDirty">getDirty</a></li> <li data-name="collie.Circle#getDrawing"><a href="collie.Circle.html#getDrawing">getDrawing</a></li> <li data-name="collie.Circle#getHitAreaBoundary"><a href="collie.Circle.html#getHitAreaBoundary">getHitAreaBoundary</a></li> <li data-name="collie.Circle#getId"><a href="collie.Circle.html#getId">getId</a></li> <li data-name="collie.Circle#getImage"><a href="collie.Circle.html#getImage">getImage</a></li> <li data-name="collie.Circle#getImageSize"><a href="collie.Circle.html#getImageSize">getImageSize</a></li> <li data-name="collie.Circle#getLayer"><a href="collie.Circle.html#getLayer">getLayer</a></li> <li data-name="collie.Circle#getParent"><a href="collie.Circle.html#getParent">getParent</a></li> <li data-name="collie.Circle#getRelatedPosition"><a href="collie.Circle.html#getRelatedPosition">getRelatedPosition</a></li> <li data-name="collie.Circle#hasAttachedHandler"><a href="collie.Circle.html#hasAttachedHandler">hasAttachedHandler</a></li> <li data-name="collie.Circle#hasChild"><a href="collie.Circle.html#hasChild">hasChild</a></li> <li data-name="collie.Circle#isChanged"><a href="collie.Circle.html#isChanged">isChanged</a></li> <li data-name="collie.Circle#leave"><a href="collie.Circle.html#leave">leave</a></li> <li data-name="collie.Circle#move"><a href="collie.Circle.html#move">move</a></li> <li data-name="collie.Circle#moveBy"><a href="collie.Circle.html#moveBy">moveBy</a></li> <li data-name="collie.Circle#option"><a href="collie.Circle.html#option">option</a></li> <li data-name="collie.Circle#optionSetter"><a href="collie.Circle.html#optionSetter">optionSetter</a></li> <li data-name="collie.Circle#removeChild"><a href="collie.Circle.html#removeChild">removeChild</a></li> <li data-name="collie.Circle#resizeFixedRatio"><a href="collie.Circle.html#resizeFixedRatio">resizeFixedRatio</a></li> <li data-name="collie.Circle#right"><a href="collie.Circle.html#right">right</a></li> <li data-name="collie.Circle#set"><a href="collie.Circle.html#set">set</a></li> <li data-name="collie.Circle#setDirty"><a href="collie.Circle.html#setDirty">setDirty</a></li> <li data-name="collie.Circle#toString"><a href="collie.Circle.html#toString">toString</a></li> <li data-name="collie.Circle#unset"><a href="collie.Circle.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.Circle#event:click"><a href="collie.Circle.html#event:click">click</a></li> <li data-name="collie.Circle#event:mousedown"><a href="collie.Circle.html#event:mousedown">mousedown</a></li> <li data-name="collie.Circle#event:mouseup"><a href="collie.Circle.html#event:mouseup">mouseup</a></li> </ul> </li> <li class="item" data-name="collie.Component"> <span class="title"> <a href="collie.Component.html">collie.Component</a> </span> <ul class="members itemMembers"> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Component#attach"><a href="collie.Component.html#attach">attach</a></li> <li data-name="collie.Component#detach"><a href="collie.Component.html#detach">detach</a></li> <li data-name="collie.Component#detachAll"><a href="collie.Component.html#detachAll">detachAll</a></li> <li data-name="collie.Component#fireEvent"><a href="collie.Component.html#fireEvent">fireEvent</a></li> <li data-name="collie.Component#get"><a href="collie.Component.html#get">get</a></li> <li data-name="collie.Component#option"><a href="collie.Component.html#option">option</a></li> <li data-name="collie.Component#optionSetter"><a href="collie.Component.html#optionSetter">optionSetter</a></li> <li data-name="collie.Component#set"><a href="collie.Component.html#set">set</a></li> <li data-name="collie.Component#unset"><a href="collie.Component.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.ComponentEvent"> <span class="title"> <a href="collie.ComponentEvent.html">collie.ComponentEvent</a> </span> <ul class="members itemMembers"> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.ComponentEvent#isStop"><a href="collie.ComponentEvent.html#isStop">isStop</a></li> <li data-name="collie.ComponentEvent#stop"><a href="collie.ComponentEvent.html#stop">stop</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.DisplayObject"> <span class="title"> <a href="collie.DisplayObject.html">collie.DisplayObject</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.DisplayObject#onCanvasDraw"><a href="collie.DisplayObject.html#onCanvasDraw">onCanvasDraw</a></li> <li data-name="collie.DisplayObject#onDOMDraw"><a href="collie.DisplayObject.html#onDOMDraw">onDOMDraw</a></li> <li data-name="collie.DisplayObject#type"><a href="collie.DisplayObject.html#type">type</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.DisplayObject#addChild"><a href="collie.DisplayObject.html#addChild">addChild</a></li> <li data-name="collie.DisplayObject#addMatrix"><a href="collie.DisplayObject.html#addMatrix">addMatrix</a></li> <li data-name="collie.DisplayObject#addTo"><a href="collie.DisplayObject.html#addTo">addTo</a></li> <li data-name="collie.DisplayObject#align"><a href="collie.DisplayObject.html#align">align</a></li> <li data-name="collie.DisplayObject#attach"><a href="collie.DisplayObject.html#attach">attach</a></li> <li data-name="collie.DisplayObject#bottom"><a href="collie.DisplayObject.html#bottom">bottom</a></li> <li data-name="collie.DisplayObject#changeMatrix"><a href="collie.DisplayObject.html#changeMatrix">changeMatrix</a></li> <li data-name="collie.DisplayObject#clone"><a href="collie.DisplayObject.html#clone">clone</a></li> <li data-name="collie.DisplayObject#detach"><a href="collie.DisplayObject.html#detach">detach</a></li> <li data-name="collie.DisplayObject#detachAll"><a href="collie.DisplayObject.html#detachAll">detachAll</a></li> <li data-name="collie.DisplayObject#fireEvent"><a href="collie.DisplayObject.html#fireEvent">fireEvent</a></li> <li data-name="collie.DisplayObject#get"><a href="collie.DisplayObject.html#get">get</a></li> <li data-name="collie.DisplayObject#getBoundary"><a href="collie.DisplayObject.html#getBoundary">getBoundary</a></li> <li data-name="collie.DisplayObject#getChildren"><a href="collie.DisplayObject.html#getChildren">getChildren</a></li> <li data-name="collie.DisplayObject#getDirty"><a href="collie.DisplayObject.html#getDirty">getDirty</a></li> <li data-name="collie.DisplayObject#getDrawing"><a href="collie.DisplayObject.html#getDrawing">getDrawing</a></li> <li data-name="collie.DisplayObject#getHitAreaBoundary"><a href="collie.DisplayObject.html#getHitAreaBoundary">getHitAreaBoundary</a></li> <li data-name="collie.DisplayObject#getId"><a href="collie.DisplayObject.html#getId">getId</a></li> <li data-name="collie.DisplayObject#getImage"><a href="collie.DisplayObject.html#getImage">getImage</a></li> <li data-name="collie.DisplayObject#getImageSize"><a href="collie.DisplayObject.html#getImageSize">getImageSize</a></li> <li data-name="collie.DisplayObject#getLayer"><a href="collie.DisplayObject.html#getLayer">getLayer</a></li> <li data-name="collie.DisplayObject#getParent"><a href="collie.DisplayObject.html#getParent">getParent</a></li> <li data-name="collie.DisplayObject#getRelatedPosition"><a href="collie.DisplayObject.html#getRelatedPosition">getRelatedPosition</a></li> <li data-name="collie.DisplayObject#hasAttachedHandler"><a href="collie.DisplayObject.html#hasAttachedHandler">hasAttachedHandler</a></li> <li data-name="collie.DisplayObject#hasChild"><a href="collie.DisplayObject.html#hasChild">hasChild</a></li> <li data-name="collie.DisplayObject#isChanged"><a href="collie.DisplayObject.html#isChanged">isChanged</a></li> <li data-name="collie.DisplayObject#leave"><a href="collie.DisplayObject.html#leave">leave</a></li> <li data-name="collie.DisplayObject#move"><a href="collie.DisplayObject.html#move">move</a></li> <li data-name="collie.DisplayObject#moveBy"><a href="collie.DisplayObject.html#moveBy">moveBy</a></li> <li data-name="collie.DisplayObject#option"><a href="collie.DisplayObject.html#option">option</a></li> <li data-name="collie.DisplayObject#optionSetter"><a href="collie.DisplayObject.html#optionSetter">optionSetter</a></li> <li data-name="collie.DisplayObject#removeChild"><a href="collie.DisplayObject.html#removeChild">removeChild</a></li> <li data-name="collie.DisplayObject#resizeFixedRatio"><a href="collie.DisplayObject.html#resizeFixedRatio">resizeFixedRatio</a></li> <li data-name="collie.DisplayObject#right"><a href="collie.DisplayObject.html#right">right</a></li> <li data-name="collie.DisplayObject#set"><a href="collie.DisplayObject.html#set">set</a></li> <li data-name="collie.DisplayObject#setDirty"><a href="collie.DisplayObject.html#setDirty">setDirty</a></li> <li data-name="collie.DisplayObject#toString"><a href="collie.DisplayObject.html#toString">toString</a></li> <li data-name="collie.DisplayObject#unset"><a href="collie.DisplayObject.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.DisplayObject#event:click"><a href="collie.DisplayObject.html#event:click">click</a></li> <li data-name="collie.DisplayObject#event:mousedown"><a href="collie.DisplayObject.html#event:mousedown">mousedown</a></li> <li data-name="collie.DisplayObject#event:mouseup"><a href="collie.DisplayObject.html#event:mouseup">mouseup</a></li> </ul> </li> <li class="item" data-name="collie.FPSConsole"> <span class="title"> <a href="collie.FPSConsole.html">collie.FPSConsole</a> </span> <ul class="members itemMembers"> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.FPSConsole#add"><a href="collie.FPSConsole.html#add">add</a></li> <li data-name="collie.FPSConsole#attach"><a href="collie.FPSConsole.html#attach">attach</a></li> <li data-name="collie.FPSConsole#change"><a href="collie.FPSConsole.html#change">change</a></li> <li data-name="collie.FPSConsole#detach"><a href="collie.FPSConsole.html#detach">detach</a></li> <li data-name="collie.FPSConsole#detachAll"><a href="collie.FPSConsole.html#detachAll">detachAll</a></li> <li data-name="collie.FPSConsole#fireEvent"><a href="collie.FPSConsole.html#fireEvent">fireEvent</a></li> <li data-name="collie.FPSConsole#get"><a href="collie.FPSConsole.html#get">get</a></li> <li data-name="collie.FPSConsole#getElement"><a href="collie.FPSConsole.html#getElement">getElement</a></li> <li data-name="collie.FPSConsole#load"><a href="collie.FPSConsole.html#load">load</a></li> <li data-name="collie.FPSConsole#option"><a href="collie.FPSConsole.html#option">option</a></li> <li data-name="collie.FPSConsole#optionSetter"><a href="collie.FPSConsole.html#optionSetter">optionSetter</a></li> <li data-name="collie.FPSConsole#set"><a href="collie.FPSConsole.html#set">set</a></li> <li data-name="collie.FPSConsole#unload"><a href="collie.FPSConsole.html#unload">unload</a></li> <li data-name="collie.FPSConsole#unset"><a href="collie.FPSConsole.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.ImageNumber"> <span class="title"> <a href="collie.ImageNumber.html">collie.ImageNumber</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.ImageNumber#onCanvasDraw"><a href="collie.ImageNumber.html#onCanvasDraw">onCanvasDraw</a></li> <li data-name="collie.ImageNumber#onDOMDraw"><a href="collie.ImageNumber.html#onDOMDraw">onDOMDraw</a></li> <li data-name="collie.ImageNumber#type"><a href="collie.ImageNumber.html#type">type</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.ImageNumber#addChild"><a href="collie.ImageNumber.html#addChild">addChild</a></li> <li data-name="collie.ImageNumber#addMatrix"><a href="collie.ImageNumber.html#addMatrix">addMatrix</a></li> <li data-name="collie.ImageNumber#addTo"><a href="collie.ImageNumber.html#addTo">addTo</a></li> <li data-name="collie.ImageNumber#align"><a href="collie.ImageNumber.html#align">align</a></li> <li data-name="collie.ImageNumber#attach"><a href="collie.ImageNumber.html#attach">attach</a></li> <li data-name="collie.ImageNumber#bottom"><a href="collie.ImageNumber.html#bottom">bottom</a></li> <li data-name="collie.ImageNumber#changeMatrix"><a href="collie.ImageNumber.html#changeMatrix">changeMatrix</a></li> <li data-name="collie.ImageNumber#clone"><a href="collie.ImageNumber.html#clone">clone</a></li> <li data-name="collie.ImageNumber#comma"><a href="collie.ImageNumber.html#comma">comma</a></li> <li data-name="collie.ImageNumber#detach"><a href="collie.ImageNumber.html#detach">detach</a></li> <li data-name="collie.ImageNumber#detachAll"><a href="collie.ImageNumber.html#detachAll">detachAll</a></li> <li data-name="collie.ImageNumber#fireEvent"><a href="collie.ImageNumber.html#fireEvent">fireEvent</a></li> <li data-name="collie.ImageNumber#get"><a href="collie.ImageNumber.html#get">get</a></li> <li data-name="collie.ImageNumber#getBoundary"><a href="collie.ImageNumber.html#getBoundary">getBoundary</a></li> <li data-name="collie.ImageNumber#getChildren"><a href="collie.ImageNumber.html#getChildren">getChildren</a></li> <li data-name="collie.ImageNumber#getDirty"><a href="collie.ImageNumber.html#getDirty">getDirty</a></li> <li data-name="collie.ImageNumber#getDrawing"><a href="collie.ImageNumber.html#getDrawing">getDrawing</a></li> <li data-name="collie.ImageNumber#getHitAreaBoundary"><a href="collie.ImageNumber.html#getHitAreaBoundary">getHitAreaBoundary</a></li> <li data-name="collie.ImageNumber#getId"><a href="collie.ImageNumber.html#getId">getId</a></li> <li data-name="collie.ImageNumber#getImage"><a href="collie.ImageNumber.html#getImage">getImage</a></li> <li data-name="collie.ImageNumber#getImageSize"><a href="collie.ImageNumber.html#getImageSize">getImageSize</a></li> <li data-name="collie.ImageNumber#getLayer"><a href="collie.ImageNumber.html#getLayer">getLayer</a></li> <li data-name="collie.ImageNumber#getParent"><a href="collie.ImageNumber.html#getParent">getParent</a></li> <li data-name="collie.ImageNumber#getRelatedPosition"><a href="collie.ImageNumber.html#getRelatedPosition">getRelatedPosition</a></li> <li data-name="collie.ImageNumber#getValue"><a href="collie.ImageNumber.html#getValue">getValue</a></li> <li data-name="collie.ImageNumber#hasAttachedHandler"><a href="collie.ImageNumber.html#hasAttachedHandler">hasAttachedHandler</a></li> <li data-name="collie.ImageNumber#hasChild"><a href="collie.ImageNumber.html#hasChild">hasChild</a></li> <li data-name="collie.ImageNumber#isChanged"><a href="collie.ImageNumber.html#isChanged">isChanged</a></li> <li data-name="collie.ImageNumber#leave"><a href="collie.ImageNumber.html#leave">leave</a></li> <li data-name="collie.ImageNumber#move"><a href="collie.ImageNumber.html#move">move</a></li> <li data-name="collie.ImageNumber#moveBy"><a href="collie.ImageNumber.html#moveBy">moveBy</a></li> <li data-name="collie.ImageNumber#number"><a href="collie.ImageNumber.html#number">number</a></li> <li data-name="collie.ImageNumber#option"><a href="collie.ImageNumber.html#option">option</a></li> <li data-name="collie.ImageNumber#optionSetter"><a href="collie.ImageNumber.html#optionSetter">optionSetter</a></li> <li data-name="collie.ImageNumber#removeChild"><a href="collie.ImageNumber.html#removeChild">removeChild</a></li> <li data-name="collie.ImageNumber#resizeFixedRatio"><a href="collie.ImageNumber.html#resizeFixedRatio">resizeFixedRatio</a></li> <li data-name="collie.ImageNumber#right"><a href="collie.ImageNumber.html#right">right</a></li> <li data-name="collie.ImageNumber#set"><a href="collie.ImageNumber.html#set">set</a></li> <li data-name="collie.ImageNumber#setDirty"><a href="collie.ImageNumber.html#setDirty">setDirty</a></li> <li data-name="collie.ImageNumber#setValue"><a href="collie.ImageNumber.html#setValue">setValue</a></li> <li data-name="collie.ImageNumber#toString"><a href="collie.ImageNumber.html#toString">toString</a></li> <li data-name="collie.ImageNumber#unset"><a href="collie.ImageNumber.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.ImageNumber#event:click"><a href="collie.ImageNumber.html#event:click">click</a></li> <li data-name="collie.ImageNumber#event:mousedown"><a href="collie.ImageNumber.html#event:mousedown">mousedown</a></li> <li data-name="collie.ImageNumber#event:mouseup"><a href="collie.ImageNumber.html#event:mouseup">mouseup</a></li> </ul> </li> <li class="item" data-name="collie.Layer"> <span class="title"> <a href="collie.Layer.html">collie.Layer</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.Layer#type"><a href="collie.Layer.html#type">type</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Layer#addChild"><a href="collie.Layer.html#addChild">addChild</a></li> <li data-name="collie.Layer#addChildren"><a href="collie.Layer.html#addChildren">addChildren</a></li> <li data-name="collie.Layer#addTo"><a href="collie.Layer.html#addTo">addTo</a></li> <li data-name="collie.Layer#attach"><a href="collie.Layer.html#attach">attach</a></li> <li data-name="collie.Layer#clear"><a href="collie.Layer.html#clear">clear</a></li> <li data-name="collie.Layer#clone"><a href="collie.Layer.html#clone">clone</a></li> <li data-name="collie.Layer#detach"><a href="collie.Layer.html#detach">detach</a></li> <li data-name="collie.Layer#detachAll"><a href="collie.Layer.html#detachAll">detachAll</a></li> <li data-name="collie.Layer#fireEvent"><a href="collie.Layer.html#fireEvent">fireEvent</a></li> <li data-name="collie.Layer#get"><a href="collie.Layer.html#get">get</a></li> <li data-name="collie.Layer#getChildren"><a href="collie.Layer.html#getChildren">getChildren</a></li> <li data-name="collie.Layer#getContext"><a href="collie.Layer.html#getContext">getContext</a></li> <li data-name="collie.Layer#getDrawing"><a href="collie.Layer.html#getDrawing">getDrawing</a></li> <li data-name="collie.Layer#getElement"><a href="collie.Layer.html#getElement">getElement</a></li> <li data-name="collie.Layer#getEvent"><a href="collie.Layer.html#getEvent">getEvent</a></li> <li data-name="collie.Layer#getParent"><a href="collie.Layer.html#getParent">getParent</a></li> <li data-name="collie.Layer#getRenderingMode"><a href="collie.Layer.html#getRenderingMode">getRenderingMode</a></li> <li data-name="collie.Layer#hasChild"><a href="collie.Layer.html#hasChild">hasChild</a></li> <li data-name="collie.Layer#isChanged"><a href="collie.Layer.html#isChanged">isChanged</a></li> <li data-name="collie.Layer#offset"><a href="collie.Layer.html#offset">offset</a></li> <li data-name="collie.Layer#option"><a href="collie.Layer.html#option">option</a></li> <li data-name="collie.Layer#optionSetter"><a href="collie.Layer.html#optionSetter">optionSetter</a></li> <li data-name="collie.Layer#removeChild"><a href="collie.Layer.html#removeChild">removeChild</a></li> <li data-name="collie.Layer#removeChildren"><a href="collie.Layer.html#removeChildren">removeChildren</a></li> <li data-name="collie.Layer#resize"><a href="collie.Layer.html#resize">resize</a></li> <li data-name="collie.Layer#set"><a href="collie.Layer.html#set">set</a></li> <li data-name="collie.Layer#setParent"><a href="collie.Layer.html#setParent">setParent</a></li> <li data-name="collie.Layer#unset"><a href="collie.Layer.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.Layer#event:click"><a href="collie.Layer.html#event:click">click</a></li> <li data-name="collie.Layer#event:mousedown"><a href="collie.Layer.html#event:mousedown">mousedown</a></li> <li data-name="collie.Layer#event:mouseup"><a href="collie.Layer.html#event:mouseup">mouseup</a></li> <li data-name="collie.Layer#event:mouseup"><a href="collie.Layer.html#event:mouseup">mouseup</a></li> <li data-name="collie.Layer#event:resize"><a href="collie.Layer.html#event:resize">resize</a></li> </ul> </li> <li class="item" data-name="collie.LayerEvent"> <span class="title"> <a href="collie.LayerEvent.html">collie.LayerEvent</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.LayerEvent#THRESHOLD_CLICK"><a href="collie.LayerEvent.html#THRESHOLD_CLICK">THRESHOLD_CLICK</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.LayerEvent#setEventRatio"><a href="collie.LayerEvent.html#setEventRatio">setEventRatio</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.Map"> <span class="title"> <a href="collie.Map.html">collie.Map</a> </span> <ul class="members itemMembers"> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Map#addObject"><a href="collie.Map.html#addObject">addObject</a></li> <li data-name="collie.Map#addObjectTo"><a href="collie.Map.html#addObjectTo">addObjectTo</a></li> <li data-name="collie.Map#addTile"><a href="collie.Map.html#addTile">addTile</a></li> <li data-name="collie.Map#addTo"><a href="collie.Map.html#addTo">addTo</a></li> <li data-name="collie.Map#attach"><a href="collie.Map.html#attach">attach</a></li> <li data-name="collie.Map#changeTile"><a href="collie.Map.html#changeTile">changeTile</a></li> <li data-name="collie.Map#detach"><a href="collie.Map.html#detach">detach</a></li> <li data-name="collie.Map#detachAll"><a href="collie.Map.html#detachAll">detachAll</a></li> <li data-name="collie.Map#fireEvent"><a href="collie.Map.html#fireEvent">fireEvent</a></li> <li data-name="collie.Map#get"><a href="collie.Map.html#get">get</a></li> <li data-name="collie.Map#getContainer"><a href="collie.Map.html#getContainer">getContainer</a></li> <li data-name="collie.Map#getObject"><a href="collie.Map.html#getObject">getObject</a></li> <li data-name="collie.Map#getObjectContainer"><a href="collie.Map.html#getObjectContainer">getObjectContainer</a></li> <li data-name="collie.Map#getObjects"><a href="collie.Map.html#getObjects">getObjects</a></li> <li data-name="collie.Map#getPosition"><a href="collie.Map.html#getPosition">getPosition</a></li> <li data-name="collie.Map#getPosToTileIndex"><a href="collie.Map.html#getPosToTileIndex">getPosToTileIndex</a></li> <li data-name="collie.Map#getSurroundedTiles"><a href="collie.Map.html#getSurroundedTiles">getSurroundedTiles</a></li> <li data-name="collie.Map#getTile"><a href="collie.Map.html#getTile">getTile</a></li> <li data-name="collie.Map#getTileCountOnScreen"><a href="collie.Map.html#getTileCountOnScreen">getTileCountOnScreen</a></li> <li data-name="collie.Map#getTileIndexToPos"><a href="collie.Map.html#getTileIndexToPos">getTileIndexToPos</a></li> <li data-name="collie.Map#getTileXLength"><a href="collie.Map.html#getTileXLength">getTileXLength</a></li> <li data-name="collie.Map#getTileYLength"><a href="collie.Map.html#getTileYLength">getTileYLength</a></li> <li data-name="collie.Map#hasObject"><a href="collie.Map.html#hasObject">hasObject</a></li> <li data-name="collie.Map#isVisibleOffset"><a href="collie.Map.html#isVisibleOffset">isVisibleOffset</a></li> <li data-name="collie.Map#lock"><a href="collie.Map.html#lock">lock</a></li> <li data-name="collie.Map#moveObject"><a href="collie.Map.html#moveObject">moveObject</a></li> <li data-name="collie.Map#option"><a href="collie.Map.html#option">option</a></li> <li data-name="collie.Map#optionSetter"><a href="collie.Map.html#optionSetter">optionSetter</a></li> <li data-name="collie.Map#removeObject"><a href="collie.Map.html#removeObject">removeObject</a></li> <li data-name="collie.Map#removeTile"><a href="collie.Map.html#removeTile">removeTile</a></li> <li data-name="collie.Map#set"><a href="collie.Map.html#set">set</a></li> <li data-name="collie.Map#setLayer"><a href="collie.Map.html#setLayer">setLayer</a></li> <li data-name="collie.Map#setMapData"><a href="collie.Map.html#setMapData">setMapData</a></li> <li data-name="collie.Map#setObjectLayer"><a href="collie.Map.html#setObjectLayer">setObjectLayer</a></li> <li data-name="collie.Map#setPosition"><a href="collie.Map.html#setPosition">setPosition</a></li> <li data-name="collie.Map#unlock"><a href="collie.Map.html#unlock">unlock</a></li> <li data-name="collie.Map#unset"><a href="collie.Map.html#unset">unset</a></li> <li data-name="collie.Map#unsetLayer"><a href="collie.Map.html#unsetLayer">unsetLayer</a></li> <li data-name="collie.Map#unsetMapData"><a href="collie.Map.html#unsetMapData">unsetMapData</a></li> <li data-name="collie.Map#unsetObjectLayer"><a href="collie.Map.html#unsetObjectLayer">unsetObjectLayer</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.Map#event:mapchange"><a href="collie.Map.html#event:mapchange">mapchange</a></li> <li data-name="collie.Map#event:mapchange"><a href="collie.Map.html#event:mapchange">mapchange</a></li> <li data-name="collie.Map#event:mapclick"><a href="collie.Map.html#event:mapclick">mapclick</a></li> <li data-name="collie.Map#event:mapdown"><a href="collie.Map.html#event:mapdown">mapdown</a></li> <li data-name="collie.Map#event:mapmove"><a href="collie.Map.html#event:mapmove">mapmove</a></li> <li data-name="collie.Map#event:mapup"><a href="collie.Map.html#event:mapup">mapup</a></li> </ul> </li> <li class="item" data-name="collie.MovableObject"> <span class="title"> <a href="collie.MovableObject.html">collie.MovableObject</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.MovableObject#onCanvasDraw"><a href="collie.MovableObject.html#onCanvasDraw">onCanvasDraw</a></li> <li data-name="collie.MovableObject#onDOMDraw"><a href="collie.MovableObject.html#onDOMDraw">onDOMDraw</a></li> <li data-name="collie.MovableObject#type"><a href="collie.MovableObject.html#type">type</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.MovableObject#addChild"><a href="collie.MovableObject.html#addChild">addChild</a></li> <li data-name="collie.MovableObject#addMatrix"><a href="collie.MovableObject.html#addMatrix">addMatrix</a></li> <li data-name="collie.MovableObject#addTo"><a href="collie.MovableObject.html#addTo">addTo</a></li> <li data-name="collie.MovableObject#align"><a href="collie.MovableObject.html#align">align</a></li> <li data-name="collie.MovableObject#attach"><a href="collie.MovableObject.html#attach">attach</a></li> <li data-name="collie.MovableObject#bottom"><a href="collie.MovableObject.html#bottom">bottom</a></li> <li data-name="collie.MovableObject#changeMatrix"><a href="collie.MovableObject.html#changeMatrix">changeMatrix</a></li> <li data-name="collie.MovableObject#clone"><a href="collie.MovableObject.html#clone">clone</a></li> <li data-name="collie.MovableObject#detach"><a href="collie.MovableObject.html#detach">detach</a></li> <li data-name="collie.MovableObject#detachAll"><a href="collie.MovableObject.html#detachAll">detachAll</a></li> <li data-name="collie.MovableObject#fireEvent"><a href="collie.MovableObject.html#fireEvent">fireEvent</a></li> <li data-name="collie.MovableObject#get"><a href="collie.MovableObject.html#get">get</a></li> <li data-name="collie.MovableObject#getBoundary"><a href="collie.MovableObject.html#getBoundary">getBoundary</a></li> <li data-name="collie.MovableObject#getChildren"><a href="collie.MovableObject.html#getChildren">getChildren</a></li> <li data-name="collie.MovableObject#getDirty"><a href="collie.MovableObject.html#getDirty">getDirty</a></li> <li data-name="collie.MovableObject#getDrawing"><a href="collie.MovableObject.html#getDrawing">getDrawing</a></li> <li data-name="collie.MovableObject#getHitAreaBoundary"><a href="collie.MovableObject.html#getHitAreaBoundary">getHitAreaBoundary</a></li> <li data-name="collie.MovableObject#getId"><a href="collie.MovableObject.html#getId">getId</a></li> <li data-name="collie.MovableObject#getImage"><a href="collie.MovableObject.html#getImage">getImage</a></li> <li data-name="collie.MovableObject#getImageSize"><a href="collie.MovableObject.html#getImageSize">getImageSize</a></li> <li data-name="collie.MovableObject#getLayer"><a href="collie.MovableObject.html#getLayer">getLayer</a></li> <li data-name="collie.MovableObject#getParent"><a href="collie.MovableObject.html#getParent">getParent</a></li> <li data-name="collie.MovableObject#getRelatedPosition"><a href="collie.MovableObject.html#getRelatedPosition">getRelatedPosition</a></li> <li data-name="collie.MovableObject#hasAttachedHandler"><a href="collie.MovableObject.html#hasAttachedHandler">hasAttachedHandler</a></li> <li data-name="collie.MovableObject#hasChild"><a href="collie.MovableObject.html#hasChild">hasChild</a></li> <li data-name="collie.MovableObject#isChanged"><a href="collie.MovableObject.html#isChanged">isChanged</a></li> <li data-name="collie.MovableObject#leave"><a href="collie.MovableObject.html#leave">leave</a></li> <li data-name="collie.MovableObject#move"><a href="collie.MovableObject.html#move">move</a></li> <li data-name="collie.MovableObject#moveBy"><a href="collie.MovableObject.html#moveBy">moveBy</a></li> <li data-name="collie.MovableObject#option"><a href="collie.MovableObject.html#option">option</a></li> <li data-name="collie.MovableObject#optionSetter"><a href="collie.MovableObject.html#optionSetter">optionSetter</a></li> <li data-name="collie.MovableObject#removeChild"><a href="collie.MovableObject.html#removeChild">removeChild</a></li> <li data-name="collie.MovableObject#resizeFixedRatio"><a href="collie.MovableObject.html#resizeFixedRatio">resizeFixedRatio</a></li> <li data-name="collie.MovableObject#right"><a href="collie.MovableObject.html#right">right</a></li> <li data-name="collie.MovableObject#set"><a href="collie.MovableObject.html#set">set</a></li> <li data-name="collie.MovableObject#setDirty"><a href="collie.MovableObject.html#setDirty">setDirty</a></li> <li data-name="collie.MovableObject#toString"><a href="collie.MovableObject.html#toString">toString</a></li> <li data-name="collie.MovableObject#unset"><a href="collie.MovableObject.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.MovableObject#event:click"><a href="collie.MovableObject.html#event:click">click</a></li> <li data-name="collie.MovableObject#event:mousedown"><a href="collie.MovableObject.html#event:mousedown">mousedown</a></li> <li data-name="collie.MovableObject#event:mouseup"><a href="collie.MovableObject.html#event:mouseup">mouseup</a></li> </ul> </li> <li class="item" data-name="collie.PathFinding"> <span class="title"> <a href="collie.PathFinding.html">collie.PathFinding</a> </span> <ul class="members itemMembers"> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.PathFinding#attach"><a href="collie.PathFinding.html#attach">attach</a></li> <li data-name="collie.PathFinding#beforeMove"><a href="collie.PathFinding.html#beforeMove">beforeMove</a></li> <li data-name="collie.PathFinding#detach"><a href="collie.PathFinding.html#detach">detach</a></li> <li data-name="collie.PathFinding#detachAll"><a href="collie.PathFinding.html#detachAll">detachAll</a></li> <li data-name="collie.PathFinding#find"><a href="collie.PathFinding.html#find">find</a></li> <li data-name="collie.PathFinding#fireEvent"><a href="collie.PathFinding.html#fireEvent">fireEvent</a></li> <li data-name="collie.PathFinding#get"><a href="collie.PathFinding.html#get">get</a></li> <li data-name="collie.PathFinding#getMap"><a href="collie.PathFinding.html#getMap">getMap</a></li> <li data-name="collie.PathFinding#option"><a href="collie.PathFinding.html#option">option</a></li> <li data-name="collie.PathFinding#optionSetter"><a href="collie.PathFinding.html#optionSetter">optionSetter</a></li> <li data-name="collie.PathFinding#set"><a href="collie.PathFinding.html#set">set</a></li> <li data-name="collie.PathFinding#unset"><a href="collie.PathFinding.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.Polyline"> <span class="title"> <a href="collie.Polyline.html">collie.Polyline</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.Polyline#type"><a href="collie.Polyline.html#type">type</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Polyline#addChild"><a href="collie.Polyline.html#addChild">addChild</a></li> <li data-name="collie.Polyline#addMatrix"><a href="collie.Polyline.html#addMatrix">addMatrix</a></li> <li data-name="collie.Polyline#addPoint"><a href="collie.Polyline.html#addPoint">addPoint</a></li> <li data-name="collie.Polyline#addTo"><a href="collie.Polyline.html#addTo">addTo</a></li> <li data-name="collie.Polyline#align"><a href="collie.Polyline.html#align">align</a></li> <li data-name="collie.Polyline#attach"><a href="collie.Polyline.html#attach">attach</a></li> <li data-name="collie.Polyline#bottom"><a href="collie.Polyline.html#bottom">bottom</a></li> <li data-name="collie.Polyline#changeMatrix"><a href="collie.Polyline.html#changeMatrix">changeMatrix</a></li> <li data-name="collie.Polyline#clone"><a href="collie.Polyline.html#clone">clone</a></li> <li data-name="collie.Polyline#detach"><a href="collie.Polyline.html#detach">detach</a></li> <li data-name="collie.Polyline#detachAll"><a href="collie.Polyline.html#detachAll">detachAll</a></li> <li data-name="collie.Polyline#fireEvent"><a href="collie.Polyline.html#fireEvent">fireEvent</a></li> <li data-name="collie.Polyline#get"><a href="collie.Polyline.html#get">get</a></li> <li data-name="collie.Polyline#getBoundary"><a href="collie.Polyline.html#getBoundary">getBoundary</a></li> <li data-name="collie.Polyline#getChildren"><a href="collie.Polyline.html#getChildren">getChildren</a></li> <li data-name="collie.Polyline#getDirty"><a href="collie.Polyline.html#getDirty">getDirty</a></li> <li data-name="collie.Polyline#getDrawing"><a href="collie.Polyline.html#getDrawing">getDrawing</a></li> <li data-name="collie.Polyline#getHitAreaBoundary"><a href="collie.Polyline.html#getHitAreaBoundary">getHitAreaBoundary</a></li> <li data-name="collie.Polyline#getId"><a href="collie.Polyline.html#getId">getId</a></li> <li data-name="collie.Polyline#getImage"><a href="collie.Polyline.html#getImage">getImage</a></li> <li data-name="collie.Polyline#getImageSize"><a href="collie.Polyline.html#getImageSize">getImageSize</a></li> <li data-name="collie.Polyline#getLayer"><a href="collie.Polyline.html#getLayer">getLayer</a></li> <li data-name="collie.Polyline#getParent"><a href="collie.Polyline.html#getParent">getParent</a></li> <li data-name="collie.Polyline#getPointData"><a href="collie.Polyline.html#getPointData">getPointData</a></li> <li data-name="collie.Polyline#getRelatedPosition"><a href="collie.Polyline.html#getRelatedPosition">getRelatedPosition</a></li> <li data-name="collie.Polyline#hasAttachedHandler"><a href="collie.Polyline.html#hasAttachedHandler">hasAttachedHandler</a></li> <li data-name="collie.Polyline#hasChild"><a href="collie.Polyline.html#hasChild">hasChild</a></li> <li data-name="collie.Polyline#isChanged"><a href="collie.Polyline.html#isChanged">isChanged</a></li> <li data-name="collie.Polyline#leave"><a href="collie.Polyline.html#leave">leave</a></li> <li data-name="collie.Polyline#lineTo"><a href="collie.Polyline.html#lineTo">lineTo</a></li> <li data-name="collie.Polyline#move"><a href="collie.Polyline.html#move">move</a></li> <li data-name="collie.Polyline#moveBy"><a href="collie.Polyline.html#moveBy">moveBy</a></li> <li data-name="collie.Polyline#moveTo"><a href="collie.Polyline.html#moveTo">moveTo</a></li> <li data-name="collie.Polyline#option"><a href="collie.Polyline.html#option">option</a></li> <li data-name="collie.Polyline#optionSetter"><a href="collie.Polyline.html#optionSetter">optionSetter</a></li> <li data-name="collie.Polyline#removeChild"><a href="collie.Polyline.html#removeChild">removeChild</a></li> <li data-name="collie.Polyline#resetPointData"><a href="collie.Polyline.html#resetPointData">resetPointData</a></li> <li data-name="collie.Polyline#resizeFixedRatio"><a href="collie.Polyline.html#resizeFixedRatio">resizeFixedRatio</a></li> <li data-name="collie.Polyline#right"><a href="collie.Polyline.html#right">right</a></li> <li data-name="collie.Polyline#set"><a href="collie.Polyline.html#set">set</a></li> <li data-name="collie.Polyline#setDirty"><a href="collie.Polyline.html#setDirty">setDirty</a></li> <li data-name="collie.Polyline#setPointData"><a href="collie.Polyline.html#setPointData">setPointData</a></li> <li data-name="collie.Polyline#toString"><a href="collie.Polyline.html#toString">toString</a></li> <li data-name="collie.Polyline#unset"><a href="collie.Polyline.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.Polyline#event:click"><a href="collie.Polyline.html#event:click">click</a></li> <li data-name="collie.Polyline#event:mousedown"><a href="collie.Polyline.html#event:mousedown">mousedown</a></li> <li data-name="collie.Polyline#event:mouseup"><a href="collie.Polyline.html#event:mouseup">mouseup</a></li> </ul> </li> <li class="item" data-name="collie.Pool"> <span class="title"> <a href="collie.Pool.html">collie.Pool</a> </span> <ul class="members itemMembers"> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Pool#changeOption"><a href="collie.Pool.html#changeOption">changeOption</a></li> <li data-name="collie.Pool#changeSize"><a href="collie.Pool.html#changeSize">changeSize</a></li> <li data-name="collie.Pool#get"><a href="collie.Pool.html#get">get</a></li> <li data-name="collie.Pool#getSize"><a href="collie.Pool.html#getSize">getSize</a></li> <li data-name="collie.Pool#release"><a href="collie.Pool.html#release">release</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.Rectangle"> <span class="title"> <a href="collie.Rectangle.html">collie.Rectangle</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.Rectangle#type"><a href="collie.Rectangle.html#type">type</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Rectangle#addChild"><a href="collie.Rectangle.html#addChild">addChild</a></li> <li data-name="collie.Rectangle#addMatrix"><a href="collie.Rectangle.html#addMatrix">addMatrix</a></li> <li data-name="collie.Rectangle#addTo"><a href="collie.Rectangle.html#addTo">addTo</a></li> <li data-name="collie.Rectangle#align"><a href="collie.Rectangle.html#align">align</a></li> <li data-name="collie.Rectangle#attach"><a href="collie.Rectangle.html#attach">attach</a></li> <li data-name="collie.Rectangle#bottom"><a href="collie.Rectangle.html#bottom">bottom</a></li> <li data-name="collie.Rectangle#changeMatrix"><a href="collie.Rectangle.html#changeMatrix">changeMatrix</a></li> <li data-name="collie.Rectangle#clone"><a href="collie.Rectangle.html#clone">clone</a></li> <li data-name="collie.Rectangle#detach"><a href="collie.Rectangle.html#detach">detach</a></li> <li data-name="collie.Rectangle#detachAll"><a href="collie.Rectangle.html#detachAll">detachAll</a></li> <li data-name="collie.Rectangle#fireEvent"><a href="collie.Rectangle.html#fireEvent">fireEvent</a></li> <li data-name="collie.Rectangle#get"><a href="collie.Rectangle.html#get">get</a></li> <li data-name="collie.Rectangle#getBoundary"><a href="collie.Rectangle.html#getBoundary">getBoundary</a></li> <li data-name="collie.Rectangle#getChildren"><a href="collie.Rectangle.html#getChildren">getChildren</a></li> <li data-name="collie.Rectangle#getDirty"><a href="collie.Rectangle.html#getDirty">getDirty</a></li> <li data-name="collie.Rectangle#getDrawing"><a href="collie.Rectangle.html#getDrawing">getDrawing</a></li> <li data-name="collie.Rectangle#getHitAreaBoundary"><a href="collie.Rectangle.html#getHitAreaBoundary">getHitAreaBoundary</a></li> <li data-name="collie.Rectangle#getId"><a href="collie.Rectangle.html#getId">getId</a></li> <li data-name="collie.Rectangle#getImage"><a href="collie.Rectangle.html#getImage">getImage</a></li> <li data-name="collie.Rectangle#getImageSize"><a href="collie.Rectangle.html#getImageSize">getImageSize</a></li> <li data-name="collie.Rectangle#getLayer"><a href="collie.Rectangle.html#getLayer">getLayer</a></li> <li data-name="collie.Rectangle#getParent"><a href="collie.Rectangle.html#getParent">getParent</a></li> <li data-name="collie.Rectangle#getRelatedPosition"><a href="collie.Rectangle.html#getRelatedPosition">getRelatedPosition</a></li> <li data-name="collie.Rectangle#hasAttachedHandler"><a href="collie.Rectangle.html#hasAttachedHandler">hasAttachedHandler</a></li> <li data-name="collie.Rectangle#hasChild"><a href="collie.Rectangle.html#hasChild">hasChild</a></li> <li data-name="collie.Rectangle#isChanged"><a href="collie.Rectangle.html#isChanged">isChanged</a></li> <li data-name="collie.Rectangle#leave"><a href="collie.Rectangle.html#leave">leave</a></li> <li data-name="collie.Rectangle#move"><a href="collie.Rectangle.html#move">move</a></li> <li data-name="collie.Rectangle#moveBy"><a href="collie.Rectangle.html#moveBy">moveBy</a></li> <li data-name="collie.Rectangle#option"><a href="collie.Rectangle.html#option">option</a></li> <li data-name="collie.Rectangle#optionSetter"><a href="collie.Rectangle.html#optionSetter">optionSetter</a></li> <li data-name="collie.Rectangle#removeChild"><a href="collie.Rectangle.html#removeChild">removeChild</a></li> <li data-name="collie.Rectangle#resizeFixedRatio"><a href="collie.Rectangle.html#resizeFixedRatio">resizeFixedRatio</a></li> <li data-name="collie.Rectangle#right"><a href="collie.Rectangle.html#right">right</a></li> <li data-name="collie.Rectangle#set"><a href="collie.Rectangle.html#set">set</a></li> <li data-name="collie.Rectangle#setDirty"><a href="collie.Rectangle.html#setDirty">setDirty</a></li> <li data-name="collie.Rectangle#toString"><a href="collie.Rectangle.html#toString">toString</a></li> <li data-name="collie.Rectangle#unset"><a href="collie.Rectangle.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.Rectangle#event:click"><a href="collie.Rectangle.html#event:click">click</a></li> <li data-name="collie.Rectangle#event:mousedown"><a href="collie.Rectangle.html#event:mousedown">mousedown</a></li> <li data-name="collie.Rectangle#event:mouseup"><a href="collie.Rectangle.html#event:mouseup">mouseup</a></li> </ul> </li> <li class="item" data-name="collie.Sensor"> <span class="title"> <a href="collie.Sensor.html">collie.Sensor</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.Sensor#RAY_SENSING_DISTANCE"><a href="collie.Sensor.html#RAY_SENSING_DISTANCE">RAY_SENSING_DISTANCE</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Sensor#add"><a href="collie.Sensor.html#add">add</a></li> <li data-name="collie.Sensor#addListener"><a href="collie.Sensor.html#addListener">addListener</a></li> <li data-name="collie.Sensor#attach"><a href="collie.Sensor.html#attach">attach</a></li> <li data-name="collie.Sensor#detach"><a href="collie.Sensor.html#detach">detach</a></li> <li data-name="collie.Sensor#detachAll"><a href="collie.Sensor.html#detachAll">detachAll</a></li> <li data-name="collie.Sensor#detect"><a href="collie.Sensor.html#detect">detect</a></li> <li data-name="collie.Sensor#fireEvent"><a href="collie.Sensor.html#fireEvent">fireEvent</a></li> <li data-name="collie.Sensor#get"><a href="collie.Sensor.html#get">get</a></li> <li data-name="collie.Sensor#option"><a href="collie.Sensor.html#option">option</a></li> <li data-name="collie.Sensor#optionSetter"><a href="collie.Sensor.html#optionSetter">optionSetter</a></li> <li data-name="collie.Sensor#remove"><a href="collie.Sensor.html#remove">remove</a></li> <li data-name="collie.Sensor#set"><a href="collie.Sensor.html#set">set</a></li> <li data-name="collie.Sensor#start"><a href="collie.Sensor.html#start">start</a></li> <li data-name="collie.Sensor#stop"><a href="collie.Sensor.html#stop">stop</a></li> <li data-name="collie.Sensor#unset"><a href="collie.Sensor.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> </ul> </li> <li class="item" data-name="collie.Text"> <span class="title"> <a href="collie.Text.html">collie.Text</a> </span> <ul class="members itemMembers"> <span class="subtitle">Members</span> <li data-name="collie.Text#type"><a href="collie.Text.html#type">type</a></li> </ul> <ul class="typedefs itemMembers"> </ul> <ul class="methods itemMembers"> <span class="subtitle">Methods</span> <li data-name="collie.Text#addChild"><a href="collie.Text.html#addChild">addChild</a></li> <li data-name="collie.Text#addMatrix"><a href="collie.Text.html#addMatrix">addMatrix</a></li> <li data-name="collie.Text#addTo"><a href="collie.Text.html#addTo">addTo</a></li> <li data-name="collie.Text#align"><a href="collie.Text.html#align">align</a></li> <li data-name="collie.Text#attach"><a href="collie.Text.html#attach">attach</a></li> <li data-name="collie.Text#bottom"><a href="collie.Text.html#bottom">bottom</a></li> <li data-name="collie.Text#changeMatrix"><a href="collie.Text.html#changeMatrix">changeMatrix</a></li> <li data-name="collie.Text#clone"><a href="collie.Text.html#clone">clone</a></li> <li data-name="collie.Text#detach"><a href="collie.Text.html#detach">detach</a></li> <li data-name="collie.Text#detachAll"><a href="collie.Text.html#detachAll">detachAll</a></li> <li data-name="collie.Text#fireEvent"><a href="collie.Text.html#fireEvent">fireEvent</a></li> <li data-name="collie.Text#get"><a href="collie.Text.html#get">get</a></li> <li data-name="collie.Text#getBoundary"><a href="collie.Text.html#getBoundary">getBoundary</a></li> <li data-name="collie.Text#getChildren"><a href="collie.Text.html#getChildren">getChildren</a></li> <li data-name="collie.Text#getDirty"><a href="collie.Text.html#getDirty">getDirty</a></li> <li data-name="collie.Text#getDrawing"><a href="collie.Text.html#getDrawing">getDrawing</a></li> <li data-name="collie.Text#getHitAreaBoundary"><a href="collie.Text.html#getHitAreaBoundary">getHitAreaBoundary</a></li> <li data-name="collie.Text#getId"><a href="collie.Text.html#getId">getId</a></li> <li data-name="collie.Text#getImage"><a href="collie.Text.html#getImage">getImage</a></li> <li data-name="collie.Text#getImageSize"><a href="collie.Text.html#getImageSize">getImageSize</a></li> <li data-name="collie.Text#getLayer"><a href="collie.Text.html#getLayer">getLayer</a></li> <li data-name="collie.Text#getParent"><a href="collie.Text.html#getParent">getParent</a></li> <li data-name="collie.Text#getRelatedPosition"><a href="collie.Text.html#getRelatedPosition">getRelatedPosition</a></li> <li data-name="collie.Text#getTextWidth"><a href="collie.Text.html#getTextWidth">getTextWidth</a></li> <li data-name="collie.Text#hasAttachedHandler"><a href="collie.Text.html#hasAttachedHandler">hasAttachedHandler</a></li> <li data-name="collie.Text#hasChild"><a href="collie.Text.html#hasChild">hasChild</a></li> <li data-name="collie.Text#isChanged"><a href="collie.Text.html#isChanged">isChanged</a></li> <li data-name="collie.Text#leave"><a href="collie.Text.html#leave">leave</a></li> <li data-name="collie.Text#move"><a href="collie.Text.html#move">move</a></li> <li data-name="collie.Text#moveBy"><a href="collie.Text.html#moveBy">moveBy</a></li> <li data-name="collie.Text#option"><a href="collie.Text.html#option">option</a></li> <li data-name="collie.Text#optionSetter"><a href="collie.Text.html#optionSetter">optionSetter</a></li> <li data-name="collie.Text#removeChild"><a href="collie.Text.html#removeChild">removeChild</a></li> <li data-name="collie.Text#resizeFixedRatio"><a href="collie.Text.html#resizeFixedRatio">resizeFixedRatio</a></li> <li data-name="collie.Text#right"><a href="collie.Text.html#right">right</a></li> <li data-name="collie.Text#set"><a href="collie.Text.html#set">set</a></li> <li data-name="collie.Text#setDirty"><a href="collie.Text.html#setDirty">setDirty</a></li> <li data-name="collie.Text#text"><a href="collie.Text.html#text">text</a></li> <li data-name="collie.Text#toString"><a href="collie.Text.html#toString">toString</a></li> <li data-name="collie.Text#unset"><a href="collie.Text.html#unset">unset</a></li> </ul> <ul class="events itemMembers"> <span class="subtitle">Events</span> <li data-name="collie.Text#event:click"><a href="collie.Text.html#event:click">click</a></li> <li data-name="collie.Text#event:mousedown"><a href="collie.Text.html#event:mousedown">mousedown</a></li> <li data-name="collie.Text#event:mouseup"><a href="collie.Text.html#event:mouseup">mouseup</a></li> </ul> </li> </ul> </div> <div class="main"> <h1 class="page-title" data-filename="ImageNumber.js.html">Source: extension/ImageNumber.js</h1> <section> <article> <pre class="prettyprint source"><code>/** * 비트맵으로 구성된 숫자를 사용하기 위한 클래스 * 0과 양수만 표현할 수 있다. * number에서 쓰이는 이미지는 0부터 9까지 가로로 나열된 스프라이트 이미지여야한다 * @class * @extends collie.DisplayObject * @param {Object} [htOption] 설정 * @param {String} [htOption.textAlign="left"] 숫자 정렬 방법, left, right, center를 설정할 수 있다. * @param {Number} [htOption.letterSpacing=0] 숫자 간격 음수를 사용하면 간격이 줄어든다 단위는 px * @param {Number} [htOption.minDigit=0] 최소 자릿수 지정, 빈 자리는 0으로 채워진다. 0이면 사용안함 * @requires collie.addon.js * @example * var number = new collie.ImageNumber({ * textAlign: "center", * letterSpacing: -5, * width: 300, * height: 100 * }).number({ * width: 90, * height: 100, * backgroundImage: "number" // This Image should be contained numbers from 0 to 9. * }).comma({ * width: 45, // comma method requires a width option * height: 100, * backgroundImage: "comma" * }); * * number.setValue(999000); // 'number' object would be shown by "999,000" * number.comma(false); // It would be shown by "999000" */ collie.ImageNumber = collie.Class(/** @lends collie.ImageNumber.prototype */{ $init : function (htOption) { this._aNumber = []; this._aComma = []; this._nIndexNumber = null; this._nIndexComma = null; this._nValue = null; this.option({ textAlign : "left", letterSpacing : 0, minDigit : 0 }, null, true); }, /** * 값을 설정 * * @param {Number} nNumber * @return {collie.ImageNumber} */ setValue : function (nNumber) { this._nValue = Math.max(0, parseInt(nNumber, 10)); this._nIndexNumber = null; this._nIndexComma = null; var sNumber = this._nValue.toString(); var len = sNumber.length; if (this._htOption.minDigit && len &lt; this._htOption.minDigit) { sNumber = (new Array(this._htOption.minDigit - len + 1).join("0")) + sNumber; len = this._htOption.minDigit; } var nWidth = this._getWidth(sNumber); var nStartLeft = this._getStartPosition(nWidth); var nLeft = nStartLeft + nWidth; var nCountNumber = 0; var bLastCharacter = false; for (var i = len - 1; i >= 0; i--) { // 세 자리 콤마 붙여야 할 때 if (this._htOptionComma && nCountNumber % 3 === 0 && nCountNumber !== 0) { nLeft = nLeft - (this._htOptionComma.width + this._htOption.letterSpacing); this._getComma().set({ x : nLeft, visible : true }); } bLastCharacter = (nCountNumber === 0 && this._htOption.textAlign === "right") || (nCountNumber === len && this._htOption.textAlign === "left"); nLeft = nLeft - (this._htOptionNumber.width + this._htOption.letterSpacing * (bLastCharacter ? 0 : 1)); this._getNumber().set({ x : nLeft, spriteX : parseInt(sNumber.charAt(i), 10), visible : true }); nCountNumber++; } this._hideUnusedObject(); }, /** * 설정된 값을 반환한다. * @return {Number} */ getValue : function () { return this._nValue; }, /** * 숫자를 만들 때 사용할 옵션을 설정한다 * * @param {Object} htOption * @see {collie.DisplayObject} * @return {collie.ImageNumber} */ number : function (htOption) { this._htOptionNumber = htOption; return this; }, /** * 세 자리 콤마를 사용할 경우 콤마를 생성할 때 사용할 옵션을 설정한다 * * @param {Object|Boolean} htOption 콤마를 만들 때 사용할 옵션, 반드시 width를 입력해야 한다, false를 입력하면 콤마를 제거한다 * @see {collie.DisplayObject} * @return {collie.ImageNumber} */ comma : function (htOption) { if (!htOption) { this._htOptionComma = null; } else { if (!("width" in htOption)) { throw new Error("comma method in ImageNumber requires a width property in options."); } this._htOptionComma = htOption; } if (this._nValue !== null) { this.setValue(this._nValue); } return this; }, /** * 현재 숫자의 표시될 너비를 구한다 * * @private * @return {Number} */ _getWidth : function (nValue) { var sValue = nValue.toString(); var nWidth = sValue.length * (this._htOptionNumber.width + this._htOption.letterSpacing); if (this._htOptionComma) { nWidth += Math.max(0, Math.ceil(sValue.length / 3 - 1)) * (this._htOptionComma.width + this._htOption.letterSpacing); } return nWidth; }, /** * 현재 숫자가 정렬에 따라 제일 처음에 표기될 위치를 반환한다. * @private * @return {Number} */ _getStartPosition : function (nWidth) { switch (this._htOption.textAlign) { case "right" : return this._htOption.width - nWidth; break; case "center" : return this._htOption.width / 2 - nWidth / 2; break; case "left" : default : return 0; } }, /** * Pool에서 빈 숫자 객체를 가져온다. 사용하지 않은 객체가 없으면 새로 생성한다 * * @private * @return {collie.DisplayObject} */ _getNumber : function () { var startIdx = this._nIndexNumber === null ? 0 : this._nIndexNumber + 1; // 새로 생성 if (this._aNumber.length &lt; startIdx + 1) { this._aNumber.push(new collie.DisplayObject(this._htOptionNumber).addTo(this)); } this._nIndexNumber = startIdx; return this._aNumber[startIdx]; }, /** * Pool에서 빈 콤마 객체를 가져온다. 사용하지 않은 객체가 없으면 새로 생성한다 * * @private * @return {collie.DisplayObject} */ _getComma : function () { var startIdx = this._nIndexComma === null ? 0 : this._nIndexComma + 1; // 새로 생성 if (this._aComma.length &lt; startIdx + 1) { this._aComma.push(new collie.DisplayObject(this._htOptionComma).addTo(this)); } this._nIndexComma = startIdx; return this._aComma[startIdx]; }, /** * 사용하지 않은 객체는 visible을 false로 설정한다 * @private */ _hideUnusedObject : function () { // 콤마는 생성 안됐을 경우에도 전부 없앰 for (var i = this._nIndexComma !== null ? this._nIndexComma + 1 : 0, l = this._aComma.length; i &lt; l; i++) { this._aComma[i].set("visible", false); } // 숫자는 없을 경우가 없으므로 전부 없애지 않음 (최소 0) if (this._nIndexNumber !== null) { for (var i = this._nIndexNumber + 1, l = this._aNumber.length; i &lt; l; i++) { this._aNumber[i].set("visible", false); } } }, /** * 클래스 정보를 문자열로 반환 * Returns to information of Class as string * * @return {String} */ toString : function () { return "ImageNumber" + (this.get("name") ? " " + this.get("name") : "")+ " #" + this.getId() + (this.getImage() ? "(image:" + this.getImage().src + ")" : ""); } }, collie.DisplayObject);</code></pre> </article> </section> <!-- disqus code --> <div id="disqus_thread"></div> <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a> <!-- // disqus code --> <footer> Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.2.0</a> on Sun Dec 29 2013 21:14:27 GMT+0900 (KST) </footer> </div> </div> <script>prettyPrint();</script> <script src="scripts/linenumber.js"></script> <script src="scripts/main.js"></script> </body> </html>
docs/html/IDirectFB_CreateSurface.html
openDFB/openDFB
<HTML> <STYLE> <!-- A{textdecoration:none} --> </STYLE> <STYLE type="text/css"> A:link, A:visited, A:active { text-decoration: none; } </STYLE> <HEAD> <TITLE>IDirectFB - CreateSurface [DirectFB Reference Manual]</TITLE> </HEAD> <BODY bgcolor=#C0C8D8 link=#2369E0 vlink=#2369E0 text=#232323> <TABLE width=100% bgcolor=#8090A0 border=0 cellspacing=0 cellpadding=5> <TR><TD width=30%> <A href="http://www.directfb.org"><IMG border=0 src="dfb_logo-alpha.png"></A> </TD><TD align=right> &nbsp;&nbsp; <A href="index.html"><FONT size=+3 color=#203040>Reference Manual - 1.6.3</FONT></A> </TD></TR> <TR><TD colspan=2 align=center bgcolor=#284460> <TABLE border=0 cellspacing=0 cellpadding=0> <TR><TD nowrap align=right width=50%> <BIG><FONT color=#D0D0D0><A href="IDirectFB.html"> <FONT color=#D0D0D0>IDirectFB</FONT></A>&nbsp;</FONT></BIG> </TD><TD nowrap align=left width=50%> <BIG><FONT color=#E09040>&nbsp;CreateSurface</FONT></BIG> </TD></TR> </TABLE> </TD></TR> </TABLE> <H4> Create a surface matching the specified description. </H4> <TABLE border=0 cellspacing=4 cellpadding=2 bgcolor=#D8E0E8> <TR><TD colspan=5><I><FONT color=#425469><A href="types.html#DFBResult">DFBResult</A> <b>CreateSurface (</b></FONT></I></TD></TR> <TR><TD width=50> &nbsp; </TD><TD valign=top> <A href="IDirectFB.html">IDirectFB</A> </TD><TD width=20>&nbsp;</TD><TD align=right> <FONT color=#424242><B>*</B></FONT> </TD><TD valign=top> <FONT color=#234269><B>thiz,</B></FONT> </TD></TR> <TR><TD width=50> &nbsp; </TD><TD valign=top> const <A href="types.html#DFBSurfaceDescription">DFBSurfaceDescription</A> </TD><TD width=20>&nbsp;</TD><TD align=right> <FONT color=#424242><B>*</B></FONT> </TD><TD valign=top> <FONT color=#234269><B>desc,</B></FONT> </TD></TR> <TR><TD width=50> &nbsp; </TD><TD valign=top> <A href="IDirectFBSurface.html">IDirectFBSurface</A> </TD><TD width=20>&nbsp;</TD><TD align=right> <FONT color=#424242><B>**</B></FONT> </TD><TD valign=top> <FONT color=#234269><B>ret_interface</B></FONT> </TD></TR> <TR><TD colspan=5><I><FONT color=#425469><b>);</b></FONT></I></TD></TR> </TABLE> </P> <P> </P> <TABLE width=100% bgcolor=#E0E8F0 border=0 cellspacing=1 cellpadding=3> <TR><TD width=100> <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"> <img alt="Creative Commons License" style="border-width:0" border="0" src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" /> </a> </TD><TD> This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"> Creative Commons Attribution-Share Alike 3.0 License</a> </TD></TR> </TABLE> </BODY> </HTML>
doc/html/restoring-geometry.html
kobolabs/qt-everywhere-opensource-src-4.6.2
<?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"> <!-- restoring-geometry.qdoc --> <head> <title>Qt 4.6: Restoring a Window's Geometry</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://qt.nokia.com/"><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="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">All&nbsp;Functions</font></a>&nbsp;&middot; <a href="overviews.html"><font color="#004faf">Overviews</font></a></td></tr></table><h1 class="title">Restoring a Window's Geometry<br /><span class="subtitle"></span> </h1> <p>This document describes how to save and restore a <a href="application-windows.html#window-geometry">window's geometry</a> using the geometry properties. On Windows, this is basically storing the result of <a href="qwidget.html#geometry-prop">QWidget::geometry</a>() and calling <a href="qwidget.html#geometry-prop">QWidget::setGeometry</a>() in the next session before calling <a href="qwidget.html#show">show()</a>.</p> <p>On X11, this might not work because an invisible window does not have a frame yet. The window manager will decorate the window later. When this happens, the window shifts towards the bottom/right corner of the screen depending on the size of the decoration frame. Although X provides a way to avoid this shift, some window managers fail to implement this feature.</p> <p>Since version 4.2, Qt provides functions that saves and restores a window's geometry and state for you. <a href="qwidget.html#saveGeometry">QWidget::saveGeometry</a>() saves the window geometry and maximized/fullscreen state, while <a href="qwidget.html#restoreGeometry">QWidget::restoreGeometry</a>() restores it. The restore function also checks if the restored geometry is outside the available screen geometry, and modifies it as appropriate if it is:</p> <pre> void MyMainWindow::closeEvent(QCloseEvent *event) { QSettings settings(&quot;MyCompany&quot;, &quot;MyApp&quot;); settings.setValue(&quot;geometry&quot;, saveGeometry()); settings.setValue(&quot;windowState&quot;, saveState()); QMainWindow::closeEvent(event); } void MainWindow::readSettings() { QSettings settings(&quot;MyCompany&quot;, &quot;MyApp&quot;); restoreGeometry(settings.value(&quot;myWidget/geometry&quot;).toByteArray()); restoreState(settings.value(&quot;myWidget/windowState&quot;).toByteArray()); }</pre> <p>If those functions are not available or cannot be used, then a workaround is to call <a href="qwidget.html#geometry-prop">setGeometry()</a> after <a href="qwidget.html#show">show()</a>. This has the two disadvantages that the widget appears at a wrong place for a millisecond (results in flashing) and that currently only every second window manager gets it right. A safer solution is to store both <a href="qwidget.html#pos-prop">pos()</a> and <a href="qwidget.html#size-prop">size()</a> and to restore the geometry using <a href="qwidget.html#size-prop">QWidget::resize</a>() and <a href="qwidget.html#pos-prop">move()</a> before calling <a href="qwidget.html#show">show()</a>, as demonstrated in the <a href="mainwindows-application.html">Application</a> example.</p> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td width="40%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td> <td width="20%" align="center"><a href="trademarks.html">Trademarks</a></td> <td width="40%" align="right"><div align="right">Qt 4.6.2</div></td> </tr></table></div></address></body> </html>
doc/html/qstyleoptiontoolbox-members.html
kobolabs/qt-everywhere-opensource-src-4.6.2
<?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"> <!-- qstyleoption.cpp --> <head> <title>Qt 4.6: List of All Members for QStyleOptionToolBox</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://qt.nokia.com/"><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="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">All&nbsp;Functions</font></a>&nbsp;&middot; <a href="overviews.html"><font color="#004faf">Overviews</font></a></td></tr></table><h1 class="title">List of All Members for QStyleOptionToolBox</h1> <p>This is the complete list of members for <a href="qstyleoptiontoolbox.html">QStyleOptionToolBox</a>, including inherited members.</p> <p><table class="propsummary" width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="45%" valign="top"><ul> <li><div class="fn">enum <b><a href="qstyleoption.html#OptionType-enum">OptionType</a></b></div></li> <li><div class="fn">enum <b><a href="qstyleoptiontoolbox.html#StyleOptionType-enum">StyleOptionType</a></b></div></li> <li><div class="fn">enum <b><a href="qstyleoptiontoolbox.html#StyleOptionVersion-enum">StyleOptionVersion</a></b></div></li> <li><div class="fn"><b><a href="qstyleoptiontoolbox.html#QStyleOptionToolBox">QStyleOptionToolBox</a></b> ()</div></li> <li><div class="fn"><b><a href="qstyleoptiontoolbox.html#QStyleOptionToolBox-2">QStyleOptionToolBox</a></b> ( const QStyleOptionToolBox &amp; )</div></li> <li><div class="fn"><b><a href="qstyleoption.html#direction-var">direction</a></b> : Qt::LayoutDirection</div></li> <li><div class="fn"><b><a href="qstyleoption.html#fontMetrics-var">fontMetrics</a></b> : QFontMetrics</div></li> <li><div class="fn"><b><a href="qstyleoptiontoolbox.html#icon-var">icon</a></b> : QIcon</div></li> </ul></td><td valign="top"><ul> <li><div class="fn"><b><a href="qstyleoption.html#initFrom">initFrom</a></b> ( const QWidget * )</div></li> <li><div class="fn"><b><a href="qstyleoption.html#palette-var">palette</a></b> : QPalette</div></li> <li><div class="fn"><b><a href="qstyleoption.html#rect-var">rect</a></b> : QRect</div></li> <li><div class="fn"><b><a href="qstyleoption.html#state-var">state</a></b> : QStyle::State</div></li> <li><div class="fn"><b><a href="qstyleoptiontoolbox.html#text-var">text</a></b> : QString</div></li> <li><div class="fn"><b><a href="qstyleoption.html#type-varx">type</a></b> : int</div></li> <li><div class="fn"><b><a href="qstyleoption.html#version-var">version</a></b> : int</div></li> <li><div class="fn"><b><a href="qstyleoption.html#operator-eq">operator=</a></b> ( const QStyleOption &amp; ) : QStyleOption &amp;</div></li> </ul> </td></tr> </table></p> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td width="40%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td> <td width="20%" align="center"><a href="trademarks.html">Trademarks</a></td> <td width="40%" align="right"><div align="right">Qt 4.6.2</div></td> </tr></table></div></address></body> </html>
profile3.html
mickaeldll/Aristote-Mobile-Tablet-Template
<body> <div class="views"> <div class="view view-main"> <div class="navbar"> <div class="navbar-inner"> <div class="left"> <a href="#" class="back"> <span class="ti-angle-left"></span> </a> </div> <div class="center sliding">@ALBENT</div> </div> </div> <div class="pages navbar-through toolbar-through"> <div data-page="profile" class="page"> <div class="page-content"> <div class="list-block media-list profile3"> <ul class="home"> <li> <div class="item-link item-content"> <div class="item-media"> <img width="80" height="80" style="border-radius:100%" src="https://randomuser.me/api/portraits/med/men/3.jpg"> </div> <div class="item-inner"> <div class="item-title-row"> <div class="item-title author profile3">Albert Bennett</div> </div> <div class="item-subtitle location profile3">Paris, France</div> </div> </div> <a href="#" class="button button-big button-round follow profile3">Follow</a> </li> </ul> </div> <div class="content-block"> <div class="row profile3"> <div class="col-33 profile3">851</div> <div class="col-33 profile3">8.4k</div> <div class="col-33 profile3">12.3k</div> </div> </div> <div class="content-block"> <div class="row profile stats"> <div class="col-33 profile stats">Post</div> <div class="col-33 profile stats">Followers</div> <div class="col-33 profile stats">Following</div> </div> </div> <div class="list-block media-list"> <ul class="profile3"> <li class="profile3"> <div class="item-link item-content"> <div class="item-media"> <img width="40" height="40" style="border-radius:100%" src="https://randomuser.me/api/portraits/med/men/3.jpg"> </div> <div class="item-inner"> <div class="item-title-row"> <div class="author">Albert Bennett</div> </div> <div class="time profile3"> 25m </div> </div> </div> </li> </ul> <div class="content-profile3"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum laoreet porttitor lectus cursus posuere. Aenean ligula ipsum, convallis sed mattis at, ullamcorper vitae leo. Nulla gravida eros ac auctor tempor. Nunc id diam ullamcorper, egestas ante lacinia, interdum quam. <div class="share-section"> <div class="row no-gutter"> <div class="col-50"> <div class="share"><i class="fa fa-share"></i> 12</div> </div> <div class="col-50"> <div class="right post-comment"><i class="fa fa-comment"></i> 29</div> <div class="right visual"><i class="fa fa-heart"></i> 54</div> </div> </div> </div> </div> <div class="list-block media-list"> <ul class="profile3"> <li class="profile3"> <div class="item-link item-content"> <div class="item-media"> <img width="40" height="40" style="border-radius:100%" src="https://randomuser.me/api/portraits/med/men/3.jpg"> </div> <div class="item-inner"> <div class="item-title-row"> <div class="author">Albert Bennett</div> </div> <div class="time profile3"> 32m </div> </div> </div> </li> </ul> <div class="content-profile3"> Maecenas feugiat lorem nec ligula porta, quis elementum justo porta. Mauris ut enim ut ex scelerisque cursus. Duis elementum enim non justo tristique, sed pretium mi blandit. Nam vel sem tincidunt, varius quam quis, facilisis massa. Aenean sodales felis elit, id lacinia elit vulputate vel. <div class="share-section"> <div class="row no-gutter"> <div class="col-50"> <div class="share"><i class="fa fa-share"></i> 16</div> </div> <div class="col-50"> <div class="right post-comment"><i class="fa fa-comment"></i> 34</div> <div class="right visual"><i class="fa fa-heart"></i> 25</div> </div> </div> </div> </div> </div> <div class="list-block media-list"> <ul class="profile3"> <li class="profile3"> <div class="item-link item-content"> <div class="item-media"> <img width="40" height="40" style="border-radius:100%" src="https://randomuser.me/api/portraits/med/men/3.jpg"> </div> <div class="item-inner"> <div class="item-title-row"> <div class="author">Albert Bennett</div> </div> <div class="time profile3"> 36m </div> </div> </div> </li> </ul> <div class="content-profile3"> <img class="profile" src="img/article4.jpg"> Curabitur facilisis lobortis nunc, ut varius velit molestie eu. Vestibulum id lorem et nibh dictum semper sit amet eu libero. Phasellus et sapien eget dui sodales iaculis quis et urna. Nam aliquam nisl pretium mauris pulvinar pellentesque. Aliquam eu ligula ut arcu feugiat pharetra sed sed massa. <div class="share-section"> <div class="row no-gutter"> <div class="col-50"> <div class="share"><i class="fa fa-share"></i> 35</div> </div> <div class="col-50"> <div class="right post-comment"><i class="fa fa-comment"></i> 13</div> <div class="right visual"><i class="fa fa-heart"></i> 8</div> </div> </div> </div> </div> </div> <div class="list-block media-list"> <ul class="profile3"> <li class="profile3"> <div class="item-link item-content"> <div class="item-media"> <img width="40" height="40" style="border-radius:100%" src="https://randomuser.me/api/portraits/med/men/3.jpg"> </div> <div class="item-inner"> <div class="item-title-row"> <div class="author">Albert Bennett</div> </div> <div class="time profile3"> 1h </div> </div> </div> </li> </ul> <div class="content-profile3"> <iframe width="100%" height="auto" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/214683796&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false&amp;visual=true"></iframe> Pellentesque posuere sem vel tortor tincidunt, quis mattis neque efficitur. Cras accumsan sagittis metus, sed condimentum nulla pulvinar nec. <div class="share-section"> <div class="row no-gutter"> <div class="col-50"> <div class="share"><i class="fa fa-share"></i> 36</div> </div> <div class="col-50"> <div class="right post-comment"><i class="fa fa-comment"></i> 5</div> <div class="right visual"><i class="fa fa-heart"></i> 17</div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </body>
tnk1/messages/forums_1344.html
erelsgl/erel-sites
<!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' lang='he' dir='rtl'> <head> <meta http-equiv='Content-Type' content='text/html; charset=windows-1255' /> <meta charset='windows-1255' /> <meta http-equiv='Content-Script-Type' content='text/javascript' /> <meta http-equiv='revisit-after' content='15 days' /> <title>&#039;öéåï åðçîúä&#039; - ùéø îàú àäåáä ÷ìééï (c)</title> <link rel='stylesheet' type='text/css' href='../../_script/klli.css' /> <link rel='stylesheet' type='text/css' href='../../tnk1/_themes/klli.css' /> <meta property='og:url' content='https://tora.us.fm/tnk1/messages/forums_1344.html'/> <meta name='author' content="àäåáä ÷ìééï" /> <meta name='receiver' content="" /> <meta name='jmQovc' content="tnk1/messages/forums_1344.html" /> <meta name='tvnit' content="" /> <link rel='canonical' href='https://tora.us.fm/tnk1/messages/forums_1344.html' /> </head> <!-- PHP Programming by Erel Segal-Halevi --> <body lang='he' dir='rtl' id = 'tnk1_messages_forums_1344' class='jyr '> <div class='pnim'> <script type='text/javascript' src='../../_script/vars.js'></script> <!--NiwutElyon0--> <div class='NiwutElyon'> <div class='NiwutElyon'><a class='link_to_homepage' href='../../tnk1/index.html'>øàùé</a>&gt;<a href='../../tnk1/sig/9.html'>ôéøåùéí àåîðåúééí</a>&gt;<a href='../../tnk1/sig/9jir.html'>ùéø úðëé</a>&gt;<a href='../../tnk1/sofrim/ahuvak/jirim.html'>ùéøé àäåáä ÷ìééï</a>&gt;</div> </div> <!--NiwutElyon1--> <h1 id='h1'>'öéåï åðçîúä' - ùéø îàú àäåáä ÷ìééï (c)</h1> <div id='idfields'> <p>÷åã: 'öéåï åðçîúä' - àäåáä ÷ìééï áúð"ê</p> <p>ñåâ: ùéø</p> <p>îàú: àäåáä ÷ìééï</p> <p>àì: </p> </div> <script type='text/javascript'>kotrt()</script> <div id='tokn'> <p>öÄéÌåÉï åÀðÆçÈîÈúÈäÌ.</p><p>îÅàÅú: àäåáä ÷ìééï ©</p><p>äÇùÌÑÈîÇéÄí ÷åÉøÀðÄéí àåÉøÈä<br />ìÀôÆúÇò, öÄéÌåÉï ðÅòåÉøÈä<br />ìÀàÈæÀðÆéäÈ îÄìÌåÉú ðÆçÈîÈä<br />ìÈäÆï ãÌåÉøåÉú îÀöÇôä.</p><p>ìÄéùÑåÌòÈä - éÈîÄéí ëÌÀìéìåÉú òåÉøÆâÆú<br />ééÄñÌåÌøÆéäÈ åÀçÇáÌåÌøåÉúÆéäÈ ëÌåÉàÆáÆú<br />áÌÀìÄáÌÈäÌ úÌÀçåÌùÑÇú òÄæÌÈáåÉï<br />äÇàÄí ä' çÈãÇì áÌÈäÌ ìÄùÑÀëÌÉï?</p><p>òÇúÌÈä, ìÀàÈæÀðÆéäÈ îÇðÀâÌÄéðÈä îÄúÀðÇâÌÆðÆú<br />àÆú âÌåÌôÈäÌ åÀðÄùÑÀîÈúÈäÌ îÀøåÉîÆîÆú<br />áÌÅéú äÇîÌÄ÷ÀãÌÈùÑ îÄúÀðåÉñÅñ áÌÇäÂãÈøåÉ<br />ëÌËìÌÈí ðåÉäÂøÄéí ìÇçÂæåÉú áÌÄ÷ÀãËåùÌÑÈúåÉ.</p><p>îÀìÈëÄéí îÆøçÂáÅé úÌÅáÅì éÄúÀ÷ÇáÌÀöåÌ<br />îÄôÌÀàÅø åÀäÈãÈø äÇîÌÄ÷ÀãÌÈùÑ éÄúÀôÌÇòÂìåÌ<br />àÇôÌÇéÄí àÇøÀöÈä, ìÀöÄéÌåÉï éÄùÑÀúÌÇçÂååÌ<br />òÂôÇø øÇâÀìÆéäÈ, áÌÄìÀùÑåÉðÈí éÄìÀçÂëåÌ.</p><p>äòøä: äùéø áäùøàú éùòéäå î"è [äôèøä ìôøùú: ò÷á ] [çåîù ãáøéí] <br /></p> <br /> <br /> </div><!--tokn--> <h2 id='tguvot'>úâåáåú</h2> <ul id='ultguvot'> <li></li> </ul><!--end--> <script type='text/javascript'>tguva(); txtit()</script> </div><!--pnim--> </body> </html>
smartly_package_01_htmlasset/src/org/smartly/packages/htmlasset/impl/htdoc/assets/css/baloons.css
smartfeeling/smartly
/* ============================================================================================================================ == BUBBLE WITH AN ISOCELES TRIANGLE ** ============================================================================================================================ */ /* THE SPEECH BUBBLE ------------------------------------------------------------------------------------------------------------------------------- */ .triangle-isosceles { position:relative; padding:15px; margin:1em 0 3em; color:#000; background:#f3961c; /* default background for browsers without gradient support */ /* css3 */ background:-webkit-gradient(linear, 0 0, 0 100%, from(#f9d835), to(#f3961c)); background:-moz-linear-gradient(#f9d835, #f3961c); background:-o-linear-gradient(#f9d835, #f3961c); background:linear-gradient(#f9d835, #f3961c); -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; } /* Variant : for top positioned triangle ------------------------------------------ */ .triangle-isosceles.top { background:-webkit-gradient(linear, 0 0, 0 100%, from(#f3961c), to(#f9d835)); background:-moz-linear-gradient(#f3961c, #f9d835); background:-o-linear-gradient(#f3961c, #f9d835); background:linear-gradient(#f3961c, #f9d835); } /* Variant : for left/right positioned triangle ------------------------------------------ */ .triangle-isosceles.left { margin-left:50px; background:#f3961c; } /* Variant : for right positioned triangle ------------------------------------------ */ .triangle-isosceles.right { margin-right:50px; background:#f3961c; } /* THE TRIANGLE ------------------------------------------------------------------------------------------------------------------------------- */ /* creates triangle */ .triangle-isosceles:after { content:""; position:absolute; bottom:-15px; /* value = - border-top-width - border-bottom-width */ left:50px; /* controls horizontal position */ border-width:15px 15px 0; /* vary these values to change the angle of the vertex */ border-style:solid; border-color:#f3961c transparent; /* reduce the damage in FF3.0 */ display:block; width:0; } /* Variant : top ------------------------------------------ */ .triangle-isosceles.top:after { top:-15px; /* value = - border-top-width - border-bottom-width */ right:50px; /* controls horizontal position */ bottom:auto; left:auto; border-width:0 15px 15px; /* vary these values to change the angle of the vertex */ border-color:#f3961c transparent; } /* Variant : left ------------------------------------------ */ .triangle-isosceles.left:after { top:16px; /* controls vertical position */ left:-50px; /* value = - border-left-width - border-right-width */ bottom:auto; border-width:10px 50px 10px 0; border-color:transparent #f3961c; } /* Variant : right ------------------------------------------ */ .triangle-isosceles.right:after { top:16px; /* controls vertical position */ right:-50px; /* value = - border-left-width - border-right-width */ bottom:auto; left:auto; border-width:10px 0 10px 50px; border-color:transparent #f3961c; } /* ============================================================================================================================ == BUBBLE WITH A RIGHT-ANGLED TRIANGLE ** ============================================================================================================================ */ /* THE SPEECH BUBBLE ------------------------------------------------------------------------------------------------------------------------------- */ .triangle-right { position:relative; padding:15px; margin:1em 0 3em; color:#fff; background:#075698; /* default background for browsers without gradient support */ /* css3 */ background:-webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(#075698)); background:-moz-linear-gradient(#2e88c4, #075698); background:-o-linear-gradient(#2e88c4, #075698); background:linear-gradient(#2e88c4, #075698); -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; } /* Variant : for top positioned triangle ------------------------------------------ */ .triangle-right.top { background:-webkit-gradient(linear, 0 0, 0 100%, from(#075698), to(#2e88c4)); background:-moz-linear-gradient(#075698, #2e88c4); background:-o-linear-gradient(#075698, #2e88c4); background:linear-gradient(#075698, #2e88c4); } /* Variant : for left positioned triangle ------------------------------------------ */ .triangle-right.left { margin-left:40px; background:#075698; } /* Variant : for right positioned triangle ------------------------------------------ */ .triangle-right.right { margin-right:40px; background:#075698; } /* THE TRIANGLE ------------------------------------------------------------------------------------------------------------------------------- */ .triangle-right:after { content:""; position:absolute; bottom:-20px; /* value = - border-top-width - border-bottom-width */ left:50px; /* controls horizontal position */ border-width:20px 0 0 20px; /* vary these values to change the angle of the vertex */ border-style:solid; border-color:#075698 transparent; /* reduce the damage in FF3.0 */ display:block; width:0; } /* Variant : top ------------------------------------------ */ .triangle-right.top:after { top:-20px; /* value = - border-top-width - border-bottom-width */ right:50px; /* controls horizontal position */ bottom:auto; left:auto; border-width:20px 20px 0 0; /* vary these values to change the angle of the vertex */ border-color:transparent #075698; } /* Variant : left ------------------------------------------ */ .triangle-right.left:after { top:16px; left:-40px; /* value = - border-left-width - border-right-width */ bottom:auto; border-width:15px 40px 0 0; /* vary these values to change the angle of the vertex */ border-color:transparent #075698; } /* Variant : right ------------------------------------------ */ .triangle-right.right:after { top:16px; right:-40px; /* value = - border-left-width - border-right-width */ bottom:auto; left:auto; border-width:15px 0 0 40px; /* vary these values to change the angle of the vertex */ border-color:transparent #075698 ; } /* ============================================================================================================================ == BUBBLE WITH AN OBTUSE TRIANGLE ** ============================================================================================================================ */ /* THE SPEECH BUBBLE ------------------------------------------------------------------------------------------------------------------------------- */ .triangle-obtuse { position:relative; padding:15px; margin:1em 0 3em; color:#fff; background:#c81e2b; /* css3 */ background:-webkit-gradient(linear, 0 0, 0 100%, from(#f04349), to(#c81e2b)); background:-moz-linear-gradient(#f04349, #c81e2b); background:-o-linear-gradient(#f04349, #c81e2b); background:linear-gradient(#f04349, #c81e2b); -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; } /* Variant : for top positioned triangle ------------------------------------------ */ .triangle-obtuse.top { background:-webkit-gradient(linear, 0 0, 0 100%, from(#c81e2b), to(#f04349)); background:-moz-linear-gradient(#c81e2b, #f04349); background:-o-linear-gradient(#c81e2b, #f04349); background:linear-gradient(#c81e2b, #f04349); } /* Variant : for left positioned triangle ------------------------------------------ */ .triangle-obtuse.left { margin-left:50px; background:#c81e2b; } /* Variant : for right positioned triangle ------------------------------------------ */ .triangle-obtuse.right { margin-right:50px; background:#c81e2b; } /* THE TRIANGLE ------------------------------------------------------------------------------------------------------------------------------- */ /* creates the wider right-angled triangle */ .triangle-obtuse:before { content:""; position:absolute; bottom:-20px; /* value = - border-top-width - border-bottom-width */ left:60px; /* controls horizontal position */ border:0; border-right-width:30px; /* vary this value to change the angle of the vertex */ border-bottom-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :after */ border-style:solid; border-color:transparent #c81e2b; /* reduce the damage in FF3.0 */ display:block; width:0; } /* creates the narrower right-angled triangle */ .triangle-obtuse:after { content:""; position:absolute; bottom:-20px; /* value = - border-top-width - border-bottom-width */ left:80px; /* value = (:before's left) + (:before's border-right/left-width) - (:after's border-right/left-width) */ border:0; border-right-width:10px; /* vary this value to change the angle of the vertex */ border-bottom-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :before */ border-style:solid; border-color:transparent #fff; /* reduce the damage in FF3.0 */ display:block; width:0; } /* Variant : top ------------------------------------------ */ .triangle-obtuse.top:before { top:-20px; /* value = - border-top-width - border-bottom-width */ bottom:auto; left:auto; right:60px; /* controls horizontal position */ border:0; border-left-width:30px; /* vary this value to change the width of the triangle */ border-top-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :after */ border-color:transparent #c81e2b; } .triangle-obtuse.top:after { top:-20px; /* value = - border-top-width - border-bottom-width */ bottom:auto; left:auto; right:80px; /* value = (:before's right) + (:before's border-right/left-width) - (:after's border-right/left-width) */ border-width:0; border-left-width:10px; /* vary this value to change the width of the triangle */ border-top-width:20px; /* vary this value to change the height of the triangle. must be equal to the corresponding value in :before */ border-color:transparent #fff; } /* Variant : left ------------------------------------------ */ .triangle-obtuse.left:before { top:15px; /* controls vertical position */ bottom:auto; left:-50px; /* value = - border-left-width - border-right-width */ border:0; border-bottom-width:30px; /* vary this value to change the height of the triangle */ border-left-width:50px; /* vary this value to change the width of the triangle. must be equal to the corresponding value in :after */ border-color:#c81e2b transparent; } .triangle-obtuse.left:after { top:35px; /* value = (:before's top) + (:before's border-top/bottom-width) - (:after's border-top/bottom-width) */ bottom:auto; left:-50px; /* value = - border-left-width - border-right-width */ border:0; border-bottom-width:10px; /* vary this value to change the height of the triangle */ border-left-width:50px; /* vary this value to change the width of the triangle. must be equal to the corresponding value in :before */ border-color:#fff transparent; } /* Variant : right ------------------------------------------ */ .triangle-obtuse.right:before { top:15px; /* controls vertical position */ bottom:auto; left:auto; right:-50px; /* value = - border-left-width - border-right-width */ border:0; border-bottom-width:30px; /* vary this value to change the height of the triangle */ border-right-width:50px; /* vary this value to change the width of the triangle. must be equal to the corresponding value in :after */ border-color:#c81e2b transparent; } .triangle-obtuse.right:after { top:35px; /* value = (:before's top) + (:before's border-top/bottom-width) - (:after's border-top/bottom-width) */ bottom:auto; right:-50px; /* value = - border-left-width - border-right-width */ left:auto; border:0; border-bottom-width:10px; /* vary this value to change the height of the triangle */ border-right-width:50px; /* vary this value to change the width of the triangle. must be equal to the corresponding value in :before */ border-color:#fff transparent; } /* ============================================================================================================================ == BUBBLE WITH A BORDER AND TRIANGLE ** ============================================================================================================================ */ /* THE SPEECH BUBBLE ------------------------------------------------------------------------------------------------------------------------------- */ .triangle-border { position:relative; padding:15px; margin:1em 0 3em; border:1px solid #5a8f00; color:#333; background:#fff; /* css3 */ -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; } /* Variant : for left positioned triangle ------------------------------------------ */ .triangle-border.left { margin-left:30px; } /* Variant : for right positioned triangle ------------------------------------------ */ .triangle-border.right { margin-right:30px; } /* THE TRIANGLE ------------------------------------------------------------------------------------------------------------------------------- */ .triangle-border:before { content:""; position:absolute; bottom:-20px; /* value = - border-top-width - border-bottom-width */ left:40px; /* controls horizontal position */ border-width:20px 20px 0; border-style:solid; border-color:#5a8f00 transparent; /* reduce the damage in FF3.0 */ display:block; width:0; } /* creates the smaller triangle */ .triangle-border:after { content:""; position:absolute; bottom:-13px; /* value = - border-top-width - border-bottom-width */ left:47px; /* value = (:before left) + (:before border-left) - (:after border-left) */ border-width:13px 13px 0; border-style:solid; border-color:#fff transparent; /* reduce the damage in FF3.0 */ display:block; width:0; } /* Variant : top ------------------------------------------ */ /* creates the larger triangle */ .triangle-border.top:before { top:-20px; /* value = - border-top-width - border-bottom-width */ bottom:auto; left:auto; right:40px; /* controls horizontal position */ border-width:0 20px 20px; } /* creates the smaller triangle */ .triangle-border.top:after { top:-13px; /* value = - border-top-width - border-bottom-width */ bottom:auto; left:auto; right:47px; /* value = (:before right) + (:before border-right) - (:after border-right) */ border-width:0 13px 13px; } /* Variant : left ------------------------------------------ */ /* creates the larger triangle */ .triangle-border.left:before { top:10px; /* controls vertical position */ bottom:auto; left:-30px; /* value = - border-left-width - border-right-width */ border-width:15px 30px 15px 0; border-color:transparent #5a8f00; } /* creates the smaller triangle */ .triangle-border.left:after { top:16px; /* value = (:before top) + (:before border-top) - (:after border-top) */ bottom:auto; left:-21px; /* value = - border-left-width - border-right-width */ border-width:9px 21px 9px 0; border-color:transparent #fff; } /* Variant : right ------------------------------------------ */ /* creates the larger triangle */ .triangle-border.right:before { top:10px; /* controls vertical position */ bottom:auto; left:auto; right:-30px; /* value = - border-left-width - border-right-width */ border-width:15px 0 15px 30px; border-color:transparent #5a8f00; } /* creates the smaller triangle */ .triangle-border.right:after { top:16px; /* value = (:before top) + (:before border-top) - (:after border-top) */ bottom:auto; left:auto; right:-21px; /* value = - border-left-width - border-right-width */ border-width:9px 0 9px 21px; border-color:transparent #fff; } /* ============================================================================================================================ == SPEECH BUBBLE ICON ** ============================================================================================================================ */ .example-commentheading { position:relative; padding:0; color:#b513af; } /* creates the rectangle */ .example-commentheading:before { content:""; position:absolute; top:9px; left:-25px; width:15px; height:10px; background:#b513af; /* css3 */ -webkit-border-radius:3px; -moz-border-radius:3px; border-radius:3px; } /* creates the triangle */ .example-commentheading:after { content:""; position:absolute; top:15px; left:-19px; border:4px solid transparent; border-left-color:#b513af; /* reduce the damage in FF3.0 */ display:block; width:0; } /* ============================================================================================================================ == BLOCKQUOTE WITH RIGHT-ANGLED TRIANGLE ** ============================================================================================================================ */ .example-right { position:relative; padding:15px 30px; margin:0; color:#fff; background:#5a8f00; /* default background for browsers without gradient support */ /* css3 */ background:-webkit-gradient(linear, 0 0, 0 100%, from(#b8db29), to(#5a8f00)); background:-moz-linear-gradient(#b8db29, #5a8f00); background:-o-linear-gradient(#b8db29, #5a8f00); background:linear-gradient(#b8db29, #5a8f00); -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; } /* display of quote author (alternatively use a class on the element following the blockquote) */ .example-right + p {margin:15px 0 2em 85px; font-style:italic;} /* creates the triangle */ .example-right:after { content:""; position:absolute; bottom:-50px; left:50px; border-width:0 20px 50px 0px; border-style:solid; border-color:transparent #5a8f00; /* reduce the damage in FF3.0 */ display:block; width:0; } /* ============================================================================================================================ == BLOCKQUOTE WITH OBTUSE TRIANGLE ** ============================================================================================================================ */ .example-obtuse { position:relative; padding:15px 30px; margin:0; color:#000; background:#f3961c; /* default background for browsers without gradient support */ /* css3 */ background:-webkit-gradient(linear, 0 0, 0 100%, from(#f9d835), to(#f3961c)); background:-moz-linear-gradient(#f9d835, #f3961c); background:-o-linear-gradient(#f9d835, #f3961c); background:linear-gradient(#f9d835, #f3961c); /* Using longhand to avoid inconsistencies between Safari 4 and Chrome 4 */ -webkit-border-top-left-radius:25px 50px; -webkit-border-top-right-radius:25px 50px; -webkit-border-bottom-right-radius:25px 50px; -webkit-border-bottom-left-radius:25px 50px; -moz-border-radius:25px / 50px; border-radius:25px / 50px; } /* display of quote author (alternatively use a class on the element following the blockquote) */ .example-obtuse + p {margin:10px 150px 2em 0; text-align:right; font-style:italic;} /* creates the larger triangle */ .example-obtuse:before { content:""; position:absolute; bottom:-30px; right:80px; border-width:0 0 30px 50px; border-style:solid; border-color:transparent #f3961c; /* reduce the damage in FF3.0 */ display:block; width:0; } /* creates the smaller triangle */ .example-obtuse:after { content:""; position:absolute; bottom:-30px; right:110px; border-width:0 0 30px 20px; border-style:solid; border-color:transparent #fff; /* reduce the damage in FF3.0 */ display:block; width:0; } /* ============================================================================================================================ == TWITTER ** ============================================================================================================================ */ .example-twitter { position:relative; padding:15px; margin:100px 0 0.5em; color:#333; background:#eee; /* css3 */ -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; } .example-twitter p {font-size:28px; line-height:1.25em;} /* this isn't necessary, just saves me having to edit the HTML of the demo */ .example-twitter:before { content:url(twitter-logo.gif); position:absolute; top:-60px; left:0; width:155px; height:36px; /* reduce the damage in FF3.0 */ display:block; } /* creates the triangle */ .example-twitter:after { content:""; position:absolute; top:-30px; left:50px; border:15px solid transparent; border-bottom-color:#eee; /* reduce the damage in FF3.0 */ display:block; width:0; } /* display of quote author (alternatively use a class on the element following the blockquote) */ .example-twitter + p {padding-left:15px; font:14px Arial, sans-serif;} /* ============================================================================================================================ == NUMBER ** ============================================================================================================================ */ .example-number { position:relative; width:200px; height:200px; margin:50px 0 200px; text-align:center; font:140px/200px Arial, sans-serif; color:#fff; background:#C91F2C; } /* creates the larger triangle */ .example-number:before { content:""; position:absolute; bottom:-140px; right:0; border-width:0 0 140px 140px; border-style:solid; border-color:transparent #C91F2C; } /* creates the larger triangle */ .example-number:after { content:""; position:absolute; bottom:-140px; right:85px; border-width:0 0 140px 55px; border-style:solid; border-color:transparent #fff; } /* ============================================================================================================================ == PINCHED SPEECH BUBBLE (more CSS3) ** ============================================================================================================================ */ .pinched { position:relative; padding:15px; margin:50px 0 3em; text-align:center; color:#fff; background:#333; /* css3 */ -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; } /* creates a rectangle of the colour wanted for the pointy bit */ .pinched:before { content:""; position:absolute; top:-20px; left:50%; width:100px; height:20px; margin:0 0 0 -50px; background:#333; } /* creates a rounded rectangle to cover part of the rectangle generated above */ .pinched:after { content:""; position:absolute; top:-20px; left:0; width:50%; height:20px; background:#fff; /* css3 */ -webkit-border-bottom-right-radius:15px; -moz-border-radius-bottomright:15px; border-bottom-right-radius:15px; } /* creates the other rounded rectangle */ .pinched > :first-child:before { content:""; position:absolute; top:-20px; right:0; width:50%; height:20px; background:#fff; /* css3 */ -webkit-border-bottom-left-radius:15px; -moz-border-radius-bottomleft:15px; border-bottom-left-radius:15px; } /* ============================================================================================================================ == OVAL SPEECH BUBBLE (more CSS3) ** ============================================================================================================================ */ .oval-speech { position:relative; width:270px; padding:50px 40px; margin:1em auto 50px; text-align:center; color:#fff; background:#5a8f00; /* css3 */ background:-webkit-gradient(linear, 0 0, 0 100%, from(#b8db29), to(#5a8f00)); background:-moz-linear-gradient(#b8db29, #5a8f00); background:-o-linear-gradient(#b8db29, #5a8f00); background:linear-gradient(#b8db29, #5a8f00); /* NOTES: -webkit-border-radius:220px 120px; // produces oval in safari 4 and chrome 4 -webkit-border-radius:220px / 120px; // produces oval in chrome 4 (again!) but not supported in safari 4 Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this */ -webkit-border-top-left-radius:220px 120px; -webkit-border-top-right-radius:220px 120px; -webkit-border-bottom-right-radius:220px 120px; -webkit-border-bottom-left-radius:220px 120px; -moz-border-radius:220px / 120px; border-radius:220px / 120px; } .oval-speech p {font-size:1.25em;} /* creates part of the curve */ .oval-speech:before { content:""; position:absolute; z-index:-1; bottom:-30px; right:50%; height:30px; border-right:60px solid #5a8f00; background:#5a8f00; /* need this for webkit - bug in handling of border-radius */ /* css3 */ -webkit-border-bottom-right-radius:80px 50px; -moz-border-radius-bottomright:80px 50px; border-bottom-right-radius:80px 50px; /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */ -webkit-transform:translate(0, -2px); -moz-transform:translate(0, -2px); -ms-transform:translate(0, -2px); -o-transform:translate(0, -2px); transform:translate(0, -2px); } /* creates part of the curved pointy bit */ .oval-speech:after { content:""; position:absolute; z-index:-1; bottom:-30px; right:50%; width:60px; height:30px; background:#fff; /* css3 */ -webkit-border-bottom-right-radius:40px 50px; -moz-border-radius-bottomright:40px 50px; border-bottom-right-radius:40px 50px; /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */ -webkit-transform:translate(-30px, -2px); -moz-transform:translate(-30px, -2px); -ms-transform:translate(-30px, -2px); -o-transform:translate(-30px, -2px); transform:translate(-30px, -2px); } /* ============================================================================================================================ == OVAL THOUGHT BUBBLE (more CSS3) ** ============================================================================================================================ */ .oval-thought { position:relative; width:270px; padding:50px 40px; margin:1em auto 80px; text-align:center; color:#fff; background:#075698; /* css3 */ background:-webkit-gradient(linear, 0 0, 0 100%, from(#2e88c4), to(#075698)); background:-moz-linear-gradient(#2e88c4, #075698); background:-o-linear-gradient(#2e88c4, #075698); background:linear-gradient(#2e88c4, #075698); /* NOTES: -webkit-border-radius:220px 120px; // produces oval in safari 4 and chrome 4 -webkit-border-radius:220px / 120px; // produces oval in chrome 4 (again!) but not supported in safari 4 Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this */ -webkit-border-top-left-radius:220px 120px; -webkit-border-top-right-radius:220px 120px; -webkit-border-bottom-right-radius:220px 120px; -webkit-border-bottom-left-radius:220px 120px; -moz-border-radius:220px / 120px; border-radius:220px / 120px; } .oval-thought p {font-size:1.25em;} /* creates the larger circle */ .oval-thought:before { content:""; position:absolute; bottom:-20px; left:50px; width:30px; height:30px; background:#075698; /* css3 */ -webkit-border-radius:30px; -moz-border-radius:30px; border-radius:30px; } /* creates the smaller circle */ .oval-thought:after { content:""; position:absolute; bottom:-30px; left:30px; width:15px; height:15px; background:#075698; /* css3 */ -webkit-border-radius:15px; -moz-border-radius:15px; border-radius:15px; } /* ============================================================================================================================ == OVAL SPEECH BUBBLE WITH QUOTATION MARKS (more CSS3) ** ============================================================================================================================ */ .oval-quotes { position:relative; width:400px; height:350px; margin:2em auto 10px; color:#000; background:#ffed26; /* css3 */ /* NOTES: -webkit-border-radius:Apx Bpx; // produces oval in safari 4 and chrome 4 -webkit-border-radius:Apx / Bpx; // produces oval in chrome 4 (again!) but not supported in safari 4 Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this */ -webkit-border-top-left-radius:400px 350px; -webkit-border-top-right-radius:400px 350px; -webkit-border-bottom-right-radius:400px 350px; -webkit-border-bottom-left-radius:400px 350px; -moz-border-radius:400px / 350px; border-radius:400px / 350px; } /* creates opening quotation mark */ .oval-quotes:before { content:"\201C"; position:absolute; z-index:1; top:20px; left:20px; font:80px/1 Georgia, serif; color:#ffed26; } /* creates closing quotation mark */ .oval-quotes:after { content:"\201D"; position:absolute; z-index:1; bottom:0; right:20px; font:80px/0.25 Georgia, serif; color:#ffed26; } .oval-quotes p { width:250px; height:250px; padding:50px 0 0; margin:0 auto; text-align:center; font-size:35px; } /* creates smaller curve */ .oval-quotes p:before { content:""; position:absolute; z-index:-1; bottom:-30px; right:55%; width:180px; /* wider than necessary to make it look a bit better in IE8 */ height:60px; background:#fff; /* need this for webkit - bug in handling of border-radius */ /* css3 */ -webkit-border-bottom-right-radius:40px 50px; -moz-border-radius-bottomright:40px 50px; border-bottom-right-radius:40px 50px; /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */ -webkit-transform:translate(-30px, -2px); -moz-transform:translate(-30px, -2px); -ms-transform:translate(-30px, -2px); -o-transform:translate(-30px, -2px); transform:translate(-30px, -2px); } /* creates larger curve */ .oval-quotes p:after { content:""; position:absolute; z-index:-2; bottom:-30px; right:25%; height:80px; border-right:200px solid #ffed26; background:#ffed26; /* need this for webkit - bug in handling of border-radius */ /* css3 */ -webkit-border-bottom-right-radius:200px 100px; -moz-border-radius-bottomright:200px 100px; border-bottom-right-radius:200px 100px; /* using translate to avoid undesired appearance in CSS2.1-capabable but CSS3-incapable browsers */ -webkit-transform:translate(0, -2px); -moz-transform:translate(0, -2px); -ms-transform:translate(0, -2px); -o-transform:translate(0, -2px); transform:translate(0, -2px); /* reduce the damage in FF3.0 */ display:block; width:0; } .oval-quotes + p { position:relative; /* part of the IE8 width compromise */ width:150px; margin:0 0 2em; font-size:18px; font-weight:bold; } /* ============================================================================================================================ == RECTANGLE-BORDER STYLE WITH CURVE ** ============================================================================================================================ */ .rectangle-speech-border { position:relative; padding:50px 15px; margin:1em 0 3em; border:10px solid #5a8f00; text-align:center; color:#333; background:#fff; /* css3 */ -webkit-border-radius:20px; -moz-border-radius:20px; border-radius:20px; } /* creates larger curve */ .rectangle-speech-border:before { content:""; position:absolute; z-index:10; bottom:-40px; left:50px; width:50px; height:30px; border-style:solid; border-width:0 10px 10px 0; border-color:#5a8f00; background:transparent; /* css3 */ -webkit-border-bottom-right-radius:80px 50px; -moz-border-radius-bottomright:80px 50px; border-bottom-right-radius:80px 50px; /* reduce the damage in FF3.0 */ display:block; } /* creates smaller curve */ .rectangle-speech-border:after { content:""; position:absolute; z-index:10; bottom:-40px; left:50px; width:20px; height:30px; border-style:solid; border-width:0 10px 10px 0; border-color:#5a8f00; background:transparent; /* css3 */ -webkit-border-bottom-right-radius:40px 50px; -moz-border-radius-bottomright:40px 50px; border-bottom-right-radius:40px 50px; /* reduce the damage in FF3.0 */ display:block; } /* creates a small circle to produce a rounded point where the two curves meet */ .rectangle-speech-border > :first-child:before { content:""; position:absolute; bottom:-40px; left:45px; width:10px; height:10px; background:#5a8f00; /* css3 */ -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; } /* creates a white rectangle to cover part of the oval border*/ .rectangle-speech-border > :first-child:after { content:""; position:absolute; bottom:-10px; left:76px; width:24px; height:15px; background:#fff; } /* ============================================================================================================================ == OVER SPEECH BUBBLE, EMPTY, WITH BORDER (more CSS3) ** ============================================================================================================================ */ .oval-speech-border { position:relative; padding:70px 30px; margin:1em auto 60px; border:10px solid #f3961c; text-align:center; color:#333; background:#fff; /* css3 */ /* NOTES: -webkit-border-radius:240px 140px; // produces oval in safari 4 and chrome 4 -webkit-border-radius:240px / 140px; // produces oval in chrome 4 (again!) but not supported in safari 4 Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this */ -webkit-border-top-left-radius:240px 140px; -webkit-border-top-right-radius:240px 140px; -webkit-border-bottom-right-radius:240px 140px; -webkit-border-bottom-left-radius:240px 140px; -moz-border-radius:240px / 140px; border-radius:240px / 140px; } /* creates larger curve */ .oval-speech-border:before { content:""; position:absolute; z-index:2; bottom:-40px; right:50%; width:50px; height:30px; border-style:solid; border-width:0 10px 10px 0; border-color:#f3961c; margin-right:-10px; background:transparent; /* css3 */ -webkit-border-bottom-right-radius:80px 50px; -moz-border-radius-bottomright:80px 50px; border-bottom-right-radius:80px 50px; /* reduce the damage in FF3.0 */ display:block; } /* creates smaller curve */ .oval-speech-border:after { content:""; position:absolute; z-index:2; bottom:-40px; right:50%; width:20px; height:31px; border-style:solid; border-width:0 10px 10px 0; border-color:#f3961c; margin-right:20px; background:transparent; /* css3 */ -webkit-border-bottom-right-radius:40px 50px; -moz-border-radius-bottomright:40px 50px; border-bottom-right-radius:40px 50px; /* reduce the damage in FF3.0 */ display:block; } /* creates a small circle to produce a rounded point where the two curves meet */ .oval-speech-border > :first-child:before { content:""; position:absolute; z-index:1; bottom:-40px; right:50%; width:10px; height:10px; margin-right:45px; background:#f3961c; /* css3 */ -webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; } /* creates a white rectangle to cover part of the oval border*/ .oval-speech-border > :first-child:after { content:""; position:absolute; z-index:1; bottom:-10px; right:50%; width:30px; height:15px; background:#fff; } /* ============================================================================================================================ == OVER THOUGHT BUBBLE, EMPTY, WITH BORDER (more CSS3) ** ============================================================================================================================ */ .oval-thought-border { position:relative; padding:70px 30px; margin:1em auto 80px; border:10px solid #c81e2b; text-align:center; color:#333; background:#fff; /* css3 */ /* NOTES: -webkit-border-radius:240px 140px; // produces oval in safari 4 and chrome 4 -webkit-border-radius:240px / 140px; // produces oval in chrome 4 (again!) but not supported in safari 4 Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this */ -webkit-border-top-left-radius:240px 140px; -webkit-border-top-right-radius:240px 140px; -webkit-border-bottom-right-radius:240px 140px; -webkit-border-bottom-left-radius:240px 140px; -moz-border-radius:240px / 140px; border-radius:240px / 140px; } /* creates the larger circle */ .oval-thought-border:before { content:""; position:absolute; z-index:10; bottom:-40px; right:100px; width:50px; height:50px; border:10px solid #c81e2b; background:#fff; /* css3 */ -webkit-border-radius:50px; -moz-border-radius:50px; border-radius:50px; /* reduce the damage in FF3.0 */ display:block; } /* creates the smaller circle */ .oval-thought-border:after { content:""; position:absolute; z-index:10; bottom:-60px; right:50px; width:25px; height:25px; border:10px solid #c81e2b; background:#fff; /* css3 */ -webkit-border-radius:25px; -moz-border-radius:25px; border-radius:25px; /* reduce the damage in FF3.0 */ display:block; }
rrNodeJS_rrBindings/nodeJS/lx64/v6/docs/html/interfaces/libnoderr2_datafiles._rrclientstats_day_data.html
h-schoenberger/RoyalRender-OpenExtensions
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>_rrClientStats_day_data | rrBindingsDocs</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../assets/css/main.css"> </head> <body> <header> <div class="tsd-page-toolbar"> <div class="container"> <div class="table-wrap"> <div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base=".."> <div class="field"> <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label> <input id="tsd-search-field" type="text" /> </div> <ul class="results"> <li class="state loading">Preparing search index...</li> <li class="state failure">The search index is not available</li> </ul> <a href="../index.html" class="title">rrBindingsDocs</a> </div> <div class="table-cell" id="tsd-widgets"> <div id="tsd-filter"> <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a> <div class="tsd-filter-group"> <div class="tsd-select" id="tsd-filter-visibility"> <span class="tsd-select-label">All</span> <ul class="tsd-select-list"> <li data-value="public">Public</li> <li data-value="protected">Public/Protected</li> <li data-value="private" class="selected">All</li> </ul> </div> <input type="checkbox" id="tsd-filter-inherited" checked /> <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label> <input type="checkbox" id="tsd-filter-only-exported" /> <label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label> </div> </div> <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a> </div> </div> </div> </div> <div class="tsd-page-title"> <div class="container"> <ul class="tsd-breadcrumb"> <li> <a href="../index.html">Globals</a> </li> <li> <a href="../modules/libnoderr2_datafiles.html">libNodeRR2_datafiles</a> </li> <li> <a href="libnoderr2_datafiles._rrclientstats_day_data.html">_rrClientStats_day_data</a> </li> </ul> <h1>Interface _rrClientStats_day_data</h1> </div> </div> </header> <div class="container container-main"> <div class="row"> <div class="col-8 col-content"> <section class="tsd-panel tsd-hierarchy"> <h3>Hierarchy</h3> <ul class="tsd-hierarchy"> <li> <span class="target">_rrClientStats_day_data</span> </li> </ul> </section> <section class="tsd-panel-group tsd-index-group"> <h2>Index</h2> <section class="tsd-panel tsd-index-panel"> <div class="tsd-index-content"> <section class="tsd-index-section tsd-is-not-exported"> <h3>Properties</h3> <ul class="tsd-index-list"> <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported"><a href="libnoderr2_datafiles._rrclientstats_day_data.html#cputotal" class="tsd-kind-icon">cpu<wbr>Total</a></li> <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported"><a href="libnoderr2_datafiles._rrclientstats_day_data.html#memtotal10mb" class="tsd-kind-icon">mem<wbr>Total10MB</a></li> <li class="tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported"><a href="libnoderr2_datafiles._rrclientstats_day_data.html#userloggedin" class="tsd-kind-icon">user<wbr>Logged<wbr>In</a></li> </ul> </section> <section class="tsd-index-section tsd-is-not-exported"> <h3>Methods</h3> <ul class="tsd-index-list"> <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-not-exported"><a href="libnoderr2_datafiles._rrclientstats_day_data.html#jobthread" class="tsd-kind-icon">job<wbr>Thread</a></li> <li class="tsd-kind-method tsd-parent-kind-interface tsd-is-not-exported"><a href="libnoderr2_datafiles._rrclientstats_day_data.html#jobthreadmax" class="tsd-kind-icon">job<wbr>Thread<wbr>Max</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-not-exported"> <h2>Properties</h2> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported"> <a name="cputotal" class="tsd-anchor"></a> <h3>cpu<wbr>Total</h3> <div class="tsd-signature tsd-kind-icon">cpu<wbr>Total<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/Novalis15/RoyalRender-OpenExtensions/blob/f77b7d8/rrNodeJS_rrBindings/nodeJS/lx64/v6/types.d.ts#L739">types.d.ts:739</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <dl class="tsd-comment-tags"> <dt>description</dt> <dd><p>CPU usage as percentage of the system. The value is exported as float (1.0 = 100%).</p> </dd> </dl> </div> </section> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported"> <a name="memtotal10mb" class="tsd-anchor"></a> <h3>mem<wbr>Total10MB</h3> <div class="tsd-signature tsd-kind-icon">mem<wbr>Total10MB<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/Novalis15/RoyalRender-OpenExtensions/blob/f77b7d8/rrNodeJS_rrBindings/nodeJS/lx64/v6/types.d.ts#L744">types.d.ts:744</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <dl class="tsd-comment-tags"> <dt>description</dt> <dd><p>Total memory usage in MiB, divided by 10.</p> </dd> </dl> </div> </section> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported"> <a name="userloggedin" class="tsd-anchor"></a> <h3>user<wbr>Logged<wbr>In</h3> <div class="tsd-signature tsd-kind-icon">user<wbr>Logged<wbr>In<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/Novalis15/RoyalRender-OpenExtensions/blob/f77b7d8/rrNodeJS_rrBindings/nodeJS/lx64/v6/types.d.ts#L734">types.d.ts:734</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <dl class="tsd-comment-tags"> <dt>description</dt> <dd><p>Was a user logged in?</p> </dd> </dl> </div> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-not-exported"> <h2>Methods</h2> <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-not-exported"> <a name="jobthread" class="tsd-anchor"></a> <h3>job<wbr>Thread</h3> <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon">job<wbr>Thread<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="libnoderr2_datafiles._rrclientstats_day_data_jobthread.html" class="tsd-signature-type">_rrClientStats_day_data_jobthread</a></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/Novalis15/RoyalRender-OpenExtensions/blob/f77b7d8/rrNodeJS_rrBindings/nodeJS/lx64/v6/types.d.ts#L749">types.d.ts:749</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> </div> <h4 class="tsd-returns-title">Returns <a href="libnoderr2_datafiles._rrclientstats_day_data_jobthread.html" class="tsd-signature-type">_rrClientStats_day_data_jobthread</a></h4> <p>The data of a job thread.</p> </li> </ul> </section> <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-not-exported"> <a name="jobthreadmax" class="tsd-anchor"></a> <h3>job<wbr>Thread<wbr>Max</h3> <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon">job<wbr>Thread<wbr>Max<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/Novalis15/RoyalRender-OpenExtensions/blob/f77b7d8/rrNodeJS_rrBindings/nodeJS/lx64/v6/types.d.ts#L754">types.d.ts:754</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> </div> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4> <p>The number of job threads the client was running in this time slot.</p> </li> </ul> </section> </section> </div> <div class="col-4 col-menu menu-sticky-wrap menu-highlight"> <nav class="tsd-navigation primary"> <ul> <li class="globals "> <a href="../index.html"><em>Globals</em></a> </li> <li class=" tsd-kind-module tsd-is-not-exported"> <a href="../modules/client.html">Client</a> </li> <li class=" tsd-kind-module tsd-is-not-exported"> <a href="../modules/job.html">Job</a> </li> <li class=" tsd-kind-module tsd-is-not-exported"> <a href="../modules/utils.html">Utils</a> </li> <li class=" tsd-kind-module tsd-is-not-exported"> <a href="../modules/libnoderr2.html">lib<wbr>NodeRR2</a> </li> <li class="current tsd-kind-module tsd-is-not-exported"> <a href="../modules/libnoderr2_datafiles.html">lib<wbr>NodeRR2_<wbr>datafiles</a> </li> <li class=" tsd-kind-module tsd-is-not-exported"> <a href="../modules/rrglobal.html">rr<wbr>Global</a> </li> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles.datafiles.html" class="tsd-kind-icon">Data<wbr>Files</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._clientgroup.html" class="tsd-kind-icon">_<wbr>Client<wbr>Group</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._clientgrouplist.html" class="tsd-kind-icon">_<wbr>Client<wbr>Group<wbr>List</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._dailystats_data.html" class="tsd-kind-icon">_<wbr>Daily<wbr>Stats_<wbr><wbr>Data</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._statsrendertime.html" class="tsd-kind-icon">_<wbr>Stats<wbr>Render<wbr>Time</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._statsrendertime_layer.html" class="tsd-kind-icon">_<wbr>Stats<wbr>Render<wbr>Time_<wbr>layer</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._statsrendertime_project.html" class="tsd-kind-icon">_<wbr>Stats<wbr>Render<wbr>Time_<wbr>project</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._framestat.html" class="tsd-kind-icon">_frame<wbr>Stat</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._framestatjob.html" class="tsd-kind-icon">_frame<wbr>Stat<wbr>Job</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._framestat_part.html" class="tsd-kind-icon">_frame<wbr>Stat_<wbr>part</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrclientstats_data.html" class="tsd-kind-icon">_rr<wbr>Client<wbr>Stats_<wbr><wbr>Data</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrclientstats_day.html" class="tsd-kind-icon">_rr<wbr>Client<wbr>Stats_<wbr>day</a> </li> </ul> <ul class="current"> <li class="current tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrclientstats_day_data.html" class="tsd-kind-icon">_rr<wbr>Client<wbr>Stats_<wbr>day_<wbr>data</a> <ul> <li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrclientstats_day_data.html#cputotal" class="tsd-kind-icon">cpu<wbr>Total</a> </li> <li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrclientstats_day_data.html#memtotal10mb" class="tsd-kind-icon">mem<wbr>Total10MB</a> </li> <li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrclientstats_day_data.html#userloggedin" class="tsd-kind-icon">user<wbr>Logged<wbr>In</a> </li> <li class=" tsd-kind-method tsd-parent-kind-interface tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrclientstats_day_data.html#jobthread" class="tsd-kind-icon">job<wbr>Thread</a> </li> <li class=" tsd-kind-method tsd-parent-kind-interface tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrclientstats_day_data.html#jobthreadmax" class="tsd-kind-icon">job<wbr>Thread<wbr>Max</a> </li> </ul> </li> </ul> <ul class="after-current"> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrclientstats_day_data_hourly.html" class="tsd-kind-icon">_rr<wbr>Client<wbr>Stats_<wbr>day_<wbr>data_<wbr>hourly</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrclientstats_day_data_hourly_jobthread.html" class="tsd-kind-icon">_rr<wbr>Client<wbr>Stats_<wbr>day_<wbr>data_<wbr>hourly_<wbr>jobthread</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrclientstats_day_data_jobthread.html" class="tsd-kind-icon">_rr<wbr>Client<wbr>Stats_<wbr>day_<wbr>data_<wbr>jobthread</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrstatssharedfunctions.html" class="tsd-kind-icon">_rr<wbr>Stats<wbr>Shared<wbr>Functions</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrsstatssavedata.html" class="tsd-kind-icon">_rrs<wbr>Stats<wbr>Save<wbr>Data</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrsstatssavedatals.html" class="tsd-kind-icon">_rrs<wbr>Stats<wbr>Save<wbr>DataLS</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._rrsstats_type.html" class="tsd-kind-icon">_rrs<wbr>Stats_<wbr>type</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._singlestat.html" class="tsd-kind-icon">_single<wbr>Stat</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-module tsd-is-not-exported"> <a href="libnoderr2_datafiles._singlestatday.html" class="tsd-kind-icon">_single<wbr>Stat<wbr>Day</a> </li> </ul> </nav> </div> </div> </div> <footer class="with-border-bottom"> <div class="container"> <h2>Legend</h2> <div class="tsd-legend-group"> <ul class="tsd-legend"> <li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li> <li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li> <li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li> <li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li> <li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li> <li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li> <li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li> <li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li> <li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li> <li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li> <li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li> <li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li> <li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li> </ul> </div> </div> </footer> <div class="container tsd-generator"> <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p> </div> <div class="overlay"></div> <script src="../assets/js/main.js"></script> <script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script> </body> </html>
makesite/modules/django/main/static/print.css
klen/makesite
@import url(zeta://z/z-print/z-print.css);
doc/html/functions_rela_0x68.html
kidaa/Awakening-Core3
<!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.3.1"/> <title>Core3: Class Members - Related Functions</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">Core3 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.3.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li class="current"><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="navrow3" class="tabs2"> <ul class="tablist"> <li><a href="functions.html"><span>All</span></a></li> <li><a href="functions_func.html"><span>Functions</span></a></li> <li><a href="functions_vars.html"><span>Variables</span></a></li> <li><a href="functions_type.html"><span>Typedefs</span></a></li> <li><a href="functions_enum.html"><span>Enumerations</span></a></li> <li><a href="functions_eval.html"><span>Enumerator</span></a></li> <li class="current"><a href="functions_rela.html"><span>Related&#160;Functions</span></a></li> </ul> </div> <div id="navrow4" class="tabs3"> <ul class="tablist"> <li><a href="functions_rela.html#index_a"><span>a</span></a></li> <li><a href="functions_rela_0x62.html#index_b"><span>b</span></a></li> <li><a href="functions_rela_0x63.html#index_c"><span>c</span></a></li> <li><a href="functions_rela_0x64.html#index_d"><span>d</span></a></li> <li><a href="functions_rela_0x65.html#index_e"><span>e</span></a></li> <li><a href="functions_rela_0x66.html#index_f"><span>f</span></a></li> <li><a href="functions_rela_0x67.html#index_g"><span>g</span></a></li> <li class="current"><a href="functions_rela_0x68.html#index_h"><span>h</span></a></li> <li><a href="functions_rela_0x69.html#index_i"><span>i</span></a></li> <li><a href="functions_rela_0x6a.html#index_j"><span>j</span></a></li> <li><a href="functions_rela_0x6c.html#index_l"><span>l</span></a></li> <li><a href="functions_rela_0x6d.html#index_m"><span>m</span></a></li> <li><a href="functions_rela_0x6e.html#index_n"><span>n</span></a></li> <li><a href="functions_rela_0x6f.html#index_o"><span>o</span></a></li> <li><a href="functions_rela_0x70.html#index_p"><span>p</span></a></li> <li><a href="functions_rela_0x72.html#index_r"><span>r</span></a></li> <li><a href="functions_rela_0x73.html#index_s"><span>s</span></a></li> <li><a href="functions_rela_0x74.html#index_t"><span>t</span></a></li> <li><a href="functions_rela_0x76.html#index_v"><span>v</span></a></li> <li><a href="functions_rela_0x77.html#index_w"><span>w</span></a></li> <li><a href="functions_rela_0x7a.html#index_z"><span>z</span></a></li> </ul> </div> </div><!-- top --> <div class="contents"> &#160; <h3><a class="anchor" id="index_h"></a>- h -</h3><ul> <li>HarvesterObject : <a class="el" href="classserver_1_1zone_1_1objects_1_1installation_1_1harvester_1_1_harvester_object_implementation.html#a5d7f84ed0cc51dfb32c707c6dce0a9cf">server::zone::objects::installation::harvester::HarvesterObjectImplementation</a> </li> <li>HarvesterObjectHelper : <a class="el" href="classserver_1_1zone_1_1objects_1_1installation_1_1harvester_1_1_harvester_object.html#a6c87a4f8d97d132359c1a8e46d8af848">server::zone::objects::installation::harvester::HarvesterObject</a> </li> <li>HerdGroup : <a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1aigroup_1_1_herd_group_implementation.html#a8af0e59018028102e5775b8f9d3c4dbd">server::zone::objects::creature::aigroup::HerdGroupImplementation</a> </li> <li>HerdGroupHelper : <a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1aigroup_1_1_herd_group.html#aab74ad8dd7cc0c8b5648130ff4755d73">server::zone::objects::creature::aigroup::HerdGroup</a> </li> <li>HospitalBuildingObject : <a class="el" href="classserver_1_1zone_1_1objects_1_1building_1_1hospital_1_1_hospital_building_object_implementation.html#acca68353f2808721365ab0a758ee2d0f">server::zone::objects::building::hospital::HospitalBuildingObjectImplementation</a> </li> <li>HospitalBuildingObjectHelper : <a class="el" href="classserver_1_1zone_1_1objects_1_1building_1_1hospital_1_1_hospital_building_object.html#a82ecf090d96c3fe24a7777a4bc85476f">server::zone::objects::building::hospital::HospitalBuildingObject</a> </li> <li>HuntingMissionObjective : <a class="el" href="classserver_1_1zone_1_1objects_1_1mission_1_1_hunting_mission_objective_implementation.html#ab28715e7b06bc0a3fd767339ea32d138">server::zone::objects::mission::HuntingMissionObjectiveImplementation</a> </li> <li>HuntingMissionObjectiveHelper : <a class="el" href="classserver_1_1zone_1_1objects_1_1mission_1_1_hunting_mission_objective.html#a5f0b78088628d9b95258ee10a2631a45">server::zone::objects::mission::HuntingMissionObjective</a> </li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Oct 15 2013 17:30:15 for Core3 by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.3.1 </small></address> </body> </html>
doc/com/tabuto/j2dgf/collision/package-frame.html
tabuto/j2dgf
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_20) on Sun Jan 09 14:54:30 CET 2011 --> <TITLE> com.tabuto.j2dgf.collision </TITLE> <META NAME="date" CONTENT="2011-01-09"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../../../com/tabuto/j2dgf/collision/package-summary.html" target="classFrame">com.tabuto.j2dgf.collision</A></FONT> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Classes</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="CollisionBoundDetector.html" title="class in com.tabuto.j2dgf.collision" target="classFrame">CollisionBoundDetector</A> <BR> <A HREF="CollisionDetector.html" title="class in com.tabuto.j2dgf.collision" target="classFrame">CollisionDetector</A> <BR> <A HREF="CollisionManager.html" title="class in com.tabuto.j2dgf.collision" target="classFrame">CollisionManager</A> <BR> <A HREF="TimeCollisionDetector.html" title="class in com.tabuto.j2dgf.collision" target="classFrame">TimeCollisionDetector</A></FONT></TD> </TR> </TABLE> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Enums</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="CollisionBoundDetector.CollisionsBoundType.html" title="enum in com.tabuto.j2dgf.collision" target="classFrame">CollisionBoundDetector.CollisionsBoundType</A> <BR> <A HREF="CollisionBoundDetector.Edges.html" title="enum in com.tabuto.j2dgf.collision" target="classFrame">CollisionBoundDetector.Edges</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
PlexByte.MoCap/PlexByte.MoCap.Security/Doc/html/_user_8cs.html
christiansax/MoCap
<!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.11"/> <title>My Project: D:/Users/ChristianB/Documents/_HF Infomatik/GitHub_Repos/MoCap/PlexByte.MoCap/PlexByte.MoCap.Security/User.cs File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">My Project </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.11 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Packages</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</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)"> </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"><a class="el" href="dir_275089585c7fc1b5fd5d7d42c69cb1da.html">D:</a></li><li class="navelem"><a class="el" href="dir_394ff8aee7398e78ab38baed8ef80807.html">Users</a></li><li class="navelem"><a class="el" href="dir_7c15673b751072b4d6601ecdc15e8b3c.html">ChristianB</a></li><li class="navelem"><a class="el" href="dir_9219dc1646f295b3b4b04cc167443e79.html">Documents</a></li><li class="navelem"><a class="el" href="dir_e5054f14bce38e8dffeead423b51db92.html">_HF Infomatik</a></li><li class="navelem"><a class="el" href="dir_00cb454e9b39517de2661f274703cdb2.html">GitHub_Repos</a></li><li class="navelem"><a class="el" href="dir_6929478e8b7d70a3a7df6e2338770fa3.html">MoCap</a></li><li class="navelem"><a class="el" href="dir_935b7872f27b1c83cc99efd40cffc3b8.html">PlexByte.MoCap</a></li><li class="navelem"><a class="el" href="dir_35b25a4e2ddacff9952ee820df3beef9.html">PlexByte.MoCap.Security</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#nested-classes">Classes</a> &#124; <a href="#namespaces">Namespaces</a> </div> <div class="headertitle"> <div class="title">User.cs File Reference</div> </div> </div><!--header--> <div class="contents"> <p><a href="_user_8cs_source.html">Go to the source code of this file.</a></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a> Classes</h2></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_plex_byte_1_1_mo_cap_1_1_security_1_1_user.html">PlexByte.MoCap.Security.User</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a> Namespaces</h2></td></tr> <tr class="memitem:namespace_plex_byte_1_1_mo_cap_1_1_security"><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespace_plex_byte_1_1_mo_cap_1_1_security.html">PlexByte.MoCap.Security</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.11 </small></address> </body> </html>
web/src/main/webapp/components/directives/statSettings/statSettings.html
sklintyg/statistik
<div class="stat-settings"> <div class="modal-header"> <button class="close" data-dismiss="modal" data-ng-click="cancel()">×</button> <h4 class="modal-title" message key="settings.modal.title" disable-highlight-words="true"></h4> </div> <div class="modal-body"> <div ng-repeat="setting in settings"> <h3> <span message key="{{::setting.title}}" disable-highlight-words="true"></span> <i uib-tooltip="{{::setting.help}}" class="fa fa-question-circle"></i> </h3> <stat-toggle class="settings-checkbox" value="setting.value" toggle-id="{{::setting.id}}"></stat-toggle> <span message key="{{::setting.description}}" disable-highlight-words="true"></span> </div> </div> <div class="modal-footer"> <button class="btn btn-success" id="settings-save-btn" data-ng-click="save()"> <i class="fa fa-spinner" data-ng-class="{'fa-spin': saving}" data-ng-show="saving"></i> Spara </button> <button class="btn btn-default" id="settings-close-btn" data-dismiss="modal" data-ng-click="cancel()">Avbryt</button> </div> </div>
tnk1/ktuv/mjly/sovlnut.html
erelsgl/erel-sites
<!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' lang='he' dir='rtl'> <head> <meta http-equiv='Content-Type' content='text/html; charset=windows-1255' /> <meta http-equiv='Content-Script-Type' content='text/javascript' /> <meta http-equiv='revisit-after' content='15 days' /> <title>îîùìú äöãé÷éí ìòåîú îîùìú äøùòéí</title> <link rel='stylesheet' type='text/css' href='../../../_script/klli.css' /> <link rel='stylesheet' type='text/css' href='../../../tnk1/_themes/klli.css' /> <meta property='og:url' content='http://tora.us.fm/tnk1/ktuv/mjly/sovlnut.html'/> <meta name='author' content="àøàì (äâää: éòì)" /> <meta name='receiver' content="ñâìåú îùìé" /> <meta name='jmQovc' content="tnk1/ktuv/mjly/sovlnut.html" /> <meta name='tvnit' content="" /> <link rel='canonical' href='http://tora.us.fm/tnk1/ktuv/mjly/sovlnut.html' /> </head> <!-- PHP Programming by Erel Segal - Rent a Brain http://tora.us.fm/rentabrain --> <body lang='he' dir='rtl' id = 'tnk1_ktuv_mjly_sovlnut' class='hbdlym1 '> <div class='pnim'> <script type='text/javascript' src='../../../_script/vars.js'></script> <!--NiwutElyon0--> <div class='NiwutElyon'> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tryg/index.html'>äàúø ìî÷åøéåú áîöååú</a>&gt;<a href='../../../tryg/sug/ecm_mqom.html'>îöååú ìôé î÷åí</a>&gt;<a href='../../../tryg/sug/rayon_arc_yjral.html'>àøõ éùøàì</a>&gt;<a href='../../../tnk1/msr/4mdina.html'>ðéäåì äîãéðä</a>&gt;<a href='../../../tnk1/msr/4axryut0.html'>àçøéåú äîðäéâéí ëìôé äòí</a>&gt;</div> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/sig/index.html'>ä÷ùø ìôøùä</a>&gt;<a href='../../../tnk1/sig/diff.html'>äáãìéí</a>&gt;<a href='../../../tnk1/sig/hvdlim1.html'>äáãìé ôñå÷éí</a>&gt;<a href='../../../tnk1/ktuv/mjly/zugotp.html'>æåâåú î÷áéìéí</a>&gt;</div> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/prqim/ktuv.html'>ëúåáéí</a>&gt;<a href='../../../tnk1/prqim/t28.htm'>îùìé</a>&gt;<a href='../../../tnk1/ktuv/mjly/sgulot.html'>ñâìåú îùìé ìôé ôø÷éí</a>&gt;<a href='../../../tnk1/ktuv/mjly/sgulot29.html'>ñâìåú îùìé ëè</a>&gt;</div> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/sig/kllljon.html'>äâãøåú îåùâéí</a>&gt;<a href='../../../tnk1/kma/qjrim1/cdiq.html'>öã÷=</a>&gt;<a href='../../../tnk1/ktuv/mjly/cdiq_w_rja.html'>öãé÷éí åøùòéí áñôø îùìé</a>&gt;</div> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tryg/index.html'>äàúø ìî÷åøéåú áîöååú</a>&gt;<a href='../../../tryg/sug/xwbt.html'>îöååú ìôé çééá</a>&gt;<a href='../../../tryg/sug/xwbt_hmlk.html'>çåáú äîìê</a>&gt;<a href='../../../tnk1/ktuv/mjly/mlkim.html'>ùìèåï áñôø îùìé</a>&gt;</div> </div> <!--NiwutElyon1--> <h1 id='h1'>îîùìú äöãé÷éí ìòåîú îîùìú äøùòéí</h1> <div id='idfields'> <p>÷åã: áéàåø:îùìé ëç28 áúð"ê</p> <p>ñåâ: äáãìéí1</p> <p>îàú: àøàì (äâää: éòì)</p> <p>àì: ñâìåú îùìé</p> </div> <script type='text/javascript'>kotrt()</script> <div id='tokn'> <p> <a class="psuq" href="/tnk1/prqim/t2828.htm#28">îùìé ëç28</a>: "<q class="psuq">áÌÀ÷åÌí øÀùÑÈòÄéí éÄñÌÈúÅø àÈãÈí, åÌáÀàÈáÀãÈí éÄøÀáÌåÌ öÇãÌÄé÷Äéí</q>"</p> <p> <strong>ëùäøùòéí ÷îéí</strong> åòåìéí ìùìèåï, ëì <strong>àãí</strong> ëùø <strong>îñúúø</strong> îôðéäí ëãé ùìà éôâòå áå;</p> <p>åëùäøùòéí <strong>àåáãéí</strong> ëáø àéï öåøê ìäñúúø, <strong>åäöãé÷éí îúøáéí</strong> áâìåé.</p> <h2>òöåú</h2> <p>"<q class="mfrj"><strong>á÷åí øùòéí ééñúø àãí</strong> ðàîø ãøê àæäøä, ëé ëùéøàä <strong>àãí ùäøùòéí</strong> îöìéçéí åäùòä îùç÷ú ìäí, <strong>ééñúø</strong> îôðéäí, åëì ùëï ùìà éúâøä áäí... åìëï öøéê ìäîúéï àì îôìúí, ùàæ <strong>äöãé÷éí</strong> îúâìéí <strong>åîúâãìéí</strong></q>" <small class="small"> (øî"ã åàìé)</small>.</p> <p>ëùäøùòéí áùìèåï, ëãàé ìäñúúø åìùîåø òì ôøåôééì ðîåê, åìçëåú áñáìðåú òã ùäøùòéí éôéìå àú òöîí, <a class="psuq" href="/tnk1/prqim/t2829.htm#16">îùìé ëè16</a>: "<q class="psuq">áÌÄøÀáåÉú øÀùÑÈòÄéí éÄøÀáÌÆä ôÌÈùÑÇò, åÀöÇãÌÄé÷Äéí áÌÀîÇôÌÇìÀúÌÈí éÄøÀàåÌ</q>" (<a href="/tnk1/ktuv/mjly/sovlnut.html">ôéøåè</a>).</p> <h2>ä÷áìåú</h2> <h3>ôéøåù ãîéåðé</h3> <p>îãåò áôñå÷ 28 "á÷åí øùòéí <strong>ééñúø</strong> àãí" åáôñå÷ 12 "á÷åí øùòéí <strong>éçåôù</strong> àãí"? -&#160;</p> <p>- áôñå÷ 28, "<q class="psuq">á÷åí øùòéí ééñúø àãí</q>" áúçéìú äôñå÷, ìëï äåà éëåì ìäñúúø.</p> <p>- áôñå÷ 12, "<q class="psuq">åá÷åí øùòéí éçåôù àãí</q>" áñåó äôñå÷, àéï ìå áøéøä àìà ìäúçôù, ëé úçéìú äôñå÷ (äöãé÷éí) øåàä àåúå <small>(<a href="/tnk1/ktuv/mjly/bqum_rjaim.html">òîåñ òæøéä îîåùá áéú âîìéàì</a>, "äáãìä áéï ôñå÷éí ãåîéí", ä'úùð"ç-ä'úùð"è)</small>. </p> <h2>ã÷åéåú</h2> <p>ééñúø <strong>àãí</strong> (ôñå÷ 28), éçåôù <strong>àãí</strong> (ôñå÷ 12) - ãâù òì "àãí": îé ùøåöä ìäéùàø àãí, ìùîåø òì öìí äàãí ùáå, çééá ìäñúø àå ìäúçôù îôðé äøùòéí.</p> <p>"<q class="mfrj">àí éù áôñå÷ àçã <strong>öãé÷éí åøùòéí åàãí</strong>, àæ <strong>äàãí</strong> äæä áôåèðöéàì ìäéåú öãé÷. äåà ìà øùò, åäåà òãééï ìà öãé÷ áôåòì, àæ àåìé äåà äáéðåðé ùì äúðéà. òì äáéðåðé ùì äúðéà ëúåá "ëåìé äàé åàåìé", ùàí úòáåã ÷ùä ëåìé äàé åàåìé úäéä öãé÷. æä âí îùäå éôä, àåìé æä àôéìå àñîëúà ìçæ"ì ùéù ùìùä ñåâéí – öãé÷éí, øùòéí åàãí</q>" <small>(<a href="http://www.malchuty.org/2011-01-20-01-37-36/2011-01-20-02-08-55/282--q-.html?start=4">îçøåæåú ôñå÷é öãé÷éí áîùìé / äøá âéðæáåøâ, ëá ùáè ä'úù"Òò</a>)</small>.</p> <p>òì-ãøê äãøù, <strong>á÷åí øùòéí ééñúø àãí</strong> - "<q class="mfrj">àôùø ìåîø ùëåìí òåñ÷éí á' <strong>ðñúø</strong> '. àéï îä ìòùåú òí ðâìä, ëé äîùôè äåà ìà îùôè òáøé, àæ çáì òì äæîï, àáì áðñúø úîéã àôùø ìòñå÷. àåìé áæëåú æä ùòåñ÷éí áðñúø àôùø ìñúåø àú äáðéï ùä÷éîå äøùòéí, ëé áìîåã äðñúø éù âí ëç ùì ñúéøä. ìëï äôñå÷ äøáéòé àåîø "á÷åí øùòéí éñúø àãí åáàáãí éøáå öãé÷éí"</q>" <small>(<a href="http://www.malchuty.org/2011-01-20-01-37-36/2011-01-20-02-08-55/282--q-.html?start=4">ùí</a>)</small>.</p> <div class="future"> <h2>ôñå÷éí ðåñôéí òì äúåòìú ùîáéàéí äöãé÷éí åòì äðæ÷éí ùâåøîéí äøùòéí </h2> <ul> <li> <a class="psuq" href="/tnk1/prqim/t2811.htm#11">îùìé éà11</a>: "<q class="psuq">áÌÀáÄøÀëÌÇú éÀùÑÈøÄéí úÌÈøåÌí ÷ÈøÆú, åÌáÀôÄé øÀùÑÈòÄéí úÌÅäÈøÅñ</q>" (<a href="/tnk1/ktuv/mjly/mj-11-11.html">ôéøåè</a>)</li> <li> <a class="psuq" href="/tnk1/prqim/t2810.htm#11">îùìé é11</a>: "<q class="psuq">îÀ÷åÉø çÇéÌÄéí ôÌÄé öÇãÌÄé÷, åÌôÄé øÀùÑÈòÄéí éÀëÇñÌÆä çÈîÈñ</q>" (<a href="/tnk1/ktuv/mjly/mj-10-11.html">ôéøåè</a>)</li> <li> <a class="psuq" href="/tnk1/prqim/t2810.htm#16">îùìé é16</a>: "<q class="psuq">ôÌÀòËìÌÇú öÇãÌÄé÷ ìÀçÇéÌÄéí, úÌÀáåÌàÇú øÈùÑÈò ìÀçÇèÌÈàú</q>" (<a href="/tnk1/mlbim/mj/mj-10-16-mlbim.html">ôéøåè</a>)</li> <li> <a class="psuq" href="/tnk1/prqim/t2812.htm#12">îùìé éá12</a>: "<q class="psuq">çÈîÇã øÈùÑÈò îÀöåÉã øÈòÄéí, åÀùÑÉøÆùÑ öÇãÌÄé÷Äéí éÄúÌÅï</q>" (<a href="/tnk1/ktuv/mjly/mj-12-12.html">ôéøåè</a>) </li> <li> <a class="psuq" href="/tnk1/prqim/t2813.htm#5">îùìé éâ5</a>: "<q class="psuq">ãÌÀáÇø ùÑÆ÷Æø éÄùÒÀðÈà öÇãÌÄé÷, åÀøÈùÑÈò éÇáÀàÄéùÑ åÀéÇçÀôÌÄéø</q>" (<a href="/tnk1/ktuv/mjly/mj-13-0506.html">ôéøåè</a>)</li> <li> <a class="psuq" href="/tnk1/prqim/t2829.htm#7">îùìé ëè7</a>: "<q class="psuq">éÉãÅòÇ öÇãÌÄé÷ ãÌÄéï ãÌÇìÌÄéí, øÈùÑÈò ìÉà éÈáÄéï ãÌÈòÇú</q>" (<a href="/tnk1/ktuv/mjly/mj-29-07.html">ôéøåè</a>)</li></ul></div> </div><!--tokn--> <h2 id='tguvot'>úâåáåú</h2> <ul id='ultguvot'> </ul><!--end--> <script type='text/javascript'>tguva(); txtit()</script> </div><!--pnim--> </body> </html>
doc/html/class_saber_polearm_spin_attack3_command-members.html
kidaa/Awakening-Core3
<!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.3.1"/> <title>Core3: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">Core3 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.3.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</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">SaberPolearmSpinAttack3Command Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="class_saber_polearm_spin_attack3_command.html">SaberPolearmSpinAttack3Command</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a250b9f30d705ff9db8763145cd3c64c1">accuracyBonus</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a556964805e24a7436413b2f9008f0436">accuracySkillMod</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#aebfcf5f8f1ea9d882f7a7a87907ec4ba">actionCostMultiplier</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#aff3d5c708f2d342169ad3466391c3910">addDotEffect</a>(DotEffect dotEffect)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aeba5f30530fcb890302b3bb8029197f6">addInvalidLocomotion</a>(int l)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a0ab37b0c86817d413a421d7a0304f338">addSkillMod</a>(const String &amp;skillMod, const int value)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#af63b5030420b48d98a32de247b0f55dc">addStateEffect</a>(StateEffect stateEffect)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a87de733e49a13e2c859a1849db15cf67">addToCombatQueue</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a6b6c65d46c961ff4c0484c4f20ff1611">addToQueue</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ad36956897e8bfdc03caacd55ccc539a4">admin</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#abe8137dd3b82e8caee52b84263c90660">animationCRC</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a34a08db9d8525d4ee1fd0389db57b0b7">applyEffect</a>(CreatureObject *creature, uint8 effectType, uint32 mod)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#ac948865b2164bb8ffd1d46b6c2981d8f">areaAction</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#abd3c8dc3b25cb8644fa9f85a507a0cd4">areaRange</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a2a6ca76131e03a59ec15db78afbf2c9b">attackType</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a0a634d994fe3d1b8436a0e11cc9c0ab1">blindStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a7866b9ae1d44b09e1f3fbf0bbc3be536">characterAbility</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a1045fbe728bfd6c600e2e214ebb21406">checkInvalidLocomotions</a>(CreatureObject *creature)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a4f92f6905053c95feee0a3b18ef0adc1">checkStateMask</a>(CreatureObject *creature)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#acecfccfbb6b84b8a3f71cbadf67e40d5">CombatQueueCommand</a>(const String &amp;name, ZoneProcessServer *server)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a774f066eaafb8019d58b243b4d14688d">combatSpam</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#acbede18884c11e5a07a988ff02e5a10a">commandGroup</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a9164efa493abe6d3be46caa537301cf2">coneAction</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a4b7efb149d918f7c64948c9d4557d77c">coneAngle</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a8afc74cb9c22b3168734a8309a160e2e">cooldown</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#adb86ea0dba0fd52e289fc90b4bcf5471">damage</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a0185bde574f3f7b47e54957a706c7c59">damageMultiplier</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a62c2c8136a98656cc72f19fd91e4c9e4">defaultPriority</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a96f636391fb548b521dd8661b43c8ad5">defaultTime</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ae9fc7de3fa8f13f36b54511bb3313d87">disabled</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a4ec4557da87f7f2f2c89635c0b4b2441">dizzyStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ad6028342db12dfd0ed5bc4b793fe3e5c">doCombatAction</a>(CreatureObject *creature, const uint64 &amp;target, const UnicodeString &amp;arguments=&quot;&quot;, ManagedReference&lt; WeaponObject * &gt; weapon=NULL)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_saber_polearm_spin_attack3_command.html#ac31a8e64d2823557e2136aa027e105d6">doQueueCommand</a>(CreatureObject *creature, const uint64 &amp;target, const UnicodeString &amp;arguments)</td><td class="entry"><a class="el" href="class_saber_polearm_spin_attack3_command.html">SaberPolearmSpinAttack3Command</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a86b12060d8a942ac7a7319eb8331f3ce">dotDamageOfHit</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a470762476c47012ef35d666c14e9d8bf">dotDuration</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a4cc595dc8dbb9abf5c77b3b12ea007af">dotEffects</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a572592c425cb5ea0ea750ffa81aeda5b">dotPool</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a67033de394b9bd640061e2b41221aa16">dotPotency</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a49cfcb02c46eae3051fa3a0d0ede5270">dotStrength</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a648018c562cb769d9f8b7b57ce737024">dotType</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#aeb6be6f3d11def633c53e3777d7235d3">durationStateTime</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ad9ca6dde8c24b7c19d3f199427bc2c83">effectString</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a6f5bcbba6c1e3605ffd54c57297dd418">forceCost</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a62f22e1698a233b4a55cb3b93b2b7920">forceCostMultiplier</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ac6bcbc2c480605f1d41ebeb7b054946a">FRONT</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a8434ab9cdcb60a0e0c3b79d99ea8c9f3">GENERALERROR</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#af488f1ef0216b9984174a63ca2436700">getAccuracyBonus</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a32200dd89e456f459d6cc1cd7c62d8d7">getAccuracySkillMod</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a30781941b6e9bea799df27485964957b">getActionCostMultiplier</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#af375638948e00cbc79b3a5e96eb931e0">getAnimationCRC</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a5b6ba4d1dc286e5f4cac4ff62c42d692">getAreaRange</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#afd9e91bfd64d696454714ad772d6ee41">getAttackType</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a4f07aa43c56a48d7defb93952687c96a">getBlindChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ac9fb813e49fdd81f0f8cf83f577184f1">getCharacterAbility</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#adb423dfd634dbdc9b4ffc66782ca30fe">getCombatSpam</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a4d02e00013ce91296028de2f50069329">getCommandDuration</a>(CreatureObject *object, const UnicodeString &amp;arguments)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#abf81d98b541e7c08374f968aaad9cde3">getCommandGroup</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ad6feeaa1266e65dc15a4743c40977049">getConeAngle</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a2ea917d7d865b4548b9ec7595bc89433">getDamage</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a10bf1cd77bead7f26db42c394cfbb07a">getDamageMultiplier</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a957c26acde17ed68557a9e29c2dcede7">getDefaultPriority</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ad3fce071e9617b34a0b30d7a0a240f1c">getDefaultTime</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a51734a65ba9b8e97a1d080ae635e3f91">getDizzyChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ab01e59f14e10a80d6ab864037e054538">getDotDuration</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a67de6315073b542771051a30e8b28ad4">getDotEffect</a>(uint64 type)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a8fe4c9d4d1cfe2efe86da0027a65ccfe">getDotEffects</a>()</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a944c691c15494fe1c2827baada51c174">getDotPool</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#adb04e305d321710774a941f6f5d75a5b">getDotPotency</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a8c74a9ae1128d558724cb6fabe8baf1f">getDotStrength</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a13c713f692d4d3ba456be820cd9d66cf">getDotType</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a8532824cdd8a8eb7ae2e5db98be49959">getDurationStateTime</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a2b1c4b59c5610c3a254c65c38f5356a5">getEffectString</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#acb71e34f634cb924b29cc76f08bb15b1">getForceCost</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a365025199b34c773a088922505fc5ac7">getForceCostMultiplier</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#ab7e328df957585d5d87a135a54f192e6">getHealthCostMultiplier</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a68aabaad090901af262bbc7991189b50">getIntimidateChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a63f93024901e84300181a9fe1dd2400b">getKnockdownChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#af3daeb2405e33fe3f260f868de072ed8">getMaxRange</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a6cd0e77a1159bcc834e008f2182f645b">getMindCostMultiplier</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#afbd63086121372382472a0e9d3c47f8a">getNameCRC</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a183f6bef5abfd43f0a633c1619c871fb">getNextAttackDelayChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a9e019db89d5d353d33cd0d27e7dc04b0">getPoolsToDamage</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a15e83fe46377c4adf517415ea6553cf4">getPostureDownChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a95e1b87fe34f75a0859a6944d3e594f7">getPostureUpChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aed9455620c42f01ecffefac95f4c29a4">getQueueCommandName</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a740e5cf5bcfd184988b5230d164c32ca">getRange</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ae542b5f30c92a074f2796c24dfa46a86">getSkillMod</a>(int index, String &amp;skillMod)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a1a1b2e9c04459e9597469a5ba58a4ab7">getSkillModSize</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#af20632cbf8546613578fcebceeb07540">getSpeed</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a8317df999ba4ee5a32ef5972c1ea3e49">getSpeedMultiplier</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a2a5232d2ce31c2a7283ddecc56cba9e0">getStateEffect</a>(uint64 type)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ab6b54036a10ff20c1bfcf1ed0f5c41f1">getStateEffects</a>()</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ad13200cc9d86c468a117e7aab06484b2">getStateMask</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a0140ece6a43b8d0a91952db471dbbe61">getStunChance</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ae0625a0b2ec52ec71fa1aa388bbd3bb1">getSyntax</a>() const </td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ade1ed7f353e7d2fc2df98eea29e0c3e3">getTargetType</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a14bece1eae9d2b55280c461ebebd0744">getTrails</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#acc4eccd9e29e787e37a529f2f53b779c">handleBuff</a>(SceneObject *creature, ManagedObject *object, int64 param)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a22498e69e3651f0fbbaa37e8e8daab44">hasCombatSpam</a>()</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a34c0a077c8c3ae64ec23d0c7abad781d">healthCostMultiplier</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a4ccdfb3dc7dffe69e4160ca2544af916">IMMEDIATE</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a9d22318a492ca394a7c062505838377f">INSUFFICIENTHAM</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aec92ef3c13daec29232fd1f14f5df89b">INSUFFICIENTPERMISSION</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a0cc9682be2f14d1386fcaaa5c892d5f9">intimidateStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a970aa46aab0a10828fe45aa846b79a40">invalidLocomotion</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a5349733d0c0ec84bd0d2bf654f81c72f">INVALIDLOCOMOTION</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a0a4a84c90d5a9c3a80d52386c8d0c46d">INVALIDPARAMETERS</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a7c214ae0c5729e3edc6554121ccb0f61">INVALIDSTATE</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a46ec04d345ff426cde0bdb8dd63397a6">INVALIDSYNTAX</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a1cb8815a7624dd8bd181950d7a748bf1">INVALIDTARGET</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#afc459f7595d765766944b16a13966ab3">INVALIDWEAPON</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a6ef535a6282fa8510b5253ab55bd2c1f">isAreaAction</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a0e8d189cd1c1290025eeabfcbcb3694f">isCombatCommand</a>()</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#afa5496c400c3dcc69388326684258d40">isConeAction</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a86676d71f0c5d03c14017269e5de78eb">isDisabled</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a73b3af59d6587e8070e503deff86db5e">isDotDamageOfHit</a>() const </td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#aadafbdef80f38eee66ab0d97d4338848">isSquadLeaderCommand</a>()</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a36e282da7a7fc6e0e46376e29ccd240d">isWearingArmor</a>(CreatureObject *creo)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a7a3d3d3f2cbc8284b46cf02d57804516">knockdownStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a48c2623b54868324f8d3817029f0b1cf">maxRangeToTarget</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#aedc5f15c4138de629d15e54df52f9788">mindCostMultiplier</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a0d8e1b60e830d42ee881e168d3fd0a62">name</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a52d98f8441d55ad98b219c1a250385d3">nameCRC</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#afa16ecc0a418b89d99450e49736fb7b3">nextAttackDelayChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a870493a775b4dd5c77db7364feba8238">NOJEDIARMOR</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a61cf7f5c522494a6bd50328efd57ee1a">NOKNEELING</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a78116a3e3454208ad791c5847dd88145">NOPRONE</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#af62d1c3e32b5ced7ac93eedfa35843cf">NORMAL</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ab46aed30eadb11cc83b5dabbe8c77ebb">onComplete</a>(uint32 actioncntr, CreatureObject *creature, float commandDuration)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ab743f9da4076acd498cac33bd7d0d87f">onFail</a>(uint32 actioncntr, CreatureObject *creature, uint32 errorNumber)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a50137363429e07e6916e374e7b09348c">onLocomotionFail</a>(CreatureObject *creature, uint32 actioncntr)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aaccbac3683d65967b188a2cb02e27266">onStateFail</a>(CreatureObject *creature, uint32 actioncntr)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a77355f2bed612a5304644cc0df4bb929">poolsToDamage</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a455a3511812b55e431af38ad4d746309">postureDownStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a82e12701eaf97c3aecb75dfd727f3d00">postureUpStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aee543b3c03c6499283504b04241e46a2">QueueCommand</a>(const String &amp;skillname, ZoneProcessServer *serv)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#adef8cfd693f19f158716eb399057f6b1">range</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a04074ecdb676b92738efdbd908b9c8a8">requiresAdmin</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_saber_polearm_spin_attack3_command.html#ad603d07daacb122152f88ec0b88eb42c">SaberPolearmSpinAttack3Command</a>(const String &amp;name, ZoneProcessServer *server)</td><td class="entry"><a class="el" href="class_saber_polearm_spin_attack3_command.html">SaberPolearmSpinAttack3Command</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aab0d7c550040a4e8811e270c57ff90a4">server</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a0cd7f00e15e54fbff9ce37bf28f0ecd6">setAccuracyBonus</a>(int accuracyBonus)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a8c5c0904ce4525d5b1534b4a51e06fdb">setAccuracySkillMod</a>(String acc)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#aec525d3d1c89ecb0ed51b326ee764f77">setActionCostMultiplier</a>(float f)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a94435de52a05b3b5d519c9c2f6764a89">setAddToCombatQueue</a>(bool state)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a538e5409f7f033b670e844f5c11503aa">setAddToCombatQueue</a>(int state)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a139d71703b06fdf6bdc807da10a0969e">setAnimationCRC</a>(uint32 animationCRC)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a84593385278db7564c0e01ac80cdcd3c">setAreaAction</a>(bool b)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a6249c26d0f67995a550ecfbc89de6a01">setAreaRange</a>(int i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#abfb9fdc1d857d13dd9a7345c01f8c7a1">setAttackType</a>(uint8 attackType)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a80d93dc11a17a0e7ed99586039d79599">setBlindStateChance</a>(int blindStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ac7e00b0996c74ef9d533cca4e14d3406">setCharacterAbility</a>(const String &amp;ability)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#aa13b67fe6f530913d0ea0c0f6ddbe03d">setCombatSpam</a>(String combatSpam)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a16c82a11bd6db08f30adb40799ce46ff">setCommandGroup</a>(int val)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a994173fd6b25d46cc2462f18e99254a2">setConeAction</a>(bool b)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#abf8a2b6189d53fe40686ca461e3b2c3f">setConeAngle</a>(int i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ade8869123366143c5620446c44d3b7ff">setDamage</a>(float dm)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a96069eb0d6e692062fc3b6d6756cfeda">setDamageMultiplier</a>(float damageMultiplier)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a970ef46896ca1c95dfd9fbc0f4e66430">setDefaultPriority</a>(const String &amp;priority)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a39c088fb8808327a68b835178386ee37">setDefaultPriority</a>(const int priority)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aae1bacdabf0deed3e8602f1c9a16f3ca">setDefaultTime</a>(float time)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ab2da68a4cd081031f996b97384bdefe0">setDisabled</a>(bool state)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aefbacbb8e4e61020f774828c66246f88">setDisabled</a>(int state)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a2813de9ff98e9acdc30af98bce81d980">setDizzyStateChance</a>(int dizzyStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ad881e2f1bbb882fc0a16ed92ae37dfb8">setDotDamageOfHit</a>(bool b)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#ac6b8337049ce40a7f08a0b46ea90ccb7">setDotDuration</a>(uint32 i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a76ba9bb782dca9e04028e09ce740979a">setDotEffects</a>(VectorMap&lt; uint64, DotEffect &gt; dotEffects)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a1a65f02b1986deb2d3b1798c37363562">setDotPool</a>(uint8 c)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a96f83535da0bc2993f7b7e79190be039">setDotPotency</a>(float f)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#ac904a576ffb39da4d2cdd3a5bc6f5a02">setDotStrength</a>(uint32 i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ac24b88c7293655f1807b237ec93aacbd">setDotType</a>(uint64 l)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a3f13ca3e7eb630166fec6f7d238b13c2">setDurationStateTime</a>(int i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a6a00277a7ab6735cb5484bbb8e760949">setEffectString</a>(String s)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a32ce04675697f6c601d97be57e1e39f1">setForceCost</a>(float f)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a7cbd19461c331f007db3254329ed5e52">setForceCostMultiplier</a>(float f)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a603012079ace1eb56713c7f55e58a5da">setHealthCostMultiplier</a>(float f)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#af99e322b2663acf92dc64876675b63f3">setIntimidateStateChance</a>(int intimidateStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a77282bd031eae09182e700ad4e2748ed">setInvalidLocomotions</a>(const String &amp;lStr)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a08ea3ed31c57393ac89bcc687b671eb4">setKnockdownStateChance</a>(int knockdownStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a405e02cfa947f370c3b7f31601e0d1b1">setMaxRange</a>(float r)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#aee667720cd3092eff9204d262360aa2c">setMindCostMultiplier</a>(float f)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a7fac530a0ce1817aea19b7f895799b10">setNextAttackDelayChance</a>(int i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a3ca36540f218bae77d8a2df95eabc41e">setPoolsToDamage</a>(int poolsToDamage)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a02527b44fa6a77be84069b0d54b2af10">setPostureDownStateChance</a>(int postureDownStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a252c7a7f68596e66ee0536349af87905">setPostureUpStateChance</a>(int postureUpStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#af539aea8b9740a71d90086763e1b2c0d">setRange</a>(int i)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a6b854326f51f8c3af577422e2cb45365">setSpeed</a>(float speedd)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a3adab009947ce273525938e85bbb09a5">setSpeedMultiplier</a>(float speedMultiplier)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a7dcd5267cd33e17ac6182595ff904eba">setStateEffects</a>(VectorMap&lt; uint64, StateEffect &gt; stateEffects)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a38aa3c7e82142f193481c2b87d87e2fd">setStateMask</a>(uint64 mask)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a08a193b328b03a1a3d510b95f40b538c">setStunStateChance</a>(int stunStateChance)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a1e4d815d23394279258da799d7d82233">setTargetType</a>(int num)</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#aadc17bf73732ba01c724be6b24a2049a">setTrails</a>(uint8 trails)</td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ab1b70afc3b44821c44eb4ee4538c47bd">skillMods</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a10ecb71b0ff0420c132f2d0ac18e1bbd">speed</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a47a1f6e40b1a3d091ea05e790c668ec0">speedMultiplier</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#ab0d1f4c7584c20ffba9dfd47cd230763">stateEffects</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a875d5d990878fbc3a7517d422000f1a2">stateMask</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_combat_queue_command.html#a8a107ca895e7b2043006577d925a46c9">stateSpam</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#ab509b0514e0acbba882abf8bab329b78">stunStateChance</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#afd765e7bc64680a59d6628ba9151c83c">SUCCESS</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#a368162c56262fe72b81590f174e145ae">targetType</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#ae0519be3ffdbfcc7c876d1429dffe511">TOOFAR</a></td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_combat_queue_command.html#a7039e32c1bd23b9a3b5ae06fb0c0002b">trails</a></td><td class="entry"><a class="el" href="class_combat_queue_command.html">CombatQueueCommand</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html#aa418bcad148c8c133cf29f4cba994cc1">~QueueCommand</a>()</td><td class="entry"><a class="el" href="classserver_1_1zone_1_1objects_1_1creature_1_1commands_1_1_queue_command.html">server::zone::objects::creature::commands::QueueCommand</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> </table></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Oct 15 2013 17:29:37 for Core3 by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.3.1 </small></address> </body> </html>
src/main/webapp/static/app/browser/browser-file-select-modal-template.html
Ortolang/market
<div class="modal" tabindex="-1" role="dialog"> <div class="modal-dialog modal-lg modal-xl"> <div class="modal-content"> <div class="modal-header modal-header-border" ng-show="title"> <button type="button" class="close" ng-click="$hide()">&times;</button> <span class="modal-title" translate="{{title}}" translate-values="titleValues"></span> </div> <div class="modal-body file-select-modal-body"> <browser-file-select accept-multiple="acceptMultiple" force-workspace="forceWorkspace" force-mime-types="forceMimeTypes" force-head="forceHead" file-select-id="fileSelectId" force-path="forcePath" hide-elements="hideElements"></browser-file-select> </div> <div class="modal-footer modal-footer-border"> <button type="button" class="btn btn-primary" ng-click="$emit('browserAskSelectedElements')" translate="SELECT"></button> <button type="button" class="btn btn-default" ng-click="$hide()" translate="CLOSE"></button> </div> </div> </div> </div>
doc/javadoc/internal/gate/creole/ontology/class-use/OConstants.html
liuhongchao/GATE_Developer_7.0
<!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_24) on Thu Feb 09 13:44:18 GMT 2012 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Interface gate.creole.ontology.OConstants (GATE JavaDoc (including private members)) </TITLE> <META NAME="date" CONTENT="2012-02-09"> <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 gate.creole.ontology.OConstants (GATE JavaDoc (including private members))"; } } </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="../../../../gate/creole/ontology/OConstants.html" title="interface in gate.creole.ontology"><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="../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?gate/creole/ontology//class-useOConstants.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="OConstants.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>gate.creole.ontology.OConstants</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="../../../../gate/creole/ontology/OConstants.html" title="interface in gate.creole.ontology">OConstants</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#gate.creole.ontology"><B>gate.creole.ontology</B></A></TD> <TD>The GATE ontology API.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="gate.creole.ontology"><!-- --></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="../../../../gate/creole/ontology/OConstants.html" title="interface in gate.creole.ontology">OConstants</A> in <A HREF="../../../../gate/creole/ontology/package-summary.html">gate.creole.ontology</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">Subinterfaces of <A HREF="../../../../gate/creole/ontology/OConstants.html" title="interface in gate.creole.ontology">OConstants</A> in <A HREF="../../../../gate/creole/ontology/package-summary.html">gate.creole.ontology</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;interface</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../gate/creole/ontology/AllValuesFromRestriction.html" title="interface in gate.creole.ontology">AllValuesFromRestriction</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;An AllValuesFromRestriction.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;interface</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../gate/creole/ontology/AnonymousClass.html" title="interface in gate.creole.ontology">AnonymousClass</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This class represents the AnonymousClass.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;interface</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../gate/creole/ontology/CardinalityRestriction.html" title="interface in gate.creole.ontology">CardinalityRestriction</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A CardinalityRestriction</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;interface</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../gate/creole/ontology/HasValueRestriction.html" title="interface in gate.creole.ontology">HasValueRestriction</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A HasValueRestriction.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;interface</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../gate/creole/ontology/MaxCardinalityRestriction.html" title="interface in gate.creole.ontology">MaxCardinalityRestriction</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A MaxCardinalityRestriction.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;interface</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../gate/creole/ontology/MinCardinalityRestriction.html" title="interface in gate.creole.ontology">MinCardinalityRestriction</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A MinCardinalityRestriction.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;interface</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../gate/creole/ontology/OClass.html" title="interface in gate.creole.ontology">OClass</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Each OClass (Ontology Class) represents a concept/class in ontology.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;interface</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../gate/creole/ontology/Restriction.html" title="interface in gate.creole.ontology">Restriction</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This interface defines a restriction in the ontology.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;interface</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../gate/creole/ontology/SomeValuesFromRestriction.html" title="interface in gate.creole.ontology">SomeValuesFromRestriction</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A SomeValuesFromRestriction.</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="../../../../gate/creole/ontology/OConstants.html" title="interface in gate.creole.ontology"><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="../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?gate/creole/ontology//class-useOConstants.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="OConstants.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
api/templates/admin/api/address/change_form.html
fraunhoferfokus/fixmycity
<!-- /******************************************************************************* * * Copyright (c) 2015 Fraunhofer FOKUS, All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3.0 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see <http://www.gnu.org/licenses/>. * * AUTHORS: Louay Bassbouss (louay.bassbouss@fokus.fraunhofer.de) * ******************************************************************************/ --> {% extends "admin/change_form.html" %} {% block extrahead %} {{ block.super }} <script src="http://maps.google.com/maps/api/js?sensor=false"></script> <script> var $ = django.jQuery , map , input_lat , input_lng; function savePosition(point) { input_lat.value = point.lat().toFixed(7); input_lng.value = point.lng().toFixed(7); map.panTo(point); } function load(lat, lng) { var point = new google.maps.LatLng(lat, lng); var options = { zoom: 10, center: point, mapTypeId: google.maps.MapTypeId.ROADMAP }; map = new google.maps.Map(document.getElementById("map"), options); var marker = new google.maps.Marker({ map: map, position: new google.maps.LatLng(lat, lng), draggable: true }); google.maps.event.addListener(marker, 'dragend', function(mouseEvent) { savePosition(mouseEvent.latLng); }); google.maps.event.addListener(map, 'click', function(mouseEvent){ marker.setPosition(mouseEvent.latLng); savePosition(mouseEvent.latLng); }); } $(function() { var lat , lng , DEFAULT_LAT = 52.518611 , DEFAULT_LNG = 13.408056; input_lat = document.getElementById("id_latitude"); input_lng = document.getElementById("id_longitude"); lat = input_lat.value || DEFAULT_LAT; lng = input_lng.value || DEFAULT_LNG; load(lat, lng); }); </script> {% endblock %} {% block after_field_sets %} <div id="map" style="border: 4px solid black; width: 400px; height: 300px; margin-top: 15px; margin-left: auto; margin-right: auto;"></div> {% endblock %}
src/yaak/schedule/package.html
jsmithabq/yaak
<body> <p>This package provides general-purpose scheduling and thread pooling.</p> <p> $Id: package.html 15 2006-02-13 14:42:02Z jsmith $ </p> </body>
docs/_modules/btgym/datafeed.html
Kismuz/btgym
<!DOCTYPE html> <!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]--> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>btgym.datafeed &mdash; BTGym 0.0.6 documentation</title> <link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" /> <link rel="index" title="Index" href="../../genindex.html"/> <link rel="search" title="Search" href="../../search.html"/> <link rel="top" title="BTGym 0.0.6 documentation" href="../../index.html"/> <link rel="up" title="Module code" href="../index.html"/> <script src="../../_static/js/modernizr.min.js"></script> </head> <body class="wy-body-for-nav" role="document"> <div class="wy-grid-for-nav"> <nav data-toggle="wy-nav-shift" class="wy-nav-side"> <div class="wy-side-scroll"> <div class="wy-side-nav-search"> <a href="../../index.html" class="icon icon-home"> BTGym </a> <div class="version"> 0.0.6 </div> <div role="search"> <form id="rtd-search-form" class="wy-form" action="../../search.html" method="get"> <input type="text" name="q" placeholder="Search docs" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> </div> </div> <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation"> <ul> <li class="toctree-l1"><a class="reference internal" href="../../intro.html">Package Description</a></li> <li class="toctree-l1"><a class="reference internal" href="../../intro.html#installation">Installation</a></li> <li class="toctree-l1"><a class="reference internal" href="../../intro.html#quickstart">Quickstart</a></li> <li class="toctree-l1"><a class="reference internal" href="../../intro.html#environment-engine-description">Environment engine description</a></li> <li class="toctree-l1"><a class="reference internal" href="../../intro.html#a3c-framework-description">A3C framework description</a></li> </ul> <ul> <li class="toctree-l1"><a class="reference internal" href="../../btgym.envs.html">btgym.envs package</a></li> <li class="toctree-l1"><a class="reference internal" href="../../btgym.html">btgym.dataserver module</a></li> <li class="toctree-l1"><a class="reference internal" href="../../btgym.html#module-btgym.server">btgym.server module</a></li> <li class="toctree-l1"><a class="reference internal" href="../../btgym.html#module-btgym.spaces">btgym.spaces module</a></li> <li class="toctree-l1"><a class="reference internal" href="../../btgym.strategy.html">btgym.strategy package</a></li> <li class="toctree-l1"><a class="reference internal" href="../../btgym.monitor.html">btgym.monitor package</a></li> <li class="toctree-l1"><a class="reference internal" href="../../btgym.rendering.html">btgym.rendering package</a></li> </ul> <ul> <li class="toctree-l1"><a class="reference internal" href="../../btgym.datafeed.html">btgym.datafeed package</a></li> </ul> <ul> <li class="toctree-l1"><a class="reference internal" href="../../btgym.algorithms.html">btgym.algorithms package</a></li> </ul> <ul> <li class="toctree-l1"><a class="reference internal" href="../../btgym.research.html">btgym.research package</a></li> </ul> </div> </div> </nav> <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"> <nav class="wy-nav-top" role="navigation" aria-label="top navigation"> <i data-toggle="wy-nav-top" class="fa fa-bars"></i> <a href="../../index.html">BTGym</a> </nav> <div class="wy-nav-content"> <div class="rst-content"> <div role="navigation" aria-label="breadcrumbs navigation"> <ul class="wy-breadcrumbs"> <li><a href="../../index.html">Docs</a> &raquo;</li> <li><a href="../index.html">Module code</a> &raquo;</li> <li>btgym.datafeed</li> <li class="wy-breadcrumbs-aside"> </li> </ul> <hr/> </div> <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article"> <div itemprop="articleBody"> <h1>Source code for btgym.datafeed</h1><div class="highlight"><pre> <span></span><span class="c1">###############################################################################</span> <span class="c1">#</span> <span class="c1"># Copyright (C) 2017 Andrew Muzikin</span> <span class="c1">#</span> <span class="c1"># This program is free software: you can redistribute it and/or modify</span> <span class="c1"># it under the terms of the GNU General Public License as published by</span> <span class="c1"># the Free Software Foundation, either version 3 of the License, or</span> <span class="c1"># (at your option) any later version.</span> <span class="c1">#</span> <span class="c1"># This program is distributed in the hope that it will be useful,</span> <span class="c1"># but WITHOUT ANY WARRANTY; without even the implied warranty of</span> <span class="c1"># MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</span> <span class="c1"># GNU General Public License for more details.</span> <span class="c1">#</span> <span class="c1"># You should have received a copy of the GNU General Public License</span> <span class="c1"># along with this program. If not, see &lt;http://www.gnu.org/licenses/&gt;.</span> <span class="c1">#</span> <span class="c1">###############################################################################</span> <span class="kn">import</span> <span class="nn">logging</span> <span class="c1">#logging.basicConfig(format=&#39;%(name)s: %(message)s&#39;)</span> <span class="kn">import</span> <span class="nn">datetime</span> <span class="kn">import</span> <span class="nn">random</span> <span class="kn">from</span> <span class="nn">numpy.random</span> <span class="k">import</span> <span class="n">beta</span> <span class="k">as</span> <span class="n">random_beta</span> <span class="kn">import</span> <span class="nn">math</span> <span class="kn">import</span> <span class="nn">os</span> <span class="kn">import</span> <span class="nn">backtrader.feeds</span> <span class="k">as</span> <span class="nn">btfeeds</span> <span class="kn">import</span> <span class="nn">pandas</span> <span class="k">as</span> <span class="nn">pd</span> <div class="viewcode-block" id="BTgymDataset"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymDataset">[docs]</a><span class="k">class</span> <span class="nc">BTgymDataset</span><span class="p">:</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Base Backtrader.feeds data provider class.</span> <span class="sd"> Enables Pipe::</span> <span class="sd"> CSV[source]--&gt;pandas[for efficient sampling]--&gt;bt.feeds routine.</span> <span class="sd"> Implements random and positional episode data sampling.</span> <span class="sd"> Suggested usage::</span> <span class="sd"> ---user defined ---</span> <span class="sd"> Dataset = BTgymDataset(&lt;filename&gt;,&lt;params&gt;)</span> <span class="sd"> ---inner BTgymServer routine---</span> <span class="sd"> Dataset.read_csv(&lt;filename&gt;)</span> <span class="sd"> Repeat until bored:</span> <span class="sd"> EpisodeDataset = Dataset.get_sample()</span> <span class="sd"> DataFeed = EpisodeDataset.to_btfeed()</span> <span class="sd"> Engine = bt.Cerebro()</span> <span class="sd"> Engine.adddata(DataFeed)</span> <span class="sd"> Engine.run()</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="c1"># Parameters and their default values:</span> <span class="n">params</span> <span class="o">=</span> <span class="nb">dict</span><span class="p">(</span> <span class="n">filename</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="c1"># Str or list of str, should be given either here or when calling read_csv()</span> <span class="c1"># Default parameters for source-specific CSV datafeed class,</span> <span class="c1"># correctly parses 1 minute Forex generic ASCII</span> <span class="c1"># data files from www.HistData.com:</span> <span class="c1"># CSV to Pandas params.</span> <span class="n">sep</span><span class="o">=</span><span class="s1">&#39;;&#39;</span><span class="p">,</span> <span class="n">header</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span> <span class="n">index_col</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span> <span class="n">parse_dates</span><span class="o">=</span><span class="kc">True</span><span class="p">,</span> <span class="n">names</span><span class="o">=</span><span class="p">[</span><span class="s1">&#39;open&#39;</span><span class="p">,</span> <span class="s1">&#39;high&#39;</span><span class="p">,</span> <span class="s1">&#39;low&#39;</span><span class="p">,</span> <span class="s1">&#39;close&#39;</span><span class="p">,</span> <span class="s1">&#39;volume&#39;</span><span class="p">],</span> <span class="c1"># Pandas to BT.feeds params:</span> <span class="n">timeframe</span><span class="o">=</span><span class="mi">1</span><span class="p">,</span> <span class="c1"># 1 minute.</span> <span class="n">datetime</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span> <span class="nb">open</span><span class="o">=</span><span class="mi">1</span><span class="p">,</span> <span class="n">high</span><span class="o">=</span><span class="mi">2</span><span class="p">,</span> <span class="n">low</span><span class="o">=</span><span class="mi">3</span><span class="p">,</span> <span class="n">close</span><span class="o">=</span><span class="mi">4</span><span class="p">,</span> <span class="n">volume</span><span class="o">=-</span><span class="mi">1</span><span class="p">,</span> <span class="n">openinterest</span><span class="o">=-</span><span class="mi">1</span><span class="p">,</span> <span class="c1"># Random-sampling params:</span> <span class="n">start_weekdays</span><span class="o">=</span><span class="p">[</span><span class="mi">0</span><span class="p">,</span> <span class="mi">1</span><span class="p">,</span> <span class="mi">2</span><span class="p">,</span> <span class="mi">3</span><span class="p">,</span> <span class="p">],</span> <span class="c1"># Only weekdays from the list will be used for episode start.</span> <span class="n">start_00</span><span class="o">=</span><span class="kc">True</span><span class="p">,</span> <span class="c1"># Episode start time will be set to first record of the day (usually 00:00).</span> <span class="n">episode_duration</span><span class="o">=</span><span class="nb">dict</span><span class="p">(</span> <span class="c1"># Maximum episode time duration in days, hours, minutes:</span> <span class="n">days</span><span class="o">=</span><span class="mi">1</span><span class="p">,</span> <span class="n">hours</span><span class="o">=</span><span class="mi">23</span><span class="p">,</span> <span class="n">minutes</span><span class="o">=</span><span class="mi">55</span> <span class="p">),</span> <span class="n">time_gap</span><span class="o">=</span><span class="nb">dict</span><span class="p">(</span> <span class="c1"># Maximum data time gap allowed within sample in days, hours. Thereby,</span> <span class="n">days</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span> <span class="c1"># if set to be &lt; 1 day, samples containing weekends and holidays gaps will be rejected.</span> <span class="n">hours</span><span class="o">=</span><span class="mi">5</span><span class="p">,</span> <span class="p">)</span> <span class="p">)</span> <span class="n">params_deprecated</span><span class="o">=</span><span class="nb">dict</span><span class="p">(</span> <span class="c1"># Deprecated:</span> <span class="n">episode_len_days</span><span class="o">=</span><span class="p">(</span><span class="s1">&#39;episode_duration&#39;</span><span class="p">,</span> <span class="s1">&#39;days&#39;</span><span class="p">),</span> <span class="n">episode_len_hours</span><span class="o">=</span><span class="p">(</span><span class="s1">&#39;episode_duration&#39;</span><span class="p">,</span><span class="s1">&#39;hours&#39;</span><span class="p">),</span> <span class="n">episode_len_minutes</span><span class="o">=</span><span class="p">(</span><span class="s1">&#39;episode_duration&#39;</span><span class="p">,</span> <span class="s1">&#39;minutes&#39;</span><span class="p">),</span> <span class="n">time_gap_days</span><span class="o">=</span><span class="p">(</span><span class="s1">&#39;time_gap&#39;</span><span class="p">,</span> <span class="s1">&#39;days&#39;</span><span class="p">),</span> <span class="n">time_gap_hours</span><span class="o">=</span><span class="p">(</span><span class="s1">&#39;time_gap&#39;</span><span class="p">,</span> <span class="s1">&#39;hours&#39;</span><span class="p">)</span> <span class="p">)</span> <span class="c1"># Other:</span> <span class="n">log</span> <span class="o">=</span> <span class="kc">None</span> <span class="n">data</span> <span class="o">=</span> <span class="kc">None</span> <span class="c1"># Will hold actual data as pandas dataframe</span> <span class="n">is_ready</span> <span class="o">=</span> <span class="kc">False</span> <span class="n">data_stat</span> <span class="o">=</span> <span class="kc">None</span> <span class="c1"># Dataset descriptive statistic as pandas dataframe</span> <span class="n">data_range_delta</span> <span class="o">=</span> <span class="kc">None</span> <span class="c1"># Dataset total duration timedelta</span> <span class="n">episode_num_records</span> <span class="o">=</span> <span class="mi">0</span> <span class="n">metadata</span> <span class="o">=</span> <span class="p">{}</span> <span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Args:</span> <span class="sd"> filename: Str or list of str, should be given either here or when calling read_csv(),</span> <span class="sd"> see `Notes`.</span> <span class="sd"> specific_params CSV to Pandas parsing</span> <span class="sd"> sep: &#39;;&#39;</span> <span class="sd"> header: 0</span> <span class="sd"> index_col: 0</span> <span class="sd"> parse_dates: True</span> <span class="sd"> names: [&#39;open&#39;, &#39;high&#39;, &#39;low&#39;, &#39;close&#39;, &#39;volume&#39;]</span> <span class="sd"> specific_params Pandas to BT.feeds conversion</span> <span class="sd"> timeframe=1: 1 minute.</span> <span class="sd"> datetime: 0</span> <span class="sd"> open: 1</span> <span class="sd"> high: 2</span> <span class="sd"> low: 3</span> <span class="sd"> close: 4</span> <span class="sd"> volume: -1</span> <span class="sd"> openinterest: -1</span> <span class="sd"> specific_params Sampling</span> <span class="sd"> start_weekdays: [0, 1, 2, 3, ] - Only weekdays from the list will be used for episode start.</span> <span class="sd"> start_00: True - Episode start time will be set to first record of the day</span> <span class="sd"> (usually 00:00).</span> <span class="sd"> episode_duration: {&#39;days&#39;: 1, &#39;hours&#39;: 23, &#39;minutes&#39;: 55} - Maximum episode time duration</span> <span class="sd"> in days, hours, minutes</span> <span class="sd"> time_gap: {&#39;hours&#39;: 5} - Data omittance threshold: maximum data time gap allowed</span> <span class="sd"> within sample in days, hours. Thereby, if set to be &lt; 1 day,</span> <span class="sd"> samples containing weekends and holidays gaps will be rejected.</span> <span class="sd"> Note:</span> <span class="sd"> - CSV file can contain duplicate records, cheks will be performed and all duplicates will be removed;</span> <span class="sd"> - CSV file should be properly sorted by date_time in ascending order, no sorting checks performed.</span> <span class="sd"> - When supplying list of file_names, all files should be also listed ascending by their time period,</span> <span class="sd"> no correct sampling will be possible otherwise.</span> <span class="sd"> - Default parameters are source-specific and made to correctly parse 1 minute Forex generic ASCII</span> <span class="sd"> data files from www.HistData.com. Tune according to your data source.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="c1"># To log or not to log:</span> <span class="k">try</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span> <span class="o">=</span> <span class="n">kwargs</span><span class="o">.</span><span class="n">pop</span><span class="p">(</span><span class="s1">&#39;log&#39;</span><span class="p">)</span> <span class="k">except</span> <span class="ne">KeyError</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span> <span class="o">=</span> <span class="n">logging</span><span class="o">.</span><span class="n">getLogger</span><span class="p">(</span><span class="s1">&#39;dummy&#39;</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">addHandler</span><span class="p">(</span><span class="n">logging</span><span class="o">.</span><span class="n">NullHandler</span><span class="p">())</span> <span class="c1"># Update parameters with relevant kwargs:</span> <span class="bp">self</span><span class="o">.</span><span class="n">update_params</span><span class="p">(</span><span class="o">**</span><span class="n">kwargs</span><span class="p">)</span> <div class="viewcode-block" id="BTgymDataset.update_params"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymDataset.update_params">[docs]</a> <span class="k">def</span> <span class="nf">update_params</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Updates instance parameters.</span> <span class="sd"> Args:</span> <span class="sd"> **kwargs: any self.params entries</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_ready</span> <span class="o">=</span> <span class="kc">False</span> <span class="k">for</span> <span class="n">key</span><span class="p">,</span> <span class="n">value</span> <span class="ow">in</span> <span class="n">kwargs</span><span class="o">.</span><span class="n">items</span><span class="p">():</span> <span class="k">if</span> <span class="n">key</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">params</span><span class="o">.</span><span class="n">keys</span><span class="p">():</span> <span class="bp">self</span><span class="o">.</span><span class="n">params</span><span class="p">[</span><span class="n">key</span><span class="p">]</span> <span class="o">=</span> <span class="n">value</span> <span class="k">elif</span> <span class="n">key</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">params_deprecated</span><span class="o">.</span><span class="n">keys</span><span class="p">():</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span> <span class="s1">&#39;Key: &lt;</span><span class="si">{}</span><span class="s1">&gt; is deprecated, use: &lt;</span><span class="si">{}</span><span class="s1">&gt; instead&#39;</span><span class="o">.</span> <span class="nb">format</span><span class="p">(</span><span class="n">key</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">params_deprecated</span><span class="p">[</span><span class="n">key</span><span class="p">])</span> <span class="p">)</span> <span class="n">key1</span><span class="p">,</span> <span class="n">key2</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">params_deprecated</span><span class="p">[</span><span class="n">key</span><span class="p">]</span> <span class="bp">self</span><span class="o">.</span><span class="n">params</span><span class="p">[</span><span class="n">key1</span><span class="p">][</span><span class="n">key2</span><span class="p">]</span> <span class="o">=</span> <span class="n">value</span> <span class="c1"># Unpack it as attributes:</span> <span class="k">for</span> <span class="n">key</span><span class="p">,</span> <span class="n">value</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">params</span><span class="o">.</span><span class="n">items</span><span class="p">():</span> <span class="nb">setattr</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">key</span><span class="p">,</span> <span class="n">value</span><span class="p">)</span> <span class="c1"># Maximum data time gap allowed within sample as pydatetimedelta obj:</span> <span class="bp">self</span><span class="o">.</span><span class="n">max_time_gap</span> <span class="o">=</span> <span class="n">datetime</span><span class="o">.</span><span class="n">timedelta</span><span class="p">(</span><span class="o">**</span><span class="bp">self</span><span class="o">.</span><span class="n">time_gap</span><span class="p">)</span> <span class="c1"># ... maximum episode time duration:</span> <span class="bp">self</span><span class="o">.</span><span class="n">max_episode_len</span> <span class="o">=</span> <span class="n">datetime</span><span class="o">.</span><span class="n">timedelta</span><span class="p">(</span><span class="o">**</span><span class="bp">self</span><span class="o">.</span><span class="n">episode_duration</span><span class="p">)</span> <span class="c1"># Maximum possible number of data records (rows) within episode:</span> <span class="bp">self</span><span class="o">.</span><span class="n">episode_num_records</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">max_episode_len</span><span class="o">.</span><span class="n">total_seconds</span><span class="p">()</span> <span class="o">/</span> <span class="p">(</span><span class="mi">60</span> <span class="o">*</span> <span class="bp">self</span><span class="o">.</span><span class="n">timeframe</span><span class="p">))</span></div> <div class="viewcode-block" id="BTgymDataset.reset"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymDataset.reset">[docs]</a> <span class="k">def</span> <span class="nf">reset</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">data_filename</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Gets instance ready.</span> <span class="sd"> Args:</span> <span class="sd"> data_filename: [opt] string or list of strings.</span> <span class="sd"> kwargs: not used.</span> <span class="sd"> Returns:</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="bp">self</span><span class="o">.</span><span class="n">read_csv</span><span class="p">(</span><span class="n">data_filename</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_ready</span> <span class="o">=</span> <span class="kc">True</span></div> <div class="viewcode-block" id="BTgymDataset.read_csv"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymDataset.read_csv">[docs]</a> <span class="k">def</span> <span class="nf">read_csv</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">data_filename</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Populates instance by loading data: CSV file --&gt; pandas dataframe.</span> <span class="sd"> Args:</span> <span class="sd"> data_filename: [opt] csv data filename as string or list of such strings.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">if</span> <span class="n">data_filename</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">filename</span> <span class="o">=</span> <span class="n">data_filename</span> <span class="c1"># override data source if one is given</span> <span class="k">if</span> <span class="nb">type</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">filename</span><span class="p">)</span> <span class="o">==</span> <span class="nb">str</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">filename</span> <span class="o">=</span> <span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">filename</span><span class="p">]</span> <span class="n">dataframes</span> <span class="o">=</span> <span class="p">[]</span> <span class="k">for</span> <span class="n">filename</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">filename</span><span class="p">:</span> <span class="k">try</span><span class="p">:</span> <span class="k">assert</span> <span class="n">filename</span> <span class="ow">and</span> <span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">isfile</span><span class="p">(</span><span class="n">filename</span><span class="p">)</span> <span class="n">current_dataframe</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">read_csv</span><span class="p">(</span> <span class="n">filename</span><span class="p">,</span> <span class="n">sep</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">sep</span><span class="p">,</span> <span class="n">header</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">header</span><span class="p">,</span> <span class="n">index_col</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">index_col</span><span class="p">,</span> <span class="n">parse_dates</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">parse_dates</span><span class="p">,</span> <span class="n">names</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">names</span> <span class="p">)</span> <span class="c1"># Check and remove duplicate datetime indexes:</span> <span class="n">duplicates</span> <span class="o">=</span> <span class="n">current_dataframe</span><span class="o">.</span><span class="n">index</span><span class="o">.</span><span class="n">duplicated</span><span class="p">(</span><span class="n">keep</span><span class="o">=</span><span class="s1">&#39;first&#39;</span><span class="p">)</span> <span class="n">how_bad</span> <span class="o">=</span> <span class="n">duplicates</span><span class="o">.</span><span class="n">sum</span><span class="p">()</span> <span class="k">if</span> <span class="n">how_bad</span> <span class="o">&gt;</span> <span class="mi">0</span><span class="p">:</span> <span class="n">current_dataframe</span> <span class="o">=</span> <span class="n">current_dataframe</span><span class="p">[</span><span class="o">~</span><span class="n">duplicates</span><span class="p">]</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span><span class="s1">&#39;Found </span><span class="si">{}</span><span class="s1"> duplicated date_time records in &lt;</span><span class="si">{}</span><span class="s1">&gt;.</span><span class="se">\</span> <span class="s1"> Removed all but first occurrences.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">how_bad</span><span class="p">,</span> <span class="n">filename</span><span class="p">))</span> <span class="n">dataframes</span> <span class="o">+=</span> <span class="p">[</span><span class="n">current_dataframe</span><span class="p">]</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">info</span><span class="p">(</span><span class="s1">&#39;Loaded </span><span class="si">{}</span><span class="s1"> records from &lt;</span><span class="si">{}</span><span class="s1">&gt;.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">dataframes</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span><span class="o">.</span><span class="n">shape</span><span class="p">[</span><span class="mi">0</span><span class="p">],</span> <span class="n">filename</span><span class="p">))</span> <span class="k">except</span><span class="p">:</span> <span class="k">try</span><span class="p">:</span> <span class="k">assert</span> <span class="s1">&#39;episode_dataset&#39;</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">filename</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span><span class="s1">&#39;Attempt to load data into episode dataset: ignored.&#39;</span><span class="p">)</span> <span class="k">return</span> <span class="kc">None</span> <span class="k">except</span><span class="p">:</span> <span class="n">msg</span> <span class="o">=</span> <span class="s1">&#39;Data file &lt;</span><span class="si">{}</span><span class="s1">&gt; not specified / not found.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="nb">str</span><span class="p">(</span><span class="n">filename</span><span class="p">))</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">error</span><span class="p">(</span><span class="n">msg</span><span class="p">)</span> <span class="k">raise</span> <span class="ne">FileNotFoundError</span><span class="p">(</span><span class="n">msg</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">concat</span><span class="p">(</span><span class="n">dataframes</span><span class="p">)</span> <span class="nb">range</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">to_datetime</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">data_range_delta</span> <span class="o">=</span> <span class="p">(</span><span class="nb">range</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span> <span class="o">-</span> <span class="nb">range</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span><span class="o">.</span><span class="n">to_pytimedelta</span><span class="p">()</span></div> <div class="viewcode-block" id="BTgymDataset.describe"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymDataset.describe">[docs]</a> <span class="k">def</span> <span class="nf">describe</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Returns summary dataset statistic as pandas dataframe:</span> <span class="sd"> - records count,</span> <span class="sd"> - data mean,</span> <span class="sd"> - data std dev,</span> <span class="sd"> - min value,</span> <span class="sd"> - 25% percentile,</span> <span class="sd"> - 50% percentile,</span> <span class="sd"> - 75% percentile,</span> <span class="sd"> - max value</span> <span class="sd"> for every data column.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="c1"># Pretty straightforward, using standard pandas utility.</span> <span class="c1"># The only caveat here is that if actual data has not been loaded yet, need to load, describe and unload again,</span> <span class="c1"># thus avoiding passing big files to BT server:</span> <span class="n">flush_data</span> <span class="o">=</span> <span class="kc">False</span> <span class="k">try</span><span class="p">:</span> <span class="k">assert</span> <span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">empty</span> <span class="k">pass</span> <span class="k">except</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">read_csv</span><span class="p">()</span> <span class="n">flush_data</span> <span class="o">=</span> <span class="kc">True</span> <span class="bp">self</span><span class="o">.</span><span class="n">data_stat</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">describe</span><span class="p">()</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">info</span><span class="p">(</span><span class="s1">&#39;Data summary:</span><span class="se">\n</span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">data_stat</span><span class="o">.</span><span class="n">to_string</span><span class="p">()))</span> <span class="k">if</span> <span class="n">flush_data</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span> <span class="o">=</span> <span class="kc">None</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">info</span><span class="p">(</span><span class="s1">&#39;Flushed data.&#39;</span><span class="p">)</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">data_stat</span></div> <div class="viewcode-block" id="BTgymDataset.to_btfeed"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymDataset.to_btfeed">[docs]</a> <span class="k">def</span> <span class="nf">to_btfeed</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Performs BTgymDataset--&gt;bt.feed conversion.</span> <span class="sd"> Returns:</span> <span class="sd"> bt.datafeed instance.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">try</span><span class="p">:</span> <span class="k">assert</span> <span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">empty</span> <span class="n">btfeed</span> <span class="o">=</span> <span class="n">btfeeds</span><span class="o">.</span><span class="n">PandasDirectData</span><span class="p">(</span> <span class="n">dataname</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="p">,</span> <span class="n">timeframe</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">timeframe</span><span class="p">,</span> <span class="n">datetime</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">datetime</span><span class="p">,</span> <span class="nb">open</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">open</span><span class="p">,</span> <span class="n">high</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">high</span><span class="p">,</span> <span class="n">low</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">low</span><span class="p">,</span> <span class="n">close</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">close</span><span class="p">,</span> <span class="n">volume</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">volume</span><span class="p">,</span> <span class="n">openinterest</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">openinterest</span> <span class="p">)</span> <span class="n">btfeed</span><span class="o">.</span><span class="n">numrecords</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">shape</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="k">return</span> <span class="n">btfeed</span> <span class="k">except</span> <span class="p">(</span><span class="ne">AssertionError</span><span class="p">,</span> <span class="ne">AttributeError</span><span class="p">)</span> <span class="k">as</span> <span class="n">e</span><span class="p">:</span> <span class="n">msg</span> <span class="o">=</span> <span class="s1">&#39;BTgymDataset instance holds no data. Hint: forgot to call .read_csv()?&#39;</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">error</span><span class="p">(</span><span class="n">msg</span><span class="p">)</span> <span class="k">raise</span> <span class="ne">AssertionError</span><span class="p">(</span><span class="n">msg</span><span class="p">)</span></div> <div class="viewcode-block" id="BTgymDataset.sample"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymDataset.sample">[docs]</a> <span class="k">def</span> <span class="nf">sample</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Randomly samples continuous subset of data.</span> <span class="sd"> Args:</span> <span class="sd"> **kwargs: not used.</span> <span class="sd"> Returns:</span> <span class="sd"> BTgymDataset instance with number of records ~ max_episode_len,</span> <span class="sd"> where `~` tolerance is set by `time_gap` param.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">try</span><span class="p">:</span> <span class="k">assert</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_ready</span> <span class="k">except</span> <span class="ne">AssertionError</span><span class="p">:</span> <span class="k">return</span> <span class="s1">&#39;Data not ready. Call .reset() first.&#39;</span> <span class="n">episode</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_sample_random</span><span class="p">()</span> <span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">[</span><span class="s1">&#39;type&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="kc">False</span> <span class="c1"># always `train`</span> <span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">[</span><span class="s1">&#39;trial_num&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="kc">False</span> <span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">[</span><span class="s1">&#39;sample_num&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="kc">False</span> <span class="k">return</span> <span class="n">episode</span></div> <span class="k">def</span> <span class="nf">_sample_random</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Randomly samples continuous subset of data.</span> <span class="sd"> Returns:</span> <span class="sd"> BTgymDataset instance with number of records ~ max_episode_len,</span> <span class="sd"> where `~` tolerance is set by `time_gap` param.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">try</span><span class="p">:</span> <span class="k">assert</span> <span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">empty</span> <span class="k">except</span> <span class="p">(</span><span class="ne">AssertionError</span><span class="p">,</span> <span class="ne">AttributeError</span><span class="p">)</span> <span class="k">as</span> <span class="n">e</span><span class="p">:</span> <span class="k">raise</span> <span class="ne">AssertionError</span><span class="p">(</span><span class="s1">&#39;BTgymDataset instance holds no data. Hint: forgot to call .read_csv()?&#39;</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Maximum sample time duration set to: </span><span class="si">{}</span><span class="s1">.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">max_episode_len</span><span class="p">))</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Respective number of steps: </span><span class="si">{}</span><span class="s1">.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">episode_num_records</span><span class="p">))</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Maximum allowed data time gap set to: </span><span class="si">{}</span><span class="s1">.</span><span class="se">\n</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">max_time_gap</span><span class="p">))</span> <span class="c1"># Sanity check param:</span> <span class="n">max_attempts</span> <span class="o">=</span> <span class="mi">100</span> <span class="n">attempts</span> <span class="o">=</span> <span class="mi">0</span> <span class="c1"># # Keep sampling random enter points until all conditions are met:</span> <span class="k">while</span> <span class="n">attempts</span> <span class="o">&lt;=</span> <span class="n">max_attempts</span><span class="p">:</span> <span class="c1"># Randomly sample record (row) from entire datafeed:</span> <span class="n">first_row</span> <span class="o">=</span> <span class="nb">int</span><span class="p">((</span><span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">shape</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">-</span> <span class="bp">self</span><span class="o">.</span><span class="n">episode_num_records</span> <span class="o">-</span> <span class="mi">1</span><span class="p">)</span> <span class="o">*</span> <span class="n">random</span><span class="o">.</span><span class="n">random</span><span class="p">())</span> <span class="n">episode_first_day</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="p">[</span><span class="n">first_row</span><span class="p">:</span><span class="n">first_row</span> <span class="o">+</span> <span class="mi">1</span><span class="p">]</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Episode start: </span><span class="si">{}</span><span class="s1">, weekday: </span><span class="si">{}</span><span class="s1">.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">episode_first_day</span><span class="p">,</span> <span class="n">episode_first_day</span><span class="o">.</span><span class="n">weekday</span><span class="p">()))</span> <span class="c1"># Keep sampling until good day:</span> <span class="k">while</span> <span class="ow">not</span> <span class="n">episode_first_day</span><span class="o">.</span><span class="n">weekday</span><span class="p">()</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">start_weekdays</span> <span class="ow">and</span> <span class="n">attempts</span> <span class="o">&lt;=</span> <span class="n">max_attempts</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Not a good day to start, resampling...&#39;</span><span class="p">)</span> <span class="n">first_row</span> <span class="o">=</span> <span class="nb">int</span><span class="p">((</span><span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">shape</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">-</span> <span class="bp">self</span><span class="o">.</span><span class="n">episode_num_records</span> <span class="o">-</span> <span class="mi">1</span><span class="p">)</span> <span class="o">*</span> <span class="n">random</span><span class="o">.</span><span class="n">random</span><span class="p">())</span> <span class="n">episode_first_day</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="p">[</span><span class="n">first_row</span><span class="p">:</span><span class="n">first_row</span> <span class="o">+</span> <span class="mi">1</span><span class="p">]</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Episode start: </span><span class="si">{}</span><span class="s1">, weekday: </span><span class="si">{}</span><span class="s1">.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">episode_first_day</span><span class="p">,</span> <span class="n">episode_first_day</span><span class="o">.</span><span class="n">weekday</span><span class="p">()))</span> <span class="n">attempts</span> <span class="o">+=</span><span class="mi">1</span> <span class="c1"># Check if managed to get proper weekday:</span> <span class="k">assert</span> <span class="n">attempts</span> <span class="o">&lt;=</span> <span class="n">max_attempts</span><span class="p">,</span> \ <span class="s1">&#39;Quitting after </span><span class="si">{}</span><span class="s1"> sampling attempts. Hint: check sampling params / dataset consistency.&#39;</span><span class="o">.</span> \ <span class="nb">format</span><span class="p">(</span><span class="n">attempts</span><span class="p">)</span> <span class="c1"># If 00 option set, get index of first record of that day:</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">start_00</span><span class="p">:</span> <span class="n">adj_timedate</span> <span class="o">=</span> <span class="n">episode_first_day</span><span class="o">.</span><span class="n">date</span><span class="p">()</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Start time adjusted to &lt;00:00&gt;&#39;</span><span class="p">)</span> <span class="k">else</span><span class="p">:</span> <span class="n">adj_timedate</span> <span class="o">=</span> <span class="n">episode_first_day</span> <span class="n">first_row</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="o">.</span><span class="n">get_loc</span><span class="p">(</span><span class="n">adj_timedate</span><span class="p">,</span> <span class="n">method</span><span class="o">=</span><span class="s1">&#39;nearest&#39;</span><span class="p">)</span> <span class="c1"># Easy part:</span> <span class="n">last_row</span> <span class="o">=</span> <span class="n">first_row</span> <span class="o">+</span> <span class="bp">self</span><span class="o">.</span><span class="n">episode_num_records</span> <span class="c1"># + 1</span> <span class="n">episode_sample</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="p">[</span><span class="n">first_row</span><span class="p">:</span> <span class="n">last_row</span><span class="p">]</span> <span class="n">episode_sample_len</span> <span class="o">=</span> <span class="p">(</span><span class="n">episode_sample</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span> <span class="o">-</span> <span class="n">episode_sample</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span><span class="o">.</span><span class="n">to_pytimedelta</span><span class="p">()</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Episode duration: </span><span class="si">{}</span><span class="s1">.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">episode_sample_len</span><span class="p">,</span> <span class="p">))</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Total episode time gap: </span><span class="si">{}</span><span class="s1">.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">episode_sample_len</span> <span class="o">-</span> <span class="bp">self</span><span class="o">.</span><span class="n">max_episode_len</span><span class="p">))</span> <span class="c1"># Perform data gap check:</span> <span class="k">if</span> <span class="n">episode_sample_len</span> <span class="o">-</span> <span class="bp">self</span><span class="o">.</span><span class="n">max_episode_len</span> <span class="o">&lt;</span> <span class="bp">self</span><span class="o">.</span><span class="n">max_time_gap</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Sample accepted.&#39;</span><span class="p">)</span> <span class="c1"># If sample OK - return episodic-dataset:</span> <span class="n">episode</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="vm">__class__</span><span class="p">(</span><span class="o">**</span><span class="bp">self</span><span class="o">.</span><span class="n">params</span><span class="p">)</span> <span class="n">episode</span><span class="o">.</span><span class="n">filename</span> <span class="o">=</span> <span class="s1">&#39;_btgym_random_sample_&#39;</span> <span class="o">+</span> <span class="nb">str</span><span class="p">(</span><span class="n">adj_timedate</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">info</span><span class="p">(</span><span class="s1">&#39;Episode id: &lt;</span><span class="si">{}</span><span class="s1">&gt;.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">episode</span><span class="o">.</span><span class="n">filename</span><span class="p">))</span> <span class="n">episode</span><span class="o">.</span><span class="n">data</span> <span class="o">=</span> <span class="n">episode_sample</span> <span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">[</span><span class="s1">&#39;type&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;random_sample&#39;</span> <span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">[</span><span class="s1">&#39;first_row&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="n">first_row</span> <span class="k">return</span> <span class="n">episode</span> <span class="k">else</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Duration too big, resampling...</span><span class="se">\n</span><span class="s1">&#39;</span><span class="p">)</span> <span class="n">attempts</span> <span class="o">+=</span> <span class="mi">1</span> <span class="c1"># Got here -&gt; sanity check failed:</span> <span class="n">msg</span> <span class="o">=</span> <span class="p">(</span><span class="s1">&#39;Quitting after </span><span class="si">{}</span><span class="s1"> sampling attempts.&#39;</span> <span class="o">+</span> <span class="s1">&#39;Hint: check sampling params / dataset consistency.&#39;</span><span class="p">)</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">attempts</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">error</span><span class="p">(</span><span class="n">msg</span><span class="p">)</span> <span class="k">raise</span> <span class="ne">RuntimeError</span><span class="p">(</span><span class="n">msg</span><span class="p">)</span> <span class="k">def</span> <span class="nf">_sample_interval</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">interval</span><span class="p">,</span> <span class="n">b_alpha</span><span class="o">=</span><span class="mi">1</span><span class="p">,</span> <span class="n">b_beta</span><span class="o">=</span><span class="mi">1</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Samples continuous subset of data,</span> <span class="sd"> such as entire episode records lie within positions specified by interval or.</span> <span class="sd"> Episode start position within interval is drawn from beta-distribution parametrised by `b_alpha, b_beta`.</span> <span class="sd"> By default distribution is uniform one.</span> <span class="sd"> Args:</span> <span class="sd"> interval: tuple, list or 1d-array of integers of length 2: [lower_position, upper_position];</span> <span class="sd"> b_alpha: sampling B-distribution alpha param;</span> <span class="sd"> b_beta: sampling B-distribution beta param;</span> <span class="sd"> Returns:</span> <span class="sd"> - BTgymDataset instance such as:</span> <span class="sd"> 1. number of records ~ max_episode_len, subj. to `time_gap` param;</span> <span class="sd"> 2. actual episode start position is sampled from `interval`;</span> <span class="sd"> - `False` if it is not possible to sample instance with set args.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">try</span><span class="p">:</span> <span class="k">assert</span> <span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">empty</span> <span class="k">except</span> <span class="p">(</span><span class="ne">AssertionError</span><span class="p">,</span> <span class="ne">AttributeError</span><span class="p">)</span> <span class="k">as</span> <span class="n">e</span><span class="p">:</span> <span class="k">raise</span> <span class="ne">AssertionError</span><span class="p">(</span><span class="s1">&#39;BTgymDataset instance holds no data. Hint: forgot to call .read_csv()?&#39;</span><span class="p">)</span> <span class="k">assert</span> <span class="nb">len</span><span class="p">(</span><span class="n">interval</span><span class="p">)</span> <span class="o">==</span> <span class="mi">2</span><span class="p">,</span> <span class="s1">&#39;Invalid interval arg: expected list or tuple of size 2, got: </span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">interval</span><span class="p">)</span> <span class="n">sample_num_records</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">episode_num_records</span> <span class="k">assert</span> <span class="n">interval</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">&lt;</span> <span class="n">interval</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span> <span class="o">&lt;</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">shape</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">-</span> <span class="n">sample_num_records</span><span class="p">),</span> \ <span class="s1">&#39;Cannot sample with size </span><span class="si">{}</span><span class="s1">, in </span><span class="si">{}</span><span class="s1"> from dataset of </span><span class="si">{}</span><span class="s1"> records&#39;</span><span class="o">.</span>\ <span class="nb">format</span><span class="p">(</span><span class="n">sample_num_records</span><span class="p">,</span> <span class="n">interval</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">shape</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Maximum sample time duration set to: </span><span class="si">{}</span><span class="s1">.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">max_episode_len</span><span class="p">))</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Respective number of steps: </span><span class="si">{}</span><span class="s1">.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">sample_num_records</span><span class="p">))</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Maximum allowed data time gap set to: </span><span class="si">{}</span><span class="s1">.</span><span class="se">\n</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">max_time_gap</span><span class="p">))</span> <span class="c1"># Sanity check param:</span> <span class="n">max_attempts</span> <span class="o">=</span> <span class="mi">100</span> <span class="n">attempts</span> <span class="o">=</span> <span class="mi">0</span> <span class="c1"># # Keep sampling random enter points until all conditions are met:</span> <span class="k">while</span> <span class="n">attempts</span> <span class="o">&lt;=</span> <span class="n">max_attempts</span><span class="p">:</span> <span class="n">first_row</span> <span class="o">=</span> <span class="n">interval</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">+</span> <span class="nb">round</span><span class="p">(</span> <span class="p">(</span><span class="n">interval</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span> <span class="o">-</span> <span class="n">interval</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">-</span> <span class="n">sample_num_records</span> <span class="o">-</span> <span class="mi">1</span><span class="p">)</span> <span class="o">*</span> <span class="n">random_beta</span><span class="p">(</span><span class="n">a</span><span class="o">=</span><span class="n">b_alpha</span><span class="p">,</span> <span class="n">b</span><span class="o">=</span><span class="n">b_beta</span><span class="p">)</span> <span class="p">)</span> <span class="n">episode_first_day</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="p">[</span><span class="n">first_row</span><span class="p">:</span><span class="n">first_row</span> <span class="o">+</span> <span class="mi">1</span><span class="p">]</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Sample start: </span><span class="si">{}</span><span class="s1">, weekday: </span><span class="si">{}</span><span class="s1">.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">episode_first_day</span><span class="p">,</span> <span class="n">episode_first_day</span><span class="o">.</span><span class="n">weekday</span><span class="p">()))</span> <span class="c1"># Keep sampling until good day:</span> <span class="k">while</span> <span class="ow">not</span> <span class="n">episode_first_day</span><span class="o">.</span><span class="n">weekday</span><span class="p">()</span> <span class="ow">in</span> <span class="bp">self</span><span class="o">.</span><span class="n">start_weekdays</span> <span class="ow">and</span> <span class="n">attempts</span> <span class="o">&lt;=</span> <span class="n">max_attempts</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Not a good day to start, resampling...&#39;</span><span class="p">)</span> <span class="n">first_row</span> <span class="o">=</span> <span class="n">interval</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">+</span> <span class="nb">round</span><span class="p">(</span> <span class="p">(</span><span class="n">interval</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span> <span class="o">-</span> <span class="n">interval</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">-</span> <span class="n">sample_num_records</span> <span class="o">-</span> <span class="mi">1</span><span class="p">)</span> <span class="o">*</span> <span class="n">random_beta</span><span class="p">(</span><span class="n">a</span><span class="o">=</span><span class="n">b_alpha</span><span class="p">,</span> <span class="n">b</span><span class="o">=</span><span class="n">b_beta</span><span class="p">)</span> <span class="p">)</span> <span class="n">episode_first_day</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="p">[</span><span class="n">first_row</span><span class="p">:</span><span class="n">first_row</span> <span class="o">+</span> <span class="mi">1</span><span class="p">]</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Sample start: </span><span class="si">{}</span><span class="s1">, weekday: </span><span class="si">{}</span><span class="s1">.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">episode_first_day</span><span class="p">,</span> <span class="n">episode_first_day</span><span class="o">.</span><span class="n">weekday</span><span class="p">()))</span> <span class="n">attempts</span> <span class="o">+=</span> <span class="mi">1</span> <span class="c1"># Check if managed to get proper weekday:</span> <span class="k">assert</span> <span class="n">attempts</span> <span class="o">&lt;=</span> <span class="n">max_attempts</span><span class="p">,</span> \ <span class="s1">&#39;Quitting after </span><span class="si">{}</span><span class="s1"> sampling attempts. Hint: check sampling params / dataset consistency.&#39;</span><span class="o">.</span>\ <span class="nb">format</span><span class="p">(</span><span class="n">attempts</span><span class="p">)</span> <span class="c1"># If 00 option set, get index of first record of that day:</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">start_00</span><span class="p">:</span> <span class="n">adj_timedate</span> <span class="o">=</span> <span class="n">episode_first_day</span><span class="o">.</span><span class="n">date</span><span class="p">()</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Start time adjusted to &lt;00:00&gt;&#39;</span><span class="p">)</span> <span class="k">else</span><span class="p">:</span> <span class="n">adj_timedate</span> <span class="o">=</span> <span class="n">episode_first_day</span> <span class="n">first_row</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="o">.</span><span class="n">get_loc</span><span class="p">(</span><span class="n">adj_timedate</span><span class="p">,</span> <span class="n">method</span><span class="o">=</span><span class="s1">&#39;nearest&#39;</span><span class="p">)</span> <span class="c1"># Easy part:</span> <span class="n">last_row</span> <span class="o">=</span> <span class="n">first_row</span> <span class="o">+</span> <span class="n">sample_num_records</span> <span class="c1"># + 1</span> <span class="n">episode_sample</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="p">[</span><span class="n">first_row</span><span class="p">:</span> <span class="n">last_row</span><span class="p">]</span> <span class="n">episode_sample_len</span> <span class="o">=</span> <span class="p">(</span><span class="n">episode_sample</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span> <span class="o">-</span> <span class="n">episode_sample</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="mi">0</span><span class="p">])</span><span class="o">.</span><span class="n">to_pytimedelta</span><span class="p">()</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Sample duration: </span><span class="si">{}</span><span class="s1">.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">episode_sample_len</span><span class="p">,</span> <span class="p">))</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Total sample time gap: </span><span class="si">{}</span><span class="s1">.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">episode_sample_len</span> <span class="o">-</span> <span class="bp">self</span><span class="o">.</span><span class="n">max_episode_len</span><span class="p">))</span> <span class="c1"># Perform data gap check:</span> <span class="k">if</span> <span class="n">episode_sample_len</span> <span class="o">-</span> <span class="bp">self</span><span class="o">.</span><span class="n">max_episode_len</span> <span class="o">&lt;</span> <span class="bp">self</span><span class="o">.</span><span class="n">max_time_gap</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Sample accepted.&#39;</span><span class="p">)</span> <span class="c1"># If sample OK - return episodic-dataset:</span> <span class="n">episode</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="vm">__class__</span><span class="p">(</span><span class="o">**</span><span class="bp">self</span><span class="o">.</span><span class="n">params</span><span class="p">)</span> <span class="n">episode</span><span class="o">.</span><span class="n">filename</span> <span class="o">=</span> <span class="s1">&#39;_btgym_interval_sample_&#39;</span> <span class="o">+</span> <span class="nb">str</span><span class="p">(</span><span class="n">adj_timedate</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">info</span><span class="p">(</span><span class="s1">&#39;Sample id: &lt;</span><span class="si">{}</span><span class="s1">&gt;.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">episode</span><span class="o">.</span><span class="n">filename</span><span class="p">))</span> <span class="n">episode</span><span class="o">.</span><span class="n">data</span> <span class="o">=</span> <span class="n">episode_sample</span> <span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">[</span><span class="s1">&#39;type&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="s1">&#39;interval_sample&#39;</span> <span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">[</span><span class="s1">&#39;first_row&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="n">first_row</span> <span class="k">return</span> <span class="n">episode</span> <span class="k">else</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Attempt </span><span class="si">{}</span><span class="s1">: duration too big, resampling, ...</span><span class="se">\n</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">attempts</span><span class="p">))</span> <span class="n">attempts</span> <span class="o">+=</span> <span class="mi">1</span> <span class="c1"># Got here -&gt; sanity check failed:</span> <span class="n">msg</span> <span class="o">=</span> <span class="p">(</span><span class="s1">&#39;Quitting after </span><span class="si">{}</span><span class="s1"> sampling attempts.&#39;</span> <span class="o">+</span> <span class="s1">&#39;Hint: check sampling params / dataset consistency.&#39;</span><span class="p">)</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">attempts</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span><span class="n">msg</span><span class="p">)</span> <span class="k">raise</span> <span class="ne">AssertionError</span><span class="p">(</span><span class="n">msg</span><span class="p">)</span></div> <div class="viewcode-block" id="BTgymSequentialTrial"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymSequentialTrial">[docs]</a><span class="k">class</span> <span class="nc">BTgymSequentialTrial</span><span class="p">(</span><span class="n">BTgymDataset</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Sequential Data Trials iterator.</span> <span class="sd"> Enables sliding or expanding time-window training and testing for the dataset of time-ordered records.</span> <span class="sd"> Single Trial is defined by:</span> <span class="sd"> - support train and test intervals::</span> <span class="sd"> [train_start_time &lt;-&gt; train_end_time], [test_start_time &lt;-&gt; test_end_time],</span> <span class="sd"> such as:</span> <span class="sd"> train_start_time &lt; train_end_time + 1 = test_start_time &lt; test_end_time,</span> <span class="sd"> where `1` stands for next closest time.</span> <span class="sd"> - number of train episodes to draw from train support interval;</span> <span class="sd"> - number of test episodes to draw from test support interval;</span> <span class="sd"> Sliding time-window data iterating:</span> <span class="sd"> If training is started from the beginningg of the dataset, `train_start_time` is set to that of first record,</span> <span class="sd"> for example, for the start of the year::</span> <span class="sd"> Trial train interval: 19 days, 23:59:00; test interval: 2 days, 23:59:00;</span> <span class="sd"> Train episodes per trial: 1000; test episodes per trial: 10, test_period: 50, iterating from 0-th</span> <span class="sd"> Then first trial intervals will be (note that omitted data periods like holidays are excluded)::</span> <span class="sd"> Training interval: 2016-01-03 17:01:00 &lt;--&gt; 2016-01-31 17:14:00;</span> <span class="sd"> Testing interval: 2016-01-31 17:15:00 &lt;--&gt; 2016-02-03 17:14:00;</span> <span class="sd"> Since `reset_data()` method call, every call to `BTgymSequentialTrial.sample()` method will return randomly drawn</span> <span class="sd"> train episode from train interval, until reached `test_period` number of samples (here -50). Than iterator `pauses</span> <span class="sd"> training` and each next call to `sample()` will return randomly drawn episode from test interval,</span> <span class="sd"> until again max. number is reached (here - 10).</span> <span class="sd"> Train-test loop is repeated until max. number of `Trial` train samples is reached ( here - 1000).</span> <span class="sd"> Next call to `sample()` will result in following: next `Trial` will be formed such as::</span> <span class="sd"> train_start_time_next_trial = `test_end_time_previous_trial + 1</span> <span class="sd"> i.e. `Trial` will be shifted by the duration of test period,</span> <span class="sd"> than first train episode of the new `Trial` will be sampled and returned.</span> <span class="sd"> Repeats until entire dataset is exhausted.</span> <span class="sd"> Note that while train periods are overlapping, test periods form a partition.</span> <span class="sd"> Here, next trial will be::</span> <span class="sd"> Training @: 2016-01-06 00:00:00 &lt;--&gt; 2016-02-03 00:10:00;</span> <span class="sd"> Testing @: 2016-02-03 00:12:00 &lt;--&gt; 2016-02-08 00:13:00</span> <span class="sd"> Expanding time-window data iterating:</span> <span class="sd"> Differs from above in a way that trial interval start position is fixed at the beginning of dataset. Thus,</span> <span class="sd"> trial support interval is expanding to the right and every subsequent trial is `longer` than previous one</span> <span class="sd"> by amount of test interval.</span> <span class="sd"> Episodes sampling:</span> <span class="sd"> Episodes sampling is performed in such a way that entire episode duration lies within `Trial` interval.</span> <span class="sd"> Experimental:</span> <span class="sd"> Train episode start position within interval is drawn from beta-distribution with default parameters b_alpha=1,</span> <span class="sd"> b_beta=1, i.e. uniform one.</span> <span class="sd"> Beta-distribution makes skewed sampling possible , e.g.</span> <span class="sd"> to give recent episodes higher probability of being sampled, e.g.: b_alpha=10, b_beta=0.8.</span> <span class="sd"> It can be set to anneal to uniform one in specified number of train episodes. Annealing is done by exponentially</span> <span class="sd"> decaying alpha and beta parameters to 1.</span> <span class="sd"> Test episodes are always sampled uniformly.</span> <span class="sd"> See description at `BTgymTrialRandomIterator()` for motivation.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="n">trial_params</span> <span class="o">=</span> <span class="nb">dict</span><span class="p">(</span> <span class="c1"># Trial-sampling params:</span> <span class="n">train_range</span><span class="o">=</span><span class="nb">dict</span><span class="p">(</span> <span class="c1"># Trial time range in days, hours, minutes:</span> <span class="n">days</span><span class="o">=</span><span class="mi">7</span><span class="p">,</span> <span class="n">hours</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span> <span class="p">),</span> <span class="n">test_range</span><span class="o">=</span><span class="nb">dict</span><span class="p">(</span> <span class="c1"># Test time period in days, hours, minutes:</span> <span class="n">days</span><span class="o">=</span><span class="mi">7</span><span class="p">,</span> <span class="n">hours</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span> <span class="p">),</span> <span class="n">train_samples</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span> <span class="n">test_samples</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span> <span class="n">test_period</span><span class="o">=</span><span class="mi">100</span><span class="p">,</span> <span class="n">trial_start_00</span><span class="o">=</span><span class="kc">True</span><span class="p">,</span> <span class="n">expanding</span><span class="o">=</span><span class="kc">False</span><span class="p">,</span> <span class="n">b_alpha</span><span class="o">=</span><span class="mf">1.0</span><span class="p">,</span> <span class="n">b_beta</span><span class="o">=</span><span class="mf">1.0</span><span class="p">,</span> <span class="n">b_anneal_steps</span><span class="o">=-</span><span class="mi">1</span> <span class="p">)</span> <span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Args:</span> <span class="sd"> kwargs: BTgymDataset specific kwargs.</span> <span class="sd"> train_range: dict. containing `Trial` train interval in: `days`[, `hours`][, `minutes`];</span> <span class="sd"> test_range: dict. containing `Trial` test interval in: `days`[, `hours`][, `minutes`];</span> <span class="sd"> train_samples: number of episodes to draw from single `Trial train interval`;</span> <span class="sd"> test_samples: number of episodes to draw from `Trial test interval` every `test period`;</span> <span class="sd"> test_period: draw test episodes after every `test_period` train samples;</span> <span class="sd"> expanding: bool, if True - use expanding-type Trials, sliding otherwise; def=False;</span> <span class="sd"> b_alpha: sampling beta-distribution alpha param; def=1;</span> <span class="sd"> b_beta: sampling beta-distribution beta param; def=1;</span> <span class="sd"> b_anneal_steps: if set, anneals beta-distribution to uniform one in &#39;b_anneal_steps&#39; number</span> <span class="sd"> of train samples, numbering continuously for all `Trials`; def=-1 (disabled);</span> <span class="sd"> trial_start_00: `Trial` start time will be set to that of first record of the day (usually 00:00);</span> <span class="sd"> Note:</span> <span class="sd"> - Total number of `Trials` (cardinality) is inferred upon args given and overall dataset size.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="bp">self</span><span class="o">.</span><span class="n">params</span><span class="o">.</span><span class="n">update</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">trial_params</span><span class="p">)</span> <span class="nb">super</span><span class="p">(</span><span class="n">BTgymSequentialTrial</span><span class="p">,</span> <span class="bp">self</span><span class="p">)</span><span class="o">.</span><span class="fm">__init__</span><span class="p">(</span><span class="o">**</span><span class="n">kwargs</span><span class="p">)</span> <span class="c1"># Timedeltas:</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_range_delta</span> <span class="o">=</span> <span class="n">datetime</span><span class="o">.</span><span class="n">timedelta</span><span class="p">(</span><span class="o">**</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_range_delta</span> <span class="o">=</span> <span class="n">datetime</span><span class="o">.</span><span class="n">timedelta</span><span class="p">(</span><span class="o">**</span><span class="bp">self</span><span class="o">.</span><span class="n">test_range</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_mean_row</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">global_step</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_steps</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_trials</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_sample_num</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_sample_num</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_samples</span> <span class="o">=</span> <span class="mi">0</span> <div class="viewcode-block" id="BTgymSequentialTrial.lin_decay"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymSequentialTrial.lin_decay">[docs]</a> <span class="nd">@staticmethod</span> <span class="k">def</span> <span class="nf">lin_decay</span><span class="p">(</span><span class="n">step</span><span class="p">,</span> <span class="n">param_0</span><span class="p">,</span> <span class="n">max_steps</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Linear decay from param_0 to 1 in `max_steps`.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">if</span> <span class="n">max_steps</span> <span class="o">&gt;</span> <span class="mi">0</span><span class="p">:</span> <span class="k">if</span> <span class="n">step</span> <span class="o">&lt;=</span> <span class="n">max_steps</span><span class="p">:</span> <span class="k">return</span> <span class="p">((</span><span class="mi">1</span> <span class="o">-</span> <span class="n">param_0</span><span class="p">)</span> <span class="o">/</span> <span class="n">max_steps</span><span class="p">)</span> <span class="o">*</span> <span class="n">step</span> <span class="o">+</span> <span class="n">param_0</span> <span class="k">else</span><span class="p">:</span> <span class="k">return</span> <span class="mf">1.0</span> <span class="k">else</span><span class="p">:</span> <span class="k">return</span> <span class="n">param_0</span></div> <div class="viewcode-block" id="BTgymSequentialTrial.exp_decay"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymSequentialTrial.exp_decay">[docs]</a> <span class="nd">@staticmethod</span> <span class="k">def</span> <span class="nf">exp_decay</span><span class="p">(</span><span class="n">step</span><span class="p">,</span> <span class="n">param_0</span><span class="p">,</span> <span class="n">max_steps</span><span class="p">,</span> <span class="n">gamma</span><span class="o">=</span><span class="mf">3.5</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> For given step &lt;= max_steps returns exp-decayed value in [param_0, 1]; returns 1 if step &gt; max_steps;</span> <span class="sd"> gamma - steepness control.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">if</span> <span class="n">max_steps</span> <span class="o">&gt;</span> <span class="mi">0</span><span class="p">:</span> <span class="k">if</span> <span class="n">step</span> <span class="o">&lt;=</span> <span class="n">max_steps</span><span class="p">:</span> <span class="n">step</span> <span class="o">=</span> <span class="mi">2</span> <span class="o">-</span> <span class="n">step</span> <span class="o">/</span> <span class="n">max_steps</span> <span class="k">return</span> <span class="n">math</span><span class="o">.</span><span class="n">exp</span><span class="p">(</span><span class="n">step</span> <span class="o">**</span> <span class="n">gamma</span> <span class="o">-</span> <span class="mi">2</span> <span class="o">**</span> <span class="n">gamma</span><span class="p">)</span> <span class="o">*</span> <span class="p">(</span><span class="n">param_0</span> <span class="o">-</span> <span class="mi">1</span><span class="p">)</span> <span class="o">+</span> <span class="mi">1</span> <span class="k">else</span><span class="p">:</span> <span class="k">return</span> <span class="mf">1.0</span> <span class="k">else</span><span class="p">:</span> <span class="k">return</span> <span class="n">param_0</span></div> <div class="viewcode-block" id="BTgymSequentialTrial.sample"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymSequentialTrial.sample">[docs]</a> <span class="k">def</span> <span class="nf">sample</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Randomly samples from iterating sequence of `Trial` train/test distributions.</span> <span class="sd"> Sampling loop::</span> <span class="sd"> - until Trial_sequence is exhausted or .reset():</span> <span class="sd"> - sample next Trial in Trial_sequence;</span> <span class="sd"> - until predefined number of episodes has been drawn:</span> <span class="sd"> - randomly draw single episode from current Trial TRAIN distribution;</span> <span class="sd"> - if reached test_period train episodes:</span> <span class="sd"> - until predefined number of episodes has been drawn:</span> <span class="sd"> - draw single episode from current Trial TEST distribution;</span> <span class="sd"> Args:</span> <span class="sd"> kwargs: not used.</span> <span class="sd"> Returns:</span> <span class="sd"> `BTgymDataset` instance containing episode data [and metadata].</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">try</span><span class="p">:</span> <span class="k">assert</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_ready</span> <span class="k">except</span> <span class="ne">AssertionError</span><span class="p">:</span> <span class="k">return</span> <span class="s1">&#39;Data not ready. Call .reset() first.&#39;</span> <span class="n">episode</span><span class="p">,</span> <span class="n">trial_num</span><span class="p">,</span> <span class="nb">type</span><span class="p">,</span> <span class="n">sample_num</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_trial_sample_sequential</span><span class="p">()</span> <span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">[</span><span class="s1">&#39;type&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="nb">type</span> <span class="c1"># 0 - train, 1 - test</span> <span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">[</span><span class="s1">&#39;trial_num&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="n">trial_num</span> <span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">[</span><span class="s1">&#39;sample_num&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="n">sample_num</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Seq_Data_Iterator: sample is ready with metadata: </span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">))</span> <span class="k">return</span> <span class="n">episode</span></div> <div class="viewcode-block" id="BTgymSequentialTrial.reset"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymSequentialTrial.reset">[docs]</a> <span class="k">def</span> <span class="nf">reset</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">global_step</span><span class="o">=</span><span class="mi">0</span><span class="p">,</span> <span class="n">total_steps</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span> <span class="n">skip_frame</span><span class="o">=</span><span class="mi">10</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> [Re]starts sampling iterator from specified position.</span> <span class="sd"> Args:</span> <span class="sd"> global_step: position in [0, total_steps] interval to start sampling from.</span> <span class="sd"> total_steps: max gym environmnet steps allowed for full sweep over `Trials`.</span> <span class="sd"> skip_frame: BTGym specific, such as: `total_btgym_dataset_steps = total_steps * skip_frame`.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">try</span><span class="p">:</span> <span class="k">assert</span> <span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">empty</span> <span class="k">except</span> <span class="p">(</span><span class="ne">AssertionError</span><span class="p">,</span> <span class="ne">AttributeError</span><span class="p">)</span> <span class="k">as</span> <span class="n">e</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">read_csv</span><span class="p">()</span> <span class="c1"># Total gym-environment steps and step training starts with:</span> <span class="k">if</span> <span class="n">total_steps</span> <span class="ow">is</span> <span class="ow">not</span> <span class="kc">None</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_steps</span> <span class="o">=</span> <span class="n">total_steps</span> <span class="bp">self</span><span class="o">.</span><span class="n">global_step</span> <span class="o">=</span> <span class="n">global_step</span> <span class="k">assert</span> <span class="bp">self</span><span class="o">.</span><span class="n">global_step</span> <span class="o">&lt;</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_steps</span><span class="p">,</span> <span class="s1">&#39;Outer space jumps not supported. Got: global_step=</span><span class="si">{}</span><span class="s1"> of </span><span class="si">{}</span><span class="s1">.&#39;</span><span class="o">.</span>\ <span class="nb">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">global_step</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_steps</span><span class="p">)</span> <span class="k">else</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">global_step</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_steps</span> <span class="o">=</span> <span class="o">-</span><span class="mi">1</span> <span class="c1"># Trial train support interval in number of records:</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_range_delta</span><span class="o">.</span><span class="n">total_seconds</span><span class="p">()</span> <span class="o">/</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">timeframe</span> <span class="o">*</span> <span class="mi">60</span><span class="p">))</span> <span class="c1"># Trial test support interval in number of records:</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_range_delta</span><span class="o">.</span><span class="n">total_seconds</span><span class="p">()</span> <span class="o">/</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">timeframe</span> <span class="o">*</span> <span class="mi">60</span><span class="p">))</span> <span class="c1"># Infer cardinality of distribution over Trials:</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_trials</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">shape</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">-</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span><span class="p">)</span> <span class="o">/</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="p">)</span> <span class="k">assert</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_trials</span> <span class="o">&gt;</span> <span class="mi">0</span><span class="p">,</span> <span class="s1">&#39;Trial`s cardinality below 1. Hint: check data parameters consistency.&#39;</span> <span class="c1"># Infer number of train samples to draw from each Trial distribution:</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_steps</span> <span class="o">&gt;</span> <span class="mi">0</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_samples</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">total_steps</span> <span class="o">/</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">total_trials</span> <span class="o">*</span> <span class="bp">self</span><span class="o">.</span><span class="n">episode_num_records</span> <span class="o">/</span> <span class="n">skip_frame</span><span class="p">))</span> <span class="k">else</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span><span class="s1">&#39;`reset_data()` got total_steps=None -&gt; train_samples=</span><span class="si">{}</span><span class="s1">, iterating from 0&#39;</span><span class="o">.</span> <span class="nb">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_samples</span><span class="p">))</span> <span class="k">assert</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_samples</span> <span class="o">&gt;</span> <span class="mi">0</span><span class="p">,</span> <span class="s1">&#39;Number of train samples per trial below 1. Hint: check parameters consistency.&#39;</span> <span class="k">assert</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_samples</span> <span class="o">&gt;=</span> <span class="mi">0</span><span class="p">,</span> <span class="s1">&#39;Size of test samples batch below 0. Hint: check parameters consistency.&#39;</span> <span class="k">assert</span> <span class="bp">self</span><span class="o">.</span><span class="n">b_alpha</span> <span class="o">&gt;</span> <span class="mi">0</span> <span class="ow">and</span> <span class="bp">self</span><span class="o">.</span><span class="n">b_beta</span> <span class="o">&gt;</span> <span class="mi">0</span><span class="p">,</span> <span class="s1">&#39;Expected positive B-distribution alpha, beta; got: </span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span>\ <span class="nb">format</span><span class="p">([</span><span class="bp">self</span><span class="o">.</span><span class="n">b_alpha</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">b_beta</span><span class="p">])</span> <span class="c1"># Current trial to start with:</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">total_trials</span> <span class="o">*</span> <span class="bp">self</span><span class="o">.</span><span class="n">global_step</span> <span class="o">/</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_steps</span><span class="p">)</span> <span class="c1"># Number of train samples sampled so far (fror B-distr. annealing):</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_samples</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span> <span class="o">*</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_samples</span> <span class="c1">#print(&#39;self.train_range_delta:&#39;, self.train_range_delta.total_seconds())</span> <span class="c1">#print(&#39;self.train_range_row:&#39;, self.train_range_row)</span> <span class="c1">#print(&#39;self.test_range_delta:&#39;, self.test_range_delta)</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_sample_num</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_sample_num</span> <span class="o">=</span> <span class="mi">0</span> <span class="c1"># Mean of first train-Trial:</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="o">+</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="o">*</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span> <span class="c1">#print(&#39;self.train_mean_row:&#39;, self.train_mean_row)</span> <span class="c1"># If trial_start_00 option set, get index of first record of that day:</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_start_00</span><span class="p">:</span> <span class="n">train_first_row</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">-</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="o">+</span> <span class="mi">1</span> <span class="n">train_first_day</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="p">[</span><span class="n">train_first_row</span><span class="p">:</span><span class="n">train_first_row</span> <span class="o">+</span> <span class="mi">1</span><span class="p">]</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="o">.</span><span class="n">get_loc</span><span class="p">(</span><span class="n">train_first_day</span><span class="o">.</span><span class="n">date</span><span class="p">(),</span> <span class="n">method</span><span class="o">=</span><span class="s1">&#39;nearest&#39;</span><span class="p">)</span> <span class="o">+</span> \ <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span><span class="s1">&#39;Trial train start time adjusted to &lt;00:00&gt;&#39;</span><span class="p">)</span> <span class="c1"># Mean of first test-Trial:</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_mean_row</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">((</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">+</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span><span class="p">)</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="o">+</span> <span class="mi">1</span> <span class="c1">#print(&#39;self.test_mean_row:&#39;, self.test_mean_row)</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">expanding</span><span class="p">:</span> <span class="n">start_time</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="n">start_row</span> <span class="o">=</span> <span class="mi">0</span> <span class="n">t_type</span><span class="o">=</span><span class="s1">&#39;EXPANDING&#39;</span> <span class="k">else</span><span class="p">:</span> <span class="n">start_time</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">-</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)]</span> <span class="n">start_row</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">-</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="n">t_type</span> <span class="o">=</span> <span class="s1">&#39;SLIDING&#39;</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span> <span class="p">(</span> <span class="s1">&#39;</span><span class="se">\n</span><span class="s1">Trial type: </span><span class="si">{}</span><span class="s1">; [initial] train interval: </span><span class="si">{}</span><span class="s1">; test interval: </span><span class="si">{}</span><span class="s1">.&#39;</span> <span class="o">+</span> <span class="s1">&#39;</span><span class="se">\n</span><span class="s1">Cardinality: </span><span class="si">{}</span><span class="s1">; iterating from: </span><span class="si">{}</span><span class="s1">.&#39;</span> <span class="o">+</span> <span class="s1">&#39;</span><span class="se">\n</span><span class="s1">Train episodes per trial: </span><span class="si">{}</span><span class="s1">, sampling from beta-distribution[a:</span><span class="si">{}</span><span class="s1">, b:</span><span class="si">{}</span><span class="s1">] on train interval.&#39;</span><span class="o">+</span> <span class="s1">&#39;</span><span class="se">\n</span><span class="s1">Sampling </span><span class="si">{}</span><span class="s1"> test episodes after every </span><span class="si">{}</span><span class="s1"> train ones.&#39;</span> <span class="p">)</span><span class="o">.</span><span class="n">format</span><span class="p">(</span> <span class="n">t_type</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_range_delta</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_range_delta</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_trials</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_samples</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">b_alpha</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">b_beta</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_samples</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_period</span><span class="p">,</span> <span class="p">)</span> <span class="p">)</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">b_anneal_steps</span> <span class="o">&gt;</span> <span class="mi">0</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span><span class="s1">&#39;</span><span class="se">\n</span><span class="s1">Annealing beta-distribution to uniform one in </span><span class="si">{}</span><span class="s1"> train samples.&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">b_anneal_steps</span><span class="p">))</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span> <span class="s1">&#39;</span><span class="se">\n</span><span class="s1">Trial #</span><span class="si">{}</span><span class="s1">:</span><span class="se">\n</span><span class="s1">Training @: </span><span class="si">{}</span><span class="s1"> &lt;--&gt; </span><span class="si">{}</span><span class="s1">;</span><span class="se">\n</span><span class="s1">Testing @: </span><span class="si">{}</span><span class="s1"> &lt;--&gt; </span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span> <span class="nb">format</span><span class="p">(</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span><span class="p">,</span> <span class="n">start_time</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)],</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">test_mean_row</span> <span class="o">-</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)],</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">test_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)],</span> <span class="p">)</span> <span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span> <span class="s1">&#39;Trial #</span><span class="si">{}</span><span class="s1"> rows: training @: </span><span class="si">{}</span><span class="s1"> &lt;--&gt; </span><span class="si">{}</span><span class="s1">; testing @: </span><span class="si">{}</span><span class="s1"> &lt;--&gt; </span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span> <span class="nb">format</span><span class="p">(</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span><span class="p">,</span> <span class="n">start_row</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">),</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_mean_row</span> <span class="o">-</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">),</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">),</span> <span class="p">)</span> <span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_ready</span> <span class="o">=</span> <span class="kc">True</span></div> <span class="k">def</span> <span class="nf">_trial_sample_sequential</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="c1"># Is it time to run tests?</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_sample_num</span> <span class="o">!=</span> <span class="mi">0</span> <span class="ow">and</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_sample_num</span> <span class="o">%</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_period</span> <span class="o">==</span> <span class="mi">0</span><span class="p">:</span> <span class="c1"># Until not done with testing:</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_sample_num</span> <span class="o">&lt;</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_samples</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_sample_num</span> <span class="o">+=</span> <span class="mi">1</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Test sample #</span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">test_sample_num</span><span class="p">))</span> <span class="c1"># Uniformly sample tests:</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_sample_interval</span><span class="p">(</span> <span class="n">interval</span><span class="o">=</span><span class="p">[</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_mean_row</span> <span class="o">-</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">),</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="p">],</span> <span class="n">b_alpha</span><span class="o">=</span><span class="mi">1</span><span class="p">,</span> <span class="n">b_beta</span><span class="o">=</span><span class="mi">1</span> <span class="p">),</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span><span class="p">,</span> <span class="kc">True</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_sample_num</span> <span class="k">else</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_sample_num</span> <span class="o">=</span> <span class="mi">0</span> <span class="c1"># Have we done with training on current Trial?</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_sample_num</span> <span class="o">&gt;=</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_samples</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span> <span class="o">+=</span> <span class="mi">1</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_sample_num</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">+=</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="k">assert</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span> <span class="o">&lt;=</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_trials</span><span class="p">,</span> <span class="s1">&#39;Trial`s sequence exhausted.&#39;</span> <span class="c1"># Todo: self.ready = False</span> <span class="c1"># If trial_start_00 option set, get index of first record of that day:</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_start_00</span><span class="p">:</span> <span class="n">train_first_row</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">-</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="o">+</span> <span class="mi">1</span> <span class="n">train_first_day</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="p">[</span><span class="n">train_first_row</span><span class="p">:</span><span class="n">train_first_row</span> <span class="o">+</span> <span class="mi">1</span><span class="p">]</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="o">.</span><span class="n">get_loc</span><span class="p">(</span><span class="n">train_first_day</span><span class="o">.</span><span class="n">date</span><span class="p">(),</span> <span class="n">method</span><span class="o">=</span><span class="s1">&#39;nearest&#39;</span><span class="p">)</span> <span class="o">+</span> \ <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Trial train start time adjusted to &lt;00:00&gt; :</span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span><span class="p">))</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_mean_row</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">((</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">+</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span><span class="p">)</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="o">+</span> <span class="mi">1</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">expanding</span><span class="p">:</span> <span class="n">start_time</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="k">else</span><span class="p">:</span> <span class="n">start_time</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">-</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)]</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span> <span class="s1">&#39;Trial #</span><span class="si">{}</span><span class="s1">:</span><span class="se">\n</span><span class="s1">Training @: </span><span class="si">{}</span><span class="s1"> &lt;--&gt; </span><span class="si">{}</span><span class="s1">;</span><span class="se">\n</span><span class="s1">Testing @: </span><span class="si">{}</span><span class="s1"> &lt;--&gt; </span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span> <span class="nb">format</span><span class="p">(</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span><span class="p">,</span> <span class="n">start_time</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)],</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">test_mean_row</span> <span class="o">-</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)],</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">test_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">test_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)],</span> <span class="p">)</span> <span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_sample_num</span> <span class="o">+=</span> <span class="mi">1</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_samples</span> <span class="o">+=</span> <span class="mi">1</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Train sample #</span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_sample_num</span><span class="p">))</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">expanding</span><span class="p">:</span> <span class="n">interval</span> <span class="o">=</span> <span class="p">[</span><span class="mi">0</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)]</span> <span class="k">else</span><span class="p">:</span> <span class="n">interval</span> <span class="o">=</span> <span class="p">[</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">-</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">),</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="p">]</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_sample_interval</span><span class="p">(</span> <span class="n">interval</span><span class="o">=</span><span class="n">interval</span><span class="p">,</span> <span class="n">b_alpha</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">exp_decay</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">total_samples</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">b_alpha</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">b_anneal_steps</span><span class="p">),</span> <span class="n">b_beta</span><span class="o">=</span><span class="bp">self</span><span class="o">.</span><span class="n">exp_decay</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">total_samples</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">b_beta</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">b_anneal_steps</span><span class="p">),</span> <span class="p">),</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span><span class="p">,</span> <span class="kc">False</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_sample_num</span></div> <div class="viewcode-block" id="BTgymRandomTrial"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymRandomTrial">[docs]</a><span class="k">class</span> <span class="nc">BTgymRandomTrial</span><span class="p">(</span><span class="n">BTgymSequentialTrial</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Random Data Trials iterator.</span> <span class="sd"> Note:</span> <span class="sd"> While these iterators can simply be seen as sliding/random sampling time-windows, the realisation is inspired by</span> <span class="sd"> `FAST REINFORCEMENT LEARNING VIA SLOW REINFORCEMENT LEARNING` paper by Duan et al.,</span> <span class="sd"> https://arxiv.org/pdf/1611.02779.pdf</span> <span class="sd"> Problem: Real-world BTGym POMDP violates condition of having stationary transitional distribution.</span> <span class="sd"> Want: re-present BTGym on-line task as set [actually a well-ordered] of discrete-time finite-horizon discounted</span> <span class="sd"> partially-observed Markov decision processes (POMDP&#39;s) to define optimization objective of learning</span> <span class="sd"> RL algorithm itself, which can [hopefully] be one approach to learning in changing environment.</span> <span class="sd"> Note that BTgym dataset is set of date_time ordered, mainly continuous records.</span> <span class="sd"> Let each `Trial` be discrete uniform distribution among all episodes, such as for each episode:</span> <span class="sd"> a) start time lies within particular `Trail support time interval` of `trial_range` time length and</span> <span class="sd"> b) episode duration is less or equal to `max_episode_duration` constant;</span> <span class="sd"> let `Trail mean` be particular row or date_time position within dataset timeline.</span> <span class="sd"> Under original BTGym conditions, for each `Trial` there exists `single POMDP`.</span> <span class="sd"> Let `Trial_sequence` be a set of `Trials` resulted by incrementing `trial_mean` parameter</span> <span class="sd"> with `trial_stride` from end to end of dataset timeline.</span> <span class="sd"> Such `Trial_sequence` casts a `set of POMDP&#39;s`, every element of wich can be considered well-defined in terms</span> <span class="sd"> of own transition distribution; now it&#39;s possible to design optimization objective `...to maximize the expected</span> <span class="sd"> total discounted reward accumulated during a single trial rather than a single episode.` [above paper, 2.2]</span> <span class="sd"> This particular iterator casts unordered `set of Trials`, while `BTgymSequentialTrial()` class sweeps through</span> <span class="sd"> later in time-ordered fashion.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Args:</span> <span class="sd"> **kwargs: BTgymDataset() specific kwargs.</span> <span class="sd"> trial_range: dict. containing `Trial support interval` (time range) as: `days`[, `hours`][, `minutes`].</span> <span class="sd"> trial_stride: dict. containing `stride interval` between `Trials` as: `days`[, `hours`][, `minutes`].</span> <span class="sd"> samples_per_trial: self-explaining; unlike sequential case, has to be set explicitly.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="nb">super</span><span class="p">(</span><span class="n">BTgymRandomTrial</span><span class="p">,</span> <span class="bp">self</span><span class="p">)</span><span class="o">.</span><span class="fm">__init__</span><span class="p">(</span><span class="o">**</span><span class="n">kwargs</span><span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span> <span class="o">=</span> <span class="mi">0</span> <div class="viewcode-block" id="BTgymRandomTrial.reset"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymRandomTrial.reset">[docs]</a> <span class="k">def</span> <span class="nf">reset</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> [Re]starts sampling iterator.</span> <span class="sd"> Args:</span> <span class="sd"> kwargs: not used.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">try</span><span class="p">:</span> <span class="k">assert</span> <span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">empty</span> <span class="k">except</span> <span class="p">(</span><span class="ne">AssertionError</span><span class="p">,</span> <span class="ne">AttributeError</span><span class="p">)</span> <span class="k">as</span> <span class="n">e</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">read_csv</span><span class="p">()</span> <span class="c1"># Infer cardinality of distribution over Trials:</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_trials</span> <span class="o">=</span> <span class="nb">int</span><span class="p">((</span><span class="bp">self</span><span class="o">.</span><span class="n">data_range_delta</span> <span class="o">-</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_range_delta</span><span class="p">)</span> <span class="o">/</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_range_delta</span><span class="p">)</span> <span class="k">assert</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_trials</span> <span class="o">&gt;</span> <span class="mi">0</span><span class="p">,</span> <span class="s1">&#39;Trial`s cardinality below 1. Hint: check data parameters consistency.&#39;</span> <span class="c1"># Current trial to start with:</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span> <span class="o">=</span> <span class="mi">0</span> <span class="c1"># Trial support interval in number of records:</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_range_row</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">shape</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">*</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">train_range_delta</span> <span class="o">/</span> <span class="bp">self</span><span class="o">.</span><span class="n">data_range_delta</span><span class="p">))</span> <span class="c1"># Sequential step size:</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_stride_row</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">shape</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="o">*</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">test_range_delta</span> <span class="o">/</span> <span class="bp">self</span><span class="o">.</span><span class="n">data_range_delta</span><span class="p">))</span> <span class="bp">self</span><span class="o">.</span><span class="n">sample_num</span> <span class="o">=</span> <span class="mi">0</span> <span class="c1"># Mean of first Trial:</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_mean_row</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">trial_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="o">+</span> \ <span class="bp">self</span><span class="o">.</span><span class="n">trial_stride_row</span> <span class="o">*</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">total_trials</span> <span class="o">*</span> <span class="n">random</span><span class="o">.</span><span class="n">random</span><span class="p">())</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span> <span class="s1">&#39;</span><span class="se">\n</span><span class="s1">Trial support interval: </span><span class="si">{}</span><span class="s1">; mean stride: </span><span class="si">{}</span><span class="se">\n</span><span class="s1">Trials cardinality: </span><span class="si">{}</span><span class="se">\n</span><span class="s1">Episodes per trial: </span><span class="si">{}</span><span class="s1">.</span><span class="se">\n</span><span class="s1">&#39;</span><span class="o">.</span> <span class="nb">format</span><span class="p">(</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_range_delta</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">test_range_delta</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">total_trials</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_samples</span> <span class="p">)</span> <span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span> <span class="s1">&#39;Trial #</span><span class="si">{}</span><span class="s1"> @ interval: </span><span class="si">{}</span><span class="s1"> &lt;--&gt; </span><span class="si">{}</span><span class="s1">; mean row: </span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span> <span class="nb">format</span><span class="p">(</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">trial_mean_row</span> <span class="o">-</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">trial_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)],</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">trial_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">trial_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)],</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_mean_row</span> <span class="p">)</span> <span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_ready</span> <span class="o">=</span> <span class="kc">True</span></div> <div class="viewcode-block" id="BTgymRandomTrial.sample"><a class="viewcode-back" href="../../btgym.html#btgym.datafeed.BTgymRandomTrial.sample">[docs]</a> <span class="k">def</span> <span class="nf">sample</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">):</span> <span class="sd">&quot;&quot;&quot;</span> <span class="sd"> Randomly uniformly samples episode from `Trial` which in turn has been</span> <span class="sd"> uniformly sampled from `sequence of Trials`.</span> <span class="sd"> Iteratively calling this method results in::</span> <span class="sd"> - randomly draws single episode from Trial;</span> <span class="sd"> - until predefined number of episodes has been drawn;</span> <span class="sd"> - randomly draws Trial from Trial&#39;s distribution;</span> <span class="sd"> - until bored.</span> <span class="sd"> Args:</span> <span class="sd"> kwargs: not used.</span> <span class="sd"> Returns:</span> <span class="sd"> BTgymDataset instance containing episode data and metadata.</span> <span class="sd"> &quot;&quot;&quot;</span> <span class="k">try</span><span class="p">:</span> <span class="k">assert</span> <span class="bp">self</span><span class="o">.</span><span class="n">is_ready</span> <span class="k">except</span> <span class="ne">AssertionError</span><span class="p">:</span> <span class="k">return</span> <span class="s1">&#39;Data not ready. Call .reset() first.&#39;</span> <span class="n">episode</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_trial_sample_random</span><span class="p">()</span> <span class="c1"># Metadata:</span> <span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">[</span><span class="s1">&#39;type&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="kc">False</span> <span class="c1"># Always `train`</span> <span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">[</span><span class="s1">&#39;trial_num&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span> <span class="n">episode</span><span class="o">.</span><span class="n">metadata</span><span class="p">[</span><span class="s1">&#39;sample_num&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">sample_num</span> <span class="k">return</span> <span class="n">episode</span></div> <span class="k">def</span> <span class="nf">_trial_sample_random</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span> <span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">sample_num</span> <span class="o">&gt;=</span> <span class="bp">self</span><span class="o">.</span><span class="n">train_samples</span><span class="p">:</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span> <span class="o">+=</span> <span class="mi">1</span> <span class="bp">self</span><span class="o">.</span><span class="n">sample_num</span> <span class="o">=</span> <span class="mi">0</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_mean_row</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">trial_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="o">+</span>\ <span class="bp">self</span><span class="o">.</span><span class="n">trial_stride_row</span> <span class="o">*</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">total_trials</span> <span class="o">*</span> <span class="n">random</span><span class="o">.</span><span class="n">random</span><span class="p">())</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">warning</span><span class="p">(</span> <span class="s1">&#39;Trial #</span><span class="si">{}</span><span class="s1">: from </span><span class="si">{}</span><span class="s1"> to </span><span class="si">{}</span><span class="s1">; mean row: </span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span> <span class="nb">format</span><span class="p">(</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_num</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">trial_mean_row</span> <span class="o">-</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">trial_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)],</span> <span class="bp">self</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">index</span><span class="p">[</span><span class="bp">self</span><span class="o">.</span><span class="n">trial_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">trial_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)],</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_mean_row</span> <span class="p">)</span> <span class="p">)</span> <span class="bp">self</span><span class="o">.</span><span class="n">sample_num</span> <span class="o">+=</span> <span class="mi">1</span> <span class="bp">self</span><span class="o">.</span><span class="n">log</span><span class="o">.</span><span class="n">debug</span><span class="p">(</span><span class="s1">&#39;Trial sample #</span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">sample_num</span><span class="p">))</span> <span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_sample_interval</span><span class="p">(</span> <span class="n">interval</span><span class="o">=</span><span class="p">[</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_mean_row</span> <span class="o">-</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">trial_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">),</span> <span class="bp">self</span><span class="o">.</span><span class="n">trial_mean_row</span> <span class="o">+</span> <span class="nb">int</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">trial_range_row</span> <span class="o">/</span> <span class="mi">2</span><span class="p">)</span> <span class="p">]</span> <span class="p">)</span></div> </pre></div> </div> <div class="articleComments"> </div> </div> <footer> <hr/> <div role="contentinfo"> <p> &copy; Copyright 2017, Andrew Muzikin. </p> </div> Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>. </footer> </div> </div> </section> </div> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'../../', VERSION:'0.0.6', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true, SOURCELINK_SUFFIX: '.txt' }; </script> <script type="text/javascript" src="../../_static/jquery.js"></script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="../../_static/js/theme.js"></script> <script type="text/javascript"> jQuery(function () { SphinxRtdTheme.StickyNav.enable(); }); </script> </body> </html>
tnk1/ktuv/mjly/ejt_mdynim.html
erelsgl/erel-sites
<!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' lang='he' dir='rtl'> <head> <meta http-equiv='Content-Type' content='text/html; charset=windows-1255' /> <meta http-equiv='Content-Script-Type' content='text/javascript' /> <meta http-equiv='revisit-after' content='15 days' /> <title>àùú îøéáåú - ðæ÷éí åãøëé äúîåããåú</title> <link rel='stylesheet' type='text/css' href='../../../_script/klli.css' /> <link rel='stylesheet' type='text/css' href='../../../tnk1/_themes/klli.css' /> <meta property='og:url' content='http://tora.us.fm/tnk1/ktuv/mjly/ejt_mdynim.html'/> <meta name='author' content="àøàì" /> <meta name='receiver' content="ñâìåú îùìé" /> <meta name='jmQovc' content="tnk1/ktuv/mjly/ejt_mdynim.html" /> <meta name='tvnit' content="" /> <link rel='canonical' href='http://tora.us.fm/tnk1/ktuv/mjly/ejt_mdynim.html' /> </head> <!-- PHP Programming by Erel Segal - Rent a Brain http://tora.us.fm/rentabrain --> <body lang='he' dir='rtl' id = 'tnk1_ktuv_mjly_ejt_mdynim' class='hbdlym1 '> <div class='pnim'> <script type='text/javascript' src='../../../_script/vars.js'></script> <!--NiwutElyon0--> <div class='NiwutElyon'> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/ljon/index.html'>ìùåï äî÷øà</a>&gt;<a href='../../../tnk1/ljon/jorj/dwn.html'>îãå?ï</a>&gt;<a href='../../../tnk1/kma/qjrim1/ijmdn.html'>àùú îãéðéí=</a>&gt;</div> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/sig/index.html'>ä÷ùø ìôøùä</a>&gt;<a href='../../../tnk1/sig/diff.html'>äáãìéí</a>&gt;<a href='../../../tnk1/sig/hvdlim1.html'>äáãìé ôñå÷éí</a>&gt;<a href='../../../tnk1/ktuv/mjly/zugotp.html'>æåâåú î÷áéìéí</a>&gt;</div> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/dmut/index.html'>àéùéí áúð"ê</a>&gt;<a href='../../../tnk1/msr/zugot.html'>æåâåú ðùåàéí</a>&gt;</div> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/prqim/ktuv.html'>ëúåáéí</a>&gt;<a href='../../../tnk1/prqim/t28.htm'>îùìé</a>&gt;<a href='../../../tnk1/ktuv/mjly/ljon.html'>ìùåï åñâðåï áñôø îùìé</a>&gt;<a href='../../../tnk1/ktuv/mjly/bituyim.html'>áéèåééí áñôø îùìé</a>&gt;<a href='../../../tnk1/ktuv/mjly/lo_kmut.html'>èåá à îï á</a>&gt;</div> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/prqim/ktuv.html'>ëúåáéí</a>&gt;<a href='../../../tnk1/prqim/t28.htm'>îùìé</a>&gt;<a href='../../../tnk1/ktuv/mjly/mdrik.html'>ñâìåú îùìé</a>&gt;<a href='../../../tnk1/ktuv/mjly/mrivot.html'>îøéáåú áñôø îùìé</a>&gt;</div> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/prqim/ktuv.html'>ëúåáéí</a>&gt;<a href='../../../tnk1/prqim/t28.htm'>îùìé</a>&gt;<a href='../../../tnk1/ktuv/mjly/mdrik.html'>ñâìåú îùìé</a>&gt;<a href='../../../tnk1/ktuv/mjly/nisuin.html'>ðéùåàéï åîùôçä áñôø îùìé</a>&gt;</div> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/prqim/ktuv.html'>ëúåáéí</a>&gt;<a href='../../../tnk1/prqim/t28.htm'>îùìé</a>&gt;<a href='../../../tnk1/ktuv/mjly/sgulot.html'>ñâìåú îùìé ìôé ôø÷éí</a>&gt;<a href='../../../tnk1/ktuv/mjly/sgulot21.html'>ñâìåú îùìé ëà</a>&gt;</div> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/msr/3.html'>áéï àãí ìçáøå</a>&gt;<a href='../../../tnk1/msr/3riv.html'>îéãú äîøéáä</a>&gt;</div> </div> <!--NiwutElyon1--> <h1 id='h1'>àùú îøéáåú - ðæ÷éí åãøëé äúîåããåú</h1> <div id='idfields'> <p>÷åã: áéàåø:îùìé ëà9 áúð"ê</p> <p>ñåâ: äáãìéí1</p> <p>îàú: àøàì</p> <p>àì: ñâìåú îùìé</p> </div> <script type='text/javascript'>kotrt()</script> <div id='tokn'> <p> <a class="psuq" href="/tnk1/prqim/t2821.htm#9">îùìé ëà9</a>: "<q class="psuq">èåÉá ìÈùÑÆáÆú òÇì ôÌÄðÌÇú âÌÈâ, îÅàÅùÑÆú îÄãÀéÈðÄéí åÌáÅéú çÈáÆø</q>"</p> <p> <a class="psuq" href="/tnk1/prqim/t2825.htm#24">îùìé ëä24</a>: "<q class="psuq">èåÉá ùÑÆáÆú òÇì ôÌÄðÌÇú âÌÈâ,</q> <q class="psuq">îÅàÅùÑÆú îãåðéí[îÄãÀéÈðÄéí] åÌáÅéú</q> <q class="psuq">çÈáÆø</q>"</p> <p> <strong>èåá</strong> éåúø <strong>ìùáú</strong> (ìâåø) ìáã, <strong>òì ôéðä</strong> ùì <strong>ââ</strong> úçú ëéôú äùîééí, îìâåø <strong>ááéú îçåáø</strong> (îùåúó) òí <strong>àéùä</strong> äàåäáú <strong>îãééðéí</strong> (îøéáåú).</p> <h2>òöåú</h2> <p>1. îäé äúëåðä äâøåòä áéåúø ááï/áú æåâ? ìôé ñôø îùìé, äúëåðä äâøåòä áéåúø äéà äðèéä ìîøéáåú - òãéó ìäéùàø ìáã îàùø ìäúçúï òí áú-æåâ ùàåäáú ìøéá: </p> <ul> <li> <a class="psuq" href="/tnk1/prqim/t2821.htm#9">îùìé ëà9</a>: "<q class="psuq"><strong>èåÉá</strong> ìÈùÑÆáÆú òÇì ôÌÄðÌÇú âÌÈâ, <strong>îÅàÅùÑÆú îÄãÀéÈðÄéí</strong> åÌáÅéú çÈáÆø</q>"</li> <li> <a class="psuq" href="/tnk1/prqim/t2821.htm#19">îùìé ëà19</a>: "<q class="psuq"><strong>èåÉá</strong> ùÑÆáÆú áÌÀàÆøÆõ îÄãÀáÌÈø, <strong>îÅàÅùÑÆú îãåðéí[îÄãÀéÈðÄéí]</strong> åÈëÈòÇñ</q>"</li> <li> <a class="psuq" href="/tnk1/prqim/t2825.htm#24">îùìé ëä24</a>: "<q class="psuq"><strong>èåÉá</strong> ùÑÆáÆú òÇì ôÌÄðÌÇú âÌÈâ,</q> <q class="psuq"> <strong>îÅàÅùÑÆú îãåðéí[îÄãÀéÈðÄéí]</strong> åÌáÅéú</q> <q class="psuq"> çÈáÆø</q>"</li></ul> <p> <strong>àùú îãééðéí</strong> = <a href="/tnk1/kma/qjrim1/ijmdn.html">àéùä ùúîéã îåöàú ñéáä ìøéá, ìäúìåðï åìúáåò àðùéí ìãéï</a>;&#160;&#160; <strong>ìùáú</strong> = ìâåø, ìçéåú;&#160; </p> <p> <strong>çáø</strong> (äèòí äåà îìòéì, åîëàï ùäîéìä äéà "çÆáÆø") - îìùåï çéáåø, ùéúåó áéï àéù ìàùúå; &#160;&#160; </p> <p>ëùçééí òí áï/áú æåâ ùàåäá/ú ìøéá, âí àí äîøéáåú äï ìà áéï áðé äæåâ àìà òí àðùéí àçøéí, àé àôùø ìôúç ÷ùø éöéá åéöéøúé, ëé ëì äàðøâéä îúáæáæú òì úìåðåú òì öøåú ùàðùéí àçøéí òåùéí, åëê, äîèøä ùìùîä ðåöø äçéáåø áéï äàéù åäàéùä - ìçéåú çéé éöéøä - ìà îúâùîú.</p> <p> áî÷øä æä, <strong>èåá ìùáú òì ôéðú ââ</strong> - òãéó ìâåø ìáã, áî÷åí çùåó ìôâòé äèáò îìîòìä åñëðú ðôéìä ìîèä, <strong>îàùú îãééðéí åáéú çáø</strong> - îàùø ìäúçúï åìâåø òí áú-æåâ ùàåäáú ìøéá, ááéú îùåúó ùéù áå çéáåø áéï äàéù ìàùúå. äðæ÷ äðâøí îäîøéáåú åîäúìåðåú âãåì éåúø îäúåòìú ùáçéáåø.</p> <p>åëàùø äàéùä ìà ø÷ øáä åîúìåððú àìà âí ëòñðéú, éù ìáøåç ìî÷åí øçå÷ òåã éåúø - <strong>èåá ùáú áàøõ îãáø</strong> - î÷åí îáåãã ìâîøé - <strong>îàùú îãééðéí åëòñ</strong> - àéùä ùàåäáú ìøéá åðåèä ìëòåñ.</p> <p>ôéøåù æä ðøîæ âí áäìëä: "<q class="mfrj">ëì äîùôçåú áçæ÷ú ëùøåú, åîåúø ìéùà îäï ìëúçéìä.&#160; åàó òì ôé ëï, àí øàéú ùúé îùôçåú <strong>ùîúâøåú æå áæå</strong> úîéã, àå øàéú îùôçä ùäéà <strong>áòìú îöä åîøéáä</strong> úîéã, àå øàéú àéù ùäåà <strong>îøáä îøéáä</strong> òí äëåì åòæ ôðéí áéåúø - çåùùéï ìäï, åøàåé ìäúøç÷ îäï:&#160; ùàìå îéðé ôñìðåú äí.&#160; åëï ëì <strong>äôåñì àú àçøéí</strong> úîéã, ëâåï ùðåúï ùîõ áîùôçåú àå áéçéãéí, åàåîø òìéäï ùäï îîæøéí - çåùùéï ìå, ùîà îîæø äåà; åàí àîø òìéäï ùäí òáãéí, çåùùéï ìå ùîà òáã äåà:&#160; ùëì äôåñì, áîåîå äåà ôåñì. åëï ëì îé ùéù áå <strong>òæåú ôðéí</strong>, <strong>åàëæøéåú</strong>, <strong>åùåðà àú äáøéåú</strong>, åàéðå âåîì ìäí çñã - çåùùéï ìå áéåúø, ùîà âáòåðé äåà:&#160; ùñéîðé éùøàì äàåîä ä÷ãåùä - áééùðéï, øçîðéí, åâåîìé çñãéí...</q>" <small>(<a href="http://he.wikisource.org/wiki/%D7%A8%D7%9E%D7%91%22%D7%9D_%D7%94%D7%9C%D7%9B%D7%95%D7%AA_%D7%90%D7%99%D7%A1%D7%95%D7%A8%D7%99_%D7%91%D7%99%D7%90%D7%94_%D7%99%D7%98_%D7%99%D7%96">øîá"í äìëåú àéñåøé áéàä éè éæ</a>)</small>; äúëåðä äøàùåðä áøùéîú äúëåðåú ùáâììï øàåé ìôñåì ùéãåê äéà äðèéä ìøéá.</p> <p>-</p> <p>òã ëàï ôéøùðå àú äôñå÷éí <strong>ëòöä ìøåå÷éí</strong> - ìà ìäúçúï òí áï/áú æåâ ùàåäá/ú ìøéá, åìáøåç áîéåçã îáï/áú æåâ ùâí ðåèä ìëòåñ. àê ðéúï âí ìôøù àú äôñå÷éí, òì ãøê äãøù, <strong>ëòöä ìðùåàéí</strong> - ùâéìå, ìàçø äçúåðä, ùáï/áú æåâí àåäá/ú ìøéá: </p> <p>2. ëùáú äæåâ äéà ø÷ <strong>àùú îãééðéí</strong> - øáä òí àðùéí àçøéí - éù ìäùúãì ìäøçé÷ àåúä îçáøúí ùì àðùéí àçøéí ùòîí äéà òìåìä ìøéá, åìà ììëú àéúä ìá÷ø çáøéí: <strong>èåá ìùáú</strong> òí äàéùä <strong>òì ôéðú ââ</strong> îáåãã, <strong>î</strong> ììëú òí <strong>àùú îãééðéí</strong> ìá÷ø á <strong>áéú çáø</strong>; åëùáú äæåâ äéà âí <strong>àùú ëòñ</strong> - éù ìäøçé÷ àåúä òåã éåúø, åìáøåç àéúä ìîãáø <small>(îúåê "ôéøåùéí åñéîðéí ìñôø îùìé" çì÷ á, áäåöàú <span class="spelle"> <span class="spelle">ðç"ú</span></span> çéôä <span class="spelle"> <span class="spelle">ä'úùð"ä</span></span>)</small>. </p> <ul> <li>àåìí ôéøåù æä àéðå ôùåèå ùì î÷øà, ùäøé äôñå÷éí îöéáéí àú "ôéðú ââ" åàú "àøõ îãáø" <strong>ëðéâåã</strong> ì"àùú îãééðéí", åìà ëî÷åí ùàìéå öøéê ìáåà <strong>òí</strong> àùú äîãééðéí. ìôé ôéøåù æä äéä øàåé ìëúåá "èåá ùáú òí àùú îãééðéí òì ôéðú ââ îááéú çáø" àå "èåá ùáú òí àùú îãééðéí åëòñ áàøõ îãáø".</li></ul> 3. ëùáú äæåâ äéà àùú îãééðéí, éù ìäúééçñ ìîöá ëàì éùéáä òì ôéðú ââ - îöá îñåëï ùéù ìäúîåãã àéúå áæäéøåú ëãé ùìà ìéôåì; ëìåîø, éù ìãáø òîä áòãéðåú åìäéæäø ùìà ìâøåí ìä ìäéëðñ ìîøéáä. åëùáú äæåâ äéà âí àùú ëòñ, éù ìäúééçñ ìîöá ëàì éùéáä áàøõ îãáø - î÷åí éáù åîñåëï ùéù ìöàú îîðå áä÷ãí äàôùøé; ëìåîø, ìòùåú äëì ëãé ìäôéâ àú ëòñä <small>(ò"ô øòéåï ùì ôéðçñ <span class="spelle"> <span class="spelle">àäøåðé</span></span>, <span class="spelle"> <span class="spelle">ä'úùñ"ã</span></span>; äòéååúéí òì àçøéåú äòåøê)</small>. <ul> <li>àåìí, ò"ô äôùè, äôñå÷éí îöéâéí ðéâåã áéï "ôéðú ââ / àøõ îãáø" ìáéï "àùú îãééðéí", åìà îùúîùéí áäí ëîùì. </li></ul> 4. åò"ô øù"é, äôñå÷éí äí âí îùì ìéçñé ä' òí äàåîä äéùøàìéú: <ul> <li> <strong>èåá</strong> ìä' <strong>ìùáú òì ôéðú ââ</strong>, ëìåîø ìöîöí àú ùëéðúå ìââ áéú äî÷ãù, îìäùøåú àú ùëéðúå òì äàåîä äéùøàìéú ëàùø éù áä <strong>îãééðéí</strong>, îøéáåú áéï àãí ìçáøå, <strong>åáéú çáø</strong>, "çáøéí", àìéìéí æøéí, ùîáéàéí àì áéú äî÷ãù;</li> <li>åëï <strong>èåá</strong> ìä' <strong>ìùáú áàøõ îãáø</strong>, ëìåîø ìñì÷ àú ùëéðúå ìâîøé, îìäùøåú&#160; ùëéðúå òì äàåîä äéùøàìéú ëàùø éù áä <strong>îãééðéí åëòñ</strong>, îøéáåú áéï àãí ìçáøå åîòùéí ùîëòéñéí àú ä'.&#160;</li></ul> <p> âí çæ"ì øàå áôñå÷éí àìä øîæ ìîñòåú ùðñòä äùëéðä ëàùø äéà äñúì÷ä îéùøàì áéîé áéú øàùåï: "<q class="mfrj">òùø îñòåú ðñòä ùëéðä:... åîîæáç ìââ - ãëúéá <strong>èåá ìùáú òì ôðú ââ</strong>... åîäø ìîãáø - ãëúéá <strong>èåá ùáú áàøõ îãáø</strong>...</q>" <small>(<a href="http://he.wikisource.org/wiki/%D7%91%D7%99%D7%90%D7%95%D7%A8:%D7%91%D7%91%D7%9C%D7%99_%D7%A8%D7%90%D7%A9_%D7%94%D7%A9%D7%A0%D7%94_%D7%93%D7%A3_%D7%9C%D7%90">ááìé øàù äùðä ìà.</a>)</small>. </p> <div class="advanced"> <h2>ä÷áìåú</h2> <p> <strong>ââ</strong> ðæëø áëîä ä÷ùøéí ùåðéí, øàåé ìòééï á÷ùø áéðéäí ìáéï ôñå÷ðå:</p> <ul> <li>îæáç ä÷èåøú ùáîùëï, <a class="psuq" href="/tnk1/prqim/t0230.htm#3">ùîåú ì3</a>: "<q class="psuq">åÀöÄôÌÄéúÈ àÉúåÉ æÈäÈá èÈäåÉø, àÆú <strong>âÌÇâÌåÉ</strong> åÀàÆú ÷ÄéøÉúÈéå ñÈáÄéá åÀàÆú ÷ÇøÀðÉúÈéå</q>"; òì ëê ëðøàä äñúîëå çëîé äúìîåã, ëù÷éùøå àú ôñå÷ðå ìîñòåú äùëéðä ìôðé çåøáï äáéú: "<q class="mfrj"><strong>îîæáç ìââ</strong> - ãëúéá <strong>èåá ìùáú òì ôðú ââ</strong> (òì äùëéðä àîøå ùìîä äîìê: <strong>èåá</strong> ìä ìäñúì÷ àì <strong>ââ</strong>, îùáú òí <strong>àùú îãðéí</strong> - ëðñú éùøàì ùäòîéãä öìí áäéëì, <strong>åáéú çáø</strong> - áéú ùçáøå áå àú äñîì òí äùëéðä)...&#160;</q> <q class="mfrj"> <strong>åîäø ìîãáø</strong> - ãëúéá <strong>èåá ùáú áàøõ îãáø</strong></q>" <small>(<a href="http://he.wikisource.org/wiki/%D7%91%D7%99%D7%90%D7%95%D7%A8:%D7%91%D7%91%D7%9C%D7%99_%D7%A8%D7%90%D7%A9_%D7%94%D7%A9%D7%A0%D7%94_%D7%93%D7%A3_%D7%9C%D7%90" title="áéàåø:ááìé øàù äùðä ãó ìà">ááìé øàù äùðä ìà.</a>)</small>.</li> <li>îùì ìáãéãåú,&#160; <a class="psuq" href="/tnk1/prqim/t26a2.htm#8">úäìéí ÷á8-9</a>: "<q class="psuq">ùÑÈ÷ÇãÀúÌÄé åÈàÆäÀéÆä ëÌÀöÄôÌåÉø áÌåÉãÅã <strong>òÇì âÌÈâ.</strong> ëÌÈì äÇéÌåÉí çÅøÀôåÌðÄé àåÉéÀáÈé îÀäåÉìÈìÇé áÌÄé ðÄùÑÀáÌÈòåÌ</q>".</li> <li>î÷åí îåâï îôðé àåéá, <a class="psuq" href="/tnk1/prqim/t0709.htm#51">ùåôèéí è51</a>: "<q class="psuq">åÌîÄâÀãÌÇì òÉæ äÈéÈä áÀúåÉêÀ äÈòÄéø åÇéÌÈðËñåÌ ùÑÈîÌÈä ëÌÈì äÈàÂðÈùÑÄéí åÀäÇðÌÈùÑÄéí åÀëÉì áÌÇòÂìÅé äÈòÄéø åÇéÌÄñÀâÌÀøåÌ áÌÇòÂãÈí åÇéÌÇòÂìåÌ <strong>òÇì âÌÇâ</strong> äÇîÌÄâÀãÌÈì</q>".</li> <li>î÷åí ùáå àôùø ìöôåú òì ðùéí àçøåú, <a class="psuq" href="/tnk1/prqim/t08b11.htm#2">ùîåàì á éà2</a>: "<q class="psuq">åÇéÀäÄé ìÀòÅú äÈòÆøÆá, åÇéÌÈ÷Èí ãÌÈåÄã îÅòÇì îÄùÑÀëÌÈáåÉ, åÇéÌÄúÀäÇìÌÅêÀ <strong>òÇì âÌÇâ</strong> áÌÅéú äÇîÌÆìÆêÀ, åÇéÌÇøÀà <strong>àÄùÑÌÈä</strong> øÉçÆöÆú îÅòÇì äÇâÌÈâ, åÀäÈàÄùÑÌÈä èåÉáÇú îÇøÀàÆä îÀàÉã</q>".</li> <li>î÷åí ùáå àôùø ìöôåú ìîøç÷éí, <a class="psuq" href="/tnk1/prqim/t08b18.htm#24">ùîåàì á éç24</a>: "<q class="psuq">åÀãÈåÄã éåÉùÑÅá áÌÅéï ùÑÀðÅé äÇùÑÌÀòÈøÄéí åÇéÌÅìÆêÀ äÇöÌÉôÆä <strong>àÆì âÌÇâ äÇùÑÌÇòÇø</strong> àÆì äÇçåÉîÈä åÇéÌÄùÒÌÈà àÆú òÅéðÈéå åÇéÌÇøÀà åÀäÄðÌÅä àÄéùÑ øÈõ ìÀáÇãÌåÉ</q>".</li> <li>î÷åí ùì òáåãä æøä, <a class="psuq" href="/tnk1/prqim/t1119.htm#13">éøîéäå éè13</a>: "<q class="psuq">ìÀëÉì äÇáÌÈúÌÄéí àÂùÑÆø ÷ÄèÌÀøåÌ <strong>òÇì âÌÇâÌÉúÅéäÆí</strong> ìÀëÉì öÀáÈà äÇùÑÌÈîÇéÄí åÀäÇñÌÅêÀ ðÀñÈëÄéí ìÅàìÉäÄéí àÂçÅøÄéí</q>".</li> <li>î÷åí ùì àáì, <a class="psuq" href="/tnk1/prqim/t1015.htm#3">éùòéäå èå3</a>: "<q class="psuq">áÌÀçåÌöÉúÈéå çÈâÀøåÌ ùÒÈ÷ <strong>òÇì âÌÇâÌåÉúÆéäÈ</strong> åÌáÄøÀçÉáÉúÆéäÈ ëÌËìÌÉä éÀéÅìÄéì éÉøÅã áÌÇáÌÆëÄé</q>".</li> <li>åìäáãéì, î÷åí ìáðééú ñåëåú, <a class="psuq" href="/tnk1/prqim/t35b08.htm#16">ðçîéä ç16</a>: "<q class="psuq">åÇéÌÅöÀàåÌ äÈòÈí åÇéÌÈáÄéàåÌ åÇéÌÇòÂùÒåÌ ìÈäÆí ñËëÌåÉú àÄéùÑ <strong>òÇì âÌÇâÌåÉ</strong> åÌáÀçÇöÀøÉúÅéäÆí åÌáÀçÇöÀøåÉú áÌÅéú äÈàÁìÉäÄéí åÌáÄøÀçåÉá ùÑÇòÇø äÇîÌÇéÄí åÌáÄøÀçåÉá ùÑÇòÇø àÆôÀøÈéÄí</q>" (<a href="/tnk1/ktuv/ewn/nh-08-16.html">ôéøåè</a>).</li></ul> áãøê ëìì, <a class="psuq" href="/tnk1/prqim/t0102.htm#18">áøàùéú á18</a>: "<q class="psuq"><strong>ìà èåá</strong> äéåú äàãí ìáãå</q>" (<a href="/tnk1/tora/brejit/br-02-18.html">ôéøåè</a>), àåìí äôñå÷éí ùìðå îöéâéí éåöà-îï-äëìì - ëàùø öøéê ìáçåø áéï áãéãåú ìáéï îøéáåú áìúé ôåñ÷åú, <strong>èåá</strong> éåúø ìäéåú ìáã. <p>äøòéåï ùìôéå òãéó ìùáú <strong>áîãáø</strong> îìäéåú òí àðùéí øáéí ðæëø âí á <a class="psuq" href="/tnk1/prqim/t1109.htm#1">éøîéäå è1-2</a>: "<q class="psuq">îÄé éÄúÌÀðÅðÄé <strong>áÇîÌÄãÀáÌÈø</strong> îÀìåÉï àÉøÀçÄéí, åÀàÆòÆæÀáÈä àÆú òÇîÌÄé åÀàÅìÀëÈä îÅàÄúÌÈí, ëÌÄé ëËìÌÈí îÀðÈàÂôÄéí, òÂöÆøÆú áÌÉâÀãÄéí.</q> <q class="psuq">åÇéÌÇãÀøÀëåÌ àÆú ìÀùÑåÉðÈí ÷ÇùÑÀúÌÈí ùÑÆ÷Æø åÀìÉà ìÆàÁîåÌðÈä âÌÈáÀøåÌ áÈàÈøÆõ ëÌÄé îÅøÈòÈä àÆì øÈòÈä éÈöÈàåÌ åÀàÉúÄé ìÉà éÈãÈòåÌ ðÀàËí ä'</q>"</p> <h2>ã÷åéåú</h2> <h3>áéú çáø</h3> 1. <strong>áéú çáø</strong> = áéú ùéù áå çéáåø áéï àéù ìàùä, ëðéâåã ì <strong>ôéðú ââ</strong> = î÷åí îáåãã ììà æåâéåú; <p>2. <strong>áéú çáø</strong> = áéú ùéù áå çáåøä ùì àðùéí (ëîå á <a class="psuq" href="/tnk1/prqim/t1306.htm#9">äåùò å9</a>: "<q class="psuq">åÌëÀçÇëÌÅé àÄéùÑ âÌÀãåÌãÄéí, <strong>çÆáÆø ëÌÉäÂðÄéí </strong></q> <q class="psuq">...</q>"; <small>îöåãú öéåï</small>); åîëàï - èåá ìùáú ìáã òì ôéðú ââ, "<q class="mfrj">îìùáú òí àùú îãééðéí, àó ááéú çáåøú àðùéí</q>" <small>(îöåãú ãåã)</small>. ìôé æä, äôñå÷ îîìéõ ìååúø, ìà ø÷ òì äçéáåø ùáéï äàéù ìàùúå, àìà àó òì ä÷ùø òí çáøéí, åáìáã ùìà ìäéåú òí "àùú îãééðéí"; </p> <p>3. <strong>áéú çáø</strong> = áéú ùéù áå äøáä çáøéí åéãéãéí, ùäàéùä îáéàä ëãé ìãáø òîí: "<q class="mfrj">ùðëðñ ìáéú çáøå ìãáø òí àùúå</q>" <small>(øù"é)</small>. ìôé æä, äáéèåé <strong>áéú çáø</strong> ãåå÷à îðåâã ìáéèåé <strong>àùú îãééðéí</strong>, åäåà îúàø àéùä ùðîöàú á÷ùøéí èåáéí òí ëì äòåìí - ÷ùøéí ëì ëê èåáéí, ùäáéú ùìä îìà áçáøéí îäòáø ùäéà òãééï ùåîøú àéúí òì ÷ùø. âí ááéú ëæä àé àôùø ìéöåø ÷ùø ÷áåò åéöéá áéï äàéù ìàùúå, åìëï, âí áîöá ëæä òãéó ìäéåú ìáã: <strong>èåá ìùáú òì ôéðú ââ ìáã îàùú îãééðéí, åèåá ìùáú òì ôéðú ââ îáéú çáø</strong>; ùðé ä÷öååú àéðí èåáéí. </p> </div> </div><!--tokn--> <h2 id='tguvot'>úâåáåú</h2> <ul id='ultguvot'> </ul><!--end--> <script type='text/javascript'>tguva(); txtit()</script> </div><!--pnim--> </body> </html>
plugins/Ontology/doc/javadoc/gate/creole/ontology/impl/class-use/OURIImpl.html
liuhongchao/GATE_Developer_7.0
<!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_24) on Thu Feb 09 13:40:25 GMT 2012 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class gate.creole.ontology.impl.OURIImpl (GATE Ontology plugin JavaDoc) </TITLE> <META NAME="date" CONTENT="2012-02-09"> <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 gate.creole.ontology.impl.OURIImpl (GATE Ontology plugin JavaDoc)"; } } </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="../../../../../gate/creole/ontology/impl/OURIImpl.html" title="class in gate.creole.ontology.impl"><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="../../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?gate/creole/ontology/impl//class-useOURIImpl.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="OURIImpl.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>gate.creole.ontology.impl.OURIImpl</B></H2> </CENTER> No usage of gate.creole.ontology.impl.OURIImpl <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="../../../../../gate/creole/ontology/impl/OURIImpl.html" title="class in gate.creole.ontology.impl"><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="../../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?gate/creole/ontology/impl//class-useOURIImpl.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="OURIImpl.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
doxygen/html/search/variables_74.html
CBA2011/WASABIQtGui
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div class="SRResult" id="SR_tokens"> <div class="SREntry"> <a id="Item0" onkeydown="return searchResults.Nav(event,0)" onkeypress="return searchResults.Nav(event,0)" onkeyup="return searchResults.Nav(event,0)" class="SRSymbol" href="../class_affective_state.html#a80a1bb184121a40c28c1d3ff103fd47f" target="_parent">tokens</a> <span class="SRScope">AffectiveState</span> </div> </div> <div class="SRResult" id="SR_type"> <div class="SREntry"> <a id="Item1" onkeydown="return searchResults.Nav(event,1)" onkeypress="return searchResults.Nav(event,1)" onkeyup="return searchResults.Nav(event,1)" class="SRSymbol" href="../class_affective_state.html#ad46f24a9835b890cfe147ae0463d01bf" target="_parent">type</a> <span class="SRScope">AffectiveState</span> </div> </div> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
tnk1/dmut/jm/twle.html
erelsgl/erel-sites
<!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' lang='he' dir='rtl'> <head> <meta http-equiv='Content-Type' content='text/html; charset=windows-1255' /> <meta http-equiv='Content-Script-Type' content='text/javascript' /> <meta http-equiv='revisit-after' content='15 days' /> <link rel='stylesheet' href='../../../_script/klli.css' /> <link rel='stylesheet' href='../../_themes/klli.css' /> <title>úåìò</title> <meta name='author' content="" /> <meta name='receiver' content="" /> <meta name='jmQovc' content="tnk1/dmut/jm/twle" /> <meta name='tvnit' content="tnk_ul" /> <meta name='description' lang='he' content="úåìò" /> <meta name='description' lang='en' content="this page is in Hebrew" /> <meta name='keywords' lang='he' content="úåìò,úåìò" /> </head><body class='dmwywt'><div class='pnim'> <script type='text/javascript' src='../../../_script/vars.js'></script> <!--NiwutElyon0--> <div class='NiwutElyon'> <div class='NiwutElyon'><a href='../../index.html'>øàùé</a>&gt;<a href='../../dmut/index.html'>ãîåéåú úðëéåú</a>&gt;<a href='../../dmut/ToknLfiDmutHkl.html'>ëì äãîåéåú</a>&gt;</div> </div> <!--NiwutElyon1--> <h1 id='h1'>úåìò</h1> <div style='display:none'> <p>÷åã: úåìò </div> <script type='text/javascript'>kotrt()</script> <div id='tokn'> <!--tosft0--><div id='tosft'>&nbsp; </div><!--tosft--><!--tosft1--> <ul class='inlinesublists'> <li><a href='../../dmut/dmut/217.html' class='dmwt'>úåìò áï éùùëø</a> <li><a href='../../dmut/dmut/589.html' class='dmwt'>úåìò áï ôåàä</a> </ul> </div><!--tokn--> <h2 id='tguvot'>úåñôåú åúâåáåú</h2> <ul id='ultguvot'> </ul><!--end--> <script type='text/javascript'>tguva(); txtit()</script> </div><!--pnim--> </body></html>
doc/edu/rit/pj2/class-use/LoopBody.html
JimiHFord/pj2
<!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_51) on Mon Feb 16 21:11:08 EST 2015 --> <title>Uses of Class edu.rit.pj2.LoopBody (Parallel Java 2 Library Documentation)</title> <meta name="date" content="2015-02-16"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class edu.rit.pj2.LoopBody (Parallel Java 2 Library Documentation)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../edu/rit/pj2/LoopBody.html" title="class in edu.rit.pj2">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?edu/rit/pj2/class-use/LoopBody.html" target="_top">Frames</a></li> <li><a href="LoopBody.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class edu.rit.pj2.LoopBody" class="title">Uses of Class<br>edu.rit.pj2.LoopBody</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../edu/rit/pj2/LoopBody.html" title="class in edu.rit.pj2">LoopBody</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#edu.rit.pj2">edu.rit.pj2</a></td> <td class="colLast"> <div class="block">Package edu.rit.pj2 contains Parallel Java 2 (PJ2), an API and middleware for parallel programming in 100% Java on multicore parallel computers, cluster parallel computers, supercomputing grids, and cloud computing services.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="edu.rit.pj2"> <!-- --> </a> <h3>Uses of <a href="../../../../edu/rit/pj2/LoopBody.html" title="class in edu.rit.pj2">LoopBody</a> in <a href="../../../../edu/rit/pj2/package-summary.html">edu.rit.pj2</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../edu/rit/pj2/LoopBody.html" title="class in edu.rit.pj2">LoopBody</a> in <a href="../../../../edu/rit/pj2/package-summary.html">edu.rit.pj2</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../edu/rit/pj2/LongLoop.html" title="class in edu.rit.pj2">LongLoop</a></strong></code> <div class="block">Class LongLoop is the abstract base class for a loop body executed by a parallel for loop with a long integer index.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../edu/rit/pj2/Loop.html" title="class in edu.rit.pj2">Loop</a></strong></code> <div class="block">Class Loop is the abstract base class for a loop body executed by a parallel for loop with an integer index.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../edu/rit/pj2/ObjectLoop.html" title="class in edu.rit.pj2">ObjectLoop</a>&lt;E&gt;</strong></code> <div class="block">Class ObjectLoop is the abstract base class for a loop body executed by a parallel for loop over the elements in an iterator or an iterable collection.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../edu/rit/pj2/LoopBody.html" title="class in edu.rit.pj2">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?edu/rit/pj2/class-use/LoopBody.html" target="_top">Frames</a></li> <li><a href="LoopBody.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><FONT SIZE="-2">Copyright &copy; 2013&ndash;2015 by Alan Kaminsky. All rights reserved. Send comments to ark</FONT><FONT SIZE="1" COLOR="#FFFFFF">&shy;</FONT><FONT SIZE="-2">&#64;</FONT><FONT SIZE="1" COLOR="#FFFFFF">&shy;</FONT><FONT SIZE="-2">cs.rit.edu.</FONT></small></p> </body> </html>
HTML/BasicLinkedPageAssets/css/styles.css
carlsapp/RepoTemplate
@CHARSET "UTF-8"; /* * This is a basic CSS Style Sheet. For a quick reference, see * * https://developer.mozilla.org/en-US/docs/Web/CSS/Reference * */ body { background-color: #DDD; color: #444; }
tnk1/ktuv/thlim/th-19-0910.html
erelsgl/erel-sites
<!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' lang='he' dir='rtl'> <head> <meta http-equiv='Content-Type' content='text/html; charset=windows-1255' /> <meta charset='windows-1255' /> <meta http-equiv='Content-Script-Type' content='text/javascript' /> <meta http-equiv='revisit-after' content='15 days' /> <title>éøàú ä&#039; èäåøä - ø÷ ëàùø îùôèé ä&#039; àîú</title> <link rel='stylesheet' type='text/css' href='../../../_script/klli.css' /> <link rel='stylesheet' type='text/css' href='../../../tnk1/_themes/klli.css' /> <meta property='og:url' content='https://tora.us.fm/tnk1/ktuv/thlim/th-19-0910.html'/> <meta name='author' content="àøàì" /> <meta name='receiver' content="" /> <meta name='jmQovc' content="tnk1/ktuv/thlim/th-19-0910.html" /> <meta name='tvnit' content="" /> <link rel='canonical' href='https://tora.us.fm/tnk1/ktuv/thlim/th-19-0910.html' /> </head> <!-- PHP Programming by Erel Segal-Halevi --> <body lang='he' dir='rtl' id = 'tnk1_ktuv_thlim_th_19_0910' class='dywn1 '> <div class='pnim'> <script type='text/javascript' src='../../../_script/vars.js'></script> <!--NiwutElyon0--> <div class='NiwutElyon'> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tryg/index.html'>äàúø ìî÷åøéåú áîöååú</a>&gt;<a href='../../../tryg/sug/rayon.html'>îöååú ìôé øòéåï</a>&gt;<a href='../../../tryg/sug/rayon_1.html'>ä' åäàãí</a>&gt;<a href='../../../tryg/sug/yrat_h_.html'>éøàú ä'</a>&gt;</div> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/msr/0.html'>áéï àãí ìðôùå</a>&gt;<a href='../../../tnk1/msr/0izun.html'>îéãú äàéæåï</a>&gt;</div> </div> <!--NiwutElyon1--> <h1 id='h1'>éøàú ä' èäåøä - ø÷ ëàùø îùôèé ä' àîú</h1> <div id='idfields'> <p>÷åã: áéàåø:úäìéí éè9 áúð"ê</p> <p>ñåâ: ãéåï1</p> <p>îàú: àøàì</p> <p>àì: </p> </div> <script type='text/javascript'>kotrt()</script> <div id='tokn'> <a class="psuq" href="/tnk1/prqim/t2619.htm#9">úäìéí éè9-10</a>: "<q class="psuq">ôÌÄ÷ÌåÌãÅé ä' éÀùÑÈøÄéí, îÀùÒÇîÌÀçÅé ìÅá; îÄöÀåÇú ä' áÌÈøÈä, îÀàÄéøÇú òÅéðÈéÄí. éÄøÀàÇú ä' èÀäåÉøÈä, òåÉîÆãÆú ìÈòÇã; îÄùÑÀôÌÀèÅé ä' àÁîÆú, öÈãÀ÷åÌ éÇçÀãÌÈå</q>" <p>ø' éùøàì ñìðèø, îééñã úðåòú äîåñø, äéä øâéì ìäâéã: <p>àéîúé <span style="font-weight: bold;">îöååú ä' áøä</span> å <span style="font-weight: bold;">éøàú ä' èäåøä</span>? -&nbsp; <br /></p> ø÷ àí <span style="font-weight: bold;">öã÷å éçãéå</span> âí îöã <span style="font-weight: bold;">îùôèé ä'</span>, ëìåîø: àí àéï áäï ëì ôâí âí îáçéðú äìëåú äîùôèéí ùáéï àãí ìçáéøå. </p> <p>ø' éùøàì âí ðäâ ëê ìîòùä; ìôøèéí øàå áñôø <a href="/tryg/mamr/musr328.html">úðåòú äîåñø, ëøê à, òîåãéí 328 åäìàä</a>. </p> <p> </p> </div><!--tokn--> <h2 id='tguvot'>úâåáåú</h2> <ul id='ultguvot'> <li></li> </ul><!--end--> <script type='text/javascript'>tguva(); txtit()</script> </div><!--pnim--> </body> </html>
tnk1/ktuv/mjly/sgulot-07.html
erelsgl/erel-sites
<!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' lang='he' dir='rtl'> <head> <meta http-equiv='Content-Type' content='text/html; charset=windows-1255' /> <meta charset='windows-1255' /> <meta http-equiv='Content-Script-Type' content='text/javascript' /> <meta http-equiv='revisit-after' content='15 days' /> <title>ñâåìåú îùìé æ á÷éöåø</title> <link rel='stylesheet' type='text/css' href='../../../_script/klli.css' /> <link rel='stylesheet' type='text/css' href='../../../tnk1/_themes/klli.css' /> <meta property='og:url' content='https://tora.us.fm/tnk1/ktuv/mjly/sgulot-07.html'/> <meta name='author' content="àøàì" /> <meta name='receiver' content="" /> <meta name='jmQovc' content="tnk1/ktuv/mjly/sgulot-07.html" /> <meta name='tvnit' content="" /> <link rel='canonical' href='https://tora.us.fm/tnk1/ktuv/mjly/sgulot-07.html' /> </head> <!-- PHP Programming by Erel Segal-Halevi --> <body lang='he' dir='rtl' id = 'tnk1_ktuv_mjly_sgulot_07' class='twkn_mpwrf '> <div class='pnim'> <script type='text/javascript' src='../../../_script/vars.js'></script> <!--NiwutElyon0--> <div class='NiwutElyon'> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/prqim/ktuv.html'>ëúåáéí</a>&gt;<a href='../../../tnk1/prqim/t28.htm'>îùìé</a>&gt;<a href='../../../tnk1/ktuv/mjly/sgulot.html'>ñâìåú îùìé ìôé ôø÷éí</a>&gt;<a href='../../../tnk1/ktuv/mjly/sgulot07.html'>ñâìåú îùìé æ</a>&gt;</div> </div> <!--NiwutElyon1--> <h1 id='h1'>ñâåìåú îùìé æ á÷éöåø</h1> <div id='idfields'> <p>÷åã: ñâåìåú îùìé æ á÷éöåø áúð"ê</p> <p>ñåâ: úåëï_îôåøè</p> <p>îàú: àøàì</p> <p>àì: </p> </div> <script type='text/javascript'>kotrt()</script> <div id='tokn'> <div > <p> <small>à</small><q class="psuq">áÌÀðÄé! ùÑÀîÉø àÂîÈøÈé, åÌîÄöÀåÉúÇé úÌÄöÀôÌÉï àÄúÌÈêÀ;</q></p> <p> <small>á</small><q class="psuq">ùÑÀîÉø îÄöÀåÉúÇé åÆçÀéÅä, åÀúåÉøÈúÄé ëÌÀàÄéùÑåÉï òÅéðÆéêÈ.</q> &nbsp;&nbsp; <a href="/tnk1/ktuv/mjly/mj-07-02.html">ìäù÷éó òì äîöéàåú áàéùåï ùì úåøä</a> &nbsp; <a href="/tnk1/kma/qjrim1/ajn.html">ëãé ìäéðöì îôéúåééí áàéùåï ìéìä</a></p> <p> <small>â</small><q class="psuq">÷ÈùÑÀøÅí òÇì àÆöÀáÌÀòÉúÆéêÈ, ëÌÈúÀáÅí òÇì ìåÌçÇ ìÄáÌÆêÈ;</q> &nbsp;&nbsp; <a href="/tnk1/ktuv/mjly/ktvm.html">ìäæëéø ìòöîðå àú äîöååú åäúåøä, òì-éãé ëúéáä åàîöòé æéëøåï ðåñôéí</a></p> <p> <small>ã</small><q class="psuq">àÁîÉø ìÇçÈëÀîÈä 'àÂçÉúÄé àÈúÌÀ', åÌîÉãÈò ìÇáÌÄéðÈä úÄ÷ÀøÈà;</q> &nbsp;&nbsp;&nbsp; </p> <p> <small>ä</small><q class="psuq">ìÄùÑÀîÈøÀêÈ îÅàÄùÑÌÈä æÈøÈä, îÄðÌÈëÀøÄéÌÈä àÂîÈøÆéäÈ äÆçÁìÄé÷Èä.</q> &nbsp;&nbsp; <a href="/tnk1/ktuv/mjly/mj-07-04.html">ìäúîåãã òí áãéãåú òì-éãé ìéîåã çëîä åáéðä, åìà òì-éãé ôéúåééí åäúîëøåéåú</a> <br /></p> <hr /> <p> <small>å</small><q class="psuq">ëÌÄé áÌÀçÇìÌåÉï áÌÅéúÄé áÌÀòÇã àÆùÑÀðÇáÌÄé ðÄùÑÀ÷ÈôÀúÌÄé,</q> &nbsp;&nbsp;&nbsp;</p> <p> <small>æ</small><q class="psuq">åÈàÅøÆà áÇôÌÀúÈàéÄí, àÈáÄéðÈä áÇáÌÈðÄéí, ðÇòÇø çÂñÇø ìÅá;</q> &nbsp;&nbsp; <a href="/tnk1/ktuv/mjly/mj-07-0607.html">äîáåâøéí äðùåàéí öøéëéí ìäù÷éó, ìäúáåðï åìñééò ìöòéøéí äáåããéí</a></p> <p> <a href="/tnk1/ktuv/mjly/mj-07-0809.html">úäìéê äôéúåé - ùìá 1: äðòø äáåãã îçôù áéú åòåáø áëååðä áî÷åîåú îñåëðéí <br /></a></p> <p> <small>ç</small><q class="psuq">òÉáÅø áÌÇùÑÌåÌ÷ àÅöÆì ôÌÄðÌÈäÌ, åÀãÆøÆêÀ áÌÅéúÈäÌ éÄöÀòÈã;</q> &nbsp;&nbsp;&nbsp;</p> <p> <small>è</small><q class="psuq">áÌÀðÆùÑÆó, áÌÀòÆøÆá éåÉí, áÌÀàÄéùÑåÉï ìÇéÀìÈä åÇàÂôÅìÈä.</q> &nbsp;&nbsp;&nbsp; </p> <p> <a href="/tnk1/ktuv/mjly/mj-07-byt.html">úäìéê äôéúåé - ùìá 2: äàùä îåùëú àú äðòø äáåãã áëê ùäéà îöéòä ìå áéú æîðé áìé àçøéåú <br /></a></p> <p> <small>é</small><q class="psuq">åÀäÄðÌÅä, àÄùÑÌÈä ìÄ÷ÀøÈàúåÉ, ùÑÄéú æåÉðÈä åÌðÀöËøÇú ìÅá;</q></p> <p> <small>éà</small><q class="psuq">äÉîÄéÌÈä äÄéà åÀñÉøÈøÆú, áÌÀáÅéúÈäÌ ìÉà éÄùÑÀëÌÀðåÌ øÇâÀìÆéäÈ;</q> &nbsp;&nbsp;&nbsp;</p> <p> <small>éá</small><q class="psuq">ôÌÇòÇí áÌÇçåÌõ, ôÌÇòÇí áÌÈøÀçÉáåÉú, åÀàÅöÆì ëÌÈì ôÌÄðÌÈä úÆàÁøÉá.</q></p> <p> <small>éâ</small><q class="psuq">åÀäÆçÁæÄé÷Èä áÌåÉ åÀðÈùÑÀ÷Èä ìÌåÉ, äÅòÅæÈä ôÈðÆéäÈ åÇúÌÉàîÇø ìåÉ:</q> &nbsp;&nbsp;&nbsp;</p> <p> <small>éã</small><q class="psuq">'æÄáÀçÅé ùÑÀìÈîÄéí òÈìÈé, äÇéÌåÉí ùÑÄìÌÇîÀúÌÄé ðÀãÈøÈé;</q> &nbsp;&nbsp; <a href="/tnk1/ktuv/mjly/mj-07-1021.html">ìäéæäø îôéúåééí ùîúçôùéí ìîöååú</a></p> <p> <small>èå</small><q class="psuq">òÇì ëÌÅï éÈöÈàúÄé ìÄ÷ÀøÈàúÆêÈ, ìÀùÑÇçÅø ôÌÈðÆéêÈ åÈàÆîÀöÈàÆêÌÈ;</q> &nbsp;&nbsp; <a href="/tnk1/ktuv/mjly/mj-07-1021.html">ìäéæäø îôéúåééí ùîúçôùéí ì"äùâçä ôøèéú"</a></p> <p> <small>èæ</small><q class="psuq">îÇøÀáÇãÌÄéí øÈáÇãÀúÌÄé òÇøÀùÒÄé, çÂèËáåÉú àÅèåÌï îÄöÀøÈéÄí;</q> &nbsp;&nbsp; <a href="/tnk1/ktuv/mjly/mj-07-16.html">ìäéæäø î"úøáåú äîéï" äîöøéú</a></p> <p> <small>éæ</small><q class="psuq">ðÇôÀúÌÄé îÄùÑÀëÌÈáÄé îÉø àÂäÈìÄéí åÀ÷ÄðÌÈîåÉï;</q></p> <p> <small>éç</small><q class="psuq">ìÀëÈä, ðÄøÀåÆä ãÉãÄéí òÇã äÇáÌÉ÷Æø, ðÄúÀòÇìÌÀñÈä áÌÈàÃäÈáÄéí;</q> &nbsp;&nbsp;&nbsp;</p> <p> <small>éè</small><q class="psuq">ëÌÄé àÅéï äÈàÄéùÑ áÌÀáÅéúåÉ, äÈìÇêÀ áÌÀãÆøÆêÀ îÅøÈçåÉ÷;</q> &nbsp;&nbsp;&nbsp;</p> <p> <small>ë</small><q class="psuq">öÀøåÉø äÇëÌÆñÆó ìÈ÷Çç áÌÀéÈãåÉ, ìÀéåÉí äÇëÌÅñÆà éÈáÉà áÅéúåÉ'.</q> &nbsp;&nbsp; <a href="/tnk1/ktuv/mjly/mj-07-20.html">äù÷òä îåâæîú á÷øééøä, ðñéòåú òáåãä åîñçø, òìåìä ìäøåñ àú äáéú <br /></a></p> <p> <small>ëà</small><q class="psuq">äÄèÌÇúÌåÌ áÌÀøÉá ìÄ÷ÀçÈäÌ, áÌÀçÅìÆ÷ ùÒÀôÈúÆéäÈ úÌÇãÌÄéçÆðÌåÌ;</q></p> <p> <a href="/tnk1/ktuv/mjly/mj-07-22.html">úäìéê äôéúåé - ùìá 3: îðâðåðé äæäéøåú ùì äðòø ÷åøñéí</a></p> <p> <small>ëá</small><q class="psuq">äåÉìÅêÀ àÇçÂøÆéäÈ ôÌÄúÀàÉí, ëÌÀùÑåÉø àÆì èÈáÇç éÈáåÉà, åÌëÀòÆëÆñ àÆì îåÌñÇø àÁåÄéì;</q> &nbsp; <a href="/tnk1/kma/qjrim1/ptom.html">äôéúåé îùôéò áäôúòä</a> &nbsp;&nbsp; <a href="/tnk1/kma/hvdlim1/tvx.html">ëåçå åéöøéå äçæ÷éí ùì äðòø ôåòìéí ðâãå</a>&nbsp;&nbsp; <a href="/tnk1/ktuv/mjly/mj-07-22c.html">äúëùéè ùòì øâì äàùä ÷åùø àú äðòø àìéä</a></p> <small>ëâ</small><q class="psuq">òÇã éÀôÇìÌÇç çÅõ ëÌÀáÅãåÉ, ëÌÀîÇäÅø öÄôÌåÉø àÆì ôÌÈç, åÀìÉà éÈãÇò ëÌÄé áÀðÇôÀùÑåÉ äåÌà.</q> &nbsp;&nbsp;&nbsp; <a style="font-style: italic;" href="/tnk1/ktuv/mjly/mj-07-23.html">òã ùçõ äúàåä çåúê àú áèðå, åâåøí ìå ììëú ìæðåú áîäéøåú, ëîå öéôåø äîîäøú ìàëåì âøòéðéí áîìëåãú åàéðä éåãòú ùäãáø éòìä ìä áçééä</a> <hr /> <p> <small>ëã</small><q class="psuq">åÀòÇúÌÈä áÈðÄéí ùÑÄîÀòåÌ ìÄé, åÀäÇ÷ÀùÑÄéáåÌ ìÀàÄîÀøÅé ôÄé:</q></p> <p> <small>ëä</small><q class="psuq">àÇì éÅùÒÀèÀ àÆì ãÌÀøÈëÆéäÈ ìÄáÌÆêÈ, àÇì úÌÅúÇò áÌÄðÀúÄéáåÉúÆéäÈ;</q> &nbsp;&nbsp;&nbsp;</p> <p> <small>ëå</small><q class="psuq">ëÌÄé øÇáÌÄéí çÂìÈìÄéí äÄôÌÄéìÈä, åÇòÂöËîÄéí ëÌÈì äÂøËâÆéäÈ;</q> &nbsp;&nbsp; <a href="/tnk1/ktuv/mjly/mj-07-26.html">ìà ìðñåú ìäúøôà îîçìåú òì-éãé ÷ùøéí îéðééí àñåøéí</a></p> <p> <small>ëæ</small><q class="psuq">ãÌÇøÀëÅé ùÑÀàåÉì áÌÅéúÈäÌ, éÉøÀãåÉú àÆì çÇãÀøÅé îÈåÆú.</q> &nbsp;&nbsp; <a href="/tnk1/ktuv/mjly/mj-07-byt.html">ðéàåó àéðå îáéà ìéöéøú çééí çãùéí, àìà ìîååú åçéãìåï</a></p></div> </div><!--tokn--> <h2 id='tguvot'>úâåáåú</h2> <ul id='ultguvot'> <li></li> </ul><!--end--> <script type='text/javascript'>tguva(); txtit()</script> </div><!--pnim--> </body> </html>
exemplo/exemplo.html
silegis-mg/editor-articulacao
<!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <script src="silegismg-editor-articulacao-plain-js.js"></script> </head> <body> <!-- Painel informativo, com dados do contexto de edição (para desenvolvedores) --> <pre id="contexto" style="position: fixed; top: 3.8em; right: 0; background: black; box-shadow: 0px 0px 20px gray; margin: 0; opacity: .3; font-size: 75%; color: white"></pre> <!-- Elemento que será transformado no editor de articulação --> <div id="articulacao" style="position: fixed; top: 0; left: 0; right: 0; bottom: 10em; overflow: auto;"></div> <!-- Resultado final, em LexML --> <pre id="lexml" style="position: fixed; bottom: 0; height: 10em; left: 0; right: 0; overflow: auto; background: #ccc; margin: 0;" onclick="javascript:mostrarLexML()"> Clique aqui para atualizar o lexml. </pre> <!-- Botão apenas para exemplificar obtenção de dados --> <button id="importarConstituicao" style="position: fixed; bottom: 1ex; right: 1ex;">Importar LexML da Constituição Federal</button> <script> // Transforma o elemento com id="articulacao" em um editor de articulação, salvando o controlador na variável ctrl. var componente = silegismgEditorArticulacao(document.getElementById('articulacao'), { // Define-se a formatação no padrão federal, visto que a omissão da opção faz o editor trabalhar com o padrão de Minas Gerais. rotulo: { separadorArtigo: '', separadorArtigoSemOrdinal: '.', separadorParagrafo: '', separadorParagrafoSemOrdinal: '.' } }); var ctrl = componente.ctrl; // O controlador ctrl também está disponível em document.getElementById('articulacao').componenteEdicao.ctrlArticulacao. </script> <script> function mostrarLexML() { lexml.textContent = !ctrl.vazio ? ctrl.lexmlString.replace(/(<\/.+?>)/g, '$1\n') : ''; } document.getElementById('articulacao').addEventListener('contexto', function (evento) { // Apenas para fins demonstrativos, exibe-se o conteúdo do JSON do contexto no elemento de id="contexto". try { document.getElementById('contexto').innerText = 'Permissões: ' + JSON.stringify(evento.detail.permissoes, null, 4) + '\nCursor: ' + JSON.stringify(evento.detail.cursor, null, 4); } catch (e) { document.getElementById('contexto').innerText = ''; } }); // Quando houver alteração na articulação, exibe-se o LexML. document.getElementById('articulacao').addEventListener('change', mostrarLexML); importarConstituicao.onclick = function () { var req = new XMLHttpRequest(); req.onload = function() { var lexml = this.responseText; var articulacao = /<Articulacao>([\s\S]*)<\/Articulacao>/.exec(lexml)[1]; // Obtém apenas a tag articulacao ctrl.lexmlString = articulacao; }; req.open('get', 'https://raw.githubusercontent.com/lexml/lexml-xml-samples/master/LexML/CON1988--20150303.LexML.xml', true); req.send(); } articulacao.focus(); </script> </body> </html>
doc/html/_dismount_command_8h.html
kidaa/Awakening-Core3
<!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.3.1"/> <title>Core3: /Users/victor/git/Core3Mda/MMOCoreORB/src/server/zone/objects/creature/commands/DismountCommand.h File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="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">Core3 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.3.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> <li><a href="globals.html"><span>File&#160;Members</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li><li class="navelem"><a class="el" href="dir_075bb3ff235063c77951cd176d15a741.html">server</a></li><li class="navelem"><a class="el" href="dir_9e27d73ba17b043ea65c9708c594875e.html">zone</a></li><li class="navelem"><a class="el" href="dir_bb68fceffca92cfae925b7b7ddaff7dd.html">objects</a></li><li class="navelem"><a class="el" href="dir_f0f687cf107b6668f5ef38d977f1b2e8.html">creature</a></li><li class="navelem"><a class="el" href="dir_49f0e85076dfbf69f84c7a1fe8fcfc28.html">commands</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#nested-classes">Classes</a> </div> <div class="headertitle"> <div class="title">DismountCommand.h File Reference</div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><code>#include &quot;<a class="el" href="server_2zone_2objects_2scene_2_scene_object_8h_source.html">server/zone/objects/scene/SceneObject.h</a>&quot;</code><br/> <code>#include &quot;<a class="el" href="_vehicle_object_8h_source.html">server/zone/objects/creature/VehicleObject.h</a>&quot;</code><br/> <code>#include &quot;<a class="el" href="_control_device_8h_source.html">server/zone/objects/intangible/ControlDevice.h</a>&quot;</code><br/> </div> <p><a href="_dismount_command_8h_source.html">Go to the source code of this file.</a></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a> Classes</h2></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_dismount_command.html">DismountCommand</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Oct 15 2013 17:29:16 for Core3 by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.3.1 </small></address> </body> </html>
doc/html/0005__auto__20150403__0100_8py.html
daniel-noland/MemoryOracle
<!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.9.1"/> <title>MemoryOracle: memoryoracle/migrations/0005_auto_20150403_0100.py File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">MemoryOracle &#160;<span id="projectnumber">-1</span> </div> <div id="projectbrief">C++ memory and program state inspector with web ui based on gdb and valgrind</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.9.1 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> <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="files.html"><span>File&#160;List</span></a></li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('0005__auto__20150403__0100_8py.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="summary"> <a href="#nested-classes">Classes</a> &#124; <a href="#namespaces">Namespaces</a> </div> <div class="headertitle"> <div class="title">0005_auto_20150403_0100.py File Reference</div> </div> </div><!--header--> <div class="contents"> <p><a href="0005__auto__20150403__0100_8py_source.html">Go to the source code of this file.</a></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a> Classes</h2></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classmemoryoracle_1_1migrations_1_10005__auto__20150403__0100_1_1Migration.html">memoryoracle.migrations.0005_auto_20150403_0100.Migration</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a> Namespaces</h2></td></tr> <tr class="memitem:namespacememoryoracle_1_1migrations_1_10005__auto__20150403__0100"><td class="memItemLeft" align="right" valign="top"> &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacememoryoracle_1_1migrations_1_10005__auto__20150403__0100.html">memoryoracle.migrations.0005_auto_20150403_0100</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="dir_1720bcd4c96a3872735a6cb9027cadc9.html">memoryoracle</a></li><li class="navelem"><a class="el" href="dir_638a853e27faebfad398284581797d98.html">migrations</a></li><li class="navelem"><a class="el" href="0005__auto__20150403__0100_8py.html">0005_auto_20150403_0100.py</a></li> <li class="footer">Generated on Fri Apr 24 2015 01:01:47 for MemoryOracle by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li> </ul> </div> </body> </html>
spec/output/translation.html
pdorrell/correspondence-markup
<div class="translation"> <div class="title">Title of the translation</div> <div class="block"> <div class="line" data-line-id="A"> <span data-id="1">Hello</span>, <span data-id="2">World</span>! </div> </div> <div class="block spanish-block"> <div class="language">Spanish</div> <div class="line" data-line-id="A"> ¡<span data-id="1">Hola</span>, <span data-id="2">Mundo</span>! </div> </div> </div>
docs/doxygen-html/functions_k.html
tevaughan/numeric
<!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.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>numeric: Class Members</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/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); </script><script type="text/javascript" src="../MathJax/MathJax.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">numeric &#160;<span id="projectnumber">1.3.2</span> </div> <div id="projectbrief">C++-11 Library for Numerical Computation</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> </div><!-- top --> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="contents"> <div class="textblock">Here is a list of all documented class members with links to the class documentation for each member:</div> <h3><a id="index_k"></a>- k -</h3><ul> <li>K : <a class="el" href="structnum_1_1dimval__base.html#a0af90902ba033b72c098e446a4a545b2">dimval_base</a> </li> <li>kelvins() : <a class="el" href="structnum_1_1u_1_1kelvins.html#a870281fdc8757ac3ad077e01d308e69a">kelvins</a> </li> <li>kg : <a class="el" href="structnum_1_1dimval__base.html#a7e0f2ec0053d053a880b45e937e9e559">dimval_base</a> </li> <li>kilograms() : <a class="el" href="structnum_1_1u_1_1kilograms.html#ae334c78a7d913ef5d79fbae796a99132">kilograms</a> </li> <li>kilohertz() : <a class="el" href="structnum_1_1u_1_1kilohertz.html#a5040bd93fb85423cf28b87d2cf854dac">kilohertz</a> </li> <li>kilometers() : <a class="el" href="structnum_1_1u_1_1kilometers.html#a86cf1daa7c1892cf7673b9de2cd5376f">kilometers</a> </li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.13 </small></address> </body> </html>
tnk1/kma/qjrim1/tl.html
erelsgl/erel-sites
<!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' lang='he' dir='rtl'> <head> <meta http-equiv='Content-Type' content='text/html; charset=windows-1255' /> <meta charset='windows-1255' /> <meta http-equiv='Content-Script-Type' content='text/javascript' /> <meta http-equiv='revisit-after' content='15 days' /> <title>èì èåá åèì øò</title> <link rel='stylesheet' type='text/css' href='../../../_script/klli.css' /> <link rel='stylesheet' type='text/css' href='../../../tnk1/_themes/klli.css' /> <meta property='og:url' content='https://tora.us.fm/tnk1/kma/qjrim1/tl.html'/> <meta name='author' content="ñéâì åàøàì" /> <meta name='receiver' content="îëúá" /> <meta name='jmQovc' content="tnk1/kma/qjrim1/tl.html" /> <meta name='tvnit' content="" /> <link rel='canonical' href='https://tora.us.fm/tnk1/kma/qjrim1/tl.html' /> </head> <!-- PHP Programming by Erel Segal-Halevi --> <body lang='he' dir='rtl' id = 'tnk1_kma_qjrim1_tl' class='mjl '> <div class='pnim'> <script type='text/javascript' src='../../../_script/vars.js'></script> <!--NiwutElyon0--> <div class='NiwutElyon'> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/sig/what.html'>úåëï</a>&gt;<a href='../../../tnk1/sig/mjl.html'>îùì åðîùì</a>&gt;</div> <div class='NiwutElyon'><a class='link_to_homepage' href='../../../tnk1/index.html'>øàùé</a>&gt;<a href='../../../tnk1/msr/9science.html'>îãò åèáò</a>&gt;<a href='../../../tnk1/msr/9xqlaut.html'>ç÷ìàåú</a>&gt;</div> </div> <!--NiwutElyon1--> <h1 id='h1'>èì èåá åèì øò</h1> <div id='idfields'> <p>÷åã: èì èåá åèì øò áúð"ê</p> <p>ñåâ: îùì</p> <p>îàú: ñéâì åàøàì</p> <p>àì: îëúá</p> </div> <script type='text/javascript'>kotrt()</script> <div id='tokn'> <p> [úåãä ìñéâìéä!] <p> <p> áëîä î÷åîåú áúð"ê ðæëø èì ëîùì: <ol> <li> <div> ãáøéí ìá 2: <q class='psuq'>éòøåó ëîèø ì÷çé, úéæì ë <b>èì </b>àîøúé; ëùòéøéí òìé ãùà, åëøáéáéí òìé òùá. </q> </div> <li> <div> éùòéäå éç 4: <q class='psuq'>àù÷èä åàáéèä áîëåðé, ëçåí öç òìé àåø, ë <b>òá èì </b>áçåí ÷öéø </q>. </div> <li> <div> äåùò å 4: <q class='psuq'>îä àòùä ìê àôøéí? îä àòùä ìê éäåãä? åçñãëí ëòðï áå÷ø, åë <b>èì îùëéí äåìê </b>! </q> </div> <li> <div> äåùò éâ 3: <q class='psuq'>ìëï éäéå ëòðï áå÷ø, åë <b>èì îùëéí äåìê </b>; ëîåõ éñåòø îâåøï, åëòùï îàøåáä. </q> </div> <li> <div> äåùò éã 6: <q class='psuq'>àäéä ë <b>èì </b>ìéùøàì, éôøç ëùåùðä; åéê ùåøùéå ëìáðåï. </q> </div> <li> <div> îéëä ä 6: <q class='psuq'>åäéä ùàøéú éò÷á á÷øá òîéí øáéí, ëèì îàú ä', ëøáéáéí òìé òùá - àùø ìà é÷ååä ìàéù, åìà ééçì ìáðé àãí. </q> </div> <li> <div> úäìéí ÷ìâ 3: <q class='psuq'>ëèì çøîåï, ùéåøã òì äøøé öéåï: ëé ùí öéååä ä' àú äáøëä, çééí òã äòåìí. </q> </div> <li> <div> îùìé éè 12: <q class='psuq'>ðäí ëëôéø æòó îìê; åëèì òì òùá øöåðå. </q> </div> </ol> <p> áçì÷ îäôñå÷éí ðøàä ùèì äåà ãáø øò - ñîì ìæîðéåú åìçåñø-éöéáåú. àáì áôñå÷éí àçøéí ðøàä ùèì äåà ãáø èåá åðöçé (îùì ìä' àå ìúåøä)! àæ îäå îñîì äèì - èåá àå øò? <p> <p> ôòí äééúé áàù÷ìåï, å÷îúé îå÷ãí ááå÷ø, åäøâùúé ùéåøã òìé âùí. æä ðøàä ìé ÷öú îåæø ëé æä äéä àééø åäùîééí äéå áäéøéí. àæ äñúëìúé ìîòìä åøàéúé ùæä áëìì ìà âùí àìà èéôåú ùì èì ùðæì îäòìéí ùì äòõ ùòîãúé îúçúéå. ìôé æä ðøàä ìé ùéù ùðé ñåâéí ùì èì – èì "òáä" åèì "ã÷". äèì äòáä äåà áëìì ìà æîðé, ìäôê – äåà îù÷ä àú äàãîä îîù ëîå âùí. áãøåí, áî÷åîåú ùàéï äøáä âùîéí, æä îîù çéåðé { <font>ðãîä ìé ùäåùò äéä îùáè øàåáï – àæ äåà âø áãøåí òáä"é äîæøçé. </font>} <![if!supportFootnotes]> <![endif]> àáì äèì äã÷ äåà æîðé – äåà îúðãó ëùäùîù æåøçú åìà îù÷ä àú äàãîä. ðøàä ìé ùäôñå÷ "àäéä ëèì ìéùøàì" îãáø òì äèì äòáä, ëé ëùäåùò øåöä ìãáø òì äèì äã÷ äåà ìà àåîø ñúí "èì" àìà [å4, éâ13] "<q class='psuq'>èì îùëéí äåìê</q>" (èì ùîùëéí ááå÷ø åäåìê ìå...). <p> <p> äôñå÷ áéùòéä éç ìà-ëì-ëê áøåø ìé, àáì ðøàä ìé ùòá-èì æä ãáø çéåáé – æä îâï îôðé äçåí ùì ä÷öéø. âí ùí ðøàä ùäèì äòáä äåà îùì ìäùâçä ùì ä'. <p> <p> òåã äòøä:÷øàúé ôòí îãøù çæ"ì (ìà æåëø àéôä) ùäèì èåá éåúø îäâùí, ëé äèì ø÷ îåòéì åäâùí âí òìåì ìäæé÷ àí äåà çæ÷ îãé. <p> <![if!supportFootnotes]> <![endif]> <![if!supportFootnotes]> <![endif]> </div><!--tokn--> <h2 id='tguvot'>úâåáåú</h2> <ul id='ultguvot'> </ul><!--end--> <script type='text/javascript'>tguva(); txtit()</script> </div><!--pnim--> </body> </html>
docs/cpython_promc/html/HRecord_pb2.Record-class.html
Argonne-National-Laboratory/ProMC
<?xml version="1.0" encoding="ascii"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>HRecord_pb2.Record</title> <link rel="stylesheet" href="epydoc.css" type="text/css" /> <script type="text/javascript" src="epydoc.js"></script> </head> <body bgcolor="white" text="black" link="blue" vlink="#204080" alink="#204080"> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <th class="navbar" width="100%"></th> </tr> </table> <table width="100%" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="100%"> <span class="breadcrumbs"> <a href="HRecord_pb2-module.html">Module&nbsp;HRecord_pb2</a> :: Class&nbsp;Record </span> </td> <td> <table cellpadding="0" cellspacing="0"> <!-- hide/show private --> <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink" onclick="toggle_private();">hide&nbsp;private</a>]</span></td></tr> <tr><td align="right"><span class="options" >[<a href="frames.html" target="_top">frames</a >]&nbsp;|&nbsp;<a href="HRecord_pb2.Record-class.html" target="_top">no&nbsp;frames</a>]</span></td></tr> </table> </td> </tr> </table> <!-- ==================== CLASS DESCRIPTION ==================== --> <h1 class="epydoc">Class Record</h1><p class="nomargin-top"><span class="codelink"><a href="HRecord_pb2-pysrc.html#Record">source&nbsp;code</a></span></p> <pre class="base-tree"> object --+ | google.protobuf.message.Message --+ | <strong class="uidshort">Record</strong> </pre> <hr /> <!-- ==================== NESTED CLASSES ==================== --> <a name="section-NestedClasses"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Nested Classes</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-NestedClasses" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="google.protobuf.reflection.GeneratedProtocolMessageType-class.html" class="summary-name">__metaclass__</a><br /> Metaclass for protocol message classes created at runtime from Descriptors. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record.P0I-class.html" class="summary-name">P0I</a> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record.P0D-class.html" class="summary-name">P0D</a> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record.PXY-class.html" class="summary-name">PXY</a> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record.PXYZ-class.html" class="summary-name">PXYZ</a> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record.P1D-class.html" class="summary-name">P1D</a> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record.H1D-class.html" class="summary-name">H1D</a> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record.H2D-class.html" class="summary-name">H2D</a> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record.F1D-class.html" class="summary-name">F1D</a> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record.F2D-class.html" class="summary-name">F2D</a> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record.FND-class.html" class="summary-name">FND</a> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record.FPR-class.html" class="summary-name">FPR</a> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record.PND-class.html" class="summary-name">PND</a> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record.PNI-class.html" class="summary-name">PNI</a> </td> </tr> </table> <!-- ==================== INSTANCE METHODS ==================== --> <a name="section-InstanceMethods"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Instance Methods</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-InstanceMethods" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#ByteSize" class="summary-sig-name">ByteSize</a>(<span class="summary-sig-arg">self</span>)</span><br /> Returns the serialized size of this message.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#Clear" class="summary-sig-name">Clear</a>(<span class="summary-sig-arg">self</span>)</span><br /> Clears all data that was set in the message.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#ClearField" class="summary-sig-name">ClearField</a>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">field_name</span>)</span></td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#FindInitializationErrors" class="summary-sig-name">FindInitializationErrors</a>(<span class="summary-sig-arg">self</span>)</span><br /> Finds required fields which are not initialized.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#HasField" class="summary-sig-name">HasField</a>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">field_name</span>)</span><br /> Checks if a certain field is set for the message.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#IsInitialized" class="summary-sig-name">IsInitialized</a>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">errors</span>=<span class="summary-sig-default">None</span>)</span><br /> Checks if all required fields of a message are set.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#ListFields" class="summary-sig-name">ListFields</a>(<span class="summary-sig-arg">self</span>)</span><br /> Returns a list of (FieldDescriptor, value) tuples for all fields in the message which are not empty.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#MergeFrom" class="summary-sig-name">MergeFrom</a>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">msg</span>)</span><br /> Merges the contents of the specified message into current message.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#MergeFromString" class="summary-sig-name">MergeFromString</a>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">serialized</span>)</span><br /> Merges serialized protocol buffer data into this message.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#SerializePartialToString" class="summary-sig-name">SerializePartialToString</a>(<span class="summary-sig-arg">self</span>)</span><br /> Serializes the protocol message to a binary string.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#SerializeToString" class="summary-sig-name">SerializeToString</a>(<span class="summary-sig-arg">self</span>)</span><br /> Serializes the protocol message to a binary string.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#SetInParent" class="summary-sig-name">SetInParent</a>(<span class="summary-sig-arg">self</span>)</span><br /> Sets the _cached_byte_size_dirty bit to true, and propagates this to our listener iff this was a state change.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="_InternalParse"></a><span class="summary-sig-name">_InternalParse</span>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">buffer</span>, <span class="summary-sig-arg">pos</span>, <span class="summary-sig-arg">end</span>)</span></td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="_InternalSerialize"></a><span class="summary-sig-name">_InternalSerialize</span>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">write_bytes</span>)</span></td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="_Modified"></a><span class="summary-sig-name">_Modified</span>(<span class="summary-sig-arg">self</span>)</span><br /> Sets the _cached_byte_size_dirty bit to true, and propagates this to our listener iff this was a state change.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#_SetListener" class="summary-sig-name" onclick="show_private();">_SetListener</a>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">listener</span>)</span><br /> Internal method used by the protocol message implementation.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#__eq__" class="summary-sig-name">__eq__</a>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">other</span>)</span><br /> Recursively compares two messages by value and structure.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">**kwargs</span>)</span><br /> x.__init__(...) initializes x; see x.__class__.__doc__ for signature</td> <td align="right" valign="top"> <span class="codelink"><a href="HRecord_pb2-pysrc.html#Record.__init__">source&nbsp;code</a></span> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#__str__" class="summary-sig-name">__str__</a>(<span class="summary-sig-arg">self</span>)</span><br /> Outputs a human-readable representation of the message.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="HRecord_pb2.Record-class.html#__unicode__" class="summary-sig-name">__unicode__</a>(<span class="summary-sig-arg">self</span>)</span><br /> Outputs a human-readable representation of the message.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code>google.protobuf.message.Message</code></b>: <code>ClearExtension</code>, <code>CopyFrom</code>, <code>HasExtension</code>, <code>ParseFromString</code>, <code>__deepcopy__</code>, <code>__getstate__</code>, <code>__hash__</code>, <code>__ne__</code>, <code>__setstate__</code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__delattr__</code>, <code>__format__</code>, <code>__getattribute__</code>, <code>__new__</code>, <code>__reduce__</code>, <code>__reduce_ex__</code>, <code>__repr__</code>, <code>__setattr__</code>, <code>__sizeof__</code>, <code>__subclasshook__</code> </p> </td> </tr> </table> <!-- ==================== STATIC METHODS ==================== --> <a name="section-StaticMethods"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Static Methods</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-StaticMethods" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="FromString"></a><span class="summary-sig-name">FromString</span>(<span class="summary-sig-arg">s</span>)</span></td> <td align="right" valign="top"> <span class="codelink"><a href="HRecord_pb2-pysrc.html#Record.FromString">source&nbsp;code</a></span> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="RegisterExtension"></a><span class="summary-sig-name">RegisterExtension</span>(<span class="summary-sig-arg">extension_handle</span>)</span></td> <td align="right" valign="top"> <span class="codelink"><a href="HRecord_pb2-pysrc.html#Record.RegisterExtension">source&nbsp;code</a></span> </td> </tr> </table> </td> </tr> </table> <!-- ==================== CLASS VARIABLES ==================== --> <a name="section-ClassVariables"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Class Variables</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-ClassVariables" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#DESCRIPTOR" class="summary-name">DESCRIPTOR</a> = <code title="_descriptor.Descriptor(name= 'Record', full_name= 'promc.Record', file\ name= None, file= DESCRIPTOR, containing_type= None, fields= [_descrip\ tor.FieldDescriptor(name= 'name', full_name= 'promc.Record.name', inde\ x= 0, number= 1, type= 9, cpp_type= 9, label= 1, has_default_value= Fa\ lse, default_value= unicode(&quot;&quot;, &quot;utf-8&quot;), message_type= None, enum_typ\ e= None, containing_type= None, is_extension= False, extension_scope= \ None, options= None), _descriptor.FieldDescriptor(name= 'p0I', full_na\ me= 'promc.Record.p0I', index= 1, number= 2, type= 11, cpp_type= 10, l\ ...">_descriptor.Descriptor(name= 'Record', full_name=<code class="variable-ellipsis">...</code></code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="F1D_FIELD_NUMBER"></a><span class="summary-name">F1D_FIELD_NUMBER</span> = <code title="9">9</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="F2D_FIELD_NUMBER"></a><span class="summary-name">F2D_FIELD_NUMBER</span> = <code title="10">10</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="FND_FIELD_NUMBER"></a><span class="summary-name">FND_FIELD_NUMBER</span> = <code title="11">11</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="FPR_FIELD_NUMBER"></a><span class="summary-name">FPR_FIELD_NUMBER</span> = <code title="12">12</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="H1D_FIELD_NUMBER"></a><span class="summary-name">H1D_FIELD_NUMBER</span> = <code title="7">7</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="H2D_FIELD_NUMBER"></a><span class="summary-name">H2D_FIELD_NUMBER</span> = <code title="8">8</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="NAME_FIELD_NUMBER"></a><span class="summary-name">NAME_FIELD_NUMBER</span> = <code title="1">1</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="P0D_FIELD_NUMBER"></a><span class="summary-name">P0D_FIELD_NUMBER</span> = <code title="3">3</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="P0I_FIELD_NUMBER"></a><span class="summary-name">P0I_FIELD_NUMBER</span> = <code title="2">2</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="P1D_FIELD_NUMBER"></a><span class="summary-name">P1D_FIELD_NUMBER</span> = <code title="6">6</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="PND_FIELD_NUMBER"></a><span class="summary-name">PND_FIELD_NUMBER</span> = <code title="13">13</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="PNI_FIELD_NUMBER"></a><span class="summary-name">PNI_FIELD_NUMBER</span> = <code title="14">14</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="PXYZ_FIELD_NUMBER"></a><span class="summary-name">PXYZ_FIELD_NUMBER</span> = <code title="5">5</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="PXY_FIELD_NUMBER"></a><span class="summary-name">PXY_FIELD_NUMBER</span> = <code title="4">4</code> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#_decoders_by_tag" class="summary-name" onclick="show_private();">_decoders_by_tag</a> = <code title="{''' ''': &lt;function DecodeField at 0x1200320&gt;, '\x12': &lt;function DecodeField at 0x1200500&gt;, '\x1a': &lt;function DecodeField at 0x12006e0&gt;, '&quot;': &lt;function DecodeField at 0x12008c0&gt;, '*': &lt;function DecodeField at 0x1200aa0&gt;, '2': &lt;function DecodeField at 0x1200c80&gt;, ':': &lt;function DecodeField at 0x1200e60&gt;, ..."><code class="variable-group">{</code><code class="variable-quote">'</code><code class="variable-string">\n</code><code class="variable-quote">'</code><code class="variable-op">: </code>&lt;function DecodeField at 0x1200320&gt;<code class="variable-op">,</code><code class="variable-ellipsis">...</code></code> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="_extensions_by_name"></a><span class="summary-name">_extensions_by_name</span> = <code title="{}"><code class="variable-group">{</code><code class="variable-group">}</code></code> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="_extensions_by_number"></a><span class="summary-name">_extensions_by_number</span> = <code title="{}"><code class="variable-group">{</code><code class="variable-group">}</code></code> </td> </tr> </table> <!-- ==================== PROPERTIES ==================== --> <a name="section-Properties"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Properties</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Properties" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="_cached_byte_size"></a><span class="summary-name">_cached_byte_size</span> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="_cached_byte_size_dirty"></a><span class="summary-name">_cached_byte_size_dirty</span> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="_fields"></a><span class="summary-name">_fields</span> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="_is_present_in_parent"></a><span class="summary-name">_is_present_in_parent</span> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="_listener"></a><span class="summary-name">_listener</span> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="_listener_for_children"></a><span class="summary-name">_listener_for_children</span> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="_unknown_fields"></a><span class="summary-name">_unknown_fields</span> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#f1D" class="summary-name">f1D</a><br /> Magic attribute generated for &quot;f1D&quot; proto field. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#f2D" class="summary-name">f2D</a><br /> Magic attribute generated for &quot;f2D&quot; proto field. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#fND" class="summary-name">fND</a><br /> Magic attribute generated for &quot;fND&quot; proto field. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#fPR" class="summary-name">fPR</a><br /> Magic attribute generated for &quot;fPR&quot; proto field. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#h1D" class="summary-name">h1D</a><br /> Magic attribute generated for &quot;h1D&quot; proto field. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#h2D" class="summary-name">h2D</a><br /> Magic attribute generated for &quot;h2D&quot; proto field. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#name" class="summary-name">name</a><br /> Magic attribute generated for &quot;name&quot; proto field. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#p0D" class="summary-name">p0D</a><br /> Magic attribute generated for &quot;p0D&quot; proto field. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#p0I" class="summary-name">p0I</a><br /> Magic attribute generated for &quot;p0I&quot; proto field. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#p1D" class="summary-name">p1D</a><br /> Magic attribute generated for &quot;p1D&quot; proto field. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#pND" class="summary-name">pND</a><br /> Magic attribute generated for &quot;pND&quot; proto field. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#pNI" class="summary-name">pNI</a><br /> Magic attribute generated for &quot;pNI&quot; proto field. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#pXY" class="summary-name">pXY</a><br /> Magic attribute generated for &quot;pXY&quot; proto field. </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="HRecord_pb2.Record-class.html#pXYZ" class="summary-name">pXYZ</a><br /> Magic attribute generated for &quot;pXYZ&quot; proto field. </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__class__</code> </p> </td> </tr> </table> <!-- ==================== METHOD DETAILS ==================== --> <a name="section-MethodDetails"></a> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Method Details</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-MethodDetails" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> </table> <a name="ByteSize"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">ByteSize</span>(<span class="sig-arg">self</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Returns the serialized size of this message. Recursively calls ByteSize() on all contained messages.</p> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message.ByteSize <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <a name="Clear"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">Clear</span>(<span class="sig-arg">self</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Clears all data that was set in the message.</p> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message.Clear <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <a name="ClearField"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">ClearField</span>(<span class="sig-arg">self</span>, <span class="sig-arg">field_name</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message.ClearField </dt> </dl> </td></tr></table> </div> <a name="FindInitializationErrors"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">FindInitializationErrors</span>(<span class="sig-arg">self</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <pre class="literalblock"> Finds required fields which are not initialized. Returns: A list of strings. Each string is a path to an uninitialized field from the top-level message, e.g. &quot;foo.bar[5].baz&quot;. </pre> <dl class="fields"> </dl> </td></tr></table> </div> <a name="HasField"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">HasField</span>(<span class="sig-arg">self</span>, <span class="sig-arg">field_name</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Checks if a certain field is set for the message. Note if the field_name is not defined in the message descriptor, ValueError will be raised.</p> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message.HasField <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <a name="IsInitialized"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">IsInitialized</span>(<span class="sig-arg">self</span>, <span class="sig-arg">errors</span>=<span class="sig-default">None</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <pre class="literalblock"> Checks if all required fields of a message are set. Args: errors: A list which, if provided, will be populated with the field paths of all missing required fields. Returns: True iff the specified message has all required fields set. </pre> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message.IsInitialized </dt> </dl> </td></tr></table> </div> <a name="ListFields"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">ListFields</span>(<span class="sig-arg">self</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Returns a list of (FieldDescriptor, value) tuples for all fields in the message which are not empty. A singular field is non-empty if HasField() would return true, and a repeated field is non-empty if it contains at least one element. The fields are ordered by field number</p> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message.ListFields <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <a name="MergeFrom"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">MergeFrom</span>(<span class="sig-arg">self</span>, <span class="sig-arg">msg</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <pre class="literalblock"> Merges the contents of the specified message into current message. This method merges the contents of the specified message into the current message. Singular fields that are set in the specified message overwrite the corresponding fields in the current message. Repeated fields are appended. Singular sub-messages and groups are recursively merged. Args: other_msg: Message to merge into the current message. </pre> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message.MergeFrom <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <a name="MergeFromString"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">MergeFromString</span>(<span class="sig-arg">self</span>, <span class="sig-arg">serialized</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <pre class="literalblock"> Merges serialized protocol buffer data into this message. When we find a field in |serialized| that is already present in this message: - If it's a &quot;repeated&quot; field, we append to the end of our list. - Else, if it's a scalar, we overwrite our field. - Else, (it's a nonrepeated composite), we recursively merge into the existing composite. TODO(robinson): Document handling of unknown fields. Args: serialized: Any object that allows us to call buffer(serialized) to access a string of bytes using the buffer interface. TODO(robinson): When we switch to a helper, this will return None. Returns: The number of bytes read from |serialized|. For non-group messages, this will always be len(serialized), but for messages which are actually groups, this will generally be less than len(serialized), since we must stop when we reach an END_GROUP tag. Note that if we *do* stop because of an END_GROUP tag, the number of bytes returned does not include the bytes for the END_GROUP tag information. </pre> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message.MergeFromString <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <a name="SerializePartialToString"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">SerializePartialToString</span>(<span class="sig-arg">self</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <pre class="literalblock"> Serializes the protocol message to a binary string. This method is similar to SerializeToString but doesn't check if the message is initialized. Returns: A string representation of the partial message. </pre> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message.SerializePartialToString <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <a name="SerializeToString"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">SerializeToString</span>(<span class="sig-arg">self</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <pre class="literalblock"> Serializes the protocol message to a binary string. Returns: A binary string representation of the message if all of the required fields in the message are set (i.e. the message is initialized). Raises: message.EncodeError if the message isn't initialized. </pre> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message.SerializeToString <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <a name="SetInParent"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">SetInParent</span>(<span class="sig-arg">self</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Sets the _cached_byte_size_dirty bit to true, and propagates this to our listener iff this was a state change.</p> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message.SetInParent </dt> </dl> </td></tr></table> </div> <a name="_SetListener"></a> <div class="private"> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">_SetListener</span>(<span class="sig-arg">self</span>, <span class="sig-arg">listener</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Internal method used by the protocol message implementation. Clients should not call this directly.</p> <p>Sets a listener that this message will call on certain state transitions.</p> <p>The purpose of this method is to register back-edges from children to parents at runtime, for the purpose of setting &quot;has&quot; bits and byte-size-dirty bits in the parent and ancestor objects whenever a child or descendant object is modified.</p> <p>If the client wants to disconnect this Message from the object tree, she explicitly sets callback to None.</p> <p>If message_listener is None, unregisters any existing listener. Otherwise, message_listener must implement the MessageListener interface in internal/message_listener.py, and we discard any listener registered via a previous _SetListener() call.</p> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message._SetListener <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <a name="__eq__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__eq__</span>(<span class="sig-arg">self</span>, <span class="sig-arg">other</span>)</span> <br /><em class="fname">(Equality operator)</em> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Recursively compares two messages by value and structure.</p> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message.__eq__ <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <a name="__init__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>, <span class="sig-arg">**kwargs</span>)</span> <br /><em class="fname">(Constructor)</em> </h3> </td><td align="right" valign="top" ><span class="codelink"><a href="HRecord_pb2-pysrc.html#Record.__init__">source&nbsp;code</a></span>&nbsp; </td> </tr></table> <p>x.__init__(...) initializes x; see x.__class__.__doc__ for signature</p> <dl class="fields"> <dt>Overrides: object.__init__ <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <a name="__str__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__str__</span>(<span class="sig-arg">self</span>)</span> <br /><em class="fname">(Informal representation operator)</em> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Outputs a human-readable representation of the message.</p> <dl class="fields"> <dt>Overrides: object.__str__ <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <a name="__unicode__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__unicode__</span>(<span class="sig-arg">self</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Outputs a human-readable representation of the message.</p> <dl class="fields"> <dt>Overrides: google.protobuf.message.Message.__unicode__ <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <br /> <!-- ==================== CLASS VARIABLE DETAILS ==================== --> <a name="section-ClassVariableDetails"></a> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Class Variable Details</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-ClassVariableDetails" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> </table> <a name="DESCRIPTOR"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">DESCRIPTOR</h3> <dl class="fields"> </dl> <dl class="fields"> <dt>Value:</dt> <dd><table><tr><td><pre class="variable"> _descriptor.Descriptor(name= 'Record', full_name= 'promc.Record', file<span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> name= None, file= DESCRIPTOR, containing_type= None, fields= [_descrip<span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> tor.FieldDescriptor(name= 'name', full_name= 'promc.Record.name', inde<span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> x= 0, number= 1, type= 9, cpp_type= 9, label= 1, has_default_value= Fa<span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> lse, default_value= unicode(&quot;&quot;, &quot;utf-8&quot;), message_type= None, enum_typ<span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> e= None, containing_type= None, is_extension= False, extension_scope= <span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> None, options= None), _descriptor.FieldDescriptor(name= 'p0I', full_na<span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> me= 'promc.Record.p0I', index= 1, number= 2, type= 11, cpp_type= 10, l<span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> <code class="variable-ellipsis">...</code> </pre></td></tr></table> </dd> </dl> </td></tr></table> </div> <a name="_decoders_by_tag"></a> <div class="private"> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">_decoders_by_tag</h3> <dl class="fields"> </dl> <dl class="fields"> <dt>Value:</dt> <dd><table><tr><td><pre class="variable"> <code class="variable-group">{</code><code class="variable-quote">'''</code><code class="variable-string"></code> <code class="variable-string"></code><code class="variable-quote">'''</code><code class="variable-op">: </code>&lt;function DecodeField at 0x1200320&gt;<code class="variable-op">,</code> <code class="variable-quote">'</code><code class="variable-string">\x12</code><code class="variable-quote">'</code><code class="variable-op">: </code>&lt;function DecodeField at 0x1200500&gt;<code class="variable-op">,</code> <code class="variable-quote">'</code><code class="variable-string">\x1a</code><code class="variable-quote">'</code><code class="variable-op">: </code>&lt;function DecodeField at 0x12006e0&gt;<code class="variable-op">,</code> <code class="variable-quote">'</code><code class="variable-string">&quot;</code><code class="variable-quote">'</code><code class="variable-op">: </code>&lt;function DecodeField at 0x12008c0&gt;<code class="variable-op">,</code> <code class="variable-quote">'</code><code class="variable-string">*</code><code class="variable-quote">'</code><code class="variable-op">: </code>&lt;function DecodeField at 0x1200aa0&gt;<code class="variable-op">,</code> <code class="variable-quote">'</code><code class="variable-string">2</code><code class="variable-quote">'</code><code class="variable-op">: </code>&lt;function DecodeField at 0x1200c80&gt;<code class="variable-op">,</code> <code class="variable-quote">'</code><code class="variable-string">:</code><code class="variable-quote">'</code><code class="variable-op">: </code>&lt;function DecodeField at 0x1200e60&gt;<code class="variable-op">,</code> <code class="variable-ellipsis">...</code> </pre></td></tr></table> </dd> </dl> </td></tr></table> </div> <br /> <!-- ==================== PROPERTY DETAILS ==================== --> <a name="section-PropertyDetails"></a> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Property Details</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-PropertyDetails" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> </table> <a name="f1D"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">f1D</h3> <p>Magic attribute generated for &quot;f1D&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for f1D. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> </dd> </dl> </td></tr></table> </div> <a name="f2D"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">f2D</h3> <p>Magic attribute generated for &quot;f2D&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for f2D. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> </dd> </dl> </td></tr></table> </div> <a name="fND"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">fND</h3> <p>Magic attribute generated for &quot;fND&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for fND. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> </dd> </dl> </td></tr></table> </div> <a name="fPR"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">fPR</h3> <p>Magic attribute generated for &quot;fPR&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for fPR. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> </dd> </dl> </td></tr></table> </div> <a name="h1D"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">h1D</h3> <p>Magic attribute generated for &quot;h1D&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for h1D. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> </dd> </dl> </td></tr></table> </div> <a name="h2D"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">h2D</h3> <p>Magic attribute generated for &quot;h2D&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for h2D. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> </dd> </dl> </td></tr></table> </div> <a name="name"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">name</h3> <p>Magic attribute generated for &quot;name&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for name. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> - Setter for name. </dd> </dl> </td></tr></table> </div> <a name="p0D"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">p0D</h3> <p>Magic attribute generated for &quot;p0D&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for p0D. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> </dd> </dl> </td></tr></table> </div> <a name="p0I"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">p0I</h3> <p>Magic attribute generated for &quot;p0I&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for p0I. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> </dd> </dl> </td></tr></table> </div> <a name="p1D"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">p1D</h3> <p>Magic attribute generated for &quot;p1D&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for p1D. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> </dd> </dl> </td></tr></table> </div> <a name="pND"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">pND</h3> <p>Magic attribute generated for &quot;pND&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for pND. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> </dd> </dl> </td></tr></table> </div> <a name="pNI"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">pNI</h3> <p>Magic attribute generated for &quot;pNI&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for pNI. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> </dd> </dl> </td></tr></table> </div> <a name="pXY"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">pXY</h3> <p>Magic attribute generated for &quot;pXY&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for pXY. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> </dd> </dl> </td></tr></table> </div> <a name="pXYZ"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">pXYZ</h3> <p>Magic attribute generated for &quot;pXYZ&quot; proto field.</p> <dl class="fields"> <dt>Get Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.getter(<span class="summary-sig-arg">self</span>)</span> - Getter for pXYZ. </dd> <dt>Set Method:</dt> <dd class="value"><span class="summary-sig"><i>unreachable</i>.setter(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">new_value</span>)</span> </dd> </dl> </td></tr></table> </div> <br /> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <th class="navbar" width="100%"></th> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%%"> <tr> <td align="left" class="footer"> Generated by Epydoc 3.0.1 on Tue May 30 03:59:25 2017 </td> <td align="right" class="footer"> <a target="mainFrame" href="http://epydoc.sourceforge.net" >http://epydoc.sourceforge.net</a> </td> </tr> </table> <script type="text/javascript"> <!-- // Private objects are initially displayed (because if // javascript is turned off then we want them to be // visible); but by default, we want to hide them. So hide // them unless we have a cookie that says to show them. checkCookie(); // --> </script> </body> </html>
site/src/site/resources/html/start-to-head-except-title.html
lmu-bioinformatics/xmlpipedb
<?xml version="1.0" encoding="utf-8" ?> <?xml-stylesheet type="text/css" href="css/xmlpipedb.css" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <link rel="stylesheet" type="text/css" href="css/xmlpipedb.css"/> <script type="text/javascript" src="js/loadcontent.js"></script>
poesys-db/doc/index-files/index-22.html
Poesys-Associates/poesys-db
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_92) on Sun Mar 11 12:21:31 PDT 2018 --> <title>V-Index</title> <meta name="date" content="2018-03-11"> <link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> <script type="text/javascript" src="../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="V-Index"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li>Package</li> <li>Class</li> <li>Use</li> <li><a href="../overview-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li class="navBarCell1Rev">Index</li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="index-21.html">Prev Letter</a></li> <li>Next Letter</li> </ul> <ul class="navList"> <li><a href="../index.html?index-files/index-22.html" target="_top">Frames</a></li> <li><a href="index-22.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">D</a>&nbsp;<a href="index-5.html">E</a>&nbsp;<a href="index-6.html">F</a>&nbsp;<a href="index-7.html">G</a>&nbsp;<a href="index-8.html">H</a>&nbsp;<a href="index-9.html">I</a>&nbsp;<a href="index-10.html">J</a>&nbsp;<a href="index-11.html">K</a>&nbsp;<a href="index-12.html">L</a>&nbsp;<a href="index-13.html">M</a>&nbsp;<a href="index-14.html">N</a>&nbsp;<a href="index-15.html">O</a>&nbsp;<a href="index-16.html">P</a>&nbsp;<a href="index-17.html">Q</a>&nbsp;<a href="index-18.html">R</a>&nbsp;<a href="index-19.html">S</a>&nbsp;<a href="index-20.html">T</a>&nbsp;<a href="index-21.html">U</a>&nbsp;<a href="index-22.html">V</a>&nbsp;<a name="I:V"> <!-- --> </a> <h2 class="title">V</h2> <dl> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/HasPrimaryKey.html#validate--">validate()</a></span> - Method in class com.poesys.db.dto.<a href="../com/poesys/db/dto/HasPrimaryKey.html" title="class in com.poesys.db.dto">HasPrimaryKey</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/IValidate.html#validate--">validate()</a></span> - Method in interface com.poesys.db.dto.<a href="../com/poesys/db/dto/IValidate.html" title="interface in com.poesys.db.dto">IValidate</a></dt> <dd> <div class="block">Is the DTO valid in the current context?</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/AbstractDto.html#validateForDelete--">validateForDelete()</a></span> - Method in class com.poesys.db.dto.<a href="../com/poesys/db/dto/AbstractDto.html" title="class in com.poesys.db.dto">AbstractDto</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/AbstractLazyLoadingDtoProxy.html#validateForDelete--">validateForDelete()</a></span> - Method in class com.poesys.db.dto.<a href="../com/poesys/db/dto/AbstractLazyLoadingDtoProxy.html" title="class in com.poesys.db.dto">AbstractLazyLoadingDtoProxy</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/IDbDto.html#validateForDelete--">validateForDelete()</a></span> - Method in interface com.poesys.db.dto.<a href="../com/poesys/db/dto/IDbDto.html" title="interface in com.poesys.db.dto">IDbDto</a></dt> <dd> <div class="block">Validate the DTO for deleting.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/AbstractDto.html#validateForInsert--">validateForInsert()</a></span> - Method in class com.poesys.db.dto.<a href="../com/poesys/db/dto/AbstractDto.html" title="class in com.poesys.db.dto">AbstractDto</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/AbstractLazyLoadingDtoProxy.html#validateForInsert--">validateForInsert()</a></span> - Method in class com.poesys.db.dto.<a href="../com/poesys/db/dto/AbstractLazyLoadingDtoProxy.html" title="class in com.poesys.db.dto">AbstractLazyLoadingDtoProxy</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/IDbDto.html#validateForInsert--">validateForInsert()</a></span> - Method in interface com.poesys.db.dto.<a href="../com/poesys/db/dto/IDbDto.html" title="interface in com.poesys.db.dto">IDbDto</a></dt> <dd> <div class="block">Validate the DTO for inserting.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/AbstractDto.html#validateForQuery--">validateForQuery()</a></span> - Method in class com.poesys.db.dto.<a href="../com/poesys/db/dto/AbstractDto.html" title="class in com.poesys.db.dto">AbstractDto</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/AbstractLazyLoadingDtoProxy.html#validateForQuery--">validateForQuery()</a></span> - Method in class com.poesys.db.dto.<a href="../com/poesys/db/dto/AbstractLazyLoadingDtoProxy.html" title="class in com.poesys.db.dto">AbstractLazyLoadingDtoProxy</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/IDbDto.html#validateForQuery--">validateForQuery()</a></span> - Method in interface com.poesys.db.dto.<a href="../com/poesys/db/dto/IDbDto.html" title="interface in com.poesys.db.dto">IDbDto</a></dt> <dd> <div class="block">Validate the DTO for querying.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/AbstractDto.html#validateForUpdate--">validateForUpdate()</a></span> - Method in class com.poesys.db.dto.<a href="../com/poesys/db/dto/AbstractDto.html" title="class in com.poesys.db.dto">AbstractDto</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/AbstractLazyLoadingDtoProxy.html#validateForUpdate--">validateForUpdate()</a></span> - Method in class com.poesys.db.dto.<a href="../com/poesys/db/dto/AbstractLazyLoadingDtoProxy.html" title="class in com.poesys.db.dto">AbstractLazyLoadingDtoProxy</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/IDbDto.html#validateForUpdate--">validateForUpdate()</a></span> - Method in interface com.poesys.db.dto.<a href="../com/poesys/db/dto/IDbDto.html" title="interface in com.poesys.db.dto">IDbDto</a></dt> <dd> <div class="block">Validate the DTO for updating.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/pk/CompositePrimaryKey.html#validateKey--">validateKey()</a></span> - Method in class com.poesys.db.pk.<a href="../com/poesys/db/pk/CompositePrimaryKey.html" title="class in com.poesys.db.pk">CompositePrimaryKey</a></dt> <dd> <div class="block">Validate the key (parent and sub-keys).</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/pk/AssociationPrimaryKey.html#validateKeyList--">validateKeyList()</a></span> - Method in class com.poesys.db.pk.<a href="../com/poesys/db/pk/AssociationPrimaryKey.html" title="class in com.poesys.db.pk">AssociationPrimaryKey</a></dt> <dd> <div class="block">Validate a new primary key list; the list must contain at least 2 primary keys and must have no duplicate names in the columns.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dao/query/QueryListWithParameters.html#validateParameters-S-">validateParameters(S)</a></span> - Method in class com.poesys.db.dao.query.<a href="../com/poesys/db/dao/query/QueryListWithParameters.html" title="class in com.poesys.db.dao.query">QueryListWithParameters</a></dt> <dd> <div class="block">Validate the parameters.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dao/query/QueryMemcachedListWithParameters.html#validateParameters-S-">validateParameters(S)</a></span> - Method in class com.poesys.db.dao.query.<a href="../com/poesys/db/dao/query/QueryMemcachedListWithParameters.html" title="class in com.poesys.db.dao.query">QueryMemcachedListWithParameters</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/connection/PooledConnectionFactory.html#VALIDATION_INTERVAL">VALIDATION_INTERVAL</a></span> - Static variable in class com.poesys.db.connection.<a href="../com/poesys/db/connection/PooledConnectionFactory.html" title="class in com.poesys.db.connection">PooledConnectionFactory</a></dt> <dd> <div class="block">Constant validation interval in milliseconds</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/connection/PooledConnectionFactory.html#validationQuery">validationQuery</a></span> - Variable in class com.poesys.db.connection.<a href="../com/poesys/db/connection/PooledConnectionFactory.html" title="class in com.poesys.db.connection">PooledConnectionFactory</a></dt> <dd> <div class="block">A query to use to validate the connection, set by constructor</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/BigDecimalColumnValue.html#value">value</a></span> - Variable in class com.poesys.db.col.<a href="../com/poesys/db/col/BigDecimalColumnValue.html" title="class in com.poesys.db.col">BigDecimalColumnValue</a></dt> <dd> <div class="block">The BigDecimal value</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/BigIntegerColumnValue.html#value">value</a></span> - Variable in class com.poesys.db.col.<a href="../com/poesys/db/col/BigIntegerColumnValue.html" title="class in com.poesys.db.col">BigIntegerColumnValue</a></dt> <dd> <div class="block">The BigInteger value</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/DateColumnValue.html#value">value</a></span> - Variable in class com.poesys.db.col.<a href="../com/poesys/db/col/DateColumnValue.html" title="class in com.poesys.db.col">DateColumnValue</a></dt> <dd> <div class="block">The Date value</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/IntegerColumnValue.html#value">value</a></span> - Variable in class com.poesys.db.col.<a href="../com/poesys/db/col/IntegerColumnValue.html" title="class in com.poesys.db.col">IntegerColumnValue</a></dt> <dd> <div class="block">The Integer value</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/json/JsonColumnValue.html#value">value</a></span> - Variable in class com.poesys.db.col.json.<a href="../com/poesys/db/col/json/JsonColumnValue.html" title="class in com.poesys.db.col.json">JsonColumnValue</a></dt> <dd> <div class="block">the actual data value for the column in its String representation</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/LongColumnValue.html#value">value</a></span> - Variable in class com.poesys.db.col.<a href="../com/poesys/db/col/LongColumnValue.html" title="class in com.poesys.db.col">LongColumnValue</a></dt> <dd> <div class="block">The Long value</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/StringColumnValue.html#value">value</a></span> - Variable in class com.poesys.db.col.<a href="../com/poesys/db/col/StringColumnValue.html" title="class in com.poesys.db.col">StringColumnValue</a></dt> <dd> <div class="block">The String value</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/TimestampColumnValue.html#value">value</a></span> - Variable in class com.poesys.db.col.<a href="../com/poesys/db/col/TimestampColumnValue.html" title="class in com.poesys.db.col">TimestampColumnValue</a></dt> <dd> <div class="block">The Timestamp value</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/UuidColumnValue.html#value">value</a></span> - Variable in class com.poesys.db.col.<a href="../com/poesys/db/col/UuidColumnValue.html" title="class in com.poesys.db.col">UuidColumnValue</a></dt> <dd> <div class="block">The UUID value for the column</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/pk/json/JsonPrimaryKey.html#value">value</a></span> - Variable in class com.poesys.db.pk.json.<a href="../com/poesys/db/pk/json/JsonPrimaryKey.html" title="class in com.poesys.db.pk.json">JsonPrimaryKey</a></dt> <dd> <div class="block">a single-valued sequence number key value</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/pk/SequencePrimaryKey.html#value">value</a></span> - Variable in class com.poesys.db.pk.<a href="../com/poesys/db/pk/SequencePrimaryKey.html" title="class in com.poesys.db.pk">SequencePrimaryKey</a></dt> <dd> <div class="block">The integer key value generated by the sequence generator</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/AbstractColumnValue.html#valueEquals-com.poesys.db.col.IColumnValue-">valueEquals(IColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/AbstractColumnValue.html" title="class in com.poesys.db.col">AbstractColumnValue</a></dt> <dd> <div class="block">Are the column values equal based on a value comparison as opposed to just comparing the column names? A concrete subclass must implement this method to do a value comparison on the internal value.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/BigDecimalColumnValue.html#valueEquals-com.poesys.db.col.IColumnValue-">valueEquals(IColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/BigDecimalColumnValue.html" title="class in com.poesys.db.col">BigDecimalColumnValue</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/BigIntegerColumnValue.html#valueEquals-com.poesys.db.col.IColumnValue-">valueEquals(IColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/BigIntegerColumnValue.html" title="class in com.poesys.db.col">BigIntegerColumnValue</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/DateColumnValue.html#valueEquals-com.poesys.db.col.IColumnValue-">valueEquals(IColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/DateColumnValue.html" title="class in com.poesys.db.col">DateColumnValue</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/IntegerColumnValue.html#valueEquals-com.poesys.db.col.IColumnValue-">valueEquals(IColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/IntegerColumnValue.html" title="class in com.poesys.db.col">IntegerColumnValue</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/LongColumnValue.html#valueEquals-com.poesys.db.col.IColumnValue-">valueEquals(IColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/LongColumnValue.html" title="class in com.poesys.db.col">LongColumnValue</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/NullColumnValue.html#valueEquals-com.poesys.db.col.IColumnValue-">valueEquals(IColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/NullColumnValue.html" title="class in com.poesys.db.col">NullColumnValue</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/StringColumnValue.html#valueEquals-com.poesys.db.col.IColumnValue-">valueEquals(IColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/StringColumnValue.html" title="class in com.poesys.db.col">StringColumnValue</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/TimestampColumnValue.html#valueEquals-com.poesys.db.col.IColumnValue-">valueEquals(IColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/TimestampColumnValue.html" title="class in com.poesys.db.col">TimestampColumnValue</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/UuidColumnValue.html#valueEquals-com.poesys.db.col.IColumnValue-">valueEquals(IColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/UuidColumnValue.html" title="class in com.poesys.db.col">UuidColumnValue</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/connection/IConnectionFactory.DBMS.html#valueOf-java.lang.String-">valueOf(String)</a></span> - Static method in enum com.poesys.db.connection.<a href="../com/poesys/db/connection/IConnectionFactory.DBMS.html" title="enum in com.poesys.db.connection">IConnectionFactory.DBMS</a></dt> <dd> <div class="block">Returns the enum constant of this type with the specified name.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dao/DataEvent.html#valueOf-java.lang.String-">valueOf(String)</a></span> - Static method in enum com.poesys.db.dao.<a href="../com/poesys/db/dao/DataEvent.html" title="enum in com.poesys.db.dao">DataEvent</a></dt> <dd> <div class="block">Returns the enum constant of this type with the specified name.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/IDbDto.Status.html#valueOf-java.lang.String-">valueOf(String)</a></span> - Static method in enum com.poesys.db.dto.<a href="../com/poesys/db/dto/IDbDto.Status.html" title="enum in com.poesys.db.dto">IDbDto.Status</a></dt> <dd> <div class="block">Returns the enum constant of this type with the specified name.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/connection/IConnectionFactory.DBMS.html#values">values</a></span> - Static variable in enum com.poesys.db.connection.<a href="../com/poesys/db/connection/IConnectionFactory.DBMS.html" title="enum in com.poesys.db.connection">IConnectionFactory.DBMS</a></dt> <dd> <div class="block">Map of internal string representations for lookup</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/connection/IConnectionFactory.DBMS.html#values--">values()</a></span> - Static method in enum com.poesys.db.connection.<a href="../com/poesys/db/connection/IConnectionFactory.DBMS.html" title="enum in com.poesys.db.connection">IConnectionFactory.DBMS</a></dt> <dd> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dao/DataEvent.html#values--">values()</a></span> - Static method in enum com.poesys.db.dao.<a href="../com/poesys/db/dao/DataEvent.html" title="enum in com.poesys.db.dao">DataEvent</a></dt> <dd> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/dto/IDbDto.Status.html#values--">values()</a></span> - Static method in enum com.poesys.db.dto.<a href="../com/poesys/db/dto/IDbDto.Status.html" title="enum in com.poesys.db.dto">IDbDto.Status</a></dt> <dd> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/CompareColumnVisitor.html#visit-com.poesys.db.col.BigDecimalColumnValue-">visit(BigDecimalColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/CompareColumnVisitor.html" title="class in com.poesys.db.col">CompareColumnVisitor</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/CompareColumnVisitor.html#visit-com.poesys.db.col.BigIntegerColumnValue-">visit(BigIntegerColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/CompareColumnVisitor.html" title="class in com.poesys.db.col">CompareColumnVisitor</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/CompareColumnVisitor.html#visit-com.poesys.db.col.IntegerColumnValue-">visit(IntegerColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/CompareColumnVisitor.html" title="class in com.poesys.db.col">CompareColumnVisitor</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/CompareColumnVisitor.html#visit-com.poesys.db.col.LongColumnValue-">visit(LongColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/CompareColumnVisitor.html" title="class in com.poesys.db.col">CompareColumnVisitor</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/CompareColumnVisitor.html#visit-com.poesys.db.col.DateColumnValue-">visit(DateColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/CompareColumnVisitor.html" title="class in com.poesys.db.col">CompareColumnVisitor</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/CompareColumnVisitor.html#visit-com.poesys.db.col.StringColumnValue-">visit(StringColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/CompareColumnVisitor.html" title="class in com.poesys.db.col">CompareColumnVisitor</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/CompareColumnVisitor.html#visit-com.poesys.db.col.TimestampColumnValue-">visit(TimestampColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/CompareColumnVisitor.html" title="class in com.poesys.db.col">CompareColumnVisitor</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/CompareColumnVisitor.html#visit-com.poesys.db.col.UuidColumnValue-">visit(UuidColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/CompareColumnVisitor.html" title="class in com.poesys.db.col">CompareColumnVisitor</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/CompareColumnVisitor.html#visit-com.poesys.db.col.NullColumnValue-">visit(NullColumnValue)</a></span> - Method in class com.poesys.db.col.<a href="../com/poesys/db/col/CompareColumnVisitor.html" title="class in com.poesys.db.col">CompareColumnVisitor</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/IColumnVisitor.html#visit-com.poesys.db.col.BigDecimalColumnValue-">visit(BigDecimalColumnValue)</a></span> - Method in interface com.poesys.db.col.<a href="../com/poesys/db/col/IColumnVisitor.html" title="interface in com.poesys.db.col">IColumnVisitor</a></dt> <dd> <div class="block">Visit the BigDecimalColumnValue to perform an operation.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/IColumnVisitor.html#visit-com.poesys.db.col.BigIntegerColumnValue-">visit(BigIntegerColumnValue)</a></span> - Method in interface com.poesys.db.col.<a href="../com/poesys/db/col/IColumnVisitor.html" title="interface in com.poesys.db.col">IColumnVisitor</a></dt> <dd> <div class="block">Visit the BigIntegerColumnValue to perform an operation.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/IColumnVisitor.html#visit-com.poesys.db.col.IntegerColumnValue-">visit(IntegerColumnValue)</a></span> - Method in interface com.poesys.db.col.<a href="../com/poesys/db/col/IColumnVisitor.html" title="interface in com.poesys.db.col">IColumnVisitor</a></dt> <dd> <div class="block">Visit the IntegerColumnValue to perform an operation.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/IColumnVisitor.html#visit-com.poesys.db.col.LongColumnValue-">visit(LongColumnValue)</a></span> - Method in interface com.poesys.db.col.<a href="../com/poesys/db/col/IColumnVisitor.html" title="interface in com.poesys.db.col">IColumnVisitor</a></dt> <dd> <div class="block">Visit the LongColumnValue to perform an operation.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/IColumnVisitor.html#visit-com.poesys.db.col.DateColumnValue-">visit(DateColumnValue)</a></span> - Method in interface com.poesys.db.col.<a href="../com/poesys/db/col/IColumnVisitor.html" title="interface in com.poesys.db.col">IColumnVisitor</a></dt> <dd> <div class="block">Visit the DateColumnValue to perform an operation.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/IColumnVisitor.html#visit-com.poesys.db.col.StringColumnValue-">visit(StringColumnValue)</a></span> - Method in interface com.poesys.db.col.<a href="../com/poesys/db/col/IColumnVisitor.html" title="interface in com.poesys.db.col">IColumnVisitor</a></dt> <dd> <div class="block">Visit the StringColumnValue to perform an operation.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/IColumnVisitor.html#visit-com.poesys.db.col.TimestampColumnValue-">visit(TimestampColumnValue)</a></span> - Method in interface com.poesys.db.col.<a href="../com/poesys/db/col/IColumnVisitor.html" title="interface in com.poesys.db.col">IColumnVisitor</a></dt> <dd> <div class="block">Visit the TimestampColumnValue to perform an operation.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/IColumnVisitor.html#visit-com.poesys.db.col.UuidColumnValue-">visit(UuidColumnValue)</a></span> - Method in interface com.poesys.db.col.<a href="../com/poesys/db/col/IColumnVisitor.html" title="interface in com.poesys.db.col">IColumnVisitor</a></dt> <dd> <div class="block">Visit the UuidColumnValue to perform an operation.</div> </dd> <dt><span class="memberNameLink"><a href="../com/poesys/db/col/IColumnVisitor.html#visit-com.poesys.db.col.NullColumnValue-">visit(NullColumnValue)</a></span> - Method in interface com.poesys.db.col.<a href="../com/poesys/db/col/IColumnVisitor.html" title="interface in com.poesys.db.col">IColumnVisitor</a></dt> <dd> <div class="block">Visit a null column value to perform an operation.</div> </dd> </dl> <a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">D</a>&nbsp;<a href="index-5.html">E</a>&nbsp;<a href="index-6.html">F</a>&nbsp;<a href="index-7.html">G</a>&nbsp;<a href="index-8.html">H</a>&nbsp;<a href="index-9.html">I</a>&nbsp;<a href="index-10.html">J</a>&nbsp;<a href="index-11.html">K</a>&nbsp;<a href="index-12.html">L</a>&nbsp;<a href="index-13.html">M</a>&nbsp;<a href="index-14.html">N</a>&nbsp;<a href="index-15.html">O</a>&nbsp;<a href="index-16.html">P</a>&nbsp;<a href="index-17.html">Q</a>&nbsp;<a href="index-18.html">R</a>&nbsp;<a href="index-19.html">S</a>&nbsp;<a href="index-20.html">T</a>&nbsp;<a href="index-21.html">U</a>&nbsp;<a href="index-22.html">V</a>&nbsp;</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li>Package</li> <li>Class</li> <li>Use</li> <li><a href="../overview-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li class="navBarCell1Rev">Index</li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="index-21.html">Prev Letter</a></li> <li>Next Letter</li> </ul> <ul class="navList"> <li><a href="../index.html?index-files/index-22.html" target="_top">Frames</a></li> <li><a href="index-22.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
mayversion/mayversion/templates/polls/vote_form.html
maweis1981/hey001
{% extends "polls/base.html" %} {% block title %}Poll {{ poll.title }} {% endblock %} {% block breadcrumb %} <li><a href="/polls/">Polls</a></li> <li><a href="/polls/archive/{{ poll.pub_date|date:"Y"|lower }}/">{{ poll.pub_date|date:"Y"|lower }}</a></li> <li><a href="/polls/archive/{{ poll.pub_date|date:"Y"|lower }}/{{ poll.pub_date|date:"M"|lower }}">{{ poll.pub_date|date:"F" }}</a></li> <li class="last">{{ poll.title }}</li> {% endblock %} {% block content %} <h1>{{ poll.title }}</h1> {% if already_voted %} {% for choice in choice_tuple %} <li>{{ choice.1 }} -- {{ choice.2 }} vote{{ choice.2|pluralize }}</li> {% endfor %} {% else %} {% if form.has_errors %} <h2>Please correct the following error{{ form.error_dict|pluralize }}:</h2> {% endif %} <form method="post" action="."> {{ form.as_ul }} <input type="submit" value="Vote" /> </form> {% endif %} {% endblock %}
browser/demos/api-fetch/index.html
EpitaJS/js-class-2016
<!DOCTYPE html> <head> <meta charset="UTF-8"> <link rel="shortcut icon" href="../../common/assets/favicons/favicon.ico"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>...</title> <script src="../../../jspm_packages/system.js"></script> <script src="../../../config.js"></script> <script> System.import('./index.js'); </script> </head> <div class="container"> <h1>Fetch API</h1> <li><a>https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch</a></li> <li><a>https://github.com/github/fetch</a></li> <p>Fetching from <a>http://www.icndb.com/api/</a></p> <p class="text-center"> <img src="http://www.wnd.com/files/2012/08/120803chucknorrisz.jpg" alt="..." class="img-circle" /> </p> </div> <script> // auto-set page titles document.title = document.querySelector('h1').textContent = 'Demo - ' + document.querySelector('h1').textContent; // ease creation of links Array.prototype.forEach.call(document.querySelectorAll('a'), function(el) { el.href || (el.href = el.text); }); </script> <noscript> For full functionality of this site it is necessary to enable JavaScript. Here are the <a href="http://www.enable-javascript.com/" target="_blank"> instructions how to enable JavaScript in your web browser</a>. </noscript>
hq-web/src/main/webapp/ui_docs/DOC/ui-Nagios.html
cc14514/hq6
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>vFabric Hyperic 5.7 : ui-Nagios</title> <link rel="stylesheet" href="styles/site.css" type="text/css" /> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <b><a href="vFabric Hyperic 5.7.html" title="vFabric Hyperic 5.7 Documentation Home">vFabric Hyperic 5.7 Documentation Home (Internal)</a> - <a href="https://www.vmware.com/support/pubs/vfabric-hyperic.html">vFabric Hyperic 5.7 Documentation Home (Online)</a> - <a href="https://www.vmware.com/support/vfabric-hyperic/doc/vfabric-hyperic-rn-5.7.html">Hyperic 5.7 Release Notes</a> </b> <p> <p> <table class="pagecontent" border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#ffffff"> <tr> <td valign="top" class="pagebody"> <div class="pageheader"> <span class="pagetitle"> vFabric Hyperic 5.7 : ui-Nagios </span> </div> <div class="pagesubheading"> This page last changed on Mar 15, 2012 by <font color="#0050B2">mmcgarry</font>. </div> <h1><a name="ui-Nagios-ViewNagiosResourcesandMetricsinHyperic"></a>View Nagios Resources and Metrics in Hyperic</h1> <h2><a name="ui-Nagios-ViewNagiosServiceDetail"></a>View Nagios Service Detail</h2> <p>Select <b>Nagios Availability</b> from the <b>Resources</b> tab in the masthead.</p> <p>The page displays the most recent results of the Nagios checks. This is the same information that is displayed on the Nagios Service Details page.</p> <ul> <li><b>Host</b>--- The host that the Nagios check is monitoring</li> <li><b>Service</b> &#8212; The Nagios plugin used to perform the check</li> <li><b>Status</b> &#8212; The Return Code from execution of the check</li> <li><b>Last Check</b> &#8212; When the check was last run</li> <li><b>Event Log</b> &#8212; Output of the plugin</li> </ul> <p>Each line is color-coded:</p> <ul> <li><b>Pink</b> &#8212; monitored service is down.</li> <li><b>Yellow</b> &#8212; monitored service has triggered an alert, based on the threshold defined in Nagios.</li> <li><b>Green</b> &#8212; monitored service is OK.</li> </ul> <p><span class="image-wrap" style=""><img src="attachments/79660206/79921844.png" style="border: 0px solid black"/></span></p> <h2><a name="ui-Nagios-ViewaNagiosCheck"></a>View a Nagios Check</h2> <p>To view a Nagios check in the Hyperic User Interface</p> <ol> <li>Browse the the Nagios server resource using <b>Resources &gt; Browse &gt; Servers &gt; Nagios</b>.</li> <li>Choose the Nagios server from the list of servers. <ul> <li>The <b>Indicators</b> tab for the Nagios server appears.<br/> <span class="image-wrap" style=""><img src="attachments/79660206/79921851.png" style="border: 0px solid black"/></span></li> </ul> </li> <li>In the <b>Resources</b> mintab, click the autogroup called "Nagios Plugin", which contains the Nagios checks.</li> <li>The first chart on the <b>Indicators</b> tab shows the average execution time for the all of the checks in the group. <ul> <li>Note: (Charts of average Result Values and Return Codes are also presented, but this data is not meaningful for a group.)<br/> <span class="image-wrap" style=""><img src="attachments/79660206/79921850.png" style="border: 0px solid black"/></span></li> </ul> </li> <li>Click on a specific check in the <b>Group Members</b> list. <ul> <li>The <b>Indicators</b> tab for the Nagios service appears.<br/> <span class="image-wrap" style=""><img src="attachments/79660206/79921845.png" style="border: 0px solid black"/></span></li> </ul> </li> <li>To view log messages output by the check, click the blue icons above the time range bar at the bottom of the page.</li> </ol> <br/> <div class="tabletitle"> <a name="attachments"> <h2>Attachments:</h2> </a> </div> <div class="greybox" align="left"> <img src="images/icons/bullet_blue.gif" height="8" width="8" alt=""/> <a href="attachments/79659935/79921234.gif">arrow_refresh.gif</a> (image/gif) <br/> </div> </td> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td height="12" background="http://support.hyperic.com/images/border/border_bottom.gif"><img src="images/border/spacer.gif" width="1" height="1" border="0"/></td> </tr> <tr> <td align="center"><font color="grey">Document generated by Confluence on Oct 29, 2012 13:01</font></td> </tr> </table> </body> </html>
Third Party Libraries/POI/package/docs/spreadsheet/index.html
jorisdgff/Trade-Today
<!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=UTF-8"> <!--*** This is a generated file. Do not edit. ***--> <link rel="stylesheet" href="../skin/tigris.css" type="text/css"> <link rel="stylesheet" href="../skin/mysite.css" type="text/css"> <link rel="stylesheet" href="../skin/site.css" type="text/css"> <link media="print" rel="stylesheet" href="../skin/print.css" type="text/css"> <title>POI-HSSF and POI-XSSF - Java API To Access Microsoft Excel Format Files</title> </head> <body bgcolor="white" class="composite"> <!--================= start Banner ==================--> <div id="banner"> <table width="100%" cellpadding="8" cellspacing="0" summary="banner" border="0"> <tbody> <tr> <!--================= start Group Logo ==================--> <td width="50%" align="left"> <div class="groupLogo"> <a href="http://poi.apache.org"><img border="0" class="logoImage" alt="Apache POI" src="../resources/images/group-logo.jpg"></a> </div> </td> <!--================= end Group Logo ==================--> <!--================= start Project Logo ==================--><td width="50%" align="right"> <div align="right" class="projectLogo"> <a href="http://poi.apache.org/"><img border="0" class="logoImage" alt="POI" src="../resources/images/project-logo.jpg"></a> </div> </td> <!--================= end Project Logo ==================--> </tr> </tbody> </table> </div> <!--================= end Banner ==================--> <!--================= start Main ==================--> <table width="100%" cellpadding="0" cellspacing="0" border="0" summary="nav" id="breadcrumbs"> <tbody> <!--================= start Status ==================--> <tr class="status"> <td> <!--================= start BreadCrumb ==================--><a href="http://www.apache.org/">Apache</a> | <a href="http://poi.apache.org/">POI</a><a href=""></a> <!--================= end BreadCrumb ==================--></td><td id="tabs"> <!--================= start Tabs ==================--> <div class="tab"> <span class="selectedTab"><a class="base-selected" href="../index.html">Home</a></span> | <script language="Javascript" type="text/javascript"> function printit() { if (window.print) { window.print() ; } else { var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH="0" HEIGHT="0" CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>'; document.body.insertAdjacentHTML('beforeEnd', WebBrowser); WebBrowser1.ExecWB(6, 2);//Use a 1 vs. a 2 for a prompting dialog box WebBrowser1.outerHTML = ""; } } </script><script language="Javascript" type="text/javascript"> var NS = (navigator.appName == "Netscape"); var VERSION = parseInt(navigator.appVersion); if (VERSION > 3) { document.write(' <a title="PRINT this page OUT" href="javascript:printit()">PRINT</a>'); } </script> | <a title="PDF file of this page" href="index.pdf">PDF</a> </div> <!--================= end Tabs ==================--> </td> </tr> </tbody> </table> <!--================= end Status ==================--> <table id="main" width="100%" cellpadding="8" cellspacing="0" summary="" border="0"> <tbody> <tr valign="top"> <!--================= start Menu ==================--> <td id="leftcol"> <div id="navcolumn"> <div class="menuBar"> <div class="menu"> <span class="menuLabel">Apache POI</span> <div class="menuItem"> <a href="../index.html">Top</a> </div> </div> <div class="menu"> <span class="menuLabel">HSSF+XSSF</span> <div class="menuItem"> <span class="menuSelected">Overview</span> </div> <div class="menuItem"> <a href="quick-guide.html">Quick Guide</a> </div> <div class="menuItem"> <a href="how-to.html">HOWTO</a> </div> <div class="menuItem"> <a href="converting.html">HSSF to SS Converting</a> </div> <div class="menuItem"> <a href="formula.html">Formula Support</a> </div> <div class="menuItem"> <a href="eval.html">Formula Evaluation</a> </div> <div class="menuItem"> <a href="eval-devguide.html">Eval Dev Guide</a> </div> <div class="menuItem"> <a href="examples.html">Examples</a> </div> <div class="menuItem"> <a href="use-case.html">Use Case</a> </div> <div class="menuItem"> <a href="diagrams.html">Pictorial Docs</a> </div> <div class="menuItem"> <a href="limitations.html">Limitations</a> </div> </div> <div class="menu"> <span class="menuLabel">Contributer's Guide</span> <div class="menuItem"> <a href="hacking-hssf.html">Hacking HSSF</a> </div> <div class="menuItem"> <a href="record-generator.html">Record Generator</a> </div> <div class="menuItem"> <a href="chart.html">Charts</a> </div> </div> </div> </div> <form target="_blank" action="http://www.google.com/search" method="get"> <table summary="search" border="0" cellspacing="0" cellpadding="0"> <tr> <td><img height="1" width="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td nowrap="nowrap"> Search Apache POI<br> <input value="poi.apache.org" name="sitesearch" type="hidden"><input size="10" name="q" id="query" type="text"><img height="1" width="5" alt="" src="../skin/images/spacer.gif" class="spacer"><input name="Search" value="GO" type="submit"></td><td><img height="1" width="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> <tr> <td colspan="3"><img height="7" width="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td> </tr> <tr> <td class="bottom-left-thick"></td><td bgcolor="#a5b6c6"><img height="1" width="1" alt="" src="../skin/images/spacer.gif" class="spacer"></td><td class="bottom-right-thick"></td> </tr> </table> </form> </td> <!--================= end Menu ==================--> <!--================= start Content ==================--><td> <div id="bodycol"> <div class="app"> <div align="center"> <h1>POI-HSSF and POI-XSSF - Java API To Access Microsoft Excel Format Files</h1> </div> <div class="h3"> <a name="Overview"></a> <div class="h3"> <h3>Overview</h3> </div> <p>HSSF is the POI Project's pure Java implementation of the Excel '97(-2007) file format. XSSF is the POI Project's pure Java implementation of the Excel 2007 OOXML (.xlsx) file format.</p> <p>HSSF and XSSF provides ways to read spreadsheets create, modify, read and write XLS spreadsheets. They provide: </p> <ul> <li>low level structures for those with special needs</li> <li>an eventmodel api for efficient read-only access</li> <li>a full usermodel api for creating, reading and modifying XLS files</li> </ul> <p>For people converting from pure HSSF usermodel, who wish to use the joint SS Usermodel for HSSF and XSSF support, then see the <a href="converting.html">ss usermodel converting guide</a>. </p> <p> An alternate way of generating a spreadsheet is via the <a href="http://cocoon.apache.org">Cocoon</a> serializer (yet you'll still be using HSSF indirectly). With Cocoon you can serialize any XML datasource (which might be a ESQL page outputting in SQL for instance) by simply applying the stylesheet and designating the serializer. </p> <p> If you're merely reading spreadsheet data, then use the eventmodel api in either the org.apache.poi.hssf.eventusermodel package, or the org.apache.poi.xssf.eventusermodel package, depending on your file format. </p> <p> If you're modifying spreadsheet data then use the usermodel api. You can also generate spreadsheets this way. </p> <p> Note that the usermodel system has a higher memory footprint than the low level eventusermodel, but have the major advantage of being much simpler to work with. Also please be aware that as the new XSSF supported Excel 2007 OOXML (.xlsx) files are XML based, the memory footprint for processing them is higher than for the older HSSF supported (.xls) binary files. </p> <div id="authors" align="right">by&nbsp;Andrew C. Oliver,&nbsp;Nicola Ken Barozzi</div> </div> </div> </div> </td> <!--================= end Content ==================--> </tr> </tbody> </table> <!--================= end Main ==================--> <!--================= start Footer ==================--> <div id="footer"> <table summary="footer" cellspacing="0" cellpadding="4" width="100%" border="0"> <tbody> <tr> <!--================= start Copyright ==================--> <td colspan="2"> <div align="center"> <div class="copyright"> Copyright &copy; 2002-2009&nbsp;The Apache Software Foundation. All rights reserved. </div> </div> </td> <!--================= end Copyright ==================--> </tr> <tr> <td align="left"> <!--================= start Host ==================--> <!--================= end Host ==================--></td><td align="right"> <!--================= start Credits ==================--> <div align="right"> <div class="credit"> <a href="http://validator.w3.org/check/referer"><img width="88" height="31" alt="Valid HTML 4.01!" src="../skin/images/valid-html401.png" class="logoImage"></a><a href="http://jigsaw.w3.org/css-validator/"><img width="88" height="31" alt="Valid CSS!" src="../skin/images/vcss.png" class="logoImage"></a><a href="http://forrest.apache.org/"><img border="0" class="logoImage" alt="Built with Apache Forrest" src="../skin/images/built-with-forrest-button.png" width="88" height="31"></a> </div> </div> <!--================= end Credits ==================--> </td> </tr> </tbody> </table> </div> <!--================= end Footer ==================--> </body> </html>
public/html/index.html
seba-wetzel/stockApp
<!doctype html> <html lang="en" ng-app="mainApp"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>stockApp</title> <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"> </head> <body ng-controller="mainController"> <div class="container"> <!--Cabecera--> <div class="jumbotron text-center"> <h1>stockApp <span class="label label-info">{{ todos.length }}</span></h1> </div> <!--Lista de Todos--> <div id="todo-list" class="row"> <div class="col-sm-4 col-sm-offset-4"> <div class="checkbox" ng-repeat="todo in todos"> <label> <input type="checkbox" ng-click="deleteTodo(todo.distrito)"> {{ todo.distrito }} </label> </div> </div> </div> <!--Formulario para insertar nuevos Todo--> <div id="todo-form" class="row"> <div class="col-sm-8 col-sm-offset-2 text-center"> <form> <div class="form-group"> <input type="text" class="form-control input-lg text-center" placeholder="Inserta un distrito nuevo" ng-model="formData.text"> </div> <button class="btn btn-primary btn-lg" ng-click="insertarDistrito()">Añadir</button> </form> </div> </div> </div> <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script> <script src="js/main.js"></script> </body> </html>
build/templates/index.html
decadecity/ct
<!DOCTYPE html> <html lang="en-GB"> <head> <meta charset="utf-8"/> <link rel="stylesheet" href="css/head.css"/> <script src="js/require.js"/></script> <script> require.config({ baseUrl: './js/', paths: { // the left side is the module ID, // the right side is the path to // the file, relative to baseUrl. // Also, the path should NOT include // the '.js' file extension. 'handlebars.runtime': 'handlebars.runtime.amd' } }); define('config', function (require, exports, module) { module.exports = { // Prefix for data attributes. 'data_attribute_prefix': 'ct', // Open up private methods for testing. 'debug': false } }); // Initialise app and inject menu template. define('app-init', function (require, exports, module) { "use strict"; var templates = require('templates'), $ = require('jquery'); var context = { user: { is_authenticated: true } }; $('#menu').html(templates.menu(context)); require('main'); }); require(['app-init']); </script> <meta name="viewport" content="width=device-width,initial-scale=1"/> <style>@ms-viewport, @viewport { width: device-width !important; }</style> <link rel="dns-prefetch" href="//stats.decadecity.net"/> <title>Caffeine Tracker</title> <!--<meta name="" content=""/>--> <script> window.CAFFEINE_TRACKER = { 'config': { 'cache_buster': 'none', // Passing the cache buster from the server to the client. 'ctm': false, // Have we cut the mustard? 'static_path': '', // Passing the path to static content from the server to the client. }, 'loading': { 'loading': false } }; if ('querySelector' in document && 'addEventListener' in window && ("classList" in document.createElement("_")) && Object.prototype.toString.call(window.operamini) !== "[object OperaMini]") { // Remember that we have cut the mustard to save checking again in the future. window.CAFFEINE_TRACKER.config.ctm = true; // CSS hook to allow styling for an initial state when JS is enabled: http://decadecity.net/blog/2013/07/30/coping-without-javascript#css document.querySelector('html').classList.add('js', 'js--loading'); window.CAFFEINE_TRACKER.loading.loading = true; window.CAFFEINE_TRACKER.loading.timeout = setTimeout(function() { window.CAFFEINE_TRACKER.loading.loading = false; document.querySelector('html').classList.remove('js--loading', 'js'); }, 5000); } </script> </head> <body> <div class="layout__wrapper"><div class="layout__innerwrapper"> <section class="layout__window"> <header> <!-- strapline --> </header> <main> <!-- body --> </main> </section><!-- layout__window --> <div id="menu"></div> </div></div> </body> </html>
frame_packages/java_libs/hibernate-distribution-3.6.10.Final/documentation/javadocs/org/hibernate/type/descriptor/java/class-use/CharacterArrayTypeDescriptor.html
codeApeFromChina/resource
<!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_07) on Wed Feb 08 19:32:59 CST 2012 --> <TITLE> Uses of Class org.hibernate.type.descriptor.java.CharacterArrayTypeDescriptor (Hibernate JavaDocs) </TITLE> <META NAME="date" CONTENT="2012-02-08"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.hibernate.type.descriptor.java.CharacterArrayTypeDescriptor (Hibernate JavaDocs)"; } } </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/hibernate/type/descriptor/java/CharacterArrayTypeDescriptor.html" title="class in org.hibernate.type.descriptor.java"><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/hibernate/type/descriptor/java//class-useCharacterArrayTypeDescriptor.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CharacterArrayTypeDescriptor.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.hibernate.type.descriptor.java.CharacterArrayTypeDescriptor</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/hibernate/type/descriptor/java/CharacterArrayTypeDescriptor.html" title="class in org.hibernate.type.descriptor.java">CharacterArrayTypeDescriptor</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.hibernate.type.descriptor.java"><B>org.hibernate.type.descriptor.java</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.hibernate.type.descriptor.java"><!-- --></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/hibernate/type/descriptor/java/CharacterArrayTypeDescriptor.html" title="class in org.hibernate.type.descriptor.java">CharacterArrayTypeDescriptor</A> in <A HREF="../../../../../../org/hibernate/type/descriptor/java/package-summary.html">org.hibernate.type.descriptor.java</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">Fields in <A HREF="../../../../../../org/hibernate/type/descriptor/java/package-summary.html">org.hibernate.type.descriptor.java</A> declared as <A HREF="../../../../../../org/hibernate/type/descriptor/java/CharacterArrayTypeDescriptor.html" title="class in org.hibernate.type.descriptor.java">CharacterArrayTypeDescriptor</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../../org/hibernate/type/descriptor/java/CharacterArrayTypeDescriptor.html" title="class in org.hibernate.type.descriptor.java">CharacterArrayTypeDescriptor</A></CODE></FONT></TD> <TD><CODE><B>CharacterArrayTypeDescriptor.</B><B><A HREF="../../../../../../org/hibernate/type/descriptor/java/CharacterArrayTypeDescriptor.html#INSTANCE">INSTANCE</A></B></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/hibernate/type/descriptor/java/CharacterArrayTypeDescriptor.html" title="class in org.hibernate.type.descriptor.java"><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/hibernate/type/descriptor/java//class-useCharacterArrayTypeDescriptor.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CharacterArrayTypeDescriptor.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; 2001-2010 <a href="http://redhat.com">Red Hat, Inc.</a> All Rights Reserved. </BODY> </HTML>
gol.html
Telematica/GOL
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> #board { height: auto; margin: 0 auto; max-width: 425px; } .cell { border: 1px solid #000; display: inline-block; height: 100px; margin: 0; padding: 0; width: 100px; } .alive { background-color: blue; } </style> </head> <body> <div id="board"> <div class="cell" id="0"></div> <div class="cell" id="1"></div> <div class="cell" id="2"></div> <div class="cell" id="3"></div> <div class="cell" id="4"></div> <div class="cell" id="5"></div> <div class="cell" id="6"></div> <div class="cell" id="7"></div> <div class="cell" id="8"></div> <div class="cell" id="9"></div> <div class="cell" id="10"></div> <div class="cell" id="11"></div> <div class="cell" id="12"></div> <div class="cell" id="13"></div> <div class="cell" id="14"></div> <div class="cell" id="15"></div> <button id="next-step">Next Generation</button> <button id="start">Clear &amp; Randomize</button> </div> <script src="gol.js" type="text/javascript"></script> </body> </html>
zoom_tests/zoom_tests.html
donhenton/d3-stuff
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>Learning D3</title> <link rel="stylesheet" href="../css/style.css"> <style type="text/css"> .axis path, .axis line { fill: none; stroke: black; shape-rendering: crispEdges; } .axis text { font-family: sans-serif; font-size: 10px; fill: green; font-weight:bold } </style> </head> <body> <script src="../js/jquery.js"></script> <script src="../js/d3.v3_4_2.min.js"></script> <!-- <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script> <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> --> <script src="../js/scatterplot.js"></script> <script src="zoom_tests.js"></script> <h3>Scatterplot</h3> <h5>Radius is the third dimension of the data</h5> <div id="scatterplot"></div> </body> </html>
face-web/src/main/webapp/static/fusionWidgets/Contents/DataStreaming/XMLRealTimeLine.html
cc14514/hq6
<?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> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Data-streaming Charts - Real-time Line chart XML Sheet</title> <link rel="stylesheet" href="../assets/ui/css/XMLAPI.css" type="text/css" /> <script type="text/javascript" src="../assets/prettify/prettify.js"></script> <link rel="stylesheet" type="text/css" href="../assets/prettify/prettify.css" /> <script type="text/javascript" src="../assets/ui/js/jquery.min.js" ></script> <style type="text/css"> <!-- div.WebHelpPopupMenu { position:absolute; left:0px; top:0px; z-index:4; visibility:hidden; } a.whtbtnhide, a.whtbtnshow, a.whtbtnhidenav , a.whtbtnshownav { border-bottom:none !important; } --> </style> <script type="text/javascript" language="javascript1.2" src="../assets/ui/js/whmsg.js"></script> <script type="text/javascript" language="javascript" src="../assets/ui/js/whver.js"></script> <script type="text/javascript" language="javascript1.2" src="../assets/ui/js/whproxy.js"></script> <script type="text/javascript" language="javascript1.2" src="../assets/ui/js/whutils.js"></script> <script type="text/javascript" language="javascript1.2" src="../assets/ui/js/whlang.js"></script> <script type="text/javascript" language="javascript1.2" src="../assets/ui/js/whtopic.js"></script> <script type="text/javascript" src="../assets/ui/js/lib.js"></script> </head> <body> <!-- breadcrumb starts here --> <div id="breadcrumb"></div> <script type="text/javascript"> document.write( addFCBreadcrumb( [ "Home|../Introduction/Overview.html", "Data Streaming charts|Overview.html", "XML Sheets", "Real-time Line chart" ] ) ); </script> <!-- breadcrumb ends here --> &nbsp;<span class="pageHeader">Real-time Line Chart Specification Sheet</span> <br /> &nbsp;<span class="textBold">SWF: </span><span class="text">RealTimeLine.swf</span> <br /><br /> <table width="98%" align="center" cellpadding="0" cellspacing="0"> <tr> <td> <a name="top"></a> <span class="text"><b>Quick Links</b> (within this page)</span> </td> </tr> </table> <table width="98%" align="center" cellpadding="4" cellspacing="2" class="tableYellowBorder"> <tr class="trLightYellowBg"> <td width="33%"> <span class="text"> &nbsp;<b>Chart</b> </span> </td> <td width="33%"> <span class="text"> &nbsp;<b>Data</b> </span> </td> <td width="34%"> <span class="text"> &nbsp;<b>Others</b> </span> </td> </tr> <tr> <td width="33%" valign="top" class="trVeryLightYellowBg"> <img src="../Images/Bullet.gif" width="9" height="9" />&nbsp;<a href="#chartimage">Chart Image</a><br /> <img src="../Images/Bullet.gif" width="9" height="9" />&nbsp;<a href="#Objects">Chart Objects</a><br /> <img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor1'>Functional Attributes</a><br /><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor2'>Titles and Axis Names</a><br /><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor10'>Chart Cosmetics</a><br /> <img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor5'>Real-time properties </a><br /> <img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor3'>Chart Y-Axis</a><br /><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor4'>Chart Labels & Values</a><br /><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor11'>Canvas Cosmetics</a><br /> <img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor9'>Anchors</a><br /><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor12'>Divisional Lines/Grids</a><br /><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor15'>Legend</a><br /><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor14'>Zero Plane properties</a><br /> </td> <td width="33%" valign="top"> <img src="../Images/Bullet.gif" width="9" height="9" />&nbsp;<a href="#sample">Sample XML Data</a><br /> <img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor18'>&lt;categories&gt; element</a><br /><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor19'>&lt;category&gt; element</a><br /><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor21'>&lt;dataset&gt; element</a><br /><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor22'>&lt;set&gt; element</a><br /> <img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor8'>Plot (line) properties </a><br /> </td> <td width="34%" valign="top" class="trVeryLightYellowBg"> <img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor6'>Number Formatting</a><br /><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor24'>Font Properties</a><br /><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor20'>Vertical Lines</a><br /> <img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor16'>Tooltip </a><br/><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor17'>Paddings and Margins</a><br /><img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor7'>Message Logger</a><br /> <img src='../Images/Bullet.gif' />&nbsp;<a href='#Anchor23'>&lt;trendlines&gt; --&gt; &lt;line&gt; element</a><br /> </td> </tr> </table> <br /> <a name="chartimage"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td align="center"> <span class="text">&nbsp;Real-time Line chart looks as under:</span></td></tr> <tr> <td align="center"> <img src="Images/RealTimeLine.jpg" alt="Real-time Line" class="imageBorder" /> </td> </tr> </table> <br /> <a name="sample"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td align="left"> <span class="text">&nbsp;Sample XML / JSON for Real-time Line Chart:</span> </td> </tr> <tr> <td><p class="highlightBlock"><strong>Note:</strong> Data for real-time charts are provided by a data provider. Hence, the data values of the real-time chart may not available in XML/JSON. However, the XML/JSON contains the cosmetics and functional properties for the chart along with blank dataset and categories. </p> </td> </tr> </table> <table width="98%" align="center" cellpadding="2" class="tableYellowBorder"> <tr> <td align="left" class="text"> <div class="container"> <ul class="tabs"> <li><a href="#tab1">XML</a></li> <li><a href="#tab2">JSON</a></li> </ul> <div class="tab_container"> <div id="tab1" class="tab_content"> <pre class="prettyprint code_container">&lt;chart bgColor="000000" bgAlpha="100" canvasBorderThickness="1" canvasBorderColor="008040" canvasBgColor="000000" yAxisMaxValue="100" decimals="0" numdivlines="9" numVDivLines="28" numDisplaySets="30" divLineColor="008040" vDivLineColor="008040" divLineAlpha="100" chartLeftMargin="10" baseFontColor="00dd00" showRealTimeValue="0" dataStreamURL="DataProviders/RealTimeLine1.asp" refreshInterval="2" numberSuffix="%" labelDisplay="rotate" slantLabels="1" toolTipBgColor="000000" toolTipBorderColor="008040" baseFontSize="11" showAlternateHGridColor="0" legendBgColor="000000" legendBorderColor="008040" legendPadding="35" showLabels="1"&gt; &lt;categories&gt; &lt;category label="Start"/&gt; &lt;/categories&gt; &lt;dataset color="00dd00" seriesName="Processor A" showValues="0" alpha="100" anchorAlpha="0" lineThickness="2"&gt; &lt;set value="0"/&gt; &lt;/dataset&gt; &lt;dataset color="ff5904" seriesName="Processor B" showValues="0" alpha="100" anchorAlpha="0" lineThickness="2"&gt; &lt;set value="0"/&gt; &lt;/dataset&gt; &lt;/chart&gt; </pre> </div> <div id="tab2" class="tab_content"> <pre id="pre-datajson" class="prettyprint code_container">{ "chart": { "bgcolor": "000000", "bgalpha": "100", "canvasborderthickness": "1", "canvasbordercolor": "008040", "canvasbgcolor": "000000", "yaxismaxvalue": "100", "decimals": "0", "numdivlines": "9", "numvdivlines": "28", "numdisplaysets": "30", "divlinecolor": "008040", "vdivlinecolor": "008040", "divlinealpha": "100", "chartleftmargin": "10", "basefontcolor": "00dd00", "showrealtimevalue": "0", "datastreamurl": "DataProviders/RealTimeLine1.asp", "refreshinterval": "2", "numbersuffix": "%", "labeldisplay": "rotate", "slantlabels": "1", "tooltipbgcolor": "000000", "tooltipbordercolor": "008040", "basefontsize": "11", "showalternatehgridcolor": "0", "legendbgcolor": "000000", "legendbordercolor": "008040", "legendpadding": "35", "showlabels": "1" }, "categories": [ { "category": [ { "label": "Start" } ] } ], "dataset": [ { "color": "00dd00", "seriesname": "Processor A", "showvalues": "0", "alpha": "100", "anchoralpha": "0", "linethickness": "2", "data": [ { "value": "0" } ] }, { "color": "ff5904", "seriesname": "Processor B", "showvalues": "0", "alpha": "100", "anchoralpha": "0", "linethickness": "2", "data": [ { "value": "0" } ] } ] }</pre></div></div></div> <div style="clear:both"></div> </td> </tr> <tr class="tableYellowBorder"> <td align="right"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td> </tr> </table> <br /> <a name="Objects" ></a> <table width="98%" align="center" cellpadding="3" cellspacing="0"> <tr> <td class="header">Chart Objects</td> </tr> <tr class="text"> <td colspan="4" valign="top" > <p>Custom defined <a href="../Styles/Styles.html">Styles</a> can be applied to the chart objects listed below. The table contains the names of the chart objects, short descriptions, list of supported Styles and list of supported animation parameters.</p> </td> </tr> </table> <table width="98%" align="center" cellpadding="0" cellspacing="0" class="tableYellowBorder"> <tr class="trLightYellowBg"> <td width="15%" valign="top"> <span class="textBold"> Object Name </span> </td> <td width="35%" valign="top"> <span class="textBold"> Description </span> </td> <td width="25%" valign="top"> <span class="textBold"> Features Supported </span> </td> <td width="25%" valign="top"> <span class="textBold"> Animation Parameters Supported </span> </td> </tr> <tr> <td width="15%" valign="top" class="text">BACKGROUND</td> <td width="35%" valign="top" class="text">Background refers to the background for entire chart. </td> <td width="25%" valign="top" class="text"><ul> <li>Animation<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul></td> <td width="25%" valign="top" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y<br /> </li> <li>_xScale<br /> </li> <li>_yScale</li> </ul></td> </tr> <tr class='trVeryLightYellowBg'> <td width="15%" valign="top" class="text">CANVAS</td> <td width="35%" valign="top" class="text">The entire area inside which the chart is plotted. </td> <td width="25%" valign="top" class="text"><ul> <li>Animation<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur<br /> </li> </ul></td> <td width="25%" valign="top" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y<br /> </li> <li>_xScale<br /> </li> <li>_yScale<br /> </li> </ul></td> </tr> <tr> <td width="15%" valign="top" class="text">CAPTION</td> <td width="35%" valign="top" class="text">Caption of the chart. </td> <td width="25%" valign="top" class="text"><ul> <li>Animation<br /> </li> <li>Font<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul></td> <td width="25%" valign="top" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y<br /> </li> </ul></td> </tr> <tr class='trVeryLightYellowBg'> <td width="15%" valign="top" class="text">SUBCAPTION</td> <td width="35%" valign="top" class="text">Sub-caption of the chart. </td> <td width="25%" valign="top" class="text"><ul> <li>Animation<br /> </li> <li>Font<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul></td> <td width="25%" valign="top" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y</li> </ul></td> </tr> <tr> <td valign="top" width="15%" class="text">XAXISNAME</td> <td valign="top" width="35%" class="text">X-axis label of the chart. </td> <td valign="top" width="25%" class="text"><ul> <li>Animation<br /> </li> <li>Font<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y</li> </ul> </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" width="15%" class="text">YAXISNAME</td> <td valign="top" width="35%" class="text">Y-axis label of the chart. </td> <td valign="top" width="25%" class="text"><ul> <li>Animation<br /> </li> <li>Font<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y</li> </ul> </td> </tr> <tr> <td valign="top" width="15%" class="text">DATAPLOT</td> <td valign="top" width="35%" class="text">Lines belonging to the actual chart.</td> <td valign="top" width="25%" class="text"><ul> <li>Animation <br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y<br /> </li> <li>_xScale<br /> </li> <li>_yScale</li> </ul> </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" width="15%" class="text">ANCHORS</td> <td valign="top" width="35%" class="text">Anchors of the line. </td> <td valign="top" width="25%" class="text"><ul> <li>Animation <br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y<br /> </li> <li>_xScale<br /> </li> <li>_yScale</li> </ul> </td> </tr> <tr> <td valign="top" width="15%" class="text">DATALABELS</td> <td valign="top" width="35%" class="text">X-axis labels of the chart. </td> <td valign="top" width="25%" class="text"><ul> <li>Animation<br /> </li> <li>Font<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y</li> </ul> </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" width="15%" class="text">DATAVALUES</td> <td valign="top" width="35%" class="text">Data value for each line point. </td> <td valign="top" width="25%" class="text"><ul> <li>Animation<br /> </li> <li>Font<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y<br /> </li> </ul> </td> </tr> <tr> <td valign="top" width="15%" class="text">DIVLINES</td> <td valign="top" width="35%" class="text">Horizontal lines running through the canvas. Each divisional line signifies a smaller unit of the entire axis thus aiding the users in interpreting the chart. </td> <td valign="top" width="25%" class="text"><ul> <li>Animation </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha</li> </ul> </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" width="15%" class="text">VDIVLINES</td> <td valign="top" width="35%" class="text">VDIVLINES are vertical divisional lines which aid in data interpretation. </td> <td valign="top" width="25%" class="text"><ul> <li>Animation</li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_yScale</li> </ul> </td> </tr> <tr> <td valign="top" width="15%" class="text">HGRID</td> <td valign="top" width="35%" class="text">HGRID refers to alternate color bands between two successive horizontal divisional lines. </td> <td valign="top" width="25%" class="text"><ul> <li>Animation<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha </li> </ul> </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" width="15%" class="text">VGRID</td> <td valign="top" width="35%" class="text">VGRID refers to vertical color bands between two successive vertical divisional lines. </td> <td valign="top" width="25%" class="text"><ul> <li>Animation <br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha<br /> </li> <li>_x <br /> </li> <li>_xScale<br /> </li> <li>_yScale</li> </ul> </td> </tr> <tr> <td valign="top" width="15%" class="text">YAXISVALUES</td> <td valign="top" width="35%" class="text">YAXISVALUES refers to the limit values or divisional line values, which are displayed along the y-axis of the chart. </td> <td valign="top" width="25%" class="text"><ul> <li>Animation<br /> </li> <li>Font<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y<br /> </li> </ul> </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" width="15%" class="text">REALTIMEVALUE</td> <td valign="top" width="35%" class="text">If you've opted to show the real-time value on the chart, REALTIMEVALUE object represents that text field. </td> <td valign="top" width="25%" class="text"><ul> <li>Animation<br /> </li> <li>Font<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y<br /> </li> </ul> </td> </tr> <tr> <td valign="top" width="15%" class="text">TRENDLINES</td> <td valign="top" width="35%" class="text">TRENDLINES refer to horizontal lines spanning the chart canvas which aid in interpretation of data with respect to some pre-determined value. </td> <td valign="top" width="25%" class="text"><ul> <li>Animation<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha</li> </ul> </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" width="15%" class="text">TRENDVALUES</td> <td valign="top" width="35%" class="text">TRENDVALUES refer to the display values of trend-lines (if any). </td> <td valign="top" width="25%" class="text"><ul> <li>Animation<br /> </li> <li>Font<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y<br /> </li> </ul> </td> </tr> <tr> <td valign="top" width="15%" class="text">VLINES</td> <td valign="top" width="35%" class="text">VLINES are vertical separator lines that help you separate blocks of data. These lines run through the height of the chart, thereby segregating data into different blocks. </td> <td valign="top" width="25%" class="text"><ul> <li>Animation <br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha<br /> </li> </ul> </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" width="15%" class="text">VLINELABELS</td> <td valign="top" width="35%" class="text">Labels of the vertical line </td> <td valign="top" width="25%" class="text"><ul> <li>Animation<br /> </li> <li>Font<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul> </td> <td valign="top" width="25%" class="text"><ul> <li>_alpha<br /> </li> <li>_x<br /> </li> <li>_y </li> </ul> </td> </tr> <tr> <td width="15%" valign="top" class="text">TOOLTIP</td> <td width="35%" valign="top" class="text">Tooltip for the chart. </td> <td width="25%" valign="top" class="text"><ul> <li>Font<br /> </li> </ul></td> <td width="25%" valign="top" class="text">&nbsp;</td> </tr> <tr class='trVeryLightYellowBg'> <td width="15%" valign="top" class="text">LEGEND</td> <td width="35%" valign="top" class="text">Legend for the chart. </td> <td width="25%" valign="top" class="text"><ul> <li>Animation<br /> </li> <li>Font<br /> </li> <li>Shadow<br /> </li> <li>Glow<br /> </li> <li>Bevel<br /> </li> <li>Blur</li> </ul></td> <td width="25%" valign="top" class="text"><ul> <li>_alpha<br /> </li> </ul></td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td> </tr> </table> <br /> <table width="98%" align="center" cellpadding="2"> <tr class="trLightBlueBg"> <td align="left"> <span class="header">&nbsp;&lt;chart&gt; element Attributes</span> </td> </tr> </table> <br /> <a name="Anchor1"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Functional Attributes</td> </tr> <tr> </tr><tr> <td class="text"> <p>These attributes let you control a variety of functional elements on the chart. For example, you can opt to show/hide data labels, data values, y-axis values. You can also set chart limits and extended properties.</p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">animation</td> <td valign="top" class="text">Boolean (0/1) </td> <td valign="top" class="text">This attribute lets you set the configuration whether the chart should appear in an animated fashion. If you do not want to animate any part of the chart, set this as 0. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">defaultAnimation</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">By default, each chart animates some of its elements. If you wish to switch off the default animation patterns, you can set this attribute to 0. It can be particularly useful when you want to define your own animation patterns using the <a href="../Styles/Styles.html"><strong>Styles</strong></a> feature. </td> </tr> <tr> <td valign="top" class="text">connectNullData</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">This attribute lets you control whether empty datasets in your data will be connected to each other OR will they appear as broken data sets? </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">clickURL</td> <td valign="top" class="text">URL in FusionCharts format </td> <td valign="top" class="text">The entire chart can now act as a hotspot. Use this URL to define the hotspot link for the chart. The link can be specified in <a href="../DrillDown/LinkFormat.html">FusionCharts link format</a>. </td> </tr> <tr> <td valign="top" class="text">palette</td> <td valign="top" class="text">Number (1-5) </td> <td valign="top" class="text">Each chart has 5 pre-defined color palettes which you can choose from. Each palette renders the chart in a different color theme. Valid values are 1-5. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">paletteThemeColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">If you want your own palette derived from a particular hex color, you can specify the same here. All other colors on the chart will automatically derive from that palette. </td> </tr> <tr> <td valign="top" class="text">paletteColors</td> <td valign="top" class="text">String<br/>(List of hex color codes separated by comma)</td> <td valign='top' class="text">The <span class="CodeInline">palette</span> attribute allows to select a palette theme that applies to chart background, canvas, font and tool-tips, it does not change the colors of dataplots (i.e., column, line, area etc.). The <span class="CodeInline">paletteThemeColor</span> attribute allows to specify your own palette derived from a particular hex color that is applied to chart background, canvas, font, tool-tips and also dataplots. <p>Using <span class="CodeInline">paletteColors</span> attribute, you can specify your custom list of hex colors for the dataplots only. The list of colors have to be separated by comma e.g., <span class="CodeInline">&lt;chart paletteColors='FF0000,0372AB,FF5904...'&gt;</span>. The chart will cycle through the list of specified colors and then render the data plot accordingly. </p> <p>To use the same set of colors throughout all your charts in a web application, you can store the list of palette colors in your application globally and then provide the same in each chart XML.</p></td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">showRTMenuItem</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to show the real-time update related menu items (like Start/Stop Update or Clear Chart) in chart's context menu? <p class="highlightBlock"><strong>Note</strong>: For JavaScript charts real-time update related menu items do not appear by default. You need to explicitly set <span class="CodeInline">showRTMenuItem='1'</span> in <span class="CodeInline">&lt;chart&gt;</span> element. The menu appears as a button on the bottom-left corner of the JavaScript chart. You can then use the button to Start/Stop Update or Clear chart.</p></td> </tr> <tr> <td valign="top" class="text">showPrintMenuItem</td> <td valign="top" class="text">Boolean (0/1) </td> <td valign="top" class="text">Whether to show &quot;<em>Print Chart</em>&quot; item in the context menu of the chart? Even if you opt to hide the item in context menu, you can still opt to invoke <span class="codeInline">print()</span> JavaScript method of the chart to print the same. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">showAboutMenuItem</td> <td valign="top" class="text">Boolean (0/1) </td> <td valign='top' class="text">Setting this to 1 displays a custom context menu in the chart, which can be customized to show your text and can be linked to your URL. For e.g., you can set the context menu of the chart to include &quot;About your company name&quot; and then link to your company home page. By default, the chart shows &quot;About FusionCharts&quot; when right clicked. </td> </tr> <tr> <td valign="top" class="text">aboutMenuItemLabel</td> <td valign="top" class="text">String</td> <td valign='top' class="text">The menu item label for the custom context menu item. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">aboutMenuItemLink</td> <td valign="top" class="text">String</td> <td valign='top' class="text">Link for the custom context menu item. You can specify the link in <a href="../DrillDown/LinkFormat.html">FusionCharts link format</a> to be able to open the same in new window, pop-ups, frames or as JavaScript links.</td> </tr> <tr> <td valign="top" class="text">refreshInstantly<div class="version-info">Since v 3.2</div></td> <td valign="top" class="text">Boolean (0/1)</td> <td valign='top' class="text">By default, the real-time charts wait for a few seconds after rendering for the first time and before updating itself with new data. To allow the chart to start updating itself as soon as it is rendered, set this attribute to 1. </td> </tr> <tr class='trVeryLightYellowBg'> <td class="text" width="25%" valign="top">valuePosition <div class="version-info">Since v 3.2</div></td> <td class="text" width="15%" valign="top">String (ABOVE<br/>BELOW<br/>AUTO)</td> <td class="text" width='45%' valign='top'>If you've opted to show data values on the chart, this attribute lets you adjust the vertical alignment of data values with respect to dataplots. By default, this attribute is set to AUTO mode in which the alignment of each data value is determined automatically based on the position of each plot point. In ABOVE mode, data values are displayed above the plot points unless a plot point is too close to the upper edge of the canvas while in BELOW mode, data values are displayed below the plot points unless a plot point is too close to the lower edge of the canvas.</td> </tr> <tr> <td valign="top" class="text">manageResize<div class="version-info">Since v 3.2</div></td> <td valign="top" class="text">Boolean (0/1)</td> <td valign='top' class="text">Setting this attribute to 1, you can allow the chart to automatically resize itself when the parent container of the chart is resized. </td> </tr> <tr class='trVeryLightYellowBg'> <td width="25%" valign="top" class="text">useEllipsesWhenOverflow<div class="version-info">Since v 3.2</div> </td> <td width="15%" valign="top" class="text">Boolean (0/1) </td> <td width='45%' valign='top' class="text">When enabled in AUTO mode, long data labels are truncated by adding ellipses to prevent them from overflowing the chart background. The default value is 1.</td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br/> <a name="Anchor2"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Chart Titles and Axis Names</td> </tr> <tr> <td class="text"> <p>Using these attributes, you can set the various headings and titles of chart like caption, sub-caption, x-axis and y-axis names etc.</p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="4"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="15%"> <span class="textBold"> Type </span> </td> <td width='60%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">caption</td> <td valign="top" class="text">String</td> <td valign="top" class="text">Caption of the chart. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">subCaption</td> <td valign="top" class="text">String</td> <td valign="top" class="text">Sub-caption of the chart. </td> </tr> <tr> <td valign="top" class="text">xAxisName</td> <td valign="top" class="text">String</td> <td valign="top" class="text">X-Axis Title of the Chart. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">yAxisName</td> <td valign="top" class="text">String</td> <td valign="top" class="text">Y-Axis Title of the chart. </td> </tr> <tr> <td valign="top" class="text">rotateYAxisName</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">If you do not wish to rotate y-axis name, set this as 0. It specifically comes to use when you've special characters (UTF8) in your y-axis name that do not show up in rotated mode. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">yAxisNameWidth</td> <td valign="top" class="text">Number (Pixels) </td> <td valign="top" class="text">If you opt to not rotate y-axis name, you can choose a maximum width that will be applied to y-axis name. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor3"></a> <table width="98%" align="center" cellpadding="2"> <tr class="greyTr"> <td colspan="3" valign="top" class="header">Chart Y-Axis</td> </tr> <tr> <td class="text"> <p>Using these attributes, you can set the various properties of the Y-Axis.</p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="15%"> <span class="textBold"> Type </span> </td> <td width='60%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">setAdaptiveYMin</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">This attribute lets you set whether the y-axis lower limit will be 0 (in case of all positive values on chart) or should the y-axis lower limit adapt itself to a different figure based on values provided to the chart. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">yAxisMinValue</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">This attribute helps you explicitly set the lower limit of the chart. If you don't specify this value, it is automatically calculated by the chart based on the data provided by you. </td> </tr> <tr> <td valign="top" class="text">yAxisMaxValue</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">This attribute helps you explicitly set the upper limit of the chart. If you don't specify this value, it is automatically calculated by the chart based on the data provided by you. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">showYAxisValues</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">The y-axis of the charts is divided into vertical sections using div (divisional) lines. Each div line assumes a value based on its position. Using this attribute you can set whether to show those div line (y-axis) values or not. The values of <span class="CodeInline">showLimits</span><span class="text"> and </span><span class="CodeInline">showDivLineValues</span><span class="text"> if specified explicitly overrides the value of this attribute.</span></td> </tr> <tr> <td width="25%" valign="top"> <span class="text"> showLimits </span> </td> <td width="15%" valign="top"> <span class="text"> Boolean </span> (0/1) </td> <td width='45%' valign='top'> <span class="text"> Whether to show chart limit values. If not specified </span><span class="CodeInline">showYAxisValues</span><span class="text"> attribute overrides this value. </span></td> </tr> <tr class='trLightBlueBg'> <td width="25%" valign="top"> <span class="text"> showDivLineValues </span> </td> <td width="15%" valign="top"> <span class="text"> Boolean (0/1) </span> </td> <td width='45%' valign='top'> <span class="text"> Whether to show div line values. If not specified </span><span class="CodeInline">showYAxisValues</span><span class="text"> attribute overrides this value. </span> </td> </tr> <tr> <td valign="top" class="text">yAxisValuesStep</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">By default, all div lines show their values. However, you can opt to display every x(th) div line value using this attribute. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">yAxisValueDecimals</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">Decimal places for y-axis values. </td> </tr> <tr> <td valign="top" class="text">forceYAxisDecimals</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to force decimal places for y-axis values. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor4"></a> <table width="98%" align="center" cellpadding="2"> <tr class="greyTr"> <td colspan="3" valign="top" class="header">Chart Labels &amp; Values</td> </tr> <tr> <td class="text"> <p>Data labels refer to the names for the data points which appear on the x-axis and data values refer to the plot values i.e., values of each data plot. </p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="15%"> <span class="textBold"> Type </span> </td> <td width='60%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">showLabels</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">It sets the configuration whether the x-axis labels will be displayed or not. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">labelDisplay</td> <td valign="top" class="text">WRAP, STAGGER, ROTATE or NONE </td> <td valign="top" class="text">Using this attribute, you can control how your data labels (x-axis labels) will appear on the chart. There are 4 options: WRAP, STAGGER, ROTATE or NONE. WRAP wraps the label text if it's longer than the allotted area. ROTATE rotates the label in vertical or slanted position. STAGGER divides the labels into multiple lines. </td> </tr> <tr> <td valign="top" class="text">slantLabels</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">If you've opted to show rotated labels on chart, this attribute lets you set the configuration whether the labels will show as slanted labels or fully vertical ones. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">labelStep</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">By default, all the labels are displayed on the chart. However, if you've a set of streaming data (like name of months or days of week), you can opt to show every n-th label for better clarity. This attributes just lets you do so. It allows you to display every n(th) X-axis label. </td> </tr> <tr> <td valign="top" class="text">staggerLines</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">If you've opted for STAGGER mode as <span class="CodeInline">labelDisplay</span>, using this attribute you can control how many lines to stagger the label to. By default, all labels are displayed in a single line. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">showValues</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Sets the configuration whether data values will be displayed along with the data plot on chart. </td> </tr> <tr> <td valign="top" class="text">rotateValues</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">If you've opted to show data values, you can rotate them using this attribute. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor5"></a> <table width="98%" align="center" cellpadding="2"> <td class="header">Real-time properties </td> </tr> <tr> <td class="text"><p>Using these attributes, you can configure the data streaming feature.</p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">dataStreamURL</td> <td valign="top" class="text">URL</td> <td valign="top" class="text">This parameter sets the path of the page which is supposed to relay real-time data to the chart. If you've special characters as a part of your data stream URL, like ? or &amp;, you'll need to URL Encode the entire <span class="codeInline">dataStreamURL</span><br /> <br /> This page needs to be on the same sub-domain on which the chart is hosted and invoked from. Otherwise, the Flash sandbox security will restrict it from accessing the data and hence the real-time feature won't work.<br /> Example: <span class="CodeInline">dataStreamURL='liveQuote.aspx?name=xyz' </span></td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">refreshInterval</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">For this parameter, you can specify the number of seconds after which the chart will look for new data. This process will happen continuously - i.e., if you specify 5 seconds here, the chart will look for new data every 5 seconds. </td> </tr> <tr> <td valign="top" class="text">clearChartInterval</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">The time after which the chart will keep clearing its contents. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">updateInterval</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">If you want the chart to keep polling for new data every x seconds and queue it, you can specify that x seconds as <span class="CodeInline">updateInterval</span>. This helps you poll at different intervals and then draw at another interval (specified as <span class="CodeInline">refreshInterval</span>). </td> </tr> <tr> <td valign="top" class="text">numDisplaySets</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">This value helps you specify the number of data items that you want as history on the chart. For example, when you set it as 50, only 50 data items (per dataset) will be displayed on the chart. As soon as the 51st data comes in, the first data will be deleted and the rest of the data will be shifted by 1 position left - the new data will come and take the last position. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">dataStamp</td> <td valign="top" class="text">String</td> <td valign="top" class="text">Constantly changing data stamp that can be added to real time Data URL, so as to maintain a state. Please see the section <strong>Real time capabilities</strong> &gt; <a href="RealTimeStamp.html">Adding data stamp</a> </td> </tr> <tr> <td valign="top" class="text">showRealTimeValue </td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">This parameter lets you set whether you want the latest value (received from server) to be displayed on the chart or not. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">realTimeValueSep</td> <td valign="top" class="text">String</td> <td valign="top" class="text">If you are showing real time values for multiple datasets on the chart, this attribute lets you define the separator character to separate each value's display. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor6"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Number Formatting Properties</td> </tr> <tr> <td class="text"> <p> Using the attributes below, you can control a myriad of options like:</p> <ul> <li>Formatting of commas and decimals</li> <li>Number prefixes and suffixes</li> <li>Decimal places to which the numbers will round to</li> <li>Scaling of numbers based on a user defined scale</li> <li>Custom number input formats</li> </ul><br/></td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">formatNumber</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">This configuration determines whether the numbers displayed on the chart will be formatted using commas, e.g., 40,000 if <span class="CodeInline">formatNumber='1'</span> and 40000 if <span class="CodeInline">formatNumber='0'</span>.</td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">numberPrefix</td> <td valign="top" class="text">String</td> <td valign="top" class="text">Using this attribute, you could add prefix to all the numbers visible on the graph. For example, to represent all dollars figure on the chart, you could specify this attribute to ' $' to show like $40000, $50000. For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section. </td> </tr> <tr> <td valign="top" class="text">numberSuffix</td> <td valign="top" class="text">String</td> <td valign="top" class="text">Using this attribute, you could add suffix to all the numbers visible on the graph. For example, to represent all figure quantified as per annum on the chart, you could specify this attribute to ' /a' to show like 40000/a, 50000/a. For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">decimals</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">Number of decimal places to which all numbers on the chart will be rounded to. For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section.</td> </tr> <tr> <td valign="top" class="text">forceDecimals</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to add 0 padding at the end of decimal numbers? For example, if you set decimals as 2 and a number is 23.4. If <span class="CodeInline">forceDecimals</span> is set to 1, the number will automatically be converted to 23.40 (note the extra 0 at the end). For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section.</td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">formatNumberScale</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Configuration whether to add K (thousands) and M (millions) to a number after truncating and rounding it - e.g., if <span class="CodeInline">formatNumberScale</span> is set to 1, 1043 will become 1.04K (with decimals set to 2 places). Same with numbers in millions - an M will be added at the end. For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section. </td> </tr> <tr> <td valign="top" class="text">defaultNumberScale</td> <td valign="top" class="text">String</td> <td valign="top" class="text">The default unit of the numbers that you're providing to the chart. For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">numberScaleUnit</td> <td valign="top" class="text">String</td> <td valign="top" class="text">Unit of each block of the scale. For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section. </td> </tr> <tr> <td valign="top" class="text">numberScaleValue</td> <td valign="top" class="text">String</td> <td valign="top" class="text">Range of the various blocks that constitute the scale. For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">scaleRecursively</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to scale the number recursively? For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section. </td> </tr> <tr> <td valign="top" class="text">maxScaleRecursion</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">How many recursions to complete during recursive scaling? -1 completes the entire set of recursion. For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section.</td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">scaleSeparator</td> <td valign="top" class="text">String</td> <td valign="top" class="text">What character to use to separate the scales that generated after recursion? </td> </tr> <tr> <td valign="top" class="text">decimalSeparator</td> <td valign="top" class="text">String</td> <td valign="top" class="text">This option helps you specify the character to be used as the decimal separator in a number. For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">thousandSeparator</td> <td valign="top" class="text">String</td> <td valign="top" class="text">This option helps you specify the character to be used as the thousands separator in a number. For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section. </td> </tr> <tr> <td width="25%" valign="top"> <span class="text"> thousandSeparatorPosition<div class="version-info">Since v3.2 - SR1</div> </span> </td> <td width="15%" valign="top"> <span class="text"> Number </span> </td> <td width='45%' valign='top'> <span class="text"> This option helps you specify the position of the thousand separator. For more details, please see <strong>Advanced Charting > Number Formatting &gt; </strong><a href="../Advanced/NumberFormat/Basics.html#thousandSeparatorPosition">Basics</a> page. </span> </td> </tr> <tr class="trVeryLightYellowBg"> <td valign="top" class="text">inDecimalSeparator</td> <td valign="top" class="text">String</td> <td valign="top" class="text">In some countries, commas are used as decimal separators and dots as thousand separators. In XML, if you specify such values, it will give an error while converting to number. So, the chart accepts the input decimal and thousand separators from user, so that it can convert it accordingly into the required format. This attribute lets you input the decimal separators. For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section. </td> </tr> <tr> <td valign="top" class="text">inThousandSeparator</td> <td valign="top" class="text">String</td> <td valign="top" class="text">In some countries, commas are used as decimal separators and dots as thousand separators. In XML, if you specify such values, it will give an error while converting to number. So, the chart accepts the input decimal and thousand separators from user, so that it can convert it accordingly into the required format. This attribute lets you input the thousand separators. For more details, please see <strong>Advanced Charting &gt;</strong> <a href="../Advanced/NumberFormat/Basics.html">Number Formatting</a> section. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor7"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Message Logger</td> </tr> <tr> <td class="text"> <p>FusionWidgets XT uses the concept of streaming and showing real-time messages in the chart using <em>Message Logger</em>. The Message logger can be effectively used to show necessary real-time information or live error logs.</p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">useMessageLog</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to use message logger for the chart? </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">messageLogWPercent</td> <td valign="top" class="text">Number (percent) </td> <td valign="top" class="text">This attribute lets you set the width percent of the message logger window w.r.t entire chart width. So, if you set it as 80, the message logger window will take up 80% of chart width. </td> </tr> <tr> <td valign="top" class="text">messageLogHPercent</td> <td valign="top" class="text">Number (percent) </td> <td valign="top" class="text">This attribute lets you set the height percent of the message logger window w.r.t entire chart height. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">messageLogShowTitle</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to show the title for message logger? </td> </tr> <tr> <td valign="top" class="text">messageLogTitle</td> <td valign="top" class="text">String </td> <td valign="top" class="text">If you've opted to show the title for message logger, you can define your custom title here. Examples are &quot;Error log&quot;, &quot;Server History&quot; etc. The title displays at the top left corner of chart. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">messageLogColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">You can customize the color of the entire message log window by setting a hex value for this attribute. </td> </tr> <tr> <td valign="top" class="text">messageGoesToLog </td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">The messages streamed to the chart can either be displayed in the message log window or can be passed to JavaScript. This attribute lets you control whether the messages should be logged in the in-built log window. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">messageGoesToJS </td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">This attribute lets you configure whether each message streamed from the server should be passed to a local JavaScript function. </td> </tr> <tr> <td valign="top" class="text">messageJSHandler</td> <td valign="top" class="text">String</td> <td valign="top" class="text">If you've opted to pass each message to JavaScript function, this attribute lets you define the name of the function. This helps you create your custom functions to react to messages streamed from server. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">messagePassAllToJS </td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to pass all message envelope parameters to the custom JavaScript function.</td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor8"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Plot (Line) properties</td> </tr> <tr> <td class="text"><p>These attributes let you configure how your plot (lines) will appear on the chart. </p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">showShadow </td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to show shadows for data plot? </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">lineColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Color using which the lines on the chart will be drawn. </td> </tr> <tr> <td valign="top" class="text">lineThickness</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Thickness of the lines on the chart. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">lineAlpha</td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Alpha of the lines on the chart. </td> </tr> <tr> <td valign="top" class="text">lineDashed</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Configuration whether to show the lines on the chart as dash. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">lineDashLen</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">If the lines are to be shown as dashes, this attribute defines the length of dash. </td> </tr> <tr> <td valign="top" class="text">lineDashGap</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">If the lines are to be shown as dashes, this attribute defines the length of dash gap. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor9"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Anchor properties</td> </tr> <tr> <td class="text"> <p>On line/area charts, anchors (or marker points) are polygons which appear at the joint of two consecutive lines/area points. These are indicators to show the position of data points.<br /> <br /> The anchors handle tooltips and links for the data points. So, if you opt to not render anchors on a chart, the tooltips and links won't function. You can, however, hide them by setting alpha to 0 and still enable tooltips and links.<br /> <br /> You can customize all the facets of anchors using the properties below.<br /> </p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">drawAnchors</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to draw anchors on the chart? If the anchors are not shown, then the tooltip and links won't work. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">anchorSides</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">This attribute sets the number of sides the anchor will have. For e.g., an anchor with 3 sides will represent a triangle, with 4 it will be a square and so on. </td> </tr> <tr> <td valign="top" class="text">anchorRadius</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">This attribute sets the radius (in pixels) of the anchor. Greater the radius, bigger will be the anchor size. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">anchorBorderColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Lets you set the border color of anchors. </td> </tr> <tr> <td valign="top" class="text">anchorBorderThickness</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Helps you set border thickness of anchors. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">anchorBgColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Helps you set the background color of anchors. </td> </tr> <tr> <td valign="top" class="text">anchorAlpha</td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Helps you set the alpha of entire anchors. If you need to hide the anchors on chart but still enable tooltips, set this as 0. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">anchorBgAlpha</td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Helps you set the alpha of anchor background. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor10"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Chart Cosmetics </td> </tr> <tr> <td class="text"> <p>The following attributes let you configure chart cosmetics like background color, background alpha, canvas color &amp; alpha etc.</p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">bgColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">This attribute sets the background color for the chart. You can set any hex color code as the value of this attribute. To specify a gradient as background color, separate the hex color codes of each color in the gradient using comma. Example: <span class="CodeInline">FF5904</span>, <span class="CodeInline">FFFFFF</span>. Remember to remove # and any spaces in between. For more details see <a href="../Advanced/UsingGradients.html">Using Gradients</a>. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">bgAlpha</td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Sets the alpha (transparency) for the background. If you've opted for gradient background, you need to set a list of alpha(s) separated by comma. For more details see <a href="../Advanced/UsingGradients.html">Using Gradients</a>. </td> </tr> <tr> <td valign="top" class="text">bgRatio</td> <td valign="top" class="text">Numbers separated by comma </td> <td valign="top" class="text">If you've opted for a gradient background, this attribute lets you set the ratio of each color constituent. For more details see <a href="../Advanced/UsingGradients.html">Using Gradients</a>. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">bgAngle</td> <td valign="top" class="text">Number (0-360) </td> <td valign="top" class="text">Angle of the background color, in case of a gradient. For more details see <a href="../Advanced/UsingGradients.html">Using Gradients</a>. </td> </tr> <tr> <td valign="top" class="text">showBorder</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to show a border around the chart or not? </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">borderColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Border color of the chart. </td> </tr> <tr> <td valign="top" class="text">borderThickness</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Border thickness of the chart. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">borderAlpha</td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Border alpha of the chart. </td> </tr> <tr><td width="15%" valign="top" ><span class="text">bgImage</span> <p>or</p> <div class="text">bgSWF <span class="version-info">- deprecated</span> </div> </td> <td width="15%" valign="top"> <span class="text"> String </span> </td> <td width='45%' valign='top'> <span class="text"> To place any image (JPG/PNG/GIF) or Flash movie (SWF) as background of the chart, enter the (path and) name of the background image or SWF file. It should be in the same domain as the chart.<p class="highlightBlock">Loading of Flash movie is deprecated and is not supported by JavaScript charts.</p> </span> </td> </tr> <tr class='trLightBlueBg'> <td width="15%" valign="top"><span class="text">bgImageAlpha</span> <p>or</p> <div class="text">bgSWFAlpha <span class="version-info">- deprecated</span> </div> </td> <td width="15%" valign="top"> <span class="text"> Number (0-100) </span> </td> <td width='45%' valign='top'> <span class="text"> Helps you specify the opacity for the loaded background image or Flash movie. <p class="highlightBlock">Loading of Flash movie is deprecated and is not supported by JavaScript charts.</p> </span> </td> </tr> <tr> <td width="25%" valign="top"> <span class="text"> bgImageDisplayMode </span> <div class="version-info">Since v3.2</div> </td> <td width="15%" valign="top"> <span class="text"> String (stretch, tile, fit, fill, center, none) </span> </td> <td width='45%' valign='top'> <span class="text"> Helps you specify the mode in which the background image is to be displayed. <ul> <li ><span class="text">Stretch - expands the image to fit the entire chart area, without maintaining original image constraints</span></li> <li ><span class="text">Tile - the image is repeated as a pattern on the entire chart area</span> </li> <li ><span class="text">Fit - fits the image proportionately on the chart area </span></li> <li ><span class="text">Fill -proportionately fills the entire chart area with the image </span></li> <li><span class="text">Center - the image is positioned at the center of the chart area</span> </li> <li><span class="text">None - Default mode. None of the above modes are applied </span></li> </ul>For more details <a href="../Advanced/ChartBG.html#displaymode">click here</a>.</span></td> </tr> <tr class='trLightBlueBg'> <td width="25%" valign="top"> <span class="text"> bgImageVAlign </span> <div class="version-info">Since v3.2</div> </td> <td width="15%" valign="top"> <span class="text"> String (top, middle, bottom)</span></td> <td width='45%' valign='top'> <span class="text"> Helps you to vertically align the background image.</span></td> </tr> <tr> <td width="25%" valign="top"> <span class="text"> bgImageHAlign </span> <div class="version-info">Since v3.2</div> </td> <td width="15%" valign="top"> <span class="text"> String (left, middle, right) </span> </td> <td width='45%' valign='top'> <span class="text"> Helps you to horizontally align the background image.</span></td> </tr> <tr class='trLightBlueBg'> <td width="25%" valign="top"> <span class="text"> bgImageScale </span> <div class="version-info">Since v3.2</div> </td> <td width="15%" valign="top"> <span class="text"> Number (0-300) </span> </td> <td width='45%' valign='top'> <span class="text"> Helps you magnify the background image. This attribute will only work when the attribute </span><span class="CodeInline">bgImageDisplayMode</span><span class="text"> is set to none, center or tile. </span></td> </tr> <tr> <td valign="top"><span class="text"> logoURL </span> </td> <td valign="top"><span class="text"> String </span> </td> <td valign='top'><span class="text">You can load an external logo (JPEG/PNG/SWF) on the chart once it has rendered. This attribute lets you specify the URL of the same. Owing to Flash Player security settings, you can only specify logos that are on the sub-domain as the SWF file of the chart. </span></td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top"><span class="text"> logoPosition </span> </td> <td valign="top"><span class="text"> String ( TL, TR, BL, BR, CC )</span> </td> <td valign='top'><p class="text"> <span class="text">Where to position the logo on the chart:</span></p> <ul> <li>TL - Top-left</li> <li>TR - Top-right</li> <li>BR - Bottom right</li> <li>BL - Bottom left</li> <li>CC - Center of screen </li> </ul></td> </tr> <tr> <td valign="top"><span class="text"> logoAlpha </span> </td> <td valign="top"><span class="text"> Number </span> (0-100) </td> <td valign='top'><span class="text">Once the logo has loaded on the chart, you can configure its opacity using this attribute.</span></td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top"><span class="text"> logoScale </span> </td> <td valign="top"><span class="text"> Number </span> (0-100) </td> <td valign='top'><span class="text">You can also change the size of externally loaded logo at run-time by specifying a value for this parameter. </span></td> </tr> <tr> <td valign="top"><span class="text"> logoLink </span> </td> <td valign="top"><span class="text"> String </span> </td> <td valign='top'><span class="text">If you want to link the logo to an external URL, specify the link in this attribute. The link can be in <a href="../DrillDown/LinkFormat.html">FusionCharts link format</a>, allowing you to link to new windows, pop-ups, frames etc. </span> </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor11"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Canvas Cosmetics </td> </tr> <tr> <td class="text"> <p>Canvas refers to the area in which the chart is plotted. The following attributes can be used to customize the canvas: </p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">canvasBgColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Sets Canvas background color. For Gradient effect, enter colors separated by comma. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">canvasBgAlpha </td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Sets alpha for Canvas Background. For gradient, enter alpha list separated by commas. </td> </tr> <tr> <td valign="top" class="text">canvasBgRatio</td> <td valign="top" class="text">Numbers separated by comma </td> <td valign="top" class="text">Helps you specify canvas background ratio for gradients. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">canvasBgAngle</td> <td valign="top" class="text">Number (0-360) </td> <td valign="top" class="text">Helps you specify canvas background angle in case of gradient. </td> </tr> <tr> <td valign="top" class="text">canvasBorderColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Lets you specify canvas border color. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">canvasBorderThickness</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Lets you specify canvas border thickness. </td> </tr> <tr> <td valign="top" class="text">canvasBorderAlpha</td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Lets you control transparency of canvas border. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor12"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Divisional Lines/Grids</td> </tr> <tr> <td class="text"> <p>Using this set of attributes, you can control the properties of divisional lines and alternate color bands.<br /> <br /> Divisional Lines are horizontal or vertical lines running through the canvas. Each divisional line signifies a smaller unit of the entire axis thus aiding the users in interpreting the chart.<br /> <br /> Alternate color bands are colored blocks between two successive divisional lines.<br /> </p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">numDivLines</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">Number of horizontal axis division lines that you want on the chart. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">divLineColor </td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Color for divisional lines </td> </tr> <tr> <td valign="top" class="text">divLineThickness </td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Thickness of divisional lines </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">divLineAlpha </td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Alpha of divisional lines </td> </tr> <tr> <td valign="top" class="text">divLineIsDashed </td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether the divisional lines should display as dash? </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">divLineDashLen </td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">If the divisional lines are to be displayed as dash, this attribute lets you control the length of each dash. </td> </tr> <tr> <td valign="top" class="text">divLineDashGap </td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">If the divisional lines are to be displayed as dash, this attribute lets you control the length of each gap between dashes. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">showAlternateHGridColor </td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to show alternate colored horizontal grid bands? </td> </tr> <tr> <td valign="top" class="text">alternateHGridColor </td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Color of the alternate horizontal grid bands</td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">alternateHGridAlpha </td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Alpha (transparency) of the alternate horizontal grid bands</td> </tr> <tr> <td valign="top" class="text">numVDivLines </td> <td valign="top" class="text">Number</td> <td valign="top" class="text">Number of vertical axis division lines </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">vDivLineColor </td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Color of vertical axis division lines</td> </tr> <tr> <td valign="top" class="text">vDivLineThickness </td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Thickness of vertical axis division lines</td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">vDivLineAlpha </td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Alpha of vertical axis division lines</td> </tr> <tr> <td valign="top" class="text">vDivLineIsDashed </td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether vertical divisional lines appear as dashed? </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">vDivLineDashLen </td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">If vertical div lines are dashed, this attribute lets you control the width of dash. </td> </tr> <tr> <td valign="top" class="text">vDivLineDashGap </td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">If vertical div lines are dashed, this attribute lets you control the width of dash gap. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">showAlternateVGridColor </td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to show alternate vertical colored grid bands? </td> </tr> <tr> <td valign="top" class="text">alternateVGridColor </td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Color of alternate vertical colored grid bands </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">alternateVGridAlpha </td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Alpha of alternate vertical colored grid bands</td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor14"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Zero Plane properties</td> </tr> <tr> <td class="text"> <p>The zero plane is a plane that signifies the 0 position on the chart which separates the positive and negative numbers on a chart having both of them. If there are no negative numbers on the chart, you won't see a visible zero plane. You can customize the zero plane with the following properties:</p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">showZeroPlane </td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to show the zero plane on chart (if negative values are present)? </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">zeroPlaneColor </td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Color for the Zero Plane. Zero Plane is the line/plane that appears at 0 y-position on canvas, when negative data is being shown on the chart. </td> </tr> <tr> <td valign="top" class="text">zeroPlaneThickness </td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Thickness of zero plane</td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">zeroPlaneAlpha </td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Alpha of zero plane</td> </tr> <tr> <td valign="top" class="text">showZeroPlaneValue<div class="version-info">Since v 3.2</div></td> <td valign="top" class="text">Boolean (0/1) </td> <td valign='top' class="text">To display the value of the zero plane, set this attribute to 1. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor24"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Font Properties </td> </tr> <tr> <td class="text"> <p>Using the attributes below, you can define the generic font properties for all the text on the chart. These attributes allow you a high level control over font properties.</p> <p>If you intend to specify font properties for individual chart elements (like Caption, sub-caption etc.), you'll need to use the <a href="../Styles/Styles.html"><strong>Styles</strong></a> feature. Using <strong>Styles</strong>, you can also specify advanced font properties like Bold, Italics, HTML Mode etc. Using <strong>Styles</strong> you can also configure real-time values.</p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">baseFont </td> <td valign="top" class="text">Font Name </td> <td valign="top" class="text">This attribute lets you set the font face (family) of all the text (data labels, values etc.) on chart. If you specify <span class="CodeInline">outCnvBaseFont</span> attribute also, then this attribute controls only the font face of text within the chart canvas bounds. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">baseFontSize </td> <td valign="top" class="text">Number</td> <td valign="top" class="text">This attribute sets the base font size of the chart i.e., all the values and the names in the chart which lie on the canvas will be displayed using the font size provided here. </td> </tr> <tr> <td valign="top" class="text">baseFontColor </td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">This attribute sets the base font color of the chart i.e., all the values and the names in the chart which lie on the canvas will be displayed using the font color provided here. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">outCnvBaseFont</td> <td valign="top" class="text">Font Name </td> <td valign="top" class="text">This attribute sets the base font family of the chart font which lies outside the canvas i.e., all the values and the names in the chart which lie outside the canvas will be displayed using the font name provided here. </td> </tr> <tr> <td valign="top" class="text">outCnvBaseFontSize </td> <td valign="top" class="text">Number</td> <td valign="top" class="text">This attribute sets the base font size of the chart i.e., all the values and the names in the chart which lie outside the canvas will be displayed using the font size provided here. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">outCnvBaseFontColor </td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">This attribute sets the base font color of the chart i.e., all the values and the names in the chart which lie outside the canvas will be displayed using the font color provided here. </td> </tr> <tr> <td valign="top" class="text">realTimeValueFont</td> <td valign="top" class="text">Font Name </td> <td valign="top" class="text">If real time value is to be displayed on the chart, this attribute lets you set the font face of the same. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">realTimeValueFontSize</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">If real time value is to be displayed on the chart, this attribute lets you set the font size of the same.</td> </tr> <tr> <td valign="top" class="text">realTimeValueFontColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">If real time value is to be displayed on the chart, this attribute lets you set the font color of the same.</td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor15"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Legend Properties </td> </tr> <tr> <td class="text"> <p>In multi-series charts, the series name of each dataset shows up in the legend of the chart. If you do not need the legend, you can opt to hide the same.</p> <p>Also, the legend can be placed at the bottom of the chart or to the right of the chart.</p> <p>Using the attributes below, you can configure the functional and cosmetic properties of the legend.</p></td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">showLegend</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to show legend for the chart (only multi-series and combination charts)?</td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">legendPosition</td> <td valign="top" class="text">RIGHT or BOTTOM </td> <td valign="top" class="text">The legend can be plotted at two positions on the chart - below the chart (BOTTOM) and on the RIGHT side of the chart. </td> </tr> <tr> <td valign="top" class="text">interactiveLegend</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">This attribute lets you interact with the legend in your chart. When you click a legend key, the dataplots associated with that series are eliminated from the chart. Re-clicking the key causes the dataplots to reappear.</td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">legendCaption</td> <td valign="top" class="text">String</td> <td valign="top" class="text">You can add a caption for the entire legend by setting the same here. </td> </tr> <tr> <td valign="top" class="deprecated"><span class="strikethrough">legendMarkerCircle</span> <div class="version-info">deprecated. Not applicable.</div></td> <td valign="top" class="deprecated"><span class="strikethrough">Boolean (0/1)</span></td> <td valign="top" class="deprecated"><span class="strikethrough">Whether to use square legend keys or circular ones?</span> </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">legendBorderColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Border Color for the legend. </td> </tr> <tr> <td valign="top" class="text">legendBorderThickness</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Border thickness for the legend. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">legendBorderAlpha</td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Border alpha for the legend. </td> </tr> <tr> <td valign="top" class="text">legendBgColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Background color for the legend. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">legendBgAlpha</td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Background alpha for the legend. </td> </tr> <tr> <td valign="top" class="text">legendShadow</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to show a shadow for legend? </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">legendAllowDrag</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">The legend can be made drag-able by setting this attribute to 1. End viewers of the chart can drag the legend around on the chart. </td> </tr> <tr> <td valign="top" class="text">legendScrollBgColor </td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">If you've too many items on the legend, a scroll bar shows up on the same. This attribute lets you configure the background color of the scroll bar. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">legendScrollBarColor </td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">If you've too many items on the legend, a scroll bar shows up on the same. This attribute lets you configure the bar color of the scroll bar. </td> </tr> <tr> <td valign="top" class="text">legendScrollBtnColor </td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">If you've too many items on the legend, a scroll bar shows up on the same. This attribute lets you configure the color of buttons of the scroll bar. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">reverseLegend</td> <td valign="top" class="text">Boolean (0/1) </td> <td valign="top" class="text">You can reverse the ordering of datasets in the legend by setting this attribute to 1.</td> </tr> <tr> <td valign="top" class="text">legendIconScale<div class="version-info">Since v 3.2</div></td> <td valign="top" class="text">Number (0-5) </td> <td valign="top" class="text">Scaling of legend icon is possible starting FusionWidgets XT. This attribute lets you control the size of legend icon.</td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">legendNumColumns<div class="version-info">Since v 3.2</div></td> <td valign="top" class="text">Number (positive integer)</td> <td valign="top" class="text">If your chart contains multiple series, the legend is displayed as a grid comprising of multiple legend keys. With the help of this attribute you can specify the number of columns that are to be displayed in the legend.</td> </tr> <tr> <td valign="top" class="text">minimiseWrappingInLegend<div class="version-info">Since v 3.2</div></td> <td valign="top" class="text">Boolean (0/1) </td> <td valign="top" class="text">Whether to minimize legend item text wrapping.</td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor16"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Tooltip properties </td> </tr> <tr> <td class="text"> <p>These attributes let you control the tooltip. You can set the background color, border color, separator character and few other details.</p> </td> </tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">showToolTip</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to show tooltip on chart? </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">seriesNameInToolTip </td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">This attribute lets you control whether series name will show up in tooltip or not.</td> </tr> <tr> <td valign="top" class="text">toolTipBgColor </td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Background Color for tooltip. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">toolTipBorderColor </td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Border Color for tooltip. </td> </tr> <tr> <td valign="top" class="text">toolTipSepChar </td> <td valign="top" class="text">String</td> <td valign="top" class="text">The character specified as the value of this attribute separates the name and value displayed in tooltip. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">showToolTipShadow</td> <td valign="top" class="text">Boolean (0/1) </td> <td valign="top" class="text">Whether to show shadow for tooltips.</td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor17"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Chart Paddings &amp; Margins </td> </tr> <tr> <td><p>The following attributes help you control chart margins and paddings.</p> <p>FusionWidgets XT allows you manually customize the padding of various elements on the chart to allow advanced manipulation and control over chart visualization. Padding in FusionWidgets XT is always defined in pixels, unless the attribute itself suggests some other scale (like <span class="CodeInline">plotSpacePercent</span>).</p> <p>You can also define the chart margins. Chart Margins refer to the empty space left on the top, bottom, left and right of the chart.</p> <p>It's not necessary for you to specify any padding/margin values. FusionWidgets XT automatically assumes the best values for the same, if you do not specify the same.</p></td></tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">captionPadding</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">This attribute lets you control the space (in pixels) between the sub-caption and top of the chart canvas. If the sub-caption is not defined, it controls the space between caption and top of chart canvas. If neither caption, nor sub-caption is defined, this padding does not come into play. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">canvasPadding</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Lets you set the space between the canvas border and first &amp; last data points </td> </tr> <tr> <td valign="top" class="text">xAxisNamePadding</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Using this, you can set the distance between the top end of x-axis title and the bottom end of data labels (or canvas, if data labels are not to be shown). </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">yAxisNamePadding</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Using this, you can set the distance between the right end of y-axis title and the start of y-axis values (or canvas, if the y-axis values are not to be shown). </td> </tr> <tr> <td valign="top" class="text">yAxisValuesPadding</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">This attribute helps you set the horizontal space between the canvas left edge and the y-axis values or trend line values (on left/right side). This is particularly useful, when you want more space between your canvas and y-axis values. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">labelPadding</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">This attribute sets the vertical space between the labels and canvas bottom edge. If you want more space between the canvas and the x-axis labels, you can use this attribute to control it. </td> </tr> <tr> <td valign="top" class="text">valuePadding</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">It sets the vertical space between the end of columns and start of value textboxes. This basically helps you control the space you want between your columns/anchors and the value textboxes. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">realTimeValuePadding</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Vertical distance between the real-time value and x-axis labels. </td> </tr> <tr> <td valign="top" class="text">legendPadding</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Padding of legend from right/bottom side of canvas.</td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">chartLeftMargin</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Amount of empty space that you want to put on the left side of your chart. Nothing is rendered in this space. </td> </tr> <tr> <td valign="top" class="text">chartRightMargin</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Amount of empty space that you want to put on the right side of your chart. Nothing is rendered in this space. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">chartTopMargin</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Amount of empty space that you want to put on the top of your chart. Nothing is rendered in this space. </td> </tr> <tr> <td valign="top" class="text">chartBottomMargin</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Amount of empty space that you want to put on the bottom of your chart. Nothing is rendered in this space. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">canvasLeftMargin</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Left margin of canvas. Canvas will start from that position. </td> </tr> <tr> <td valign="top" class="text">canvasRightMargin</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Right margin of canvas. Canvas will end at that position. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">canvasTopMargin</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Top margin of canvas. </td> </tr> <tr> <td valign="top" class="text">canvasBottomMargin</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Bottom margin of canvas. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr> </table> <br/> <a name="Anchor18"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">&lt;categories&gt; element </td> </tr> <tr> <td><p>The <span class='CodeInline'>&lt;categories&gt;</span> element lets you bunch together x-axis labels of the chart. For a multi-series chart, it's necessary to provide data labels using <span class='CodeInline'>&lt;category&gt;</span> elements under <span class='CodeInline'>&lt;categories&gt;</span> element.</p> <p>The following properties of <span class='CodeInline'>&lt;categories&gt;</span> element help you control the font properties of data labels.</p></td></tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">font </td> <td valign="top" class="text">String</td> <td valign="top" class="text">Lets you specify font face for the x-axis data labels. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">fontSize </td> <td valign="top" class="text">Number</td> <td valign="top" class="text">Lets you specify font size for the x-axis data labels. </td> </tr> <tr> <td valign="top" class="text">fontColor </td> <td valign="top" class="text">Color Code </td> <td valign="top" class="text">Lets you specify font color for the x-axis data labels. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor19"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">&lt;category&gt; element</td> </tr> <tr> <td><p>Each <span class='CodeInline'>&lt;category&gt;</span> element represents an x-axis data label.</p> <p>In multi-series charts, it's necessary to provide an equal number of <span class='CodeInline'>&lt;category&gt;</span> elements and data items (<span class='CodeInline'>&lt;set&gt;</span> elements within each <span class='CodeInline'>&lt;dataset&gt;</span>).</p> <p>You can specify the following attributes for <span class='CodeInline'>&lt;category&gt;</span> element:</p></td></tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">label</td> <td valign="top" class="text">String</td> <td valign="top" class="text">This attribute determines the label for the data item. The label appears on the x-axis of chart. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">showLabel</td> <td valign="top" class="text">Boolean (0/1) </td> <td valign="top" class="text">You can individually opt to show/hide labels of individual data items using this attribute. </td> </tr> <tr> <td valign="top" class="text">tooltext</td> <td valign="top" class="text">String</td> <td valign="top" class="text">The tooltip defined in the <span class="CodeInline">&lt;category&gt;</span> element appears only when the mouse cursor is hovered over the data plots. However, this will not appear when the cursor is moved over the data labels (except for a situation when long labels are automatically truncated with ellipses. In this situation, if the mouse cursor is hovered over a truncated label, the tooltip will appear with the full label).<br /> <br /> In case you want to set a short label and show the full label in tooltip, define the full label using this attribute within the <span class="CodeInline">&lt;category&gt;</span> element. The tooltip with the full label will appear only when the mouse is hovered on the dataplot. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr></table> <br /> <a name="Anchor20"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">Vertical data separator lines </td> </tr> <tr> <td><p>vLines are vertical separator lines that help you separate blocks of data. These lines run through the height of the chart, thereby segregating data into different blocks.</p> <p>In multi-series charts, it is used between <span class="CodeInline">&lt;category&gt;</span> elements as under:</p> <pre class="prettyprint code_container"> &lt;categories&gt; &lt;category label='Oct 2005' /&gt; &lt;category label='Nov 2005' /&gt; &lt;category label='Dec 2005' /&gt; <b>&lt;vLine color='FF5904' thickness='2' /&gt;</b> &lt;category label='Jan 2006' /&gt; &lt;category label='Feb 2006' /&gt; &lt;/categories&gt;</pre> <p>You can configure the cosmetics of vertical separator lines using the following attributes:</p></td></tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">label</td> <td valign="top" class="text">String</td> <td valign="top" class="text">Display label for the vLine. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">color</td> <td valign="top" class="text">Color Code </td> <td valign="top" class="text">This attribute defines the color of vertical separator line. </td> </tr> <tr> <td valign="top" class="text">thickness</td> <td valign="top" class="text">Number (pixels)</td> <td valign="top" class="text">Thickness in pixels of the vertical separator line. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">alpha</td> <td valign="top" class="text">Number (0-100) </td> <td valign="top" class="text">Alpha of the vertical separator line. </td> </tr> <tr> <td valign="top" class="text">dashed</td> <td valign="top" class="text">Boolean (0/1) </td> <td valign="top" class="text">Whether the vertical separator line should appear as dashed? </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">dashLen</td> <td valign="top" class="text">Number (pixels)</td> <td valign="top" class="text">If the vertical separator line is to appear as dashed, this attribute defines the length of dash. </td> </tr> <tr> <td valign="top" class="text">dashGap</td> <td valign="top" class="text">Number (pixels)</td> <td valign="top" class="text">If the vertical separator line is to appear as dashed, this attribute defines the length of dash gap. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr> </table> <br /> <a name="Anchor21"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">&lt;dataset&gt; element</td> </tr> <tr> <td><p>Each <span class='CodeInline'>&lt;dataset&gt;</span> element contains a series of data.</p> <p>For example, if we're plotting a performance chart for 2 processors, the first dataset will contain the data for Processor A and the next one for the Processor B.</p> <p>You can provide dataset level cosmetics so that all data within that dataset will be plotted in the same color/alpha/etc.</p> <p>Also, each dataset can be named using the <span class="CodeInline">seriesName</span> attribute of <span class='CodeInline'>&lt;dataset&gt;</span> element. The series name appears in the legend of the chart. In the example, the series name will be Processor A and Processor B for first and second dataset respectively.</p></td></tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">seriesName</td> <td valign="top" class="text">String</td> <td valign="top" class="text">Lets you specify the series name for a particular dataset. For example, if you're plotting a chart to indicate monthly sales analysis for 2005 and 2006, the <span class="CodeInline">seriesName</span> for the first dataset will be 2005 and that of the second will be 2006. The <span class="CodeInline">seriesName</span> of a dataset is shown in legend. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">color</td> <td valign="top" class="text">Color Code </td> <td valign="top" class="text">This attribute sets the color using which columns, lines, area of that dataset will be drawn. For column chart, you can specify a list of comma separated hex codes to get a gradient plot. </td> </tr> <tr> <td valign="top" class="text">alpha</td> <td valign="top" class="text">Number (0-100) </td> <td valign="top" class="text">This attribute sets the alpha (transparency) of the entire dataset. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">showValues</td> <td valign="top" class="text">Boolean (0/1) </td> <td valign="top" class="text">Whether to show the values for this dataset? </td> </tr> <tr> <td valign="top" class="text">includeInLegend</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to include the <span class="CodeInline">seriesName</span> of this dataset in legend? This can be particularly useful when you're using combination charts and you've used the area/line chart to plot a trend and you do not want the <span class="CodeInline">seriesName</span> of that trend to appear in legend. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">checkForAlerts</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to run the values of this dataset through alert manager, each time an update is received? </td> </tr> <tr> <td valign="top" class="text">dashed</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether this dataset will appear as dashed? </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">lineDashLen</td> <td valign="top" class="text">Number (pixels)</td> <td valign="top" class="text">If the lines are to be shown as dash for the particular dataset, this attribute defines the length of dash. </td> </tr> <tr> <td valign="top" class="text">lineDashGap</td> <td valign="top" class="text">Number (pixels)</td> <td valign="top" class="text">If the lines are to be shown as dash for the particular dataset, this attribute defines the length of dash gap. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">lineThickness</td> <td valign="top" class="text">Number (pixels)</td> <td valign="top" class="text">Thickness of the lines for the particular dataset. </td> </tr> <tr> <td valign="top" class="text">drawAnchors</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether to draw anchors for the particular dataset? If the anchors are not shown, then the tooltip and links won't work for the dataset. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">anchorSides</td> <td valign="top" class="text">Number (3-15) </td> <td valign="top" class="text">Sets the number of sides that the anchors of the particular dataset will have. For e.g., an anchor with 3 sides will represent a triangle, with 4 it will be a square and so on. </td> </tr> <tr> <td valign="top" class="text">anchorRadius</td> <td valign="top" class="text">Number (pixels)</td> <td valign="top" class="text">This attribute sets the radius (in pixels) of the anchors of the particular dataset. Greater the radius, bigger will be the anchor size. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">anchorBorderColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Lets you set the border color of anchors of the particular dataset. </td> </tr> <tr> <td valign="top" class="text">anchorBorderThickness</td> <td valign="top" class="text">Number (pixels)</td> <td valign="top" class="text">Helps you set border thickness of anchors of the particular dataset. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">anchorBgColor</td> <td valign="top" class="text">Color Code</td> <td valign="top" class="text">Helps you set the background color of anchors of the particular dataset. </td> </tr> <tr> <td valign="top" class="text">anchorAlpha</td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Helps you set the alpha of entire anchors of the particular dataset. If you need to hide the anchors for the dataset but still enable tool tips, set this as 0. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">anchorBgAlpha </td> <td valign="top" class="text">Number (0-100)</td> <td valign="top" class="text">Helps you set the alpha of anchor background of the particular dataset. </td> </tr> <tr> <td class="text" width="25%" valign="top">valuePosition <div class="version-info">Since v 3.2</div></td> <td class="text" width="15%" valign="top">String (ABOVE<br/>BELOW<br/>AUTO)</td> <td class="text" width='45%' valign='top'>This attribute lets you adjust the vertical alignment of data values for all the dataplots in the dataset. The alignment is set with respect to the position of the dataplots on the chart. By default, the attribute is set to AUTO mode in which the alignment of each data value is determined automatically based on the position of each plot point. In ABOVE mode, data values are displayed above the plot points unless a plot point is too close to the upper edge of the canvas. While in BELOW mode, data values are displayed below the plot points unless a plot point is too close to the lower edge of the canvas. The attribute will function only if <span class="CodeInline">showValue</span> attribute is set to 1 in this particular dataset.</td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr> </table> <br /> <a name="Anchor22"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">&lt;set&gt; element </td> </tr> <tr> <td><p>Each <span class="CodeInline">&lt;set&gt;</span> element (child of <span class="CodeInline">&lt;chart&gt;</span> or <span class="CodeInline">&lt;dataset&gt;</span> element) represents a set of data which is to be plotted on the graph and determines a set of data which will appear on the chart.</p> <p>For a multi-series chart, it could look like:</p> <pre class="prettyprint code_container">&lt;dataset seriesName='2006'&gt; &lt;set value='35445' /&gt; &lt;set value='35675' /&gt; .... and so on .... &lt;/dataset&gt;</pre> <p>In multi-series charts, you should again note that the number of <span class="CodeInline">&lt;category&gt;</span> elements should be equal to the number of data points in each data sets, i.e., if you mention twelve categories (twelve months), the data for both years (2005 &amp; 2006) should also contain twelve <span class="CodeInline">&lt;set&gt;</span> elements (twelve rows of data). </p></td></tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">value</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">Numerical value for the data item. This value will be plotted on the chart. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">link</td> <td valign="top" class="text">String</td> <td valign="top" class="text">You can define links for individual data items. That enables the end user to click on data items (columns, lines, bars, etc.) and drill-down to other pages. To define the link for data items, use the <span class="CodeInline">link</span> attribute. You can define links that open in same window, new window, pop-up window or frames. Please see <a href="../DrillDown/Simple.html">Drill-Down charts</a> section for more information. Also, you'll need to URL Encode all the special characters (like ? and &amp;) present in the link. </td> </tr> <tr> <td valign="top" class="text">toolText</td> <td valign="top" class="text">String</td> <td valign="top" class="text">By default, FusionWidgets XT shows the &quot;<span class="CodeInline">label</span>, <span class="CodeInline">value</span>&quot; as tooltip text for that data item. But, if you want to display more information for the data item as tooltip, you can use this attribute to specify the same. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">color</td> <td valign="top" class="text">Color Code </td> <td valign="top" class="text">For multi-series charts, you can define the color of datasets at dataset level. However, if you wish to highlight a particular data element, you can specify its color at &quot;set&quot; level using this attribute. This attribute accepts hex color codes without #. </td> </tr> <tr> <td valign="top" class="text">alpha</td> <td valign="top" class="text">Number (0-100) </td> <td valign="top" class="text">For multi-series charts, you can define the alpha of datasets at dataset level. However, if you wish to highlight a particular data element, you can specify its alpha at &quot;set&quot; level using this attribute. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">showValue</td> <td valign="top" class="text">Boolean (0/1) </td> <td valign="top" class="text">You can individually opt to show/hide values of individual data items using this attribute. This value over-rides the dataset level value. </td> </tr> <tr> <td valign="top" class="text">dashed</td> <td valign="top" class="text">Boolean (0/1) </td> <td valign="top" class="text">Whether the border of this data item should appear as dashed? This is particularly useful when you want to highlight a data (such as forecast or trend etc.). This value over-rides the dataset level value. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">anchorSides</td> <td valign="top" class="text">Number (3-15) </td> <td valign="top" class="text">Lets you specify &quot;set&quot; specific sides of the anchor. </td> </tr> <tr> <td valign="top" class="text">anchorRadius</td> <td valign="top" class="text">Number (Pixels) </td> <td valign="top" class="text">Lets you specify &quot;set&quot; specific radius (in pixels) of the anchor. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">anchorBorderColor</td> <td valign="top" class="text">Color Code </td> <td valign="top" class="text">Lets you specify &quot;set&quot; specific border color of the anchor. </td> </tr> <tr> <td valign="top" class="text">anchorBorderThickness</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">Lets you specify &quot;set&quot; specific border thickness of the anchor. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">anchorBgColor</td> <td valign="top" class="text">Color Code </td> <td valign="top" class="text">Lets you specify &quot;set&quot; specific background color of the anchor. </td> </tr> <tr> <td valign="top" class="text">anchorAlpha</td> <td valign="top" class="text">Number (0-100) </td> <td valign="top" class="text">Lets you specify &quot;set&quot; specific alpha of the anchor. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">anchorBgAlpha</td> <td valign="top" class="text">Number (0-100) </td> <td valign="top" class="text">Lets you specify &quot;set&quot; specific alpha of the anchor background. </td> </tr> <tr> <td class="text" width="25%" valign="top">valuePosition <div class="version-info">Since v 3.2</div></td> <td class="text" width="15%" valign="top">String (ABOVE<br/>BELOW<br/>AUTO)</td> <td class="text" width='45%' valign='top'>If you've opted to show a particular data value on the chart, this attribute lets you adjust the vertical alignment of individual data values with respect to dataplots. By default, this attribute is set to AUTO mode in which the alignment of a data value is determined automatically based on the position of its plot point. In ABOVE mode, a data value is displayed above the plot point unless a plot point is too close to the upper edge of the canvas while in BELOW mode, a data value is displayed below the plot point unless a plot point is too close to the lower edge of the canvas.</td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr> </table> <br /> <a name="Anchor23"></a> <table width="98%" align="center" cellpadding="2"> <tr> <td class="header">&lt;trendlines&gt; --&gt; &lt;line&gt; element</td> </tr> <tr> <td><p>Using the <span class='CodeInline'>&lt;trendLines&gt;</span> element (and children <span class='CodeInline'>&lt;line&gt;</span> elements), you can define trend lines on the chart.</p> <p>Trend lines are horizontal lines spanning the chart canvas which aid in interpretation of data with respect to some pre-determined value. For example, if you are plotting sales data of current year, you might want to add previous year's average monthly sales as trend indicator for ease of comparison.</p> <p>For each trend line on the chart, you need to define a <span class='CodeInline'>&lt;line&gt;</span> element under <span class='CodeInline'>&lt;trendLines&gt;</span> element as under:</p> <pre class="prettyprint code_container">&lt;trendLines&gt; &lt;line startValue='895' color='FF0000' displayValue='Average' /&gt; &lt;/trendLines&gt;</pre> <p>You can control the cosmetic and functional properties of trend-lines using the following attributes:</p></td></tr> </table> <table width="98%" align="center" class="tableGreyBorder" cellpadding="0" cellspacing="0"> <tr class="trAttHeader"> <td width="25%"> <span class="textBold"> Attribute Name </span> </td> <td width="25%"> <span class="textBold"> Type </span> </td> <td width='50%'> <span class="textBold"> Description </span> </td> </tr> <tr> <td valign="top" class="text">startValue</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">The starting value for the trendline. Say, if you want to plot a slanted trendline from value 102 to 109, the <span class="CodeInline">startValue</span> will be 102. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">endValue</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">The ending y-axis value for the trendline. Say, if you want to plot a slanted trendline from value 102 to 109, the <span class="CodeInline">endValue</span> will be 109. If you do not specify a value for <span class="CodeInline">endValue</span>, it will automatically assume the same value as <span class="CodeInline">startValue</span>. </td> </tr> <tr> <td valign="top" class="text">displayValue</td> <td valign="top" class="text">String</td> <td valign="top" class="text">If you want to display a string caption for the trend line by its side, you can use this attribute. Example: <span class="CodeInline">displayValue='Last Month High'</span>. When you don't supply this attribute, it automatically takes the value of startValue. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">color</td> <td valign="top" class="text">Color Code </td> <td valign="top" class="text">Color of the trend line and its associated text. </td> </tr> <tr> <td valign="top" class="text">thickness</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">If you've opted to show the trend as a line, this attribute lets you define the thickness of trend line. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">isTrendZone</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether the trend will display a line or a zone (filled colored rectangle). </td> </tr> <tr> <td valign="top" class="text">alpha</td> <td valign="top" class="text">Number</td> <td valign="top" class="text">Alpha of the trend line. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">showOnTop</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">Whether the trend line/zone will be displayed over data plots or under them? </td> </tr> <tr> <td valign="top" class="text">dashed</td> <td valign="top" class="text">Boolean (0/1)</td> <td valign="top" class="text">If you've opted to show the trend as a line, this attribute lets you define whether the trend line will appear as dashed? </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">dashLen</td> <td valign="top" class="text">Number (Pixels)</td> <td valign="top" class="text">If you've opted to show trend line as dash, this attribute lets you control the length of each dash. </td> </tr> <tr> <td valign="top" class="text">dashGap</td> <td valign="top" class="text">Number (Pixels) </td> <td valign="top" class="text">If you've opted to show trend line as dash, this attribute lets you control the length of each dash gap. </td> </tr> <tr class='trVeryLightYellowBg'> <td valign="top" class="text">valueOnRight</td> <td valign="top" class="text">Boolean (0/1) </td> <td valign="top" class="text">Whether to show the trend line value on left side or right side of chart? This is particularly useful when the trend line display values on the chart are colliding with divisional lines values on the chart. </td> </tr> <tr> <td align="right" colspan="4" style="BORDER-TOP:#FE9B00 1px solid;"> <span class="back_to_top"><a href="#top">Back to top <img src="../Images/Top.gif" border="0" alt="Back to Top" width="16" height="16" /></a></span> </td></tr> </table> <br /> <table width="98%" border="0" cellspacing="0" cellpadding="3" align="center"> <tr> <td valign="top" class="text">The XML API for the following features have not been discussed here:<br/> <br/> <ul> <li><strong>Exporting Chart</strong>: All the attributes pertinent to exporting of charts as images or PDFs are discussed in the <strong><a href="../ExportingImage/ECOverview.html">Exporting as Image/PDF</a></strong> section.</li> <li><strong>Exporting Chart Data</strong>: All the attributes pertinent to exporting of chart data are discussed in the <a href="../ExportingData/ExportDataSetup.html">Exporting Chart Data</a> section.</li> <li><strong>Annotations</strong> - All the attributes pertinent to annotations are discussed in the <a href="../Annotations/Introduction.html">Annotations</a> section. </li> <li><strong>Alert Manager</strong> - All the attributes pertinent to alerts are discussed in the <a href="../AlertManager/Introduction.html">Alert Manager</a> section. </li> <li><strong>Styles</strong> - All the attributes pertinent to <strong>Styles</strong> are discussed in the <a href="../Styles/Styles.html">Using Styles</a> section. </li> </ul> </td> </tr> <tr> <td height="15"></td></tr> </table> <!-- footer links starts--> <div id="fcfooter"></div> <script type="text/javascript"> document.getElementById("fcfooter").innerHTML = addFCFooter("Troubleshooting|Debug.html","Real-time Column chart XML sheet|XMLRealTimeColumn.html"); </script> <!-- footer links ends --> <script type="text/javascript" language="javascript1.2">//<![CDATA[ <!-- highlightSearch(); //--> </script> </body> </html>
frame_packages/java_libs/spring-2.5.6-src/docs/api/org/springframework/web/servlet/mvc/annotation/class-use/DefaultAnnotationHandlerMapping.html
codeApeFromChina/resource
<!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_07) on Fri Oct 31 18:27:06 CET 2008 --> <TITLE> Uses of Class org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping (Spring Framework API 2.5) </TITLE> <META NAME="date" CONTENT="2008-10-31"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping (Spring Framework API 2.5)"; } } </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/springframework/web/servlet/mvc/annotation/DefaultAnnotationHandlerMapping.html" title="class in org.springframework.web.servlet.mvc.annotation"><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-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?org/springframework/web/servlet/mvc/annotation/\class-useDefaultAnnotationHandlerMapping.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="DefaultAnnotationHandlerMapping.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.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping</B></H2> </CENTER> No usage of org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping <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/springframework/web/servlet/mvc/annotation/DefaultAnnotationHandlerMapping.html" title="class in org.springframework.web.servlet.mvc.annotation"><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-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?org/springframework/web/servlet/mvc/annotation/\class-useDefaultAnnotationHandlerMapping.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="DefaultAnnotationHandlerMapping.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 &copy; 2002-2008 <a href=http://www.springframework.org/ target=_top>The Spring Framework</a>.</i> <!-- Begin LoopFuse code --> <script src=http://loopfuse.net/webrecorder/js/listen.js type=text/javascript> </script> <script type=text/javascript> _lf_cid = LF_48be82fa; _lf_remora(); </script> <!-- End LoopFuse code --> </BODY> </HTML>
LABA2-homepage/css/style.css
nzavarinsky/WEB-university-works
body { margin: 0; padding: 0; } #bio, #about { padding-bottom: 50px; } .section-header { text-align: center; margin: 0 auto; padding-top: 70px; margin-bottom: 50px; font: 300 60px 'Raleway', sans-serif; letter-spacing: 3px; color: #222; } .section-news { margin-left: 37.5%; font: 300 60px 'Raleway', sans-serif; letter-spacing: 3px; color: #222; } .break-section { width: 100%; height: 500px; -webkit-filter: grayscale(50%); } .navbar { font-family: 'Raleway', sans-serif; letter-spacing: 1.5px; opacity: .9; } .navbar-brand { font-weight: bold; } .navbar li:hover { background-color: #111; } #home { background: url('https://images.unsplash.com/photo-1420330076511-19dcae7171ac?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&s=e2c8757bf75fcfdd8bbd23e17a257f28') no-repeat; background-attachment: fixed; background-size: cover; background-position: center; overflow: hidden; height: 100vh; position: relative; } #home:before { content: ''; background-color: rgba(11, 11, 11, 0.4); position: absolute; height: 100%; width: 100%; left: 0px; } .FB-logo-wrapper { display: inline-block; margin-top: -30px; color: #fff; font-weight: 100; letter-spacing: .6px; } .FB-logo-wrapper .FB-logo { margin-right: -15px; padding-bottom: 3px; /*-webkit-filter: grayscale(1); -webkit-filter: grayscale(100%); filter: grayscale(100%); filter: url(#greyscale); filter: gray; margin-right: -5px;*/ } .FB-logo-wrapper:hover { color: #fff; } .jumbotron { background-color: transparent !important; position: relative; /*position: absolute; */ width: 90%; left: 50%; top: 40%; bottom: auto; right: auto; -webkit-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%); -ms-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%); } .jumbotron .jumbo-container { position: relative; width: 100%; margin: auto; text-align: center; overflow: hidden; line-height: 80px; height: 80px; } .jumbotron .jumbo-container .main-title { display: block; font: 500 30px 'Raleway', sans-serif; color: #fff; position: relative; letter-spacing: 1.2px; } @keyframes title-animation { 0% { top: 0; } 20% { top: 0; } 25% { top: -85px; } 70% { top: -85px; } 75% { top: 0; } 100% { top: 0; } } /************************ "VIEW PORTFOLIO" BUTTON ************************/ .portfolio-button { text-decoration: none; font: 400 18px 'Raleway', sans-serif; letter-spacing: 1.7px; line-height: 40px; color: #fff; display: block; opacity: .8; border: 1px solid #fff; width: 400px; text-align: center; margin: 0 auto; padding: 5px 5px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; position: relative; top: 40px; overflow: hidden; } .portfolio-button:hover, .portfolio-button:active { text-decoration: none; color: #fff; opacity: 1; } .portfolio-button:before { content: ""; width: 200%; height: 200%; position: absolute; top: -200%; left: -225%; background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)); background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)); -moz-transition: all 0.4s ease-out; -o-transition: all 0.4s ease-out; -webkit-transition: all 0.4s ease-out; -ms-transition: all 0.4s ease-out; } .portfolio-button:hover:before { top: 200%; left: 200%; } /***************** HOME MEDIA QUERIES *****************/ @media screen and (max-width: 780px) { .jumbotron .jumbo-container .main-title { font-size: 55px; padding-top: 20px; } } @media screen and (max-width: 590px) { .jumbotron .jumbo-container .main-title { font-size: 38px; padding-top: 32px; } .portfolio-button { line-height: 30px; width: 150px; font-size: 12px; } } @media screen and (max-width: 450px) { .jumbotron .jumbo-container .main-title { font-size: 30px; padding-top: 40px; } .portfolio-button { line-height: 28px; width: 130px; font-size: 10px; } } /************************** BIO SECTION **************************/ #bio { background: linear-gradient(#222, transparent 30%), linear-gradient(0deg, #222, transparent 30%), url('https://farm4.staticflickr.com/3172/2566635174_1244623644_o.jpg'); background-attachment: fixed; background-size: cover; background-position: center; overflow: hidden; /* ABOUT */ } .bio-photo { border-radius: 50%; /*WAS 800px*/ margin: 10px auto; margin-right: 20px; height: 250px; width: 250px; float: left; } .bio-header { margin-top: -50px; } .bio-text { max-width: 50em; margin: 80px auto; font: 1.8rem 'Open Sans', sans-serif; font-weight: 300; color: #333; letter-spacing: .5px; line-height: 33px; text-align: justify; background-color: #fff; padding: 30px 70px; border-radius: 5px; } .pdf-resume { text-align: center; margin: 0px auto; margin-top: 30px; padding-bottom: 20px; font: small-caps 25px 'Raleway', sans-serif; width: 350px; } .pdf-resume > a { text-decoration: none; color: #e23d3d; } .pdf-resume > a:hover { color: #FF0000; } .bio-text > p > a { color: ; font-weight: 400; } .bio-text > p > a:visted { color: #ed490a; } .they-tried-to-bury-us-text { font-weight: 400; } /*********************** CLIENTS SECTION ***********************/ #about { height: 100%; padding-top: 100px; padding-bottom: 100px; } .about-section .about-item { padding-left: 15px; padding-right: 15px; margin: 0 auto; } .about-section .about-item .section-icon { font-size: 180px; padding-top: 20px; margin: 0 auto; text-align: center; width: 100%; } .about-section .about-item .about-header { padding-top: 10px; padding-bottom: 10px; text-align: center; font-family: 'Raleway'; font-weight: 700; letter-spacing: 1.4px; color: #333; } .about-section .about-item .about-text { text-align: justify; max-width: 450px; margin: 0 auto; padding-left: 10px; padding-right: 10px; /*margin-top: -50px;*/ font: 1.7rem 'Open Sans', sans-serif; font-weight: 300; color: #333; letter-spacing: .5px; line-height: 30px; } .about-underline { max-width: 300px; text-align: center; margin: 30px auto; opacity: 0; color: #000; } @media screen and (max-width: 991px) { #about .about-section .about-item .about-text { margin-bottom: 30px; } .about-underline { opacity: 1; } } .client-break { background: linear-gradient(#222, transparent 30%), linear-gradient(0deg, #222, transparent 30%), url('https://upload.wikimedia.org/wikipedia/en/6/69/Speeding_J_train_on_the_Williamsburg_Bridge.jpg'); background-attachment: fixed; background-size: cover; background-position: center; overflow: hidden; } /******************** NEWS SECTION ********************/ #custom_carousel .item { padding-top: 150px; height: 400px; color: #000; background-color: #eee; padding: 2px 0; } #custom_carousel .controls { overflow-x: auto; overflow-y: hidden; padding: 0; margin: 0; white-space: nowrap; text-align: center; position: relative; background: #ddd } #custom_carousel .controls li { display: table-cell; width: 1%; max-width: 90px } #custom_carousel .controls li.active { background-color: #eee; border-top: 3px solid orange; } #custom_carousel .controls a small { overflow: hidden; display: block; font-size: 10px; margin-top: 5px; font-weight: bold } /**************************** FOOTER ****************************/ footer.footer { right: 0; bottom: 0; left: 0; text-align: center; color: #9da1a6; position: relative; background-color: #141414; padding: 70px 0px 70px 0px; width: 100%; bottom: 0; left: 0; } ul.social { margin: 0; padding: 0; } footer.footer ul.social { margin: 0px 0px 20px 0px; } footer.footer ul.social li { display: inline-block; margin: 0px 10px; } footer.footer ul.social li a { color: #393939; border-radius: 50%; width: 45px; height: 45px; border-color: #393939; position: relative; border: 2px solid #393939; display: inline-block; line-height: 40px; margin-bottom: 10px; -webkit-transition: all .3s ease-in-out 0s; -moz-transition: all .3s ease-in-out 0s; -ms-transition: all .3s ease-in-out 0s; -o-transition: all .3s ease-in-out 0s; transition: all .3s ease-in-out 0s; } footer.footer ul.social li a:hover { color: #f74949; border-color: #f74949; } footer.footer .copyright { color: #515151; }